diff options
author | lloyd <[email protected]> | 2008-09-30 13:53:24 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-09-30 13:53:24 +0000 |
commit | 7ca3d4e4a8289600d66aafc5d8f746cde0b47beb (patch) | |
tree | 62db1489fe223bfcc70809188b3819ed2c137501 /configure.pl | |
parent | ed51fe5c3d095d307c3ace5c2f3ef37bd1ac80dd (diff) |
Better support for MinGW/MSYS, sent by Zbigniew Zagorski
Diffstat (limited to 'configure.pl')
-rwxr-xr-x | configure.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.pl b/configure.pl index a80927a25..a8f0b9d41 100755 --- a/configure.pl +++ b/configure.pl @@ -1800,6 +1800,7 @@ sub guess_cpu_from_this my $cpu = ''; $cpu = 'ia32' if($cpuinfo =~ /x86/); + $cpu = 'ia32' if($cpuinfo =~ /i686/); $cpu = 'amd64' if($cpuinfo =~ /x86-64/); $cpu = 'amd64' if($cpuinfo =~ /x86_64/); |