mirror of
https://github.com/php/php-src.git
synced 2024-11-26 19:33:55 +08:00
1cb0d88186
extensions you are including. Got rid of configure.in.in. Moved the last Apache-specific files into sapi/apache and made both static and DSO build work again (it still doesn't run properly).
33 lines
816 B
Bash
Executable File
33 lines
816 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $Id$
|
|
|
|
disclaimer="Do NOT edit - this file is generated by preconfig"
|
|
|
|
# security check - simply overwriting existing files could be harmful
|
|
if test -w acconfig.h.new ; then
|
|
echo "Please remove acconfig.h.new and rerun this command"
|
|
exit 1
|
|
fi
|
|
|
|
echo "/* $disclaimer */" > acconfig.h.new
|
|
cat acconfig.h.in >> acconfig.h.new
|
|
confighfiles=`echo ext/*/config.h.stub`
|
|
if test "$confighfiles" != "ext/*/config.h.stub"; then
|
|
for file in $confighfiles; do
|
|
cat $file >> acconfig.h.new
|
|
done
|
|
fi
|
|
confighfiles=`echo sapi/*/config.h.stub`
|
|
if test "$confighfiles" != "sapi/*/config.h.stub"; then
|
|
for file in $confighfiles; do
|
|
cat $file >> acconfig.h.new
|
|
done
|
|
fi
|
|
cmp acconfig.h acconfig.h.new > /dev/null 2>&1
|
|
if test $? -ne 0 ; then
|
|
mv acconfig.h.new acconfig.h
|
|
else
|
|
rm -f acconfig.h.new
|
|
fi
|