summaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-01-19 23:03:29 +0000
committerfoobar <sniper@php.net>2005-01-19 23:03:29 +0000
commit52e00b8f039cc24a62a6de68c6329c321b7c228b (patch)
tree9d21f4b913ff194fc3eb2de75d9b96faba4a92cf /buildconf
parented25ab62f536a4142f09fbe17bc0a1a9c6fd4877 (diff)
downloadphp-git-52e00b8f039cc24a62a6de68c6329c321b7c228b.tar.gz
Added --debug option to buildconf
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf11
1 files changed, 8 insertions, 3 deletions
diff --git a/buildconf b/buildconf
index 95aa69c1ba..ccad6cf135 100755
--- a/buildconf
+++ b/buildconf
@@ -12,6 +12,7 @@ case "$EXTRA_VERSION" in
esac
devok=0
+debug=no
while test $# -gt 0; do
if test "$1" = "--copy"; then
@@ -23,6 +24,10 @@ while test $# -gt 0; do
echo "Forcing buildconf"
fi
+ if test "$1" = "--debug"; then
+ debug=yes
+ fi
+
shift
done
@@ -48,17 +53,17 @@ if test -z "$ZENDDIR"; then
fi
else
if test -r "Zend/zend_execute_globals.h"; then
- :
+ :
else
mv Zend ZendEngine2 2>/dev/null
mv ZendEngine1 Zend
fi
fi
-
+
ZENDDIR=Zend
echo "using default Zend directory"
fi
rm -f generated_lists
-${MAKE:-make} -s -f build/build.mk AMFLAGS="$automake_flags" ZENDDIR="$ZENDDIR"
+${MAKE:-make} -s -f build/build.mk AMFLAGS="$automake_flags" ZENDDIR="$ZENDDIR" SHOW_WARNINGS="$debug"