Thanks to visit codestin.com Credit goes to github.com
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 c00239e commit 9c779c4Copy full SHA for 9c779c4
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