~ubuntu-branches/ubuntu/intrepid/shadow/intrepid-updates

« back to all changes in this revision

Viewing changes to config.guess

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2004-09-14 01:01:32 UTC
  • Revision ID: james.westby@ubuntu.com-20040914010132-caqdvzrhku8od2qk
Tags: 1:4.0.3-28.5ubuntu6
Update German translation of passwd/user-fullname.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /bin/sh
2
2
# Attempt to guess a canonical system name.
3
 
#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
4
 
#   Free Software Foundation, Inc.
 
3
#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
 
4
#   2000, 2001, 2002 Free Software Foundation, Inc.
5
5
 
6
 
timestamp='2001-09-04'
 
6
timestamp='2002-09-03'
7
7
 
8
8
# This file is free software; you can redistribute it and/or modify it
9
9
# under the terms of the GNU General Public License as published by
24
24
# configuration script generated by Autoconf, you may include it under
25
25
# the same distribution terms that you use for the rest of that program.
26
26
 
27
 
# Written by Per Bothner <bothner@cygnus.com>.
28
 
# Please send patches to <config-patches@gnu.org>.
 
27
# Originally written by Per Bothner <per@bothner.com>.
 
28
# Please send patches to <config-patches@gnu.org>.  Submit a context
 
29
# diff and a properly formatted ChangeLog entry.
29
30
#
30
31
# This script attempts to guess a canonical system name similar to
31
32
# config.sub.  If it succeeds, it prints the system name on stdout, and
87
88
  exit 1
88
89
fi
89
90
 
90
 
 
91
 
dummy=dummy-$$
92
 
trap 'rm -f $dummy.c $dummy.o $dummy.rel $dummy; exit 1' 1 2 15
93
 
 
94
 
# CC_FOR_BUILD -- compiler used by this script.
 
91
trap 'exit 1' 1 2 15
 
92
 
 
93
# CC_FOR_BUILD -- compiler used by this script. Note that the use of a
 
94
# compiler to aid in system detection is discouraged as it requires
 
95
# temporary files to be created and, as you can see below, it is a
 
96
# headache to deal with in a portable fashion.
 
97
 
95
98
# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still
96
99
# use `HOST_CC' if defined, but it is deprecated.
97
100
 
98
 
set_cc_for_build='case $CC_FOR_BUILD,$HOST_CC,$CC in
99
 
 ,,)    echo "int dummy(){}" > $dummy.c ;
100
 
        for c in cc gcc c89 ; do
101
 
          ($c $dummy.c -c -o $dummy.o) >/dev/null 2>&1 ;
102
 
          if test $? = 0 ; then
 
101
# This shell variable is my proudest work .. or something. --bje
 
102
 
 
103
set_cc_for_build='tmpdir=${TMPDIR-/tmp}/config-guess-$$ ;
 
104
(old=`umask` && umask 077 && mkdir $tmpdir && umask $old && unset old)
 
105
   || (echo "$me: cannot create $tmpdir" >&2 && exit 1) ;
 
106
dummy=$tmpdir/dummy ;
 
107
files="$dummy.c $dummy.o $dummy.rel $dummy" ;
 
108
trap '"'"'rm -f $files; rmdir $tmpdir; exit 1'"'"' 1 2 15 ;
 
109
case $CC_FOR_BUILD,$HOST_CC,$CC in
 
110
 ,,)    echo "int x;" > $dummy.c ;
 
111
        for c in cc gcc c89 c99 ; do
 
112
          if ($c $dummy.c -c -o $dummy.o) >/dev/null 2>&1 ; then
103
113
             CC_FOR_BUILD="$c"; break ;
104
114
          fi ;
105
115
        done ;
106
 
        rm -f $dummy.c $dummy.o $dummy.rel ;
 
116
        rm -f $files ;
107
117
        if test x"$CC_FOR_BUILD" = x ; then
108
118
          CC_FOR_BUILD=no_compiler_found ;
109
119
        fi
110
120
        ;;
111
121
 ,,*)   CC_FOR_BUILD=$CC ;;
112
122
 ,*,*)  CC_FOR_BUILD=$HOST_CC ;;
113
 
esac'
 
123
esac ;
 
124
unset files'
114
125
 
115
126
# This is needed to find uname on a Pyramid OSx when run in the BSD universe.
116
127
# (ghazi@noc.rutgers.edu 1994-08-24)
127
138
 
128
139
case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
129
140
    *:NetBSD:*:*)
130
 
        # Netbsd (nbsd) targets should (where applicable) match one or
 
141
        # NetBSD (nbsd) targets should (where applicable) match one or
131
142
        # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*,
132
143
        # *-*-netbsdecoff* and *-*-netbsd*.  For targets that recently
133
144
        # switched to ELF, *-*-netbsd* would select the old
134
145
        # object file format.  This provides both forward
135
146
        # compatibility and a consistent mechanism for selecting the
136
147
        # object file format.
137
 
        # Determine the machine/vendor (is the vendor relevant).
138
 
        case "${UNAME_MACHINE}" in
139
 
            amiga) machine=m68k-unknown ;;
140
 
            arm32) machine=arm-unknown ;;
141
 
            atari*) machine=m68k-atari ;;
142
 
            sun3*) machine=m68k-sun ;;
143
 
            mac68k) machine=m68k-apple ;;
144
 
            macppc) machine=powerpc-apple ;;
145
 
            hp3[0-9][05]) machine=m68k-hp ;;
146
 
            ibmrt|romp-ibm) machine=romp-ibm ;;
147
 
            *) machine=${UNAME_MACHINE}-unknown ;;
 
148
        #
 
149
        # Note: NetBSD doesn't particularly care about the vendor
 
150
        # portion of the name.  We always set it to "unknown".
 
151
        sysctl="sysctl -n hw.machine_arch"
 
152
        UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \
 
153
            /usr/sbin/$sysctl 2>/dev/null || echo unknown)`
 
154
        case "${UNAME_MACHINE_ARCH}" in
 
155
            armeb) machine=armeb-unknown ;;
 
156
            arm*) machine=arm-unknown ;;
 
157
            sh3el) machine=shl-unknown ;;
 
158
            sh3eb) machine=sh-unknown ;;
 
159
            *) machine=${UNAME_MACHINE_ARCH}-unknown ;;
148
160
        esac
149
161
        # The Operating System including object format, if it has switched
150
162
        # to ELF recently, or will in the future.
151
 
        case "${UNAME_MACHINE}" in
152
 
            i386|sparc|amiga|arm*|hp300|mvme68k|vax|atari|luna68k|mac68k|news68k|next68k|pc532|sun3*|x68k)
 
163
        case "${UNAME_MACHINE_ARCH}" in
 
164
            arm*|i386|m68k|ns32k|sh3*|sparc|vax)
153
165
                eval $set_cc_for_build
154
166
                if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
155
167
                        | grep __ELF__ >/dev/null
172
184
        # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
173
185
        echo "${machine}-${os}${release}"
174
186
        exit 0 ;;
 
187
    amiga:OpenBSD:*:*)
 
188
        echo m68k-unknown-openbsd${UNAME_RELEASE}
 
189
        exit 0 ;;
 
190
    arc:OpenBSD:*:*)
 
191
        echo mipsel-unknown-openbsd${UNAME_RELEASE}
 
192
        exit 0 ;;
 
193
    hp300:OpenBSD:*:*)
 
194
        echo m68k-unknown-openbsd${UNAME_RELEASE}
 
195
        exit 0 ;;
 
196
    mac68k:OpenBSD:*:*)
 
197
        echo m68k-unknown-openbsd${UNAME_RELEASE}
 
198
        exit 0 ;;
 
199
    macppc:OpenBSD:*:*)
 
200
        echo powerpc-unknown-openbsd${UNAME_RELEASE}
 
201
        exit 0 ;;
 
202
    mvme68k:OpenBSD:*:*)
 
203
        echo m68k-unknown-openbsd${UNAME_RELEASE}
 
204
        exit 0 ;;
 
205
    mvme88k:OpenBSD:*:*)
 
206
        echo m88k-unknown-openbsd${UNAME_RELEASE}
 
207
        exit 0 ;;
 
208
    mvmeppc:OpenBSD:*:*)
 
209
        echo powerpc-unknown-openbsd${UNAME_RELEASE}
 
210
        exit 0 ;;
 
211
    pmax:OpenBSD:*:*)
 
212
        echo mipsel-unknown-openbsd${UNAME_RELEASE}
 
213
        exit 0 ;;
 
214
    sgi:OpenBSD:*:*)
 
215
        echo mipseb-unknown-openbsd${UNAME_RELEASE}
 
216
        exit 0 ;;
 
217
    sun3:OpenBSD:*:*)
 
218
        echo m68k-unknown-openbsd${UNAME_RELEASE}
 
219
        exit 0 ;;
 
220
    wgrisc:OpenBSD:*:*)
 
221
        echo mipsel-unknown-openbsd${UNAME_RELEASE}
 
222
        exit 0 ;;
 
223
    *:OpenBSD:*:*)
 
224
        echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE}
 
225
        exit 0 ;;
175
226
    alpha:OSF1:*:*)
176
227
        if test $UNAME_RELEASE = "V4.0"; then
177
228
                UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
180
231
        # A Tn.n version is a released field test version.
181
232
        # A Xn.n version is an unreleased experimental baselevel.
182
233
        # 1.2 uses "1.2" for uname -r.
 
234
        eval $set_cc_for_build
183
235
        cat <<EOF >$dummy.s
184
236
        .data
185
237
\$Lformat:
205
257
        jsr \$26,exit
206
258
        .end main
207
259
EOF
208
 
        eval $set_cc_for_build
209
260
        $CC_FOR_BUILD $dummy.s -o $dummy 2>/dev/null
210
261
        if test "$?" = 0 ; then
211
 
                case `./$dummy` in
 
262
                case `$dummy` in
212
263
                        0-0)
213
264
                                UNAME_MACHINE="alpha"
214
265
                                ;;
230
281
                        2-1307)
231
282
                                UNAME_MACHINE="alphaev68"
232
283
                                ;;
 
284
                        3-1307)
 
285
                                UNAME_MACHINE="alphaev7"
 
286
                                ;;
233
287
                esac
234
288
        fi
235
 
        rm -f $dummy.s $dummy
 
289
        rm -f $dummy.s $dummy && rmdir $tmpdir
236
290
        echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
237
291
        exit 0 ;;
238
292
    Alpha\ *:Windows_NT*:*)
247
301
    Amiga*:UNIX_System_V:4.0:*)
248
302
        echo m68k-unknown-sysv4
249
303
        exit 0;;
250
 
    amiga:OpenBSD:*:*)
251
 
        echo m68k-unknown-openbsd${UNAME_RELEASE}
252
 
        exit 0 ;;
253
304
    *:[Aa]miga[Oo][Ss]:*:*)
254
305
        echo ${UNAME_MACHINE}-unknown-amigaos
255
306
        exit 0 ;;
256
 
    arc64:OpenBSD:*:*)
257
 
        echo mips64el-unknown-openbsd${UNAME_RELEASE}
258
 
        exit 0 ;;
259
 
    arc:OpenBSD:*:*)
260
 
        echo mipsel-unknown-openbsd${UNAME_RELEASE}
261
 
        exit 0 ;;
262
 
    hkmips:OpenBSD:*:*)
263
 
        echo mips-unknown-openbsd${UNAME_RELEASE}
264
 
        exit 0 ;;
265
 
    pmax:OpenBSD:*:*)
266
 
        echo mipsel-unknown-openbsd${UNAME_RELEASE}
267
 
        exit 0 ;;
268
 
    sgi:OpenBSD:*:*)
269
 
        echo mips-unknown-openbsd${UNAME_RELEASE}
270
 
        exit 0 ;;
271
 
    wgrisc:OpenBSD:*:*)
272
 
        echo mipsel-unknown-openbsd${UNAME_RELEASE}
 
307
    *:[Mm]orph[Oo][Ss]:*:*)
 
308
        echo ${UNAME_MACHINE}-unknown-morphos
273
309
        exit 0 ;;
274
310
    *:OS/390:*:*)
275
311
        echo i370-ibm-openedition
291
327
    NILE*:*:*:dcosx)
292
328
        echo pyramid-pyramid-svr4
293
329
        exit 0 ;;
 
330
    DRS?6000:UNIX_SV:4.2*:7*)
 
331
        case `/usr/bin/uname -p` in
 
332
            sparc) echo sparc-icl-nx7 && exit 0 ;;
 
333
        esac ;;
294
334
    sun4H:SunOS:5.*:*)
295
335
        echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
296
336
        exit 0 ;;
319
359
        echo m68k-sun-sunos${UNAME_RELEASE}
320
360
        exit 0 ;;
321
361
    sun*:*:4.2BSD:*)
322
 
        UNAME_RELEASE=`(head -1 /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
 
362
        UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
323
363
        test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3
324
364
        case "`/bin/arch`" in
325
365
            sun3)
333
373
    aushp:SunOS:*:*)
334
374
        echo sparc-auspex-sunos${UNAME_RELEASE}
335
375
        exit 0 ;;
336
 
    sparc*:NetBSD:*)
337
 
        echo `uname -p`-unknown-netbsd${UNAME_RELEASE}
338
 
        exit 0 ;;
339
 
    atari*:OpenBSD:*:*)
340
 
        echo m68k-unknown-openbsd${UNAME_RELEASE}
341
 
        exit 0 ;;
342
376
    # The situation for MiNT is a little confusing.  The machine name
343
377
    # can be virtually everything (everything which is not
344
378
    # "atarist" or "atariste" at least should have a processor
365
399
    *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
366
400
        echo m68k-unknown-mint${UNAME_RELEASE}
367
401
        exit 0 ;;
368
 
    sun3*:OpenBSD:*:*)
369
 
        echo m68k-unknown-openbsd${UNAME_RELEASE}
370
 
        exit 0 ;;
371
 
    mac68k:OpenBSD:*:*)
372
 
        echo m68k-unknown-openbsd${UNAME_RELEASE}
373
 
        exit 0 ;;
374
 
    mvme68k:OpenBSD:*:*)
375
 
        echo m68k-unknown-openbsd${UNAME_RELEASE}
376
 
        exit 0 ;;
377
 
    mvme88k:OpenBSD:*:*)
378
 
        echo m88k-unknown-openbsd${UNAME_RELEASE}
379
 
        exit 0 ;;
380
402
    powerpc:machten:*:*)
381
403
        echo powerpc-apple-machten${UNAME_RELEASE}
382
404
        exit 0 ;;
416
438
        }
417
439
EOF
418
440
        $CC_FOR_BUILD $dummy.c -o $dummy \
419
 
          && ./$dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \
420
 
          && rm -f $dummy.c $dummy && exit 0
421
 
        rm -f $dummy.c $dummy
 
441
          && $dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \
 
442
          && rm -f $dummy.c $dummy && rmdir $tmpdir && exit 0
 
443
        rm -f $dummy.c $dummy && rmdir $tmpdir
422
444
        echo mips-mips-riscos${UNAME_RELEASE}
423
445
        exit 0 ;;
424
446
    Motorola:PowerMAX_OS:*:*)
425
447
        echo powerpc-motorola-powermax
426
448
        exit 0 ;;
 
449
    Motorola:*:4.3:PL8-*)
 
450
        echo powerpc-harris-powermax
 
451
        exit 0 ;;
 
452
    Night_Hawk:*:*:PowerMAX_OS)
 
453
        echo powerpc-harris-powermax
 
454
        exit 0 ;;
427
455
    Night_Hawk:Power_UNIX:*:*)
428
456
        echo powerpc-harris-powerunix
429
457
        exit 0 ;;
496
524
                        exit(0);
497
525
                        }
498
526
EOF
499
 
                $CC_FOR_BUILD $dummy.c -o $dummy && ./$dummy && rm -f $dummy.c $dummy && exit 0
500
 
                rm -f $dummy.c $dummy
 
527
                $CC_FOR_BUILD $dummy.c -o $dummy && $dummy && rm -f $dummy.c $dummy && rmdir $tmpdir && exit 0
 
528
                rm -f $dummy.c $dummy && rmdir $tmpdir
501
529
                echo rs6000-ibm-aix3.2.5
502
530
        elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
503
531
                echo rs6000-ibm-aix3.2.4
506
534
        fi
507
535
        exit 0 ;;
508
536
    *:AIX:*:[45])
509
 
        IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | head -1 | awk '{ print $1 }'`
 
537
        IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
510
538
        if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
511
539
                IBM_ARCH=rs6000
512
540
        else
546
574
            9000/31? )            HP_ARCH=m68000 ;;
547
575
            9000/[34]?? )         HP_ARCH=m68k ;;
548
576
            9000/[678][0-9][0-9])
549
 
              case "${HPUX_REV}" in
550
 
                11.[0-9][0-9])
551
 
                  if [ -x /usr/bin/getconf ]; then
552
 
                    sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
 
577
                if [ -x /usr/bin/getconf ]; then
 
578
                    sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
553
579
                    sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
554
580
                    case "${sc_cpu_version}" in
555
581
                      523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0
558
584
                        case "${sc_kernel_bits}" in
559
585
                          32) HP_ARCH="hppa2.0n" ;;
560
586
                          64) HP_ARCH="hppa2.0w" ;;
 
587
                          '') HP_ARCH="hppa2.0" ;;   # HP-UX 10.20
561
588
                        esac ;;
562
589
                    esac
563
 
                  fi ;;
564
 
              esac
565
 
              if [ "${HP_ARCH}" = "" ]; then
566
 
              eval $set_cc_for_build
567
 
              sed 's/^              //' << EOF >$dummy.c
 
590
                fi
 
591
                if [ "${HP_ARCH}" = "" ]; then
 
592
                    eval $set_cc_for_build
 
593
                    sed 's/^              //' << EOF >$dummy.c
568
594
 
569
595
              #define _HPUX_SOURCE
570
596
              #include <stdlib.h>
597
623
                  exit (0);
598
624
              }
599
625
EOF
600
 
            (CCOPTS= $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null ) && HP_ARCH=`./$dummy`
601
 
            if test -z "$HP_ARCH"; then HP_ARCH=hppa; fi
602
 
            rm -f $dummy.c $dummy
603
 
        fi ;;
 
626
                    (CCOPTS= $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null) && HP_ARCH=`$dummy`
 
627
                    if test -z "$HP_ARCH"; then HP_ARCH=hppa; fi
 
628
                    rm -f $dummy.c $dummy && rmdir $tmpdir
 
629
                fi ;;
604
630
        esac
605
631
        echo ${HP_ARCH}-hp-hpux${HPUX_REV}
606
632
        exit 0 ;;
635
661
          exit (0);
636
662
        }
637
663
EOF
638
 
        $CC_FOR_BUILD $dummy.c -o $dummy && ./$dummy && rm -f $dummy.c $dummy && exit 0
639
 
        rm -f $dummy.c $dummy
 
664
        $CC_FOR_BUILD $dummy.c -o $dummy && $dummy && rm -f $dummy.c $dummy && rmdir $tmpdir && exit 0
 
665
        rm -f $dummy.c $dummy && rmdir $tmpdir
640
666
        echo unknown-hitachi-hiuxwe2
641
667
        exit 0 ;;
642
668
    9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
664
690
    parisc*:Lites*:*:*)
665
691
        echo hppa1.1-hp-lites
666
692
        exit 0 ;;
667
 
    hppa*:OpenBSD:*:*)
668
 
        echo hppa-unknown-openbsd
669
 
        exit 0 ;;
670
693
    C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
671
694
        echo c1-convex-bsd
672
695
        exit 0 ;;
685
708
    C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
686
709
        echo c4-convex-bsd
687
710
        exit 0 ;;
688
 
    CRAY*X-MP:*:*:*)
689
 
        echo xmp-cray-unicos
690
 
        exit 0 ;;
691
711
    CRAY*Y-MP:*:*:*)
692
712
        echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
693
713
        exit 0 ;;
709
729
    CRAY*SV1:*:*:*)
710
730
        echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
711
731
        exit 0 ;;
712
 
    CRAY-2:*:*:*)
713
 
        echo cray2-cray-unicos
714
 
        exit 0 ;;
715
732
    F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
716
733
        FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
717
734
        FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
718
735
        FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
719
736
        echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
720
737
        exit 0 ;;
721
 
    hp300:OpenBSD:*:*)
722
 
        echo m68k-unknown-openbsd${UNAME_RELEASE}
723
 
        exit 0 ;;
724
738
    i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
725
739
        echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
726
740
        exit 0 ;;
731
745
        echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
732
746
        exit 0 ;;
733
747
    *:FreeBSD:*:*)
734
 
        echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
735
 
        exit 0 ;;
736
 
    *:OpenBSD:*:*)
737
 
        echo ${UNAME_MACHINE}-unknown-openbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
 
748
        # Determine whether the default compiler uses glibc.
 
749
        eval $set_cc_for_build
 
750
        sed 's/^        //' << EOF >$dummy.c
 
751
        #include <features.h>
 
752
        #if __GLIBC__ >= 2
 
753
        LIBC=gnu
 
754
        #else
 
755
        LIBC=
 
756
        #endif
 
757
EOF
 
758
        eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=`
 
759
        rm -f $dummy.c && rmdir $tmpdir
 
760
        echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`${LIBC:+-$LIBC}
738
761
        exit 0 ;;
739
762
    i*:CYGWIN*:*)
740
763
        echo ${UNAME_MACHINE}-pc-cygwin
745
768
    i*:PW*:*)
746
769
        echo ${UNAME_MACHINE}-pc-pw32
747
770
        exit 0 ;;
 
771
    x86:Interix*:3*)
 
772
        echo i386-pc-interix3
 
773
        exit 0 ;;
748
774
    i*:Windows_NT*:* | Pentium*:Windows_NT*:*)
749
775
        # How do we know it's Interix rather than the generic POSIX subsystem?
750
776
        # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we
770
796
        echo ${UNAME_MACHINE}-unknown-linux-gnu
771
797
        exit 0 ;;
772
798
    ia64:Linux:*:*)
773
 
        echo ${UNAME_MACHINE}-unknown-linux
 
799
        echo ${UNAME_MACHINE}-unknown-linux-gnu
774
800
        exit 0 ;;
775
801
    m68*:Linux:*:*)
776
802
        echo ${UNAME_MACHINE}-unknown-linux-gnu
777
803
        exit 0 ;;
778
804
    mips:Linux:*:*)
779
 
        case `sed -n '/^byte/s/^.*: \(.*\) endian/\1/p' < /proc/cpuinfo` in
780
 
          big)    echo mips-unknown-linux-gnu && exit 0 ;;
781
 
          little) echo mipsel-unknown-linux-gnu && exit 0 ;;
782
 
        esac
 
805
        eval $set_cc_for_build
 
806
        sed 's/^        //' << EOF >$dummy.c
 
807
        #undef CPU
 
808
        #undef mips
 
809
        #undef mipsel
 
810
        #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
 
811
        CPU=mipsel
 
812
        #else
 
813
        #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
 
814
        CPU=mips
 
815
        #else
 
816
        CPU=
 
817
        #endif
 
818
        #endif
 
819
EOF
 
820
        eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
 
821
        rm -f $dummy.c && rmdir $tmpdir
 
822
        test x"${CPU}" != x && echo "${CPU}-pc-linux-gnu" && exit 0
783
823
        ;;
784
824
    ppc:Linux:*:*)
785
825
        echo powerpc-unknown-linux-gnu
828
868
        # The BFD linker knows what the default object file format is, so
829
869
        # first see if it will tell us. cd to the root directory to prevent
830
870
        # problems with other programs or directories called `ld' in the path.
831
 
        ld_supported_targets=`cd /; ld --help 2>&1 \
 
871
        # Set LC_ALL=C to ensure ld outputs messages in English.
 
872
        ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \
832
873
                         | sed -ne '/supported targets:/!d
833
874
                                    s/[         ][      ]*/ /g
834
875
                                    s/.*supported targets: *//
840
881
                ;;
841
882
          a.out-i386-linux)
842
883
                echo "${UNAME_MACHINE}-pc-linux-gnuaout"
843
 
                exit 0 ;;               
 
884
                exit 0 ;;
844
885
          coff-i386)
845
886
                echo "${UNAME_MACHINE}-pc-linux-gnucoff"
846
887
                exit 0 ;;
852
893
        esac
853
894
        # Determine whether the default compiler is a.out or elf
854
895
        eval $set_cc_for_build
855
 
        cat >$dummy.c <<EOF
856
 
#include <features.h>
857
 
#ifdef __cplusplus
858
 
#include <stdio.h>  /* for printf() prototype */
859
 
        int main (int argc, char *argv[]) {
860
 
#else
861
 
        int main (argc, argv) int argc; char *argv[]; {
862
 
#endif
863
 
#ifdef __ELF__
864
 
# ifdef __GLIBC__
865
 
#  if __GLIBC__ >= 2
866
 
    printf ("%s-pc-linux-gnu\n", argv[1]);
867
 
#  else
868
 
    printf ("%s-pc-linux-gnulibc1\n", argv[1]);
869
 
#  endif
870
 
# else
871
 
   printf ("%s-pc-linux-gnulibc1\n", argv[1]);
872
 
# endif
873
 
#else
874
 
  printf ("%s-pc-linux-gnuaout\n", argv[1]);
875
 
#endif
876
 
  return 0;
877
 
}
 
896
        sed 's/^        //' << EOF >$dummy.c
 
897
        #include <features.h>
 
898
        #ifdef __ELF__
 
899
        # ifdef __GLIBC__
 
900
        #  if __GLIBC__ >= 2
 
901
        LIBC=gnu
 
902
        #  else
 
903
        LIBC=gnulibc1
 
904
        #  endif
 
905
        # else
 
906
        LIBC=gnulibc1
 
907
        # endif
 
908
        #else
 
909
        #ifdef __INTEL_COMPILER
 
910
        LIBC=gnu
 
911
        #else
 
912
        LIBC=gnuaout
 
913
        #endif
 
914
        #endif
878
915
EOF
879
 
        $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy "${UNAME_MACHINE}" && rm -f $dummy.c $dummy && exit 0
880
 
        rm -f $dummy.c $dummy
 
916
        eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=`
 
917
        rm -f $dummy.c && rmdir $tmpdir
 
918
        test x"${LIBC}" != x && echo "${UNAME_MACHINE}-pc-linux-${LIBC}" && exit 0
881
919
        test x"${TENTATIVE}" != x && echo "${TENTATIVE}" && exit 0
882
920
        ;;
883
921
    i*86:DYNIX/ptx:4*:*)
915
953
                UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
916
954
                echo ${UNAME_MACHINE}-pc-isc$UNAME_REL
917
955
        elif /bin/uname -X 2>/dev/null >/dev/null ; then
918
 
                UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')`
919
 
                (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486
920
 
                (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \
 
956
                UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')`
 
957
                (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486
 
958
                (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \
921
959
                        && UNAME_MACHINE=i586
922
 
                (/bin/uname -X|egrep '^Machine.*Pent ?II' >/dev/null) \
 
960
                (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \
923
961
                        && UNAME_MACHINE=i686
924
 
                (/bin/uname -X|egrep '^Machine.*Pentium Pro' >/dev/null) \
 
962
                (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \
925
963
                        && UNAME_MACHINE=i686
926
964
                echo ${UNAME_MACHINE}-pc-sco$UNAME_REL
927
965
        else
954
992
        # "miniframe"
955
993
        echo m68010-convergent-sysv
956
994
        exit 0 ;;
 
995
    mc68k:UNIX:SYSTEM5:3.51m)
 
996
        echo m68k-convergent-sysv
 
997
        exit 0 ;;
957
998
    M68*:*:R3V[567]*:*)
958
999
        test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;;
959
 
    3[34]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 4850:*:4.0:3.0)
 
1000
    3[34]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0)
960
1001
        OS_REL=''
961
1002
        test -r /etc/.relid \
962
1003
        && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
1047
1088
    SX-5:SUPER-UX:*:*)
1048
1089
        echo sx5-nec-superux${UNAME_RELEASE}
1049
1090
        exit 0 ;;
 
1091
    SX-6:SUPER-UX:*:*)
 
1092
        echo sx6-nec-superux${UNAME_RELEASE}
 
1093
        exit 0 ;;
1050
1094
    Power*:Rhapsody:*:*)
1051
1095
        echo powerpc-apple-rhapsody${UNAME_RELEASE}
1052
1096
        exit 0 ;;
1057
1101
        echo `uname -p`-apple-darwin${UNAME_RELEASE}
1058
1102
        exit 0 ;;
1059
1103
    *:procnto*:*:* | *:QNX:[0123456789]*:*)
1060
 
        if test "${UNAME_MACHINE}" = "x86pc"; then
 
1104
        UNAME_PROCESSOR=`uname -p`
 
1105
        if test "$UNAME_PROCESSOR" = "x86"; then
 
1106
                UNAME_PROCESSOR=i386
1061
1107
                UNAME_MACHINE=pc
1062
1108
        fi
1063
 
        echo `uname -p`-${UNAME_MACHINE}-nto-qnx
 
1109
        echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE}
1064
1110
        exit 0 ;;
1065
1111
    *:QNX:*:4*)
1066
1112
        echo i386-pc-qnx
1067
1113
        exit 0 ;;
1068
 
    NSR-[KW]:NONSTOP_KERNEL:*:*)
 
1114
    NSR-[DGKLNPTVW]:NONSTOP_KERNEL:*:*)
1069
1115
        echo nsr-tandem-nsk${UNAME_RELEASE}
1070
1116
        exit 0 ;;
1071
1117
    *:NonStop-UX:*:*)
1237
1283
}
1238
1284
EOF
1239
1285
 
1240
 
$CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy && rm -f $dummy.c $dummy && exit 0
1241
 
rm -f $dummy.c $dummy
 
1286
$CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && $dummy && rm -f $dummy.c $dummy && rmdir $tmpdir && exit 0
 
1287
rm -f $dummy.c $dummy && rmdir $tmpdir
1242
1288
 
1243
1289
# Apollos put the system type in the environment.
1244
1290