diff options
author | Per Bothner <per@bothner.com> | 1993-06-02 18:55:35 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1993-06-02 18:55:35 +0000 |
commit | cd5d2efdcc3b6d927a0da2d64246a6a5ba19798f (patch) | |
tree | 822612fe80abf77f2f205d95f200c37a64e005db /config.guess | |
parent | 6edfa4877ea2b6bfce8be87a6132cbd68ac72889 (diff) | |
download | gdb-cd5d2efdcc3b6d927a0da2d64246a6a5ba19798f.zip gdb-cd5d2efdcc3b6d927a0da2d64246a6a5ba19798f.tar.gz gdb-cd5d2efdcc3b6d927a0da2d64246a6a5ba19798f.tar.bz2 |
* config.guess: Add support for Motorola Delta 68k, up to r3v7.
Patch from pot@fly.cnuce.cnr.it (Francesco Potorti`).
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config.guess b/config.guess index ee884e0..923e070 100755 --- a/config.guess +++ b/config.guess @@ -114,7 +114,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in exit 0 ;; i[34]86:UNIX_SV:4.*:*) if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then - echo ${UNAME_MACHINE}-unixware-sysv${UNAME_RELEASE} + echo ${UNAME_MACHINE}-univel-sysv${UNAME_RELEASE} else echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE} fi @@ -132,6 +132,8 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in # "miniframe" echo m68010-convergent-sysv exit 0 ;; + M680[234]0:*:R3V[567]*:*) + test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; esac echo '(No uname command or uname output not recognized.)' 1>&2 |