2004-02-16 Brad Smith <brad@comstyle.com>

* config.guess: Recognize OpenBSD on AMD64 and CATS hardware.
This commit is contained in:
Ben Elliston 2004-02-16 09:45:17 +00:00
parent ba010928de
commit fb0b469f40
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-02-16 Brad Smith <brad@comstyle.com>
* config.guess: Recognize OpenBSD on AMD64 and CATS hardware.
2004-02-11 Ben Elliston <bje@wasabisystems.com>
* config.sub (abacus): Add.

8
config.guess vendored
View File

@ -3,7 +3,7 @@
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
# 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
timestamp='2004-02-02'
timestamp='2004-02-16'
# 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
@ -197,12 +197,18 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
echo "${machine}-${os}${release}"
exit 0 ;;
amd64:OpenBSD:*:*)
echo x86_64-unknown-openbsd${UNAME_RELEASE}
exit 0 ;;
amiga:OpenBSD:*:*)
echo m68k-unknown-openbsd${UNAME_RELEASE}
exit 0 ;;
arc:OpenBSD:*:*)
echo mipsel-unknown-openbsd${UNAME_RELEASE}
exit 0 ;;
cats:OpenBSD:*:*)
echo arm-unknown-openbsd${UNAME_RELEASE}
exit 0 ;;
hp300:OpenBSD:*:*)
echo m68k-unknown-openbsd${UNAME_RELEASE}
exit 0 ;;