8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 255cc9b commit 7f94a5cCopy full SHA for 7f94a5c
src/tools/msvc/pgflex.pl
@@ -16,7 +16,8 @@
16
$flexver = (split(/\s+/, $flexver))[1];
17
$flexver =~ s/[^0-9.]//g;
18
my @verparts = split(/\./, $flexver);
19
-unless ($verparts[0] == 2 && $verparts[1] == 5 && $verparts[2] >= 31)
+unless ($verparts[0] == 2 &&
20
+ ($verparts[1] > 5 || ($verparts[1] == 5 && $verparts[2] >= 31)))
21
{
22
print "WARNING! Flex install not found, or unsupported Flex version.\n";
23
print "echo Attempting to build without.\n";
0 commit comments