]> git.sur5r.net Git - openldap/blob - build/config.guess
Fix previous unbind fix.
[openldap] / build / config.guess
1 #! /bin/sh
2 # Attempt to guess a canonical system name.
3 #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
4 #   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 # Portions Copyright 1998-2001 OpenLDAP Foundation.
26 # This file is distributed with OpenLDAP Software, which contains a
27 # configuration script generated by autoconf and is distributable
28 # under the same distributions terms as OpenLDAP inself.
29 # See the OpenLDAP COPYRIGHT and LICENSE file for details.
30
31 # Written by Per Bothner <bothner@cygnus.com>.
32 # Please send patches to <config-patches@gnu.org>.
33 #
34 # This script attempts to guess a canonical system name similar to
35 # config.sub.  If it succeeds, it prints the system name on stdout, and
36 # exits with 0.  Otherwise, it exits with 1.
37 #
38 # The plan is that this can be called by configure scripts if you
39 # don't specify an explicit system type (host/target name).
40 #
41 # Only a few systems have been added to this list; please add others
42 # (but try to keep the structure clean).
43 #
44
45 # Use $HOST_CC if defined. $CC may point to a cross-compiler
46 if test x"$CC_FOR_BUILD" = x; then
47   if test x"$HOST_CC" != x; then
48     CC_FOR_BUILD="$HOST_CC"
49   else
50     if test x"$CC" != x; then
51       CC_FOR_BUILD="$CC"
52     else
53       CC_FOR_BUILD=cc
54     fi
55   fi
56 fi
57
58
59 # This is needed to find uname on a Pyramid OSx when run in the BSD universe.
60 # (ghazi@noc.rutgers.edu 8/24/94.)
61 if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
62         PATH=$PATH:/.attbin ; export PATH
63 fi
64
65 UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
66 UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
67 UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
68 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
69
70 dummy=dummy-$$
71 trap 'rm -f $dummy.c $dummy.o $dummy; exit 1' 1 2 15
72
73 # Note: order is significant - the case branches are not exclusive.
74
75 case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
76     *:NetBSD:*:*)
77         # Netbsd (nbsd) targets should (where applicable) match one or
78         # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*,
79         # *-*-netbsdecoff* and *-*-netbsd*.  For targets that recently
80         # switched to ELF, *-*-netbsd* would select the old
81         # object file format.  This provides both forward
82         # compatibility and a consistent mechanism for selecting the
83         # object file format.
84         # Determine the machine/vendor (is the vendor relevant).
85         case "${UNAME_MACHINE}" in
86             amiga) machine=m68k-cbm ;;
87             arm32) machine=arm-unknown ;;
88             atari*) machine=m68k-atari ;;
89             sun3*) machine=m68k-sun ;;
90             mac68k) machine=m68k-apple ;;
91             macppc) machine=powerpc-apple ;;
92             hp3[0-9][05]) machine=m68k-hp ;;
93             ibmrt|romp-ibm) machine=romp-ibm ;;
94             *) machine=${UNAME_MACHINE}-unknown ;;
95         esac
96         # The Operating System including object format.
97         if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
98                 | grep __ELF__ >/dev/null
99         then
100             # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout).
101             # Return netbsd for either.  FIX?
102             os=netbsd
103         else
104             os=netbsdelf
105         fi
106         # The OS release
107         release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
108         # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
109         # contains redundant information, the shorter form:
110         # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
111         echo "${machine}-${os}${release}"
112         exit 0 ;;
113     alpha:OSF1:*:*)
114         if test $UNAME_RELEASE = "V4.0"; then
115                 UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
116         fi
117         # A Vn.n version is a released version.
118         # A Tn.n version is a released field test version.
119         # A Xn.n version is an unreleased experimental baselevel.
120         # 1.2 uses "1.2" for uname -r.
121         cat <<EOF >$dummy.s
122         .data
123 \$Lformat:
124         .byte 37,100,45,37,120,10,0     # "%d-%x\n"
125
126         .text
127         .globl main
128         .align 4
129         .ent main
130 main:
131         .frame \$30,16,\$26,0
132         ldgp \$29,0(\$27)
133         .prologue 1
134         .long 0x47e03d80 # implver \$0
135         lda \$2,-1
136         .long 0x47e20c21 # amask \$2,\$1
137         lda \$16,\$Lformat
138         mov \$0,\$17
139         not \$1,\$18
140         jsr \$26,printf
141         ldgp \$29,0(\$26)
142         mov 0,\$16
143         jsr \$26,exit
144         .end main
145 EOF
146         $CC_FOR_BUILD $dummy.s -o $dummy 2>/dev/null
147         if test "$?" = 0 ; then
148                 case `./$dummy` in
149                         0-0)
150                                 UNAME_MACHINE="alpha"
151                                 ;;
152                         1-0)
153                                 UNAME_MACHINE="alphaev5"
154                                 ;;
155                         1-1)
156                                 UNAME_MACHINE="alphaev56"
157                                 ;;
158                         1-101)
159                                 UNAME_MACHINE="alphapca56"
160                                 ;;
161                         2-303)
162                                 UNAME_MACHINE="alphaev6"
163                                 ;;
164                         2-307)
165                                 UNAME_MACHINE="alphaev67"
166                                 ;;
167                 esac
168         fi
169         rm -f $dummy.s $dummy
170         echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
171         exit 0 ;;
172     Alpha\ *:Windows_NT*:*)
173         # How do we know it's Interix rather than the generic POSIX subsystem?
174         # Should we change UNAME_MACHINE based on the output of uname instead
175         # of the specific Alpha model?
176         echo alpha-pc-interix
177         exit 0 ;;
178     21064:Windows_NT:50:3)
179         echo alpha-dec-winnt3.5
180         exit 0 ;;
181     Amiga*:UNIX_System_V:4.0:*)
182         echo m68k-cbm-sysv4
183         exit 0;;
184     amiga:OpenBSD:*:*)
185         echo m68k-unknown-openbsd${UNAME_RELEASE}
186         exit 0 ;;
187     *:[Aa]miga[Oo][Ss]:*:*)
188         echo ${UNAME_MACHINE}-unknown-amigaos
189         exit 0 ;;
190     arc64:OpenBSD:*:*)
191         echo mips64el-unknown-openbsd${UNAME_RELEASE}
192         exit 0 ;;
193     arc:OpenBSD:*:*)
194         echo mipsel-unknown-openbsd${UNAME_RELEASE}
195         exit 0 ;;
196     hkmips:OpenBSD:*:*)
197         echo mips-unknown-openbsd${UNAME_RELEASE}
198         exit 0 ;;
199     pmax:OpenBSD:*:*)
200         echo mipsel-unknown-openbsd${UNAME_RELEASE}
201         exit 0 ;;
202     sgi:OpenBSD:*:*)
203         echo mips-unknown-openbsd${UNAME_RELEASE}
204         exit 0 ;;
205     wgrisc:OpenBSD:*:*)
206         echo mipsel-unknown-openbsd${UNAME_RELEASE}
207         exit 0 ;;
208     *:OS/390:*:*)
209         echo i370-ibm-openedition
210         exit 0 ;;
211     arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
212         echo arm-acorn-riscix${UNAME_RELEASE}
213         exit 0;;
214     SR2?01:HI-UX/MPP:*:*)
215         echo hppa1.1-hitachi-hiuxmpp
216         exit 0;;
217     Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*)
218         # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE.
219         if test "`(/bin/universe) 2>/dev/null`" = att ; then
220                 echo pyramid-pyramid-sysv3
221         else
222                 echo pyramid-pyramid-bsd
223         fi
224         exit 0 ;;
225     NILE*:*:*:dcosx)
226         echo pyramid-pyramid-svr4
227         exit 0 ;;
228     sun4H:SunOS:5.*:*)
229         echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
230         exit 0 ;;
231     sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
232         echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
233         exit 0 ;;
234     i86pc:SunOS:5.*:*)
235         echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
236         exit 0 ;;
237     sun4*:SunOS:6*:*)
238         # According to config.sub, this is the proper way to canonicalize
239         # SunOS6.  Hard to guess exactly what SunOS6 will be like, but
240         # it's likely to be more like Solaris than SunOS4.
241         echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
242         exit 0 ;;
243     sun4*:SunOS:*:*)
244         case "`/usr/bin/arch -k`" in
245             Series*|S4*)
246                 UNAME_RELEASE=`uname -v`
247                 ;;
248         esac
249         # Japanese Language versions have a version number like `4.1.3-JL'.
250         echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
251         exit 0 ;;
252     sun3*:SunOS:*:*)
253         echo m68k-sun-sunos${UNAME_RELEASE}
254         exit 0 ;;
255     sun*:*:4.2BSD:*)
256         UNAME_RELEASE=`(head -1 /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
257         test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3
258         case "`/bin/arch`" in
259             sun3)
260                 echo m68k-sun-sunos${UNAME_RELEASE}
261                 ;;
262             sun4)
263                 echo sparc-sun-sunos${UNAME_RELEASE}
264                 ;;
265         esac
266         exit 0 ;;
267     aushp:SunOS:*:*)
268         echo sparc-auspex-sunos${UNAME_RELEASE}
269         exit 0 ;;
270     atari*:OpenBSD:*:*)
271         echo m68k-unknown-openbsd${UNAME_RELEASE}
272         exit 0 ;;
273     # The situation for MiNT is a little confusing.  The machine name
274     # can be virtually everything (everything which is not
275     # "atarist" or "atariste" at least should have a processor
276     # > m68000).  The system name ranges from "MiNT" over "FreeMiNT"
277     # to the lowercase version "mint" (or "freemint").  Finally
278     # the system name "TOS" denotes a system which is actually not
279     # MiNT.  But MiNT is downward compatible to TOS, so this should
280     # be no problem.
281     atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
282         echo m68k-atari-mint${UNAME_RELEASE}
283         exit 0 ;;
284     atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
285         echo m68k-atari-mint${UNAME_RELEASE}
286         exit 0 ;;
287     *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
288         echo m68k-atari-mint${UNAME_RELEASE}
289         exit 0 ;;
290     milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
291         echo m68k-milan-mint${UNAME_RELEASE}
292         exit 0 ;;
293     hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
294         echo m68k-hades-mint${UNAME_RELEASE}
295         exit 0 ;;
296     *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
297         echo m68k-unknown-mint${UNAME_RELEASE}
298         exit 0 ;;
299     sun3*:OpenBSD:*:*)
300         echo m68k-unknown-openbsd${UNAME_RELEASE}
301         exit 0 ;;
302     mac68k:OpenBSD:*:*)
303         echo m68k-unknown-openbsd${UNAME_RELEASE}
304         exit 0 ;;
305     mvme68k:OpenBSD:*:*)
306         echo m68k-unknown-openbsd${UNAME_RELEASE}
307         exit 0 ;;
308     mvme88k:OpenBSD:*:*)
309         echo m88k-unknown-openbsd${UNAME_RELEASE}
310         exit 0 ;;
311     powerpc:machten:*:*)
312         echo powerpc-apple-machten${UNAME_RELEASE}
313         exit 0 ;;
314     RISC*:Mach:*:*)
315         echo mips-dec-mach_bsd4.3
316         exit 0 ;;
317     RISC*:ULTRIX:*:*)
318         echo mips-dec-ultrix${UNAME_RELEASE}
319         exit 0 ;;
320     VAX*:ULTRIX*:*:*)
321         echo vax-dec-ultrix${UNAME_RELEASE}
322         exit 0 ;;
323     2020:CLIX:*:* | 2430:CLIX:*:*)
324         echo clipper-intergraph-clix${UNAME_RELEASE}
325         exit 0 ;;
326     mips:*:*:UMIPS | mips:*:*:RISCos)
327         sed 's/^        //' << EOF >$dummy.c
328 #ifdef __cplusplus
329 #include <stdio.h>  /* for printf() prototype */
330         int main (int argc, char *argv[]) {
331 #else
332         int main (argc, argv) int argc; char *argv[]; {
333 #endif
334         #if defined (host_mips) && defined (MIPSEB)
335         #if defined (SYSTYPE_SYSV)
336           printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0);
337         #endif
338         #if defined (SYSTYPE_SVR4)
339           printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0);
340         #endif
341         #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)
342           printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0);
343         #endif
344         #endif
345           exit (-1);
346         }
347 EOF
348         $CC_FOR_BUILD $dummy.c -o $dummy \
349           && ./$dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \
350           && rm $dummy.c $dummy && exit 0
351         rm -f $dummy.c $dummy
352         echo mips-mips-riscos${UNAME_RELEASE}
353         exit 0 ;;
354     Night_Hawk:Power_UNIX:*:*)
355         echo powerpc-harris-powerunix
356         exit 0 ;;
357     m88k:CX/UX:7*:*)
358         echo m88k-harris-cxux7
359         exit 0 ;;
360     m88k:*:4*:R4*)
361         echo m88k-motorola-sysv4
362         exit 0 ;;
363     m88k:*:3*:R3*)
364         echo m88k-motorola-sysv3
365         exit 0 ;;
366     AViiON:dgux:*:*)
367         # DG/UX returns AViiON for all architectures
368         UNAME_PROCESSOR=`/usr/bin/uname -p`
369         if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ]
370         then
371             if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \
372                [ ${TARGET_BINARY_INTERFACE}x = x ]
373             then
374                 echo m88k-dg-dgux${UNAME_RELEASE}
375             else
376                 echo m88k-dg-dguxbcs${UNAME_RELEASE}
377             fi
378         else
379             echo i586-dg-dgux${UNAME_RELEASE}
380         fi
381         exit 0 ;;
382     M88*:DolphinOS:*:*) # DolphinOS (SVR3)
383         echo m88k-dolphin-sysv3
384         exit 0 ;;
385     M88*:*:R3*:*)
386         # Delta 88k system running SVR3
387         echo m88k-motorola-sysv3
388         exit 0 ;;
389     XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)
390         echo m88k-tektronix-sysv3
391         exit 0 ;;
392     Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)
393         echo m68k-tektronix-bsd
394         exit 0 ;;
395     *:IRIX*:*:*)
396         echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
397         exit 0 ;;
398     ????????:AIX?:[12].1:2)   # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
399         echo romp-ibm-aix      # uname -m gives an 8 hex-code CPU id
400         exit 0 ;;              # Note that: echo "'`uname -s`'" gives 'AIX '
401     i?86:AIX:*:*)
402         echo i386-ibm-aix
403         exit 0 ;;
404     *:AIX:2:3)
405         if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
406                 sed 's/^                //' << EOF >$dummy.c
407                 #include <sys/systemcfg.h>
408
409                 main()
410                         {
411                         if (!__power_pc())
412                                 exit(1);
413                         puts("powerpc-ibm-aix3.2.5");
414                         exit(0);
415                         }
416 EOF
417                 $CC_FOR_BUILD $dummy.c -o $dummy && ./$dummy && rm $dummy.c $dummy && exit 0
418                 rm -f $dummy.c $dummy
419                 echo rs6000-ibm-aix3.2.5
420         elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
421                 echo rs6000-ibm-aix3.2.4
422         else
423                 echo rs6000-ibm-aix3.2
424         fi
425         exit 0 ;;
426     *:AIX:*:4)
427         IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | head -1 | awk '{ print $1 }'`
428         if /usr/sbin/lsattr -EHl ${IBM_CPU_ID} | grep POWER >/dev/null 2>&1; then
429                 IBM_ARCH=rs6000
430         else
431                 IBM_ARCH=powerpc
432         fi
433         if [ -x /usr/bin/oslevel ] ; then
434                 IBM_REV=`/usr/bin/oslevel`
435         else
436                 IBM_REV=4.${UNAME_RELEASE}
437         fi
438         echo ${IBM_ARCH}-ibm-aix${IBM_REV}
439         exit 0 ;;
440     *:AIX:*:*)
441         echo rs6000-ibm-aix
442         exit 0 ;;
443     ibmrt:4.4BSD:*|romp-ibm:BSD:*)
444         echo romp-ibm-bsd4.4
445         exit 0 ;;
446     ibmrt:*BSD:*|romp-ibm:BSD:*)            # covers RT/PC BSD and
447         echo romp-ibm-bsd${UNAME_RELEASE}   # 4.3 with uname added to
448         exit 0 ;;                           # report: romp-ibm BSD 4.3
449     *:BOSX:*:*)
450         echo rs6000-bull-bosx
451         exit 0 ;;
452     DPX/2?00:B.O.S.:*:*)
453         echo m68k-bull-sysv3
454         exit 0 ;;
455     9000/[34]??:4.3bsd:1.*:*)
456         echo m68k-hp-bsd
457         exit 0 ;;
458     hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
459         echo m68k-hp-bsd4.4
460         exit 0 ;;
461     9000/[34678]??:HP-UX:*:*)
462         case "${UNAME_MACHINE}" in
463             9000/31? )            HP_ARCH=m68000 ;;
464             9000/[34]?? )         HP_ARCH=m68k ;;
465             9000/[678][0-9][0-9])
466               sed 's/^              //' << EOF >$dummy.c
467
468               #define _HPUX_SOURCE
469               #include <stdlib.h>
470               #include <unistd.h>
471
472               int main ()
473               {
474               #if defined(_SC_KERNEL_BITS)
475                   long bits = sysconf(_SC_KERNEL_BITS);
476               #endif
477                   long cpu  = sysconf (_SC_CPU_VERSION);
478
479                   switch (cpu)
480                 {
481                 case CPU_PA_RISC1_0: puts ("hppa1.0"); break;
482                 case CPU_PA_RISC1_1: puts ("hppa1.1"); break;
483                 case CPU_PA_RISC2_0:
484               #if defined(_SC_KERNEL_BITS)
485                     switch (bits)
486                         {
487                         case 64: puts ("hppa2.0w"); break;
488                         case 32: puts ("hppa2.0n"); break;
489                         default: puts ("hppa2.0"); break;
490                         } break;
491               #else  /* !defined(_SC_KERNEL_BITS) */
492                     puts ("hppa2.0"); break;
493               #endif
494                 default: puts ("hppa1.0"); break;
495                 }
496                   exit (0);
497               }
498 EOF
499         (CCOPTS= $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null ) && HP_ARCH=`./$dummy`
500         rm -f $dummy.c $dummy
501         esac
502         HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
503         echo ${HP_ARCH}-hp-hpux${HPUX_REV}
504         exit 0 ;;
505     3050*:HI-UX:*:*)
506         sed 's/^        //' << EOF >$dummy.c
507         #include <unistd.h>
508         int
509         main ()
510         {
511           long cpu = sysconf (_SC_CPU_VERSION);
512           /* The order matters, because CPU_IS_HP_MC68K erroneously returns
513              true for CPU_PA_RISC1_0.  CPU_IS_PA_RISC returns correct
514              results, however.  */
515           if (CPU_IS_PA_RISC (cpu))
516             {
517               switch (cpu)
518                 {
519                   case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break;
520                   case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break;
521                   case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break;
522                   default: puts ("hppa-hitachi-hiuxwe2"); break;
523                 }
524             }
525           else if (CPU_IS_HP_MC68K (cpu))
526             puts ("m68k-hitachi-hiuxwe2");
527           else puts ("unknown-hitachi-hiuxwe2");
528           exit (0);
529         }
530 EOF
531         $CC_FOR_BUILD $dummy.c -o $dummy && ./$dummy && rm $dummy.c $dummy && exit 0
532         rm -f $dummy.c $dummy
533         echo unknown-hitachi-hiuxwe2
534         exit 0 ;;
535     9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
536         echo hppa1.1-hp-bsd
537         exit 0 ;;
538     9000/8??:4.3bsd:*:*)
539         echo hppa1.0-hp-bsd
540         exit 0 ;;
541     *9??*:MPE/iX:*:*)
542         echo hppa1.0-hp-mpeix
543         exit 0 ;;
544     hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )
545         echo hppa1.1-hp-osf
546         exit 0 ;;
547     hp8??:OSF1:*:*)
548         echo hppa1.0-hp-osf
549         exit 0 ;;
550     i?86:OSF1:*:*)
551         if [ -x /usr/sbin/sysversion ] ; then
552             echo ${UNAME_MACHINE}-unknown-osf1mk
553         else
554             echo ${UNAME_MACHINE}-unknown-osf1
555         fi
556         exit 0 ;;
557     parisc*:Lites*:*:*)
558         echo hppa1.1-hp-lites
559         exit 0 ;;
560     hppa*:OpenBSD:*:*)
561         echo hppa-unknown-openbsd
562         exit 0 ;;
563     C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
564         echo c1-convex-bsd
565         exit 0 ;;
566     C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
567         if getsysinfo -f scalar_acc
568         then echo c32-convex-bsd
569         else echo c2-convex-bsd
570         fi
571         exit 0 ;;
572     C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)
573         echo c34-convex-bsd
574         exit 0 ;;
575     C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)
576         echo c38-convex-bsd
577         exit 0 ;;
578     C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
579         echo c4-convex-bsd
580         exit 0 ;;
581     CRAY*X-MP:*:*:*)
582         echo xmp-cray-unicos
583         exit 0 ;;
584     CRAY*Y-MP:*:*:*)
585         echo ymp-cray-unicos${UNAME_RELEASE}
586         exit 0 ;;
587     CRAY*[A-Z]90:*:*:*)
588         echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \
589         | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \
590               -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/
591         exit 0 ;;
592     CRAY*TS:*:*:*)
593         echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
594         exit 0 ;;
595     CRAY*T3E:*:*:*)
596         echo alpha-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
597         exit 0 ;;
598     CRAY*SV1:*:*:*)
599         echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
600         exit 0 ;;
601     CRAY-2:*:*:*)
602         echo cray2-cray-unicos
603         exit 0 ;;
604     F300:UNIX_System_V:*:*)
605         FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
606         FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
607         echo "f300-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
608         exit 0 ;;
609     F301:UNIX_System_V:*:*)
610        echo f301-fujitsu-uxpv`echo $UNAME_RELEASE | sed 's/ .*//'`
611        exit 0 ;;
612     hp300:OpenBSD:*:*)
613         echo m68k-unknown-openbsd${UNAME_RELEASE}
614         exit 0 ;;
615     i?86:BSD/386:*:* | i?86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
616         echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
617         exit 0 ;;
618     sparc*:BSD/OS:*:*)
619         echo sparc-unknown-bsdi${UNAME_RELEASE}
620         exit 0 ;;
621     *:BSD/OS:*:*)
622         echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
623         exit 0 ;;
624     *:FreeBSD:*:*)
625         echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
626         exit 0 ;;
627     *:OpenBSD:*:*)
628         echo ${UNAME_MACHINE}-unknown-openbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
629         exit 0 ;;
630     i*:CYGWIN*:*)
631         echo ${UNAME_MACHINE}-pc-cygwin
632         exit 0 ;;
633     i*:MINGW*:*)
634         echo ${UNAME_MACHINE}-pc-mingw32
635         exit 0 ;;
636     i*:Windows_NT*:* | Pentium*:Windows_NT*:*)
637         # How do we know it's Interix rather than the generic POSIX subsystem?
638         # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we
639         # UNAME_MACHINE based on the output of uname instead of i386?
640         echo i386-pc-interix
641         exit 0 ;;
642     i*:UWIN*:*)
643         echo ${UNAME_MACHINE}-pc-uwin
644         exit 0 ;;
645     p*:CYGWIN*:*)
646         echo powerpcle-unknown-cygwin
647         exit 0 ;;
648     prep*:SunOS:5.*:*)
649         echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
650         exit 0 ;;
651     *:GNU:*:*)
652         echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
653         exit 0 ;;
654     *:Linux:*:*)
655
656         # The BFD linker knows what the default object file format is, so
657         # first see if it will tell us. cd to the root directory to prevent
658         # problems with other programs or directories called `ld' in the path.
659         ld_help_string=`cd /; ld --help 2>&1`
660         ld_supported_emulations=`echo $ld_help_string \
661                          | sed -ne '/supported emulations:/!d
662                                     s/[         ][      ]*/ /g
663                                     s/.*supported emulations: *//
664                                     s/ .*//
665                                     p'`
666         case "$ld_supported_emulations" in
667           *ia64)
668                 echo "${UNAME_MACHINE}-unknown-linux"
669                 exit 0
670                 ;;
671           i?86linux)
672                 echo "${UNAME_MACHINE}-pc-linux-gnuaout"
673                 exit 0
674                 ;;
675           elf_i?86)
676                 echo "${UNAME_MACHINE}-pc-linux"
677                 exit 0
678                 ;;
679           i?86coff)
680                 echo "${UNAME_MACHINE}-pc-linux-gnucoff"
681                 exit 0
682                 ;;
683           sparclinux)
684                 echo "${UNAME_MACHINE}-unknown-linux-gnuaout"
685                 exit 0
686                 ;;
687           armlinux)
688                 echo "${UNAME_MACHINE}-unknown-linux-gnuaout"
689                 exit 0
690                 ;;
691           elf32arm*)
692                 echo "${UNAME_MACHINE}-unknown-linux-gnuoldld"
693                 exit 0
694                 ;;
695           armelf_linux*)
696                 echo "${UNAME_MACHINE}-unknown-linux-gnu"
697                 exit 0
698                 ;;
699           m68klinux)
700                 echo "${UNAME_MACHINE}-unknown-linux-gnuaout"
701                 exit 0
702                 ;;
703           elf32ppc | elf32ppclinux)
704                 # Determine Lib Version
705                 cat >$dummy.c <<EOF
706 #include <features.h>
707 #if defined(__GLIBC__)
708 extern char __libc_version[];
709 extern char __libc_release[];
710 #endif
711 main(argc, argv)
712      int argc;
713      char *argv[];
714 {
715 #if defined(__GLIBC__)
716   printf("%s %s\n", __libc_version, __libc_release);
717 #else
718   printf("unkown\n");
719 #endif
720   return 0;
721 }
722 EOF
723                 LIBC=""
724                 $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null
725                 if test "$?" = 0 ; then
726                         ./$dummy | grep 1\.99 > /dev/null
727                         if test "$?" = 0 ; then
728                                 LIBC="libc1"
729                         fi
730                 fi
731                 rm -f $dummy.c $dummy
732                 echo powerpc-unknown-linux-gnu${LIBC}
733                 exit 0
734                 ;;
735         esac
736
737         if test "${UNAME_MACHINE}" = "alpha" ; then
738                 cat <<EOF >$dummy.s
739                         .data
740                 \$Lformat:
741                         .byte 37,100,45,37,120,10,0     # "%d-%x\n"
742
743                         .text
744                         .globl main
745                         .align 4
746                         .ent main
747                 main:
748                         .frame \$30,16,\$26,0
749                         ldgp \$29,0(\$27)
750                         .prologue 1
751                         .long 0x47e03d80 # implver \$0
752                         lda \$2,-1
753                         .long 0x47e20c21 # amask \$2,\$1
754                         lda \$16,\$Lformat
755                         mov \$0,\$17
756                         not \$1,\$18
757                         jsr \$26,printf
758                         ldgp \$29,0(\$26)
759                         mov 0,\$16
760                         jsr \$26,exit
761                         .end main
762 EOF
763                 LIBC=""
764                 $CC_FOR_BUILD $dummy.s -o $dummy 2>/dev/null
765                 if test "$?" = 0 ; then
766                         case `./$dummy` in
767                         0-0)
768                                 UNAME_MACHINE="alpha"
769                                 ;;
770                         1-0)
771                                 UNAME_MACHINE="alphaev5"
772                                 ;;
773                         1-1)
774                                 UNAME_MACHINE="alphaev56"
775                                 ;;
776                         1-101)
777                                 UNAME_MACHINE="alphapca56"
778                                 ;;
779                         2-303)
780                                 UNAME_MACHINE="alphaev6"
781                                 ;;
782                         2-307)
783                                 UNAME_MACHINE="alphaev67"
784                                 ;;
785                         esac
786
787                         objdump --private-headers $dummy | \
788                           grep ld.so.1 > /dev/null
789                         if test "$?" = 0 ; then
790                                 LIBC="libc1"
791                         fi
792                 fi
793                 rm -f $dummy.s $dummy
794                 echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} ; exit 0
795         elif test "${UNAME_MACHINE}" = "mips" ; then
796           cat >$dummy.c <<EOF
797 #ifdef __cplusplus
798 #include <stdio.h>  /* for printf() prototype */
799         int main (int argc, char *argv[]) {
800 #else
801         int main (argc, argv) int argc; char *argv[]; {
802 #endif
803 #ifdef __MIPSEB__
804   printf ("%s-unknown-linux-gnu\n", argv[1]);
805 #endif
806 #ifdef __MIPSEL__
807   printf ("%sel-unknown-linux-gnu\n", argv[1]);
808 #endif
809   return 0;
810 }
811 EOF
812           $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy "${UNAME_MACHINE}" && rm $dummy.c $dummy && exit 0
813           rm -f $dummy.c $dummy
814         elif test "${UNAME_MACHINE}" = "s390"; then
815           echo s390-ibm-linux && exit 0
816         else
817           # Either a pre-BFD a.out linker (linux-gnuoldld)
818           # or one that does not give us useful --help.
819           # GCC wants to distinguish between linux-gnuoldld and linux-gnuaout.
820           # If ld does not provide *any* "supported emulations:"
821           # that means it is gnuoldld.
822           echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations:"
823           test $? != 0 && echo "${UNAME_MACHINE}-pc-linux-gnuoldld" && exit 0
824
825           case "${UNAME_MACHINE}" in
826           i?86)
827             VENDOR=pc;
828             ;;
829           *)
830             VENDOR=unknown;
831             ;;
832           esac
833           # Determine whether the default compiler is a.out or elf
834           cat >$dummy.c <<EOF
835 #include <features.h>
836 #ifdef __cplusplus
837 #include <stdio.h>  /* for printf() prototype */
838         int main (int argc, char *argv[]) {
839 #else
840         int main (argc, argv) int argc; char *argv[]; {
841 #endif
842 #ifdef __ELF__
843 # ifdef __GLIBC__
844 #  if __GLIBC__ >= 2
845     printf ("%s-${VENDOR}-linux-gnu\n", argv[1]);
846 #  else
847     printf ("%s-${VENDOR}-linux-gnulibc1\n", argv[1]);
848 #  endif
849 # else
850    printf ("%s-${VENDOR}-linux-gnulibc1\n", argv[1]);
851 # endif
852 #else
853   printf ("%s-${VENDOR}-linux-gnuaout\n", argv[1]);
854 #endif
855   return 0;
856 }
857 EOF
858           $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy "${UNAME_MACHINE}" && rm $dummy.c $dummy && exit 0
859           rm -f $dummy.c $dummy
860         fi ;;
861 # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.  earlier versions
862 # are messed up and put the nodename in both sysname and nodename.
863     i?86:DYNIX/ptx:4*:*)
864         echo i386-sequent-sysv4
865         exit 0 ;;
866     i?86:UNIX_SV:4.2MP:2.*)
867         # Unixware is an offshoot of SVR4, but it has its own version
868         # number series starting with 2...
869         # I am not positive that other SVR4 systems won't match this,
870         # I just have to hope.  -- rms.
871         # Use sysv4.2uw... so that sysv4* matches it.
872         echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
873         exit 0 ;;
874     i?86:*:4.*:* | i?86:SYSTEM_V:4.*:*)
875         UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'`
876         if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
877                 echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL}
878         else
879                 echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL}
880         fi
881         exit 0 ;;
882     i?86:*:5:7*)
883         # Fixed at (any) Pentium or better
884         UNAME_MACHINE=i586
885         if [ ${UNAME_SYSTEM} = "UnixWare" ] ; then
886             echo ${UNAME_MACHINE}-sco-sysv${UNAME_RELEASE}uw${UNAME_VERSION}
887         else
888             echo ${UNAME_MACHINE}-pc-sysv${UNAME_RELEASE}
889         fi
890         exit 0 ;;
891     i?86:*:3.2:*)
892         if test -f /usr/options/cb.name; then
893                 UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
894                 echo ${UNAME_MACHINE}-pc-isc$UNAME_REL
895         elif /bin/uname -X 2>/dev/null >/dev/null ; then
896                 UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')`
897                 (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486
898                 (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \
899                         && UNAME_MACHINE=i586
900                 (/bin/uname -X|egrep '^Machine.*Pent ?II' >/dev/null) \
901                         && UNAME_MACHINE=i686
902                 (/bin/uname -X|egrep '^Machine.*Pentium Pro' >/dev/null) \
903                         && UNAME_MACHINE=i686
904                 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL
905         else
906                 echo ${UNAME_MACHINE}-pc-sysv32
907         fi
908         exit 0 ;;
909     i?86:*DOS:*:*)
910         echo ${UNAME_MACHINE}-pc-msdosdjgpp
911         exit 0 ;;
912     pc:*:*:*)
913         # Left here for compatibility:
914         # uname -m prints for DJGPP always 'pc', but it prints nothing about
915         # the processor, so we play safe by assuming i386.
916         echo i386-pc-msdosdjgpp
917         exit 0 ;;
918     Intel:Mach:3*:*)
919         echo i386-pc-mach3
920         exit 0 ;;
921     paragon:*:*:*)
922         echo i860-intel-osf1
923         exit 0 ;;
924     i860:*:4.*:*) # i860-SVR4
925         if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
926           echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
927         else # Add other i860-SVR4 vendors below as they are discovered.
928           echo i860-unknown-sysv${UNAME_RELEASE}  # Unknown i860-SVR4
929         fi
930         exit 0 ;;
931     mini*:CTIX:SYS*5:*)
932         # "miniframe"
933         echo m68010-convergent-sysv
934         exit 0 ;;
935     M68*:*:R3V[567]*:*)
936         test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;;
937     3[34]??:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 4850:*:4.0:3.0)
938         OS_REL=''
939         test -r /etc/.relid \
940         && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
941         /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
942           && echo i486-ncr-sysv4.3${OS_REL} && exit 0
943         /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
944           && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;;
945     3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
946         /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
947           && echo i486-ncr-sysv4 && exit 0 ;;
948     m68*:LynxOS:2.*:*)
949         echo m68k-unknown-lynxos${UNAME_RELEASE}
950         exit 0 ;;
951     mc68030:UNIX_System_V:4.*:*)
952         echo m68k-atari-sysv4
953         exit 0 ;;
954     i?86:LynxOS:2.*:* | i?86:LynxOS:3.[01]*:*)
955         echo i386-unknown-lynxos${UNAME_RELEASE}
956         exit 0 ;;
957     TSUNAMI:LynxOS:2.*:*)
958         echo sparc-unknown-lynxos${UNAME_RELEASE}
959         exit 0 ;;
960     rs6000:LynxOS:2.*:* | PowerPC:LynxOS:2.*:*)
961         echo rs6000-unknown-lynxos${UNAME_RELEASE}
962         exit 0 ;;
963     SM[BE]S:UNIX_SV:*:*)
964         echo mips-dde-sysv${UNAME_RELEASE}
965         exit 0 ;;
966     RM*:ReliantUNIX-*:*:*)
967         echo mips-sni-sysv4
968         exit 0 ;;
969     RM*:SINIX-*:*:*)
970         echo mips-sni-sysv4
971         exit 0 ;;
972     *:SINIX-*:*:*)
973         if uname -p 2>/dev/null >/dev/null ; then
974                 UNAME_MACHINE=`(uname -p) 2>/dev/null`
975                 echo ${UNAME_MACHINE}-sni-sysv4
976         else
977                 echo ns32k-sni-sysv
978         fi
979         exit 0 ;;
980     PENTIUM:CPunix:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort
981                            # says <Richard.M.Bartel@ccMail.Census.GOV>
982         echo i586-unisys-sysv4
983         exit 0 ;;
984     *:UNIX_System_V:4*:FTX*)
985         # From Gerald Hewes <hewes@openmarket.com>.
986         # How about differentiating between stratus architectures? -djm
987         echo hppa1.1-stratus-sysv4
988         exit 0 ;;
989     *:*:*:FTX*)
990         # From seanf@swdc.stratus.com.
991         echo i860-stratus-sysv4
992         exit 0 ;;
993     mc68*:A/UX:*:*)
994         echo m68k-apple-aux${UNAME_RELEASE}
995         exit 0 ;;
996     news*:NEWS-OS:*:6*)
997         echo mips-sony-newsos6
998         exit 0 ;;
999     R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)
1000         if [ -d /usr/nec ]; then
1001                 echo mips-nec-sysv${UNAME_RELEASE}
1002         else
1003                 echo mips-unknown-sysv${UNAME_RELEASE}
1004         fi
1005         exit 0 ;;
1006     BeBox:BeOS:*:*)     # BeOS running on hardware made by Be, PPC only.
1007         echo powerpc-be-beos
1008         exit 0 ;;
1009     BeMac:BeOS:*:*)     # BeOS running on Mac or Mac clone, PPC only.
1010         echo powerpc-apple-beos
1011         exit 0 ;;
1012     BePC:BeOS:*:*)      # BeOS running on Intel PC compatible.
1013         echo i586-pc-beos
1014         exit 0 ;;
1015     SX-4:SUPER-UX:*:*)
1016         echo sx4-nec-superux${UNAME_RELEASE}
1017         exit 0 ;;
1018     SX-5:SUPER-UX:*:*)
1019         echo sx5-nec-superux${UNAME_RELEASE}
1020         exit 0 ;;
1021     Power*:Rhapsody:*:*)
1022         echo powerpc-apple-rhapsody${UNAME_RELEASE}
1023         exit 0 ;;
1024     *:Rhapsody:*:*)
1025         echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
1026         exit 0 ;;
1027     *:Darwin:*:* | *:"Mac OS":*:*)
1028         echo `uname -p`-apple-darwin${UNAME_RELEASE}
1029         exit 0 ;;
1030     *:procnto*:*:* | *:QNX:[0123456789]*:*)
1031         if test "${UNAME_MACHINE}" = "x86pc"; then
1032                 UNAME_MACHINE=pc
1033         fi
1034         echo `uname -p`-${UNAME_MACHINE}-nto-qnx
1035         exit 0 ;;
1036     *:QNX:*:4*)
1037         echo i386-pc-qnx
1038         exit 0 ;;
1039     NSR-W:NONSTOP_KERNEL:*:*)
1040         echo nsr-tandem-nsk${UNAME_RELEASE}
1041         exit 0 ;;
1042     BS2000:POSIX*:*:*)
1043         echo bs2000-siemens-sysv
1044         exit 0 ;;
1045     DS/*:UNIX_System_V:*:*)
1046         echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE}
1047         exit 0 ;;
1048 esac
1049
1050 #echo '(No uname command or uname output not recognized.)' 1>&2
1051 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2
1052
1053 cat >$dummy.c <<EOF
1054 #ifdef _SEQUENT_
1055 # include <sys/types.h>
1056 # include <sys/utsname.h>
1057 #endif
1058 main ()
1059 {
1060 #if defined (sony)
1061 #if defined (MIPSEB)
1062   /* BFD wants "bsd" instead of "newsos".  Perhaps BFD should be changed,
1063      I don't know....  */
1064   printf ("mips-sony-bsd\n"); exit (0);
1065 #else
1066 #include <sys/param.h>
1067   printf ("m68k-sony-newsos%s\n",
1068 #ifdef NEWSOS4
1069           "4"
1070 #else
1071           ""
1072 #endif
1073          ); exit (0);
1074 #endif
1075 #endif
1076
1077 #if defined (__arm) && defined (__acorn) && defined (__unix)
1078   printf ("arm-acorn-riscix"); exit (0);
1079 #endif
1080
1081 #if defined (hp300) && !defined (hpux)
1082   printf ("m68k-hp-bsd\n"); exit (0);
1083 #endif
1084
1085 #if defined (NeXT)
1086 #if !defined (__ARCHITECTURE__)
1087 #define __ARCHITECTURE__ "m68k"
1088 #endif
1089   int version;
1090   version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
1091   if (version < 4)
1092     printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version);
1093   else
1094     printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version);
1095   exit (0);
1096 #endif
1097
1098 #if defined (MULTIMAX) || defined (n16)
1099 #if defined (UMAXV)
1100   printf ("ns32k-encore-sysv\n"); exit (0);
1101 #else
1102 #if defined (CMU)
1103   printf ("ns32k-encore-mach\n"); exit (0);
1104 #else
1105   printf ("ns32k-encore-bsd\n"); exit (0);
1106 #endif
1107 #endif
1108 #endif
1109
1110 #if defined (__386BSD__)
1111   printf ("i386-pc-bsd\n"); exit (0);
1112 #endif
1113
1114 #if defined (sequent)
1115 #if defined (i386)
1116   printf ("i386-sequent-dynix\n"); exit (0);
1117 #endif
1118 #if defined (ns32000)
1119   printf ("ns32k-sequent-dynix\n"); exit (0);
1120 #endif
1121 #endif
1122
1123 #if defined (_SEQUENT_)
1124     struct utsname un;
1125
1126     uname(&un);
1127
1128     if (strncmp(un.version, "V2", 2) == 0) {
1129         printf ("i386-sequent-ptx2\n"); exit (0);
1130     }
1131     if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
1132         printf ("i386-sequent-ptx1\n"); exit (0);
1133     }
1134     printf ("i386-sequent-ptx\n"); exit (0);
1135
1136 #endif
1137
1138 #if defined (vax)
1139 #if !defined (ultrix)
1140   printf ("vax-dec-bsd\n"); exit (0);
1141 #else
1142   printf ("vax-dec-ultrix\n"); exit (0);
1143 #endif
1144 #endif
1145
1146 #if defined (alliant) && defined (i860)
1147   printf ("i860-alliant-bsd\n"); exit (0);
1148 #endif
1149
1150   exit (1);
1151 }
1152 EOF
1153
1154 $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy && rm $dummy.c $dummy && exit 0
1155 rm -f $dummy.c $dummy
1156
1157 # Apollos put the system type in the environment.
1158
1159 test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; }
1160
1161 # Convex versions that predate uname can use getsysinfo(1)
1162
1163 if [ -x /usr/convex/getsysinfo ]
1164 then
1165     case `getsysinfo -f cpu_type` in
1166     c1*)
1167         echo c1-convex-bsd
1168         exit 0 ;;
1169     c2*)
1170         if getsysinfo -f scalar_acc
1171         then echo c32-convex-bsd
1172         else echo c2-convex-bsd
1173         fi
1174         exit 0 ;;
1175     c34*)
1176         echo c34-convex-bsd
1177         exit 0 ;;
1178     c38*)
1179         echo c38-convex-bsd
1180         exit 0 ;;
1181     c4*)
1182         echo c4-convex-bsd
1183         exit 0 ;;
1184     esac
1185 fi
1186
1187 #echo '(Unable to guess system type)' 1>&2
1188
1189 exit 1