As I have no Zend karma, is anybody kind enough to merge the bison
blacklist patch?
https://github.com/php/php-src/pull/402
--
Regards,
Mike
As I have no Zend karma, is anybody kind enough to merge the bison
blacklist patch?
https://github.com/php/php-src/pull/402
Maybe it should be bison_version_exclude="none" so that the error
message is nicer?
Hi,
I proposed that specify any bison as developer wants.
It seems it is not merged, yet.
Usage:
YACC=/usr/local/bin/mybison ./configure
diff --git a/Zend/acinclude.m4 b/Zend/acinclude.m4
index 454513f..1440a2a 100644
--- a/Zend/acinclude.m4
+++ b/Zend/acinclude.m4
@@ -12,7 +12,7 @@ AC_DEFUN([LIBZEND_BISON_CHECK],[
bison_version=none
if test "$YACC"; then
AC_CACHE_CHECK([for bison version], php_cv_bison_version, [
-
bison_version_vars=`bison --version 2> /dev/null | grep 'GNU Bison'
| cut -d ' ' -f 4 | $SED -e 's/./
-
bison_version_vars=`$YACC --version 2> /dev/null | grep 'GNU Bison'
| cut -d ' ' -f 4 | $SED -e 's/./
php_cv_bison_version=invalid
if test -n "$bison_version_vars"; then
set $bison_version_vars
--
Yasuo Ohgaki
yohgaki@ohgaki.net
As I have no Zend karma, is anybody kind enough to merge the bison
blacklist patch?
https://github.com/php/php-**src/pull/402https://github.com/php/php-src/pull/402Maybe it should be bison_version_exclude="none" so that the error message
is nicer?
Hi,
I proposed that specify any bison as developer wants.
It seems it is not merged, yet.Usage:
YACC=/usr/local/bin/mybison ./configurediff --git a/Zend/acinclude.m4 b/Zend/acinclude.m4
index 454513f..1440a2a 100644
--- a/Zend/acinclude.m4
+++ b/Zend/acinclude.m4
@@ -12,7 +12,7 @@ AC_DEFUN([LIBZEND_BISON_CHECK],[
bison_version=none
if test "$YACC"; then
AC_CACHE_CHECK([for bison version], php_cv_bison_version, [
bison_version_vars=`bison --version 2> /dev/null | grep 'GNU Bison' |
cut -d ' ' -f 4 | $SED -e 's/./
bison_version_vars=`$YACC --version 2> /dev/null | grep 'GNU Bison' |
cut -d ' ' -f 4 | $SED -e 's/./
php_cv_bison_version=invalid
if test -n "$bison_version_vars"; then
set $bison_version_vars
As I have no Zend karma, is anybody kind enough to merge the bison
blacklist patch?
https://github.com/php/php-src/pull/402Maybe it should be bison_version_exclude="none" so that the error message
is nicer?
Thank you, I incorporated all your suggestions
--
Regards,
Mike