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