aboutsummaryrefslogtreecommitdiffstats
path: root/configure.pl
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-07-08 13:36:23 +0000
committerlloyd <[email protected]>2009-07-08 13:36:23 +0000
commit730a5cd2c794a2a56f6e51bbb3934588022a6cc7 (patch)
treed89c8633ec5c64e9b897c5a230c5ebb7b6e88963 /configure.pl
parent128049ec03f562c8d973ae6f9d411be8a0d97f5d (diff)
Also match GCC 4.4 for -fpermissive checks
Diffstat (limited to 'configure.pl')
-rwxr-xr-xconfigure.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.pl b/configure.pl
index f04e2ffe8..a26554bd2 100755
--- a/configure.pl
+++ b/configure.pl
@@ -426,7 +426,7 @@ sub choose_target {
$gcc_version = '' if not defined $gcc_version;
my $has_ll_bug = 0;
- $has_ll_bug = 1 if($gcc_version =~ /4\.[0123]/);
+ $has_ll_bug = 1 if($gcc_version =~ /4\.[01234]/);
$has_ll_bug = 1 if($gcc_version =~ /3\.[34]/);
$has_ll_bug = 1 if($gcc_version =~ /2\.95\.[0-4]/);
$has_ll_bug = 1 if($gcc_version eq '');