From: Ben Elliston Date: Wed, 10 Mar 1999 04:43:57 +0000 (+0000) Subject: 1999-03-11 Ben Elliston X-Git-Tag: experimental-branchpoint~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=195e79e69a01f5f724866aec680f92880cdff054;p=thirdparty%2Fautoconf.git 1999-03-11 Ben Elliston * config.guess: Recognise MiNT and TOS on Atari machines. Contributed by Guido Flohr . * config.sub: Add aliases for MiNT. --- diff --git a/ChangeLog b/ChangeLog index 0ba4b7bb..02db6f7f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +1999-03-11 Ben Elliston + + * config.guess: Recognise MiNT and TOS on Atari machines. + Contributed by Guido Flohr . + + * config.sub: Add aliases for MiNT. + 1999-03-10 Ben Elliston * config.guess: Recognise HP 9000/800. Merged from the master diff --git a/config.guess b/config.guess index e26f7641..ae302132 100755 --- a/config.guess +++ b/config.guess @@ -203,6 +203,32 @@ EOF atari*:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; + # The situation for MiNT is a little confusing. The machine name + # can be virtually everything (everything which is not + # "atarist" or "atariste" at least should have a processor + # > m68000). The system name ranges from "MiNT" over "FreeMiNT" + # to the lowercase version "mint" (or "freemint"). Finally + # the system name "TOS" denotes a system which is actually not + # MiNT. But MiNT is downward compatible to TOS, so this should + # be no problem. + atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit 0 ;; + atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit 0 ;; + *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit 0 ;; + milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) + echo m68k-milan-mint${UNAME_RELEASE} + exit 0 ;; + hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) + echo m68k-hades-mint${UNAME_RELEASE} + exit 0 ;; + *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) + echo m68k-unknown-mint${UNAME_RELEASE} + exit 0 ;; sun3*:NetBSD:*:*) echo m68k-sun-netbsd${UNAME_RELEASE} exit 0 ;; diff --git a/config.sub b/config.sub index d5db7732..b3a466d9 100755 --- a/config.sub +++ b/config.sub @@ -624,6 +624,10 @@ case $basic_machine in xps | xps100) basic_machine=xps100-honeywell ;; + *mint | *MiNT) + basic_machine=m68k-atari + os=-mint + ;; none) basic_machine=none-none os=-none @@ -784,6 +788,9 @@ case $os in -xenix) os=-xenix ;; + -*mint | -*MiNT) + os=-mint + ;; -none) ;; *) @@ -908,6 +915,9 @@ case $basic_machine in f301-fujitsu) os=-uxpv ;; + *-atari*) + os=-mint + ;; *) os=-none ;; @@ -962,6 +972,9 @@ case $basic_machine in -aux*) vendor=apple ;; + -*mint | -*MiNT) + vendor=atari + ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;;