Skip to content

nitpick re2c "or newer" #13112

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build/php.m4
Original file line number Diff line number Diff line change
Expand Up @@ -1783,7 +1783,7 @@ AC_DEFUN([PHP_PROG_BISON], [
case $php_bison_check in
""|invalid[)]
if test ! -f "$abs_srcdir/Zend/zend_language_parser.h" || test ! -f "$abs_srcdir/Zend/zend_language_parser.c"; then
AC_MSG_ERROR([bison $php_bison_required_version is required to generate PHP parsers (excluded versions: $php_bison_excluded_versions).])
AC_MSG_ERROR([bison $php_bison_required_version or newer is required to generate PHP parsers (excluded versions: $php_bison_excluded_versions).])
fi

YACC="exit 0;"
Expand Down Expand Up @@ -1841,7 +1841,7 @@ AC_DEFUN([PHP_PROG_RE2C],[
case $php_re2c_check in
""|invalid[)]
if test ! -f "$abs_srcdir/Zend/zend_language_scanner.c"; then
AC_MSG_ERROR([re2c $php_re2c_required_version is required to generate PHP lexers.])
AC_MSG_ERROR([re2c $php_re2c_required_version or newer is required to generate PHP lexers.])
fi

RE2C="exit 0;"
Expand Down