diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-10-13 21:29:33 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-10-13 21:29:33 +0200 |
commit | 151fc88916ca2d6fb1fc3b945dbd8912ff162c94 (patch) | |
tree | d00650ee42daf5230d03a5e419664695c396ab02 /config.guess | |
parent | fb5a67778f7eeb008a515988d336ae078e5e6121 (diff) | |
parent | d45f10d95061489b135987cc3168207d0ed4aa7b (diff) | |
download | egawk-151fc88916ca2d6fb1fc3b945dbd8912ff162c94.tar.gz egawk-151fc88916ca2d6fb1fc3b945dbd8912ff162c94.tar.bz2 egawk-151fc88916ca2d6fb1fc3b945dbd8912ff162c94.zip |
Merge branch 'gawk-4.0-stable'
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/config.guess b/config.guess index aa04f04b..137bedf2 100755 --- a/config.guess +++ b/config.guess @@ -4,7 +4,7 @@ # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, # 2011, 2012 Free Software Foundation, Inc. -timestamp='2012-06-17' +timestamp='2012-08-14' # 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 @@ -805,6 +805,9 @@ EOF i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; + *:MINGW64*:*) + echo ${UNAME_MACHINE}-pc-mingw64 + exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; @@ -1205,6 +1208,9 @@ EOF BePC:Haiku:*:*) # Haiku running on Intel PC compatible. echo i586-pc-haiku exit ;; + x86_64:Haiku:*:*) + echo x86_64-unknown-haiku + exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; @@ -1334,9 +1340,6 @@ EOF exit ;; esac -#echo '(No uname command or uname output not recognized.)' 1>&2 -#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 - eval $set_cc_for_build cat >$dummy.c <<EOF #ifdef _SEQUENT_ |