]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
1999-03-11 Ben Elliston <bje@cygnus.com>
authorBen Elliston <bje+keyword+gnu.7caf74@air.net.au>
Wed, 10 Mar 1999 04:43:57 +0000 (04:43 +0000)
committerBen Elliston <bje+keyword+gnu.7caf74@air.net.au>
Wed, 10 Mar 1999 04:43:57 +0000 (04:43 +0000)
* config.guess: Recognise MiNT and TOS on Atari machines.
Contributed by Guido Flohr <gufl0000@stud.uni-sb.de>.
* config.sub: Add aliases for MiNT.

ChangeLog
config.guess
config.sub

index 0ba4b7bbdacef85a1af2d57c6565e17bf5c6cc5b..02db6f7fbf2ea754a72a02089e5642a72c78badd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+1999-03-11  Ben Elliston  <bje@cygnus.com>
+
+       * config.guess: Recognise MiNT and TOS on Atari machines.
+       Contributed by Guido Flohr <gufl0000@stud.uni-sb.de>.
+
+       * config.sub: Add aliases for MiNT.
+       
 1999-03-10  Ben Elliston  <bje@cygnus.com>
 
        * config.guess: Recognise HP 9000/800. Merged from the master
index e26f764191a79b6422c31b015125fbcace23a471..ae302132ae9adbcaea34c7a5c8df6926ddaec782 100755 (executable)
@@ -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 ;;
index d5db77328fb89bf456e59ef0ef39cfb24f9a2de2..b3a466d90bc06c240d4639a72f321f16a2945770 100755 (executable)
@@ -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/"`
                ;;