diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2005-01-02 23:49:01 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2005-01-02 23:49:01 +0000 |
commit | f9f578f0683ff040dd9eee5ca658e310df6ff03f (patch) | |
tree | 37391f01ed3ec4da5aaa8201d513457c8b11edc9 /usr.sbin | |
parent | 5c2aace9ddc4ffb8ef8a9c9b08450d112089660d (diff) |
add zaurus, fix cats entry. ok jakob@ pvalchev@ deraadt@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/bind/config.guess | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/usr.sbin/bind/config.guess b/usr.sbin/bind/config.guess index 6e510829546..dc4045ef36d 100644 --- a/usr.sbin/bind/config.guess +++ b/usr.sbin/bind/config.guess @@ -203,6 +203,9 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in 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 ;; @@ -236,6 +239,9 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in wgrisc:OpenBSD:*:*) echo mipsel-unknown-openbsd${UNAME_RELEASE} exit 0 ;; + zaurus:OpenBSD:*:*) + echo arm-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; *:OpenBSD:*:*) echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE} exit 0 ;; |