diff options
| author | John Naylor | 2022-09-06 04:41:58 +0000 |
|---|---|---|
| committer | John Naylor | 2022-09-09 05:55:23 +0000 |
| commit | 8b878bffa8d8ac7e13508025c3ca5e6101e3a5e8 (patch) | |
| tree | 311263a4649908bec0489075037203048fd2e412 /src/tools | |
| parent | b086a47a270fba133969e78f1fb9e264725d97ae (diff) | |
Bump minimum version of Flex to 2.5.35
Since the retirement of some older buildfarm members, the oldest Flex
that gets regular testing is 2.5.35.
Reviewed by Andres Freund
Discussion: https://www.postgresql.org/message-id/1097762.1662145681@sss.pgh.pa.us
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/msvc/pgflex.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/msvc/pgflex.pl b/src/tools/msvc/pgflex.pl index eb3198381f6..b62478b9f59 100644 --- a/src/tools/msvc/pgflex.pl +++ b/src/tools/msvc/pgflex.pl @@ -21,7 +21,7 @@ $flexver = (split(/\s+/, $flexver))[1]; $flexver =~ s/[^0-9.]//g; my @verparts = split(/\./, $flexver); unless ($verparts[0] == 2 - && ($verparts[1] > 5 || ($verparts[1] == 5 && $verparts[2] >= 31))) + && ($verparts[1] > 5 || ($verparts[1] == 5 && $verparts[2] >= 35))) { print "WARNING! Flex install not found, or unsupported Flex version.\n"; print "echo Attempting to build without.\n"; |
