Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit9c779c4

Browse files
committed
Accept flex > 2.5.x on Windows, too.
Commit32f15d0 fixed this in configure, but missed the similar checkin the MSVC scripts.Michael Paquier, per report from Victor Wagner
1 parentc00239e commit9c779c4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

‎src/tools/msvc/pgflex.pl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
$flexver = (split(/\s+/,$flexver))[1];
1717
$flexver =~s/[^0-9.]//g;
1818
my@verparts =split(/\./,$flexver);
19-
unless ($verparts[0] == 2 &&$verparts[1] == 5 &&$verparts[2] >= 31)
19+
unless ($verparts[0] == 2 &&
20+
($verparts[1] > 5 || ($verparts[1] == 5 &&$verparts[2] >= 31)))
2021
{
2122
print"WARNING! Flex install not found, or unsupported Flex version.\n";
2223
print"echo Attempting to build without.\n";

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp