mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
7f96af83b2
There are some variables which are needed for Makefiles and files created by AC_OUTPUT; we use PHP_SUBST_OLD for those now. genif.sh was moved to an appropiate place.
42 lines
665 B
Bash
42 lines
665 B
Bash
#! /bin/sh
|
|
|
|
# $Id: genif.sh,v 1.1 2000-12-20 17:21:37 sas Exp $
|
|
# replacement for genif.pl
|
|
|
|
infile="$1"
|
|
shift
|
|
srcdir="$1"
|
|
shift
|
|
extra_module_ptrs="$1"
|
|
shift
|
|
awk="$1"
|
|
shift
|
|
|
|
if test "$infile" = "" -o "$srcdir" = ""; then
|
|
echo "please supply infile and srcdir"
|
|
exit 1
|
|
fi
|
|
|
|
module_ptrs="$extra_module_ptrs"
|
|
header_list=""
|
|
olddir=`pwd`
|
|
cd $srcdir
|
|
|
|
for ext in ${1+"$@"} ; do
|
|
module_ptrs=" phpext_${ext}_ptr,\\\n$module_ptrs"
|
|
header_list="$header_list ext/$ext/*.h"
|
|
done
|
|
|
|
includes=`$awk -f ./build/print_include.awk $header_list`
|
|
|
|
cd $olddir
|
|
|
|
cat $infile | \
|
|
sed \
|
|
-e "s'@EXT_INCLUDE_CODE@'$includes'" \
|
|
-e "s'@EXT_MODULE_PTRS@'$module_ptrs'" \
|
|
-e 's/[\]n/\
|
|
/g'
|
|
|
|
|