diff options
| author | Ben Elliston <bje@gnu.org> | 2006-04-26 05:42:18 +0000 |
|---|---|---|
| committer | Ben Elliston <bje@gnu.org> | 2006-04-26 05:42:18 +0000 |
| commit | 4e3da806cdd868e31cdaf129c2ec0f3e389ef97a (patch) | |
| tree | ce2d7f275651f4a2dbd62cd2e1ce56d06382d5d6 | |
| parent | 5280f7c33a4d8dc14659e826ef2876ca74a5d85d (diff) | |
| download | config-4e3da806cdd8.tar.gz | |
* config.guess (amd64:FreeBSD:*:*) Detect as x86_64.
* testsuite/config-guess.data: Add test case.
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rwxr-xr-x | config.guess | 4 | ||||
| -rw-r--r-- | testsuite/config-guess.data | 1 |
3 files changed, 10 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2006-04-26 Bruno Haible <bruno@clisp.org> + Ben Elliston <bje@gnu.org> + + * config.guess (amd64:FreeBSD:*:*) Detect as x86_64. + * testsuite/config-guess.data: Add test case. + 2006-03-13 Ben Elliston <bje@gnu.org> Revert these patches at Earnie Boyd's request: diff --git a/config.guess b/config.guess index 22906b3..7149b1b 100755 --- a/config.guess +++ b/config.guess @@ -4,7 +4,7 @@ # 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, # Inc. -timestamp='2006-03-13' +timestamp='2006-04-26' # 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 @@ -771,6 +771,8 @@ EOF case ${UNAME_MACHINE} in pc98) echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + amd64) + echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac diff --git a/testsuite/config-guess.data b/testsuite/config-guess.data index 39cbf03..268366c 100644 --- a/testsuite/config-guess.data +++ b/testsuite/config-guess.data @@ -20,3 +20,4 @@ pc98 7.0 FreeBSD ignored i386-unknown-freebsd7.0 i586 1.0 SolidBSD ignored i586-unknown-solidbsd1.0 i686 5.4-1-686 GNU/kFreeBSD ignored i686-unknown-kfreebsd5.4-gnu EM64T 5.2 Interix ignored x86_64-unknown-interix5.2 +amd64 5.2 FreeBSD ignored x86_64-unknown-freebsd5.2 |
