diff options
author | Sascha Schumann <sas@php.net> | 2002-07-20 14:33:09 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2002-07-20 14:33:09 +0000 |
commit | c2cc85d716aaf62688989e6a48d3d001668449d7 (patch) | |
tree | f19308c43ec4b692af87cce71057b47248cb8496 /buildconf | |
parent | 78a2781936c7b3ca9f6e890fcedf11f73acb70b8 (diff) | |
download | php-git-c2cc85d716aaf62688989e6a48d3d001668449d7.tar.gz |
reverse bad patch
james, when you send me email about your patch which does not work,
why don't you wait for a reply first before committing the non-working
stuff?
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 33 |
1 files changed, 1 insertions, 32 deletions
@@ -1,18 +1,6 @@ #!/bin/sh # $Id$ -amv=`automake --version | grep GNU |cut -d ' ' -f 4` - -if expr $amv '>=' 2.5; then - echo "cleaning checkout to force rebuild, due to bad AutoMake" - ./cvsclean -fi - - -if test -d "Zend"; then - ZENDVER=`cat Zend/zend.h | grep ZEND_VERSION | cut -d ' ' -f 3 | sed -e 's/"//' | cut -d . -f 1` -fi - while test $# -gt 0; do if test "$1" = "--copy"; then automake_flags=--copy @@ -20,28 +8,9 @@ while test $# -gt 0; do if test "$1" = "--ZendEngine2"; then ZENDDIR=ZendEngine2 - - if test $ZENDVER != 2; then - mv Zend Zend_old - - if test -d "ZendEngine2"; then - mv ZendEngine2 Zend - fi - fi echo "Using Zend Engine 2 code" fi - if test "$1" = "--Zend"; then - ZENDDIR=Zend - - if test $ZENDVER != 1; then - echo "The default Zend directory exists, but it doesn't seem to be Zend Engine 1" - exit - else - echo "Using default Zend directory" - fi - fi - shift done @@ -65,4 +34,4 @@ fi rm -f generated_lists -${MAKE:-make} -s -f build/build.mk AMFLAGS="$automake_flags" +${MAKE:-make} -s -f build/build.mk AMFLAGS="$automake_flags" ZENDDIR="$ZENDDIR" |