mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
82f59a9682
* PHP-7.3: [ci skip] Update NEWS [ci skip] Update NEWS [ci skip] Update NEWS Fix #77041: buildconf should output error messages to stderr
40 lines
647 B
Bash
Executable File
40 lines
647 B
Bash
Executable File
#! /bin/sh
|
|
|
|
# replacement for genif.pl
|
|
|
|
infile=$1
|
|
shift
|
|
srcdir=$1
|
|
shift
|
|
extra_module_ptrs=$1
|
|
shift
|
|
awk=$1
|
|
shift
|
|
|
|
if test -z "$infile" || test -z "$srcdir"; then
|
|
echo "please supply infile and srcdir" >&2
|
|
exit 1
|
|
fi
|
|
|
|
header_list=
|
|
olddir=`pwd`
|
|
cd $srcdir
|
|
|
|
module_ptrs="$extra_module_ptrs`echo $@ | $awk -f ./build/order_by_dep.awk`"
|
|
|
|
for ext in ${1+"$@"} ; do
|
|
ext_dir=`echo "$ext" | cut -d ';' -f 2`
|
|
header_list="$header_list $ext_dir/*.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/@NEWLINE@/\
|
|
/g'
|