home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / libg++-2.7.1-src.tgz / tar.out / fsf / libg++ / config.guess < prev    next >
Text File  |  1996-09-28  |  16KB  |  567 lines

  1. #! /bin/sh
  2. echo "m68k-unknown-amigaos" ; exit 0    #AmigaOS hack (fnf)
  3. # Attempt to guess a canonical system name.
  4. #   Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
  5. #
  6. # This file is free software; you can redistribute it and/or modify it
  7. # under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful, but
  12. # WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14. # General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program; if not, write to the Free Software
  18. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19. #
  20. # As a special exception to the GNU General Public License, if you
  21. # distribute this file as part of a program that contains a
  22. # configuration script generated by Autoconf, you may include it under
  23. # the same distribution terms that you use for the rest of that program.
  24.  
  25. # Written by Per Bothner <bothner@cygnus.com>.
  26. # The master version of this file is at the FSF in /home/gd/gnu/lib.
  27. #
  28. # This script attempts to guess a canonical system name similar to
  29. # config.sub.  If it succeeds, it prints the system name on stdout, and
  30. # exits with 0.  Otherwise, it exits with 1.
  31. #
  32. # The plan is that this can be called by configure scripts if you
  33. # don't specify an explicit system type (host/target name).
  34. #
  35. # Only a few systems have been added to this list; please add others
  36. # (but try to keep the structure clean).
  37. #
  38.  
  39. # This is needed to find uname on a Pyramid OSx when run in the BSD universe.
  40. # (ghazi@noc.rutgers.edu 8/24/94.)
  41. if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
  42.     PATH=$PATH:/.attbin ; export PATH
  43. fi
  44.  
  45. UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
  46. UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
  47. UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
  48. UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
  49.  
  50. trap 'rm -f dummy.c dummy.o dummy; exit 1' 1 2 15
  51.  
  52. # Note: order is significant - the case branches are not exclusive.
  53.  
  54. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
  55.     alpha:OSF1:V*:*)
  56.     # After 1.2, OSF1 uses "V1.3" for uname -r.
  57.     echo alpha-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^V//'`
  58.     exit 0 ;;
  59.     alpha:OSF1:*:*)
  60.     # 1.2 uses "1.2" for uname -r.
  61.     echo alpha-dec-osf${UNAME_RELEASE}
  62.         exit 0 ;;
  63.     21064:Windows_NT:50:3)
  64.     echo alpha-dec-winnt3.5
  65.     exit 0 ;;
  66.     amiga:NetBSD:*:*)
  67.       echo m68k-cbm-netbsd${UNAME_RELEASE}
  68.       exit 0 ;;
  69.     arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
  70.     echo arm-acorn-riscix${UNAME_RELEASE}
  71.     exit 0;;
  72.     Pyramid*:OSx*:*:*)
  73.     if test "`(/bin/universe) 2>/dev/null`" = att ; then
  74.         echo pyramid-pyramid-sysv3
  75.     else
  76.         echo pyramid-pyramid-bsd
  77.     fi
  78.     exit 0 ;;
  79.     sun4*:SunOS:5.*:*)
  80.     echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
  81.     exit 0 ;;
  82.     i86pc:SunOS:5.*:*)
  83.     echo i386-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
  84.     exit 0 ;;
  85.     sun4*:SunOS:6*:*)
  86.     # According to config.sub, this is the proper way to canonicalize
  87.     # SunOS6.  Hard to guess exactly what SunOS6 will be like, but
  88.     # it's likely to be more like Solaris than SunOS4.
  89.     echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
  90.     exit 0 ;;
  91.     sun4*:SunOS:*:*)
  92.     case "`/usr/bin/arch -k`" in
  93.         Series*|S4*)
  94.         UNAME_RELEASE=`uname -v`
  95.         ;;
  96.     esac
  97.     # Japanese Language versions have a version number like `4.1.3-JL'.
  98.     echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
  99.     exit 0 ;;
  100.     sun3*:SunOS:*:*)
  101.     echo m68k-sun-sunos${UNAME_RELEASE}
  102.     exit 0 ;;
  103.     atari*:NetBSD:*:*)
  104.     echo m68k-atari-netbsd${UNAME_RELEASE}
  105.     exit 0 ;;
  106.     sun3*:NetBSD:*:*)
  107.     echo m68k-sun-netbsd${UNAME_RELEASE}
  108.     exit 0 ;;
  109.     mac68k:NetBSD:*:*)
  110.     echo m68k-apple-netbsd${UNAME_RELEASE}
  111.     exit 0 ;;
  112.     RISC*:ULTRIX:*:*)
  113.     echo mips-dec-ultrix${UNAME_RELEASE}
  114.     exit 0 ;;
  115.     VAX*:ULTRIX*:*:*)
  116.     echo vax-dec-ultrix${UNAME_RELEASE}
  117.     exit 0 ;;
  118.     mips:*:4*:UMIPS)
  119.     echo mips-mips-riscos4sysv
  120.     exit 0 ;;
  121.     mips:*:5*:RISCos)
  122.     echo mips-mips-riscos${UNAME_RELEASE}
  123.     exit 0 ;;
  124.     m88k:CX/UX:7*:*)
  125.     echo m88k-harris-cxux7
  126.     exit 0 ;;
  127.     m88k:*:4*:R4*)
  128.     echo m88k-motorola-sysv4
  129.     exit 0 ;;
  130.     m88k:*:3*:R3*)
  131.     echo m88k-motorola-sysv3
  132.     exit 0 ;;
  133.     AViiON:dgux:*:*)
  134.     if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx \
  135.          -o ${TARGET_BINARY_INTERFACE}x = x ] ; then
  136.         echo m88k-dg-dgux${UNAME_RELEASE}
  137.     else
  138.         echo m88k-dg-dguxbcs${UNAME_RELEASE}
  139.     fi
  140.      exit 0 ;;
  141.     M88*:DolphinOS:*:*)    # DolphinOS (SVR3)
  142.     echo m88k-dolphin-sysv3
  143.     exit 0 ;;
  144.     M88*:*:R3*:*)
  145.     # Delta 88k system running SVR3
  146.     echo m88k-motorola-sysv3
  147.     exit 0 ;;
  148.     XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)
  149.     echo m88k-tektronix-sysv3
  150.     exit 0 ;;
  151.     Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)
  152.     echo m68k-tektronix-bsd
  153.     exit 0 ;;
  154.     *:IRIX*:*:*)
  155.     echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
  156.     exit 0 ;;
  157.    ????????:AIX?:[12].1:2)   # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
  158.     echo romp-ibm-aix      # uname -m gives an 8 hex-code CPU id
  159.     exit 0 ;;              # Note that: echo "'`uname -s`'" gives 'AIX '
  160.     i[34]86:AIX:*:*)
  161.     echo i386-ibm-aix
  162.     exit 0 ;;
  163.     *:AIX:2:3)
  164.     if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
  165.         sed 's/^        //' << EOF >dummy.c
  166.         #include <sys/systemcfg.h>
  167.  
  168.         main()
  169.             {
  170.             if (!__power_pc())
  171.                 exit(1);
  172.             puts("powerpc-ibm-aix3.2.5");
  173.             exit(0);
  174.             }
  175. EOF
  176.         ${CC-cc} dummy.c -o dummy && ./dummy && rm dummy.c dummy && exit 0
  177.         rm -f dummy.c dummy
  178.         echo rs6000-ibm-aix3.2.5
  179.     elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
  180.         echo rs6000-ibm-aix3.2.4
  181.     else
  182.         echo rs6000-ibm-aix3.2
  183.     fi
  184.     exit 0 ;;
  185.     *:AIX:*:4)
  186.     if /usr/sbin/lsattr -EHl proc0 | grep POWER >/dev/null 2>&1; then
  187.         IBM_ARCH=rs6000
  188.     else
  189.         IBM_ARCH=powerpc
  190.     fi
  191.     if [ -x /usr/bin/oslevel ] ; then
  192.         IBM_REV=`/usr/bin/oslevel`
  193.     else
  194.         IBM_REV=4.${UNAME_RELEASE}
  195.     fi
  196.     echo ${IBM_ARCH}-ibm-aix${IBM_REV}
  197.     exit 0 ;;
  198.     *:AIX:*:*)
  199.     echo rs6000-ibm-aix
  200.     exit 0 ;;
  201.     ibmrt:4.4BSD:*|romp-ibm:BSD:*)
  202.     echo romp-ibm-bsd4.4
  203.     exit 0 ;;
  204.     ibmrt:*BSD:*|romp-ibm:BSD:*)            # covers RT/PC NetBSD and
  205.     echo romp-ibm-bsd${UNAME_RELEASE}   # 4.3 with uname added to 
  206.     exit 0 ;;                           # report: romp-ibm BSD 4.3
  207.     *:BOSX:*:*)
  208.     echo rs6000-bull-bosx
  209.     exit 0 ;;
  210.     DPX/2?00:B.O.S.:*:*)
  211.     echo m68k-bull-sysv3
  212.     exit 0 ;;
  213.     9000/[34]??:4.3bsd:1.*:*)
  214.     echo m68k-hp-bsd
  215.     exit 0 ;;
  216.     hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
  217.     echo m68k-hp-bsd4.4
  218.     exit 0 ;;
  219.     9000/[3478]??:HP-UX:*:*)
  220.     case "${UNAME_MACHINE}" in
  221.         9000/31? )            HP_ARCH=m68000 ;;
  222.         9000/[34]?? )         HP_ARCH=m68k ;;
  223.         9000/7?? | 9000/8?[79] ) HP_ARCH=hppa1.1 ;;
  224.         9000/8?? )            HP_ARCH=hppa1.0 ;;
  225.     esac
  226.     HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
  227.     echo ${HP_ARCH}-hp-hpux${HPUX_REV}
  228.     exit 0 ;;
  229.     3050*:HI-UX:*:*)
  230.     sed 's/^    //' << EOF >dummy.c
  231.     #include <unistd.h>
  232.     int
  233.     main ()
  234.     {
  235.       long cpu = sysconf (_SC_CPU_VERSION);
  236.       /* The order matters, because CPU_IS_HP_MC68K erroneously returns
  237.          true for CPU_PA_RISC1_0.  CPU_IS_PA_RISC returns correct
  238.          results, however.  */
  239.       if (CPU_IS_PA_RISC (cpu))
  240.         {
  241.           switch (cpu)
  242.         {
  243.           case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break;
  244.           case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break;
  245.           case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break;
  246.           default: puts ("hppa-hitachi-hiuxwe2"); break;
  247.         }
  248.         }
  249.       else if (CPU_IS_HP_MC68K (cpu))
  250.         puts ("m68k-hitachi-hiuxwe2");
  251.       else puts ("unknown-hitachi-hiuxwe2");
  252.       exit (0);
  253.     }
  254. EOF
  255.     ${CC-cc} dummy.c -o dummy && ./dummy && rm dummy.c dummy && exit 0
  256.     rm -f dummy.c dummy
  257.     echo unknown-hitachi-hiuxwe2
  258.     exit 0 ;;
  259.     9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
  260.     echo hppa1.1-hp-bsd
  261.     exit 0 ;;
  262.     9000/8??:4.3bsd:*:*)
  263.     echo hppa1.0-hp-bsd
  264.     exit 0 ;;
  265.     hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )
  266.     echo hppa1.1-hp-osf
  267.     exit 0 ;;
  268.     hp8??:OSF1:*:*)
  269.     echo hppa1.0-hp-osf
  270.     exit 0 ;;
  271.     parisc*:Lites*:*:*)
  272.     echo hppa1.1-hp-lites
  273.     exit 0 ;;
  274.     C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
  275.     echo c1-convex-bsd
  276.         exit 0 ;;
  277.     C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
  278.     if getsysinfo -f scalar_acc
  279.     then echo c32-convex-bsd
  280.     else echo c2-convex-bsd
  281.     fi
  282.         exit 0 ;;
  283.     C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)
  284.     echo c34-convex-bsd
  285.         exit 0 ;;
  286.     C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)
  287.     echo c38-convex-bsd
  288.         exit 0 ;;
  289.     C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
  290.     echo c4-convex-bsd
  291.         exit 0 ;;
  292.     CRAY*X-MP:*:*:*)
  293.     echo xmp-cray-unicos
  294.         exit 0 ;;
  295.     CRAY*Y-MP:*:*:*)
  296.     echo ymp-cray-unicos${UNAME_RELEASE}
  297.     exit 0 ;;
  298.     CRAY*C90:*:*:*)
  299.     echo c90-cray-unicos${UNAME_RELEASE}
  300.     exit 0 ;;
  301.     CRAY-2:*:*:*)
  302.     echo cray2-cray-unicos
  303.         exit 0 ;;
  304.     hp3[0-9][05]:NetBSD:*:*)
  305.     echo m68k-hp-netbsd${UNAME_RELEASE}
  306.     exit 0 ;;
  307.     i[34]86:BSD/386:*:* | *:BSD/OS:*:*)
  308.     echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
  309.     exit 0 ;;
  310.     *:FreeBSD:*:*)
  311.     echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
  312.     exit 0 ;;
  313.     *:NetBSD:*:*)
  314.     echo ${UNAME_MACHINE}-unknown-netbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
  315.     exit 0 ;;
  316.     *:GNU:*:*)
  317.     echo `echo ${UNAME_MACHINE}|sed -e 's,/.*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
  318.     exit 0 ;;
  319.     *:Linux:*:*)
  320.     # The BFD linker knows what the default object file format is, so
  321.     # first see if it will tell us.
  322.     ld_help_string=`ld --help 2>&1`
  323.     if echo $ld_help_string | grep >/dev/null 2>&1 "supported emulations: elf_i[345]86"; then
  324.       echo "${UNAME_MACHINE}-unknown-linux" ; exit 0
  325.     elif echo $ld_help_string | grep >/dev/null 2>&1 "supported emulations: i[345]86linux"; then
  326.       echo "${UNAME_MACHINE}-unknown-linuxaout" ; exit 0
  327.     elif echo $ld_help_string | grep >/dev/null 2>&1 "supported emulations: i[345]86coff"; then
  328.       echo "${UNAME_MACHINE}-unknown-linuxcoff" ; exit 0
  329.     elif test "${UNAME_MACHINE}" = "alpha" ; then
  330.       echo alpha-unknown-linux ; exit 0
  331.     else
  332.       # Either a pre-BFD a.out linker (linuxoldld) or one that does not give us
  333.       # useful --help.  Gcc wants to distinguish between linuxoldld and linuxaout.
  334.       test ! -d /usr/lib/ldscripts/. \
  335.         && echo "${UNAME_MACHINE}-unknown-linuxoldld" && exit 0
  336.       # Determine whether the default compiler is a.out or elf
  337.       cat >dummy.c <<EOF
  338. main(argc, argv)
  339. int argc;
  340. char *argv[];
  341. {
  342. #ifdef __ELF__
  343.   printf ("%s-unknown-linux\n", argv[1]);
  344. #else
  345.   printf ("%s-unknown-linuxaout\n", argv[1]);
  346. #endif
  347.   return 0;
  348. }
  349. EOF
  350.       ${CC-cc} dummy.c -o dummy 2>/dev/null && ./dummy "${UNAME_MACHINE}" && rm dummy.c dummy && exit 0
  351.       rm -f dummy.c dummy
  352.     fi ;;
  353. # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.  earlier versions
  354. # are messed up and put the nodename in both sysname and nodename.
  355.     i[34]86:DYNIX/ptx:4*:*)
  356.     echo i386-sequent-sysv4
  357.     exit 0 ;;
  358.     i[34]86:*:4.*:* | i[34]86:SYSTEM_V:4.*:*)
  359.     if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
  360.         echo ${UNAME_MACHINE}-univel-sysv${UNAME_RELEASE}
  361.     else
  362.         echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}
  363.     fi
  364.     exit 0 ;;
  365.     i[34]86:*:3.2:*)
  366.     if test -f /usr/options/cb.name; then
  367.         UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
  368.         echo ${UNAME_MACHINE}-unknown-isc$UNAME_REL
  369.     elif /bin/uname -X 2>/dev/null >/dev/null ; then
  370.         UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')`
  371.         (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486
  372.         echo ${UNAME_MACHINE}-unknown-sco$UNAME_REL
  373.     else
  374.         echo ${UNAME_MACHINE}-unknown-sysv32
  375.     fi
  376.     exit 0 ;;
  377.     Intel:Mach:3*:*)
  378.     echo i386-unknown-mach3
  379.     exit 0 ;;
  380.     paragon:*:*:*)
  381.     echo i860-intel-osf1
  382.     exit 0 ;;
  383.     i860:*:4.*:*) # i860-SVR4
  384.     if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
  385.       echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
  386.     else # Add other i860-SVR4 vendors below as they are discovered.
  387.       echo i860-unknown-sysv${UNAME_RELEASE}  # Unknown i860-SVR4
  388.     fi
  389.     exit 0 ;;
  390.     mini*:CTIX:SYS*5:*)
  391.     # "miniframe"
  392.     echo m68010-convergent-sysv
  393.     exit 0 ;;
  394.     M680[234]0:*:R3V[567]*:*)
  395.     test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;;
  396.     3[34]??:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0)
  397.         uname -p 2>/dev/null | grep 86 >/dev/null \
  398.           && echo i486-ncr-sysv4.3 && exit 0 ;;
  399.     3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
  400.         uname -p 2>/dev/null | grep 86 >/dev/null \
  401.           && echo i486-ncr-sysv4 && exit 0 ;;
  402.     m680[234]0:LynxOS:2.[23]*:*)
  403.     echo m68k-lynx-lynxos${UNAME_RELEASE}
  404.     exit 0 ;;
  405.     mc68030:UNIX_System_V:4.*:*)
  406.     echo m68k-atari-sysv4
  407.     exit 0 ;;
  408.     i[34]86:LynxOS:2.[23]*:*)
  409.     echo i386-lynx-lynxos${UNAME_RELEASE}
  410.     exit 0 ;;
  411.     TSUNAMI:LynxOS:2.[23]*:*)
  412.     echo sparc-lynx-lynxos${UNAME_RELEASE}
  413.     exit 0 ;;
  414.     rs6000:LynxOS:2.[23]*:*)
  415.     echo rs6000-lynx-lynxos${UNAME_RELEASE}
  416.     exit 0 ;;
  417.     RM*:SINIX-*:*:*)
  418.     echo mips-sni-sysv4
  419.     exit 0 ;;
  420.     *:SINIX-*:*:*)
  421.     if uname -p 2>/dev/null >/dev/null ; then
  422.         UNAME_MACHINE=`(uname -p) 2>/dev/null`
  423.         echo ${UNAME_MACHINE}-sni-sysv4
  424.     else
  425.         echo ns32k-sni-sysv
  426.     fi
  427.     exit 0 ;;
  428. esac
  429.  
  430. #echo '(No uname command or uname output not recognized.)' 1>&2
  431. #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2
  432.  
  433. cat >dummy.c <<EOF
  434. #ifdef _SEQUENT_
  435. # include <sys/types.h>
  436. # include <sys/utsname.h>
  437. #endif
  438. main ()
  439. {
  440. #if defined (sony)
  441. #if defined (MIPSEB)
  442.   /* BFD wants "bsd" instead of "newsos".  Perhaps BFD should be changed,
  443.      I don't know....  */
  444.   printf ("mips-sony-bsd\n"); exit (0);
  445. #else
  446. #include <sys/param.h>
  447.   printf ("m68k-sony-newsos%s\n",
  448. #ifdef NEWSOS4
  449.           "4"
  450. #else
  451.       ""
  452. #endif
  453.          ); exit (0);
  454. #endif
  455. #endif
  456.  
  457. #if defined (__arm) && defined (__acorn) && defined (__unix)
  458.   printf ("arm-acorn-riscix"); exit (0);
  459. #endif
  460.  
  461. #if defined (hp300) && !defined (hpux)
  462.   printf ("m68k-hp-bsd\n"); exit (0);
  463. #endif
  464.  
  465. #if defined (NeXT)
  466. #if !defined (__ARCHITECTURE__)
  467. #define __ARCHITECTURE__ "m68k"
  468. #endif
  469.   int version;
  470.   version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
  471.   printf ("%s-next-nextstep%s\n", __ARCHITECTURE__,  version==2 ? "2" : "3");
  472.   exit (0);
  473. #endif
  474.  
  475. #if defined (MULTIMAX) || defined (n16)
  476. #if defined (UMAXV)
  477.   printf ("ns32k-encore-sysv\n"); exit (0);
  478. #else
  479. #if defined (CMU)
  480.   printf ("ns32k-encore-mach\n"); exit (0);
  481. #else
  482.   printf ("ns32k-encore-bsd\n"); exit (0);
  483. #endif
  484. #endif
  485. #endif
  486.  
  487. #if defined (__386BSD__)
  488.   printf ("i386-unknown-bsd\n"); exit (0);
  489. #endif
  490.  
  491. #if defined (sequent)
  492. #if defined (i386)
  493.   printf ("i386-sequent-dynix\n"); exit (0);
  494. #endif
  495. #if defined (ns32000)
  496.   printf ("ns32k-sequent-dynix\n"); exit (0);
  497. #endif
  498. #endif
  499.  
  500. #if defined (_SEQUENT_)
  501.     struct utsname un;
  502.  
  503.     uname(&un);
  504.  
  505.     if (strncmp(un.version, "V2", 2) == 0) {
  506.     printf ("i386-sequent-ptx2\n"); exit (0);
  507.     }
  508.     if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
  509.     printf ("i386-sequent-ptx1\n"); exit (0);
  510.     }
  511.     printf ("i386-sequent-ptx\n"); exit (0);
  512.  
  513. #endif
  514.  
  515. #if defined (vax)
  516. #if !defined (ultrix)
  517.   printf ("vax-dec-bsd\n"); exit (0);
  518. #else
  519.   printf ("vax-dec-ultrix\n"); exit (0);
  520. #endif
  521. #endif
  522.  
  523. #if defined (alliant) && defined (i860)
  524.   printf ("i860-alliant-bsd\n"); exit (0);
  525. #endif
  526.  
  527.   exit (1);
  528. }
  529. EOF
  530.  
  531. ${CC-cc} dummy.c -o dummy 2>/dev/null && ./dummy && rm dummy.c dummy && exit 0
  532. rm -f dummy.c dummy
  533.  
  534. # Apollos put the system type in the environment.
  535.  
  536. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; }
  537.  
  538. # Convex versions that predate uname can use getsysinfo(1)
  539.  
  540. if [ -x /usr/convex/getsysinfo ]
  541. then
  542.     case `getsysinfo -f cpu_type` in
  543.     c1*)
  544.     echo c1-convex-bsd
  545.     exit 0 ;;
  546.     c2*)
  547.     if getsysinfo -f scalar_acc
  548.     then echo c32-convex-bsd
  549.     else echo c2-convex-bsd
  550.     fi
  551.     exit 0 ;;
  552.     c34*)
  553.     echo c34-convex-bsd
  554.     exit 0 ;;
  555.     c38*)
  556.     echo c38-convex-bsd
  557.     exit 0 ;;
  558.     c4*)
  559.     echo c4-convex-bsd
  560.     exit 0 ;;
  561.     esac
  562. fi
  563.  
  564. #echo '(Unable to guess system type)' 1>&2
  565.  
  566. exit 1
  567.