diff options
author | Richard Kenner <kenner@gnu.org> | 1995-05-05 09:50:51 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gnu.org> | 1995-05-05 09:50:51 +0000 |
commit | 1f1c1b2bb56d34649551e14b4be0af173ebc9607 (patch) | |
tree | 7fac7f9008ceaeb7114cb17a58e671b7c908abf4 /config.guess | |
parent | e4448b6f58406744ff1a5f400b492ba27e466b56 (diff) | |
download | glibc-1f1c1b2bb56d34649551e14b4be0af173ebc9607.tar.gz glibc-1f1c1b2bb56d34649551e14b4be0af173ebc9607.tar.xz glibc-1f1c1b2bb56d34649551e14b4be0af173ebc9607.zip |
Add more NetBSD cases: atrai, sun3*, and mac68k.
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config.guess b/config.guess index f002f48361..60ef93a69d 100755 --- a/config.guess +++ b/config.guess @@ -93,6 +93,15 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit 0 ;; + atari*:NetBSD:*:*) + echo m68k-atari-netbsd${UNAME_RELEASE} + exit 0 ;; + sun3*:NetBSD:*:*) + echo m68k-sun-netbsd${UNAME_RELEASE} + exit 0 ;; + mac68k:NetBSD:*:*) + echo m68k-apple-netbsd${UNAME_RELEASE} + exit 0 ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit 0 ;; |