diff options
author | lloyd <[email protected]> | 2009-07-08 13:18:17 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-07-08 13:18:17 +0000 |
commit | 128049ec03f562c8d973ae6f9d411be8a0d97f5d (patch) | |
tree | 9cdb40b323cdd0b43c9e62e6cc855f0351bbdc27 /configure.pl | |
parent | 5ed87e70679c51e6fab73b5bc2905a8a2f1d5401 (diff) |
Correct detection of GCC 2.95 for setting -fpermissive. This had been
wrong for a while, which suggests perhaps that 2.95 has finally died out
in the wild. Praise be.
Diffstat (limited to 'configure.pl')
-rwxr-xr-x | configure.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.pl b/configure.pl index 53200b533..f04e2ffe8 100755 --- a/configure.pl +++ b/configure.pl @@ -428,7 +428,7 @@ sub choose_target { my $has_ll_bug = 0; $has_ll_bug = 1 if($gcc_version =~ /4\.[0123]/); $has_ll_bug = 1 if($gcc_version =~ /3\.[34]/); - $has_ll_bug = 1 if($gcc_version =~ /2\.25\.[0-4]/); + $has_ll_bug = 1 if($gcc_version =~ /2\.95\.[0-4]/); $has_ll_bug = 1 if($gcc_version eq ''); $has_ll_bug = 0 if($arch eq 'alpha' or $arch =~ /.*64$/); |