]> granicus.if.org Git - postgresql/commitdiff
Accept flex > 2.5.x in configure.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 18 Nov 2015 22:45:06 +0000 (17:45 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 18 Nov 2015 22:45:06 +0000 (17:45 -0500)
Per buildfarm member anchovy, 2.6.0 exists in the wild now.
Hopefully it works with Postgres; if not, we'll have to do something
about that, but in any case claiming it's "too old" is pretty silly.

config/programs.m4
configure

index 565195d06d9daad156af945380ec94c1c7f1b660..57bbe962c393775037f73d729a84591f28e74d3a 100644 (file)
@@ -69,7 +69,7 @@ else
         echo '%%'  > conftest.l
         if $pgac_candidate -t conftest.l 2>/dev/null | grep FLEX_SCANNER >/dev/null 2>&1; then
           pgac_flex_version=`$pgac_candidate --version 2>/dev/null`
-          if echo "$pgac_flex_version" | sed ['s/[.a-z]/ /g'] | $AWK '{ if ([$]1 = 2 && [$]2 = 5 && [$]3 >= 31) exit 0; else exit 1;}'
+          if echo "$pgac_flex_version" | sed ['s/[.a-z]/ /g'] | $AWK '{ if ([$]1 = 2 && ([$]2 > 5 || ([$]2 = 5 && [$]3 >= 31))) exit 0; else exit 1;}'
           then
             pgac_cv_path_flex=$pgac_candidate
             break 2
index a8a584cdaf57d4f4e0e994c3939734500c781ed1..c8512e89fb7b8c066d6fc61a99e7a147bb06a714 100755 (executable)
--- a/configure
+++ b/configure
@@ -7193,7 +7193,7 @@ else
         echo '%%'  > conftest.l
         if $pgac_candidate -t conftest.l 2>/dev/null | grep FLEX_SCANNER >/dev/null 2>&1; then
           pgac_flex_version=`$pgac_candidate --version 2>/dev/null`
-          if echo "$pgac_flex_version" | sed 's/[.a-z]/ /g' | $AWK '{ if ($1 = 2 && $2 = 5 && $3 >= 31) exit 0; else exit 1;}'
+          if echo "$pgac_flex_version" | sed 's/[.a-z]/ /g' | $AWK '{ if ($1 = 2 && ($2 > 5 || ($2 = 5 && $3 >= 31))) exit 0; else exit 1;}'
           then
             pgac_cv_path_flex=$pgac_candidate
             break 2