mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
a2d42419a5
module works now successfully again under Apache and other web servers.
43 lines
688 B
Bash
43 lines
688 B
Bash
#! /bin/sh
|
|
|
|
# $Id: genif.sh,v 1.8 2000-03-26 02:46:59 sas Exp $
|
|
# replacement for genif.pl
|
|
|
|
infile="$1"
|
|
shift
|
|
srcdir="$1"
|
|
shift
|
|
extra_module_ptrs="$1"
|
|
shift
|
|
|
|
if test "$infile" = "" -o "$srcdir" = ""; then
|
|
echo "please supply infile and srcdir"
|
|
exit 1
|
|
fi
|
|
|
|
module_ptrs="$extra_module_ptrs"
|
|
includes=""
|
|
|
|
olddir=`pwd`
|
|
cd $srcdir
|
|
|
|
for ext in ${1+"$@"} ; do
|
|
module_ptrs=" phpext_${ext}_ptr,\\\n$module_ptrs"
|
|
for header in ext/$ext/*.h ; do
|
|
if grep phpext_ $header >/dev/null 2>&1 ; then
|
|
includes="#include \"$header\"\\\n$includes"
|
|
fi
|
|
done
|
|
done
|
|
|
|
cd $olddir
|
|
|
|
cat $infile | \
|
|
sed \
|
|
-e "s'@EXT_INCLUDE_CODE@'$includes'" \
|
|
-e "s'@EXT_MODULE_PTRS@'$module_ptrs'" \
|
|
-e 's/\\n/\
|
|
/g'
|
|
|
|
|