From: Marcus Boerger Date: Thu, 3 Apr 2003 20:59:42 +0000 (+0000) Subject: Check for flex version 2.5.4 X-Git-Tag: RELEASE_0_5~163 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f0290a781549aab7cd3639408a564f2811124bb4;p=php Check for flex version 2.5.4 --- diff --git a/configure.in b/configure.in index 21a237cd45..3ffc27fc3f 100644 --- a/configure.in +++ b/configure.in @@ -160,8 +160,8 @@ if test "$LEX" ;then sed -e 's/^.* //' -e 's/\./ /g'` if test ! -z "$flexvers"; then set $flexvers - if test "${1}" != "2" -o "${2}" != "5" -o "${3}" -lt "4"; then - AC_MSG_WARN(You will need flex 2.5.4 or later if you want to regenerate Zend/PHP lexical parsers.) + if test "${1}" != "2" -o "${2}" != "5" -o "${3}" != "4"; then + AC_MSG_WARN(You will need flex 2.5.4 if you want to regenerate Zend/PHP lexical parsers.) fi fi AC_MSG_RESULT(${1}.${2}.${3} (ok))