mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
5b293ecd4d
- improve genif.sh to also consider all header files for inclusion (checks for phpext_) - use vsnprintf in main.c to avoid buffer overflows - improve sessions's mm module to cope better with OOM situations within the shared memory segment - fix typo wrt session.auto_start
41 lines
641 B
Bash
41 lines
641 B
Bash
#! /bin/sh
|
|
|
|
# $Id: genif.sh,v 1.7 1999-09-03 17:46:39 sas Exp $
|
|
# replacement for genif.pl
|
|
|
|
infile="$1"
|
|
shift
|
|
srcdir="$1"
|
|
shift
|
|
|
|
if test "$infile" = "" -o "$srcdir" = ""; then
|
|
echo "please supply infile and srcdir"
|
|
exit 1
|
|
fi
|
|
|
|
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'
|
|
|
|
|