diff options
author | Per Bothner <per@bothner.com> | 1994-03-11 20:58:16 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1994-03-11 20:58:16 +0000 |
commit | 545f07da90b71e07b17338ea789135f7d94539ca (patch) | |
tree | f3bf9e92080164b0d2b0f31940c83a8651f16caf | |
parent | 8e4c7b3e255fc2961aa8db48ba0ca99a6b156f4f (diff) | |
download | gdb-545f07da90b71e07b17338ea789135f7d94539ca.zip gdb-545f07da90b71e07b17338ea789135f7d94539ca.tar.gz gdb-545f07da90b71e07b17338ea789135f7d94539ca.tar.bz2 |
* config.guess: Recognize i[34]86-unknown-freebsd.
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | config.guess | 3 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Fri Mar 11 12:52:39 1994 Per Bothner (bothner@kalessin.cygnus.com) + + * config.guess: Recognize i[34]86-unknown-freebsd. + Thu Mar 3 14:24:21 1994 Per Bothner (bothner@kalessin.cygnus.com) * configure.in (noconfigdirs for alpha): Remove libg++ and libio. diff --git a/config.guess b/config.guess index 6d26cab..4efa722 100755 --- a/config.guess +++ b/config.guess @@ -183,6 +183,9 @@ EOF hp3[0-9][05]:NetBSD:*:*) echo m68k-hp-netbsd${UNAME_RELEASE} exit 0 ;; + i[34]86:FreeBSD:*:*) + echo ${UNAME_MACHINE}-unknown-freebsd${UNAME_RELEASE} + exit 0 ;; i[34]86:NetBSD:*:*) echo ${UNAME_MACHINE}-unknown-netbsd${UNAME_RELEASE} exit 0 ;; |