summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Soria Parra <dsp@php.net>2009-07-11 01:54:08 +0000
committerDavid Soria Parra <dsp@php.net>2009-07-11 01:54:08 +0000
commit936da65a21c892fadec01b8a544a363eef850a17 (patch)
tree20c46064978b0792d08ba29bdabfc24efdfaeaed
parent62945b541a7c5138538df111fbcae47e27d41914 (diff)
downloadphp-git-936da65a21c892fadec01b8a544a363eef850a17.tar.gz
Get rid of PHP 4 related buildconf and moving around directories. As we switched to svn ZE2 is in Zend by default.
-rwxr-xr-xbuildconf31
1 files changed, 2 insertions, 29 deletions
diff --git a/buildconf b/buildconf
index d66d5daf1a..c485302afd 100755
--- a/buildconf
+++ b/buildconf
@@ -33,37 +33,10 @@ if test "$dev" = "0" -a "$devok" = "0"; then
exit 1
fi
-if test -z "$ZENDDIR"; then
- if grep "PHP_MAJOR_VERSION 6" main/php_version.h >/dev/null; then
- v=5
- else
- v=4
- fi
-
- if test "$v" = "5"; then
- if test -r "Zend/OBJECTS2_HOWTO"; then
- :
- else
- mv Zend ZendEngine1 2>/dev/null
- mv ZendEngine2 Zend
- 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
if test "$debug" = "yes"; then
- ${MAKE:-make} -s -f build/build.mk ZENDDIR="$ZENDDIR" SUPPRESS_WARNINGS=""
+ ${MAKE:-make} -s -f build/build.mk ZENDDIR="Zend/" SUPPRESS_WARNINGS=""
else
- ${MAKE:-make} -s -f build/build.mk ZENDDIR="$ZENDDIR"
+ ${MAKE:-make} -s -f build/build.mk ZENDDIR="Zend/"
fi