Update config.guess.
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Apr 10 14:55:15 2007 +0000 (2007-04-10)
changeset 2378d0b570baf7
parent 22 3b50052c0586
child 24 b83d8c1afd79
Update config.guess.
Minor comment fix.
scripts/getExtractPatch.sh
tools/config.guess
     1.1 --- a/scripts/getExtractPatch.sh	Sat Mar 31 19:45:25 2007 +0000
     1.2 +++ b/scripts/getExtractPatch.sh	Tue Apr 10 14:55:15 2007 +0000
     1.3 @@ -19,7 +19,7 @@
     1.4  esac
     1.5  
     1.6  CT_DoGetFileWget() {
     1.7 -    # Need to return true because it is legitimate not to find the tarball at
     1.8 +    # Need to return true because it is legitimate to not find the tarball at
     1.9      # some of the provided URLs (think about snapshots, different layouts for
    1.10      # different gcc versions, etc...)
    1.11      # Some (very old!) FTP server might not support the passive mode, thus
     2.1 --- a/tools/config.guess	Sat Mar 31 19:45:25 2007 +0000
     2.2 +++ b/tools/config.guess	Tue Apr 10 14:55:15 2007 +0000
     2.3 @@ -4,7 +4,7 @@
     2.4  #   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
     2.5  #   Inc.
     2.6  
     2.7 -timestamp='2007-01-15'
     2.8 +timestamp='2007-03-06'
     2.9  
    2.10  # This file is free software; you can redistribute it and/or modify it
    2.11  # under the terms of the GNU General Public License as published by
    2.12 @@ -791,12 +791,15 @@
    2.13      i*:PW*:*)
    2.14  	echo ${UNAME_MACHINE}-pc-pw32
    2.15  	exit ;;
    2.16 -    x86:Interix*:[3456]*)
    2.17 -	echo i586-pc-interix${UNAME_RELEASE}
    2.18 -	exit ;;
    2.19 -    EM64T:Interix*:[3456]* | authenticamd:Interix*:[3456]*)
    2.20 -	echo x86_64-unknown-interix${UNAME_RELEASE}
    2.21 -	exit ;;
    2.22 +    *:Interix*:[3456]*)
    2.23 +    	case ${UNAME_MACHINE} in
    2.24 +	    x86) 
    2.25 +		echo i586-pc-interix${UNAME_RELEASE}
    2.26 +		exit ;;
    2.27 +	    EM64T | authenticamd)
    2.28 +		echo x86_64-unknown-interix${UNAME_RELEASE}
    2.29 +		exit ;;
    2.30 +	esac ;;
    2.31      [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
    2.32  	echo i${UNAME_MACHINE}-pc-mks
    2.33  	exit ;;