hholzgra Sun May 29 14:50:05 2005 EDT
Modified files:
/ZendEngine2 acinclude.m4
Log:
bison may be installed under a different executable name, e.g.
YACC="bison-1.75" configure ...
removing the check for "bison -y" allows for this
the check was redundant anyway as the following one filters
for "GNU Bison" in the --version output
http://cvs.php.net/diff.php/ZendEngine2/acinclude.m4?r1=1.11&r2=1.12&ty=u
Index: ZendEngine2/acinclude.m4
diff -u ZendEngine2/acinclude.m4:1.11 ZendEngine2/acinclude.m4:1.12
--- ZendEngine2/acinclude.m4:1.11 Sun May 29 14:04:35 2005
+++ ZendEngine2/acinclude.m4 Sun May 29 14:50:03 2005
@@ -1,4 +1,4 @@
-dnl $Id: acinclude.m4,v 1.11 2005/05/29 18:04:35 hholzgra Exp $
+dnl $Id: acinclude.m4,v 1.12 2005/05/29 18:50:03 hholzgra Exp $
dnl
dnl This file contains local autoconf functions.
@@ -6,7 +6,7 @@
# we only support certain bison versions
bison_version_list="1.28 1.35 1.75 2.0"
- if test "$YACC" = "bison -y"; then
+ if test "$YACC"; then
AC_CACHE_CHECK([for bison version], php_cv_bison_version, [
set `bison --version| grep 'GNU Bison' | cut -d ' ' -f 4 | $SED -e
's/\./ /'|tr -d a-z`
bison_version="${1}.${2}"
--
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|