Skip to content

Commit

Permalink
First shot at making ze1/ze2 coexist
Browse files Browse the repository at this point in the history
  • Loading branch information
Sascha Schumann committed Jun 25, 2003
1 parent 0072188 commit b97ce9d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions buildconf
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,28 @@ if test "$dev" = "0" -a "$devok" = "0"; then
fi

if test -z "$ZENDDIR"; then
if grep "PHP_MAJOR_VERSION 5" 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
Expand Down

0 comments on commit b97ce9d

Please sign in to comment.