# HG changeset patch # User "Yann E. MORIN" # Date 1176216915 0 # Node ID 78d0b570baf779979d9f7a3ac3b7fb5222a91eee # Parent 3b50052c0586cf37ece25838df09b0fa0240c22e Update config.guess. Minor comment fix. diff -r 3b50052c0586 -r 78d0b570baf7 scripts/getExtractPatch.sh --- a/scripts/getExtractPatch.sh Sat Mar 31 19:45:25 2007 +0000 +++ b/scripts/getExtractPatch.sh Tue Apr 10 14:55:15 2007 +0000 @@ -19,7 +19,7 @@ esac CT_DoGetFileWget() { - # Need to return true because it is legitimate not to find the tarball at + # Need to return true because it is legitimate to not find the tarball at # some of the provided URLs (think about snapshots, different layouts for # different gcc versions, etc...) # Some (very old!) FTP server might not support the passive mode, thus diff -r 3b50052c0586 -r 78d0b570baf7 tools/config.guess --- a/tools/config.guess Sat Mar 31 19:45:25 2007 +0000 +++ b/tools/config.guess Tue Apr 10 14:55:15 2007 +0000 @@ -4,7 +4,7 @@ # 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, # Inc. -timestamp='2007-01-15' +timestamp='2007-03-06' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -791,12 +791,15 @@ i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; - x86:Interix*:[3456]*) - echo i586-pc-interix${UNAME_RELEASE} - exit ;; - EM64T:Interix*:[3456]* | authenticamd:Interix*:[3456]*) - echo x86_64-unknown-interix${UNAME_RELEASE} - exit ;; + *:Interix*:[3456]*) + case ${UNAME_MACHINE} in + x86) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; + EM64T | authenticamd) + echo x86_64-unknown-interix${UNAME_RELEASE} + exit ;; + esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;;