[BACK]Return to config.sub CVS log [TXT][DIR] Up to [local] / src / usr.bin / sudo

Annotation of src/usr.bin/sudo/config.sub, Revision 1.3

1.1       millert     1: #! /bin/sh
1.2       millert     2: # Configuration validation subroutine script.
1.3     ! millert     3: #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
        !             4: #   2000, 2001, 2002 Free Software Foundation, Inc.
        !             5: #
        !             6: # $Sudo: config.sub,v 1.11 2003/01/20 21:07:51 millert Exp $
1.2       millert     7:
1.3     ! millert     8: timestamp='2002-11-30'
1.2       millert     9:
1.1       millert    10: # This file is (in principle) common to ALL GNU software.
                     11: # The presence of a machine in this file suggests that SOME GNU software
                     12: # can handle that machine.  It does not imply ALL GNU software can.
                     13: #
                     14: # This file is free software; you can redistribute it and/or modify
                     15: # it under the terms of the GNU General Public License as published by
                     16: # the Free Software Foundation; either version 2 of the License, or
                     17: # (at your option) any later version.
                     18: #
                     19: # This program is distributed in the hope that it will be useful,
                     20: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     21: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     22: # GNU General Public License for more details.
                     23: #
                     24: # You should have received a copy of the GNU General Public License
                     25: # along with this program; if not, write to the Free Software
                     26: # Foundation, Inc., 59 Temple Place - Suite 330,
                     27: # Boston, MA 02111-1307, USA.
                     28:
                     29: # As a special exception to the GNU General Public License, if you
                     30: # distribute this file as part of a program that contains a
                     31: # configuration script generated by Autoconf, you may include it under
                     32: # the same distribution terms that you use for the rest of that program.
                     33:
1.3     ! millert    34: # Please send patches to <config-patches@gnu.org>.  Submit a context
        !            35: # diff and a properly formatted ChangeLog entry.
1.2       millert    36: #
1.1       millert    37: # Configuration subroutine to validate and canonicalize a configuration type.
                     38: # Supply the specified configuration type as an argument.
                     39: # If it is invalid, we print an error message on stderr and exit with code 1.
                     40: # Otherwise, we print the canonical config type on stdout and succeed.
                     41:
                     42: # This file is supposed to be the same for all GNU packages
                     43: # and recognize all the CPU types, system types and aliases
                     44: # that are meaningful with *any* GNU software.
                     45: # Each package is responsible for reporting which valid configurations
                     46: # it does not support.  The user should be able to distinguish
                     47: # a failure to support a valid configuration from a meaningless
                     48: # configuration.
                     49:
                     50: # The goal of this file is to map all the various variations of a given
                     51: # machine specification into a single specification in the form:
                     52: #      CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
                     53: # or in some cases, the newer four-part form:
                     54: #      CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
                     55: # It is wrong to echo any other type of specification.
                     56:
1.2       millert    57: me=`echo "$0" | sed -e 's,.*/,,'`
                     58:
                     59: usage="\
                     60: Usage: $0 [OPTION] CPU-MFR-OPSYS
                     61:        $0 [OPTION] ALIAS
                     62:
                     63: Canonicalize a configuration name.
                     64:
                     65: Operation modes:
                     66:   -h, --help         print this help, then exit
                     67:   -t, --time-stamp   print date of last modification, then exit
                     68:   -v, --version      print version number, then exit
                     69:
                     70: Report bugs and patches to <config-patches@gnu.org>."
                     71:
                     72: version="\
                     73: GNU config.sub ($timestamp)
                     74:
                     75: Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
                     76: Free Software Foundation, Inc.
                     77:
                     78: This is free software; see the source for copying conditions.  There is NO
                     79: warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
                     80:
                     81: help="
                     82: Try \`$me --help' for more information."
                     83:
                     84: # Parse command line
                     85: while test $# -gt 0 ; do
                     86:   case $1 in
                     87:     --time-stamp | --time* | -t )
                     88:        echo "$timestamp" ; exit 0 ;;
                     89:     --version | -v )
                     90:        echo "$version" ; exit 0 ;;
                     91:     --help | --h* | -h )
                     92:        echo "$usage"; exit 0 ;;
                     93:     -- )     # Stop option processing
                     94:        shift; break ;;
                     95:     - )        # Use stdin as input.
                     96:        break ;;
                     97:     -* )
                     98:        echo "$me: invalid option $1$help"
                     99:        exit 1 ;;
                    100:
                    101:     *local*)
                    102:        # First pass through any local machine types.
                    103:        echo $1
                    104:        exit 0;;
                    105:
                    106:     * )
                    107:        break ;;
                    108:   esac
                    109: done
1.1       millert   110:
1.2       millert   111: case $# in
                    112:  0) echo "$me: missing argument$help" >&2
                    113:     exit 1;;
                    114:  1) ;;
                    115:  *) echo "$me: too many arguments$help" >&2
                    116:     exit 1;;
1.1       millert   117: esac
                    118:
                    119: # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
                    120: # Here we must recognize all the valid KERNEL-OS combinations.
                    121: maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
                    122: case $maybe_os in
1.3     ! millert   123:   nto-qnx* | linux-gnu* | freebsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*)
1.1       millert   124:     os=-$maybe_os
                    125:     basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
                    126:     ;;
                    127:   *)
                    128:     basic_machine=`echo $1 | sed 's/-[^-]*$//'`
                    129:     if [ $basic_machine != $1 ]
                    130:     then os=`echo $1 | sed 's/.*-/-/'`
                    131:     else os=; fi
                    132:     ;;
                    133: esac
                    134:
                    135: ### Let's recognize common machines as not being operating systems so
                    136: ### that things like config.sub decstation-3100 work.  We also
                    137: ### recognize some manufacturers as not being operating systems, so we
                    138: ### can provide default operating systems below.
                    139: case $os in
                    140:        -sun*os*)
                    141:                # Prevent following clause from handling this invalid input.
                    142:                ;;
                    143:        -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
                    144:        -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
                    145:        -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
                    146:        -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
                    147:        -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
                    148:        -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
1.2       millert   149:        -apple | -axis | -sr2201*)
                    150:                os=
                    151:                basic_machine=$1
                    152:                ;;
                    153:        -sim | -cisco | -oki | -wec | -winbond)
1.1       millert   154:                os=
                    155:                basic_machine=$1
                    156:                ;;
1.2       millert   157:        -scout)
                    158:                ;;
                    159:        -wrs)
                    160:                os=-vxworks
                    161:                basic_machine=$1
                    162:                ;;
                    163:        -chorusos*)
                    164:                os=-chorusos
                    165:                basic_machine=$1
                    166:                ;;
                    167:        -chorusrdb)
                    168:                os=-chorusrdb
                    169:                basic_machine=$1
                    170:                ;;
1.1       millert   171:        -hiux*)
                    172:                os=-hiuxwe2
                    173:                ;;
                    174:        -sco5)
1.2       millert   175:                os=-sco3.2v5
1.1       millert   176:                basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
                    177:                ;;
                    178:        -sco4)
                    179:                os=-sco3.2v4
                    180:                basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
                    181:                ;;
                    182:        -sco3.2.[4-9]*)
                    183:                os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
                    184:                basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
                    185:                ;;
                    186:        -sco3.2v[4-9]*)
                    187:                # Don't forget version if it is 3.2v4 or newer.
                    188:                basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
                    189:                ;;
                    190:        -sco*)
                    191:                os=-sco3.2v2
                    192:                basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
                    193:                ;;
1.2       millert   194:        -udk*)
                    195:                basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
                    196:                ;;
1.1       millert   197:        -isc)
                    198:                os=-isc2.2
                    199:                basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
                    200:                ;;
                    201:        -clix*)
                    202:                basic_machine=clipper-intergraph
                    203:                ;;
                    204:        -isc*)
                    205:                basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
                    206:                ;;
                    207:        -lynx*)
                    208:                os=-lynxos
                    209:                ;;
                    210:        -ptx*)
                    211:                basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
                    212:                ;;
                    213:        -windowsnt*)
                    214:                os=`echo $os | sed -e 's/windowsnt/winnt/'`
                    215:                ;;
                    216:        -psos*)
                    217:                os=-psos
                    218:                ;;
1.2       millert   219:        -mint | -mint[0-9]*)
                    220:                basic_machine=m68k-atari
                    221:                os=-mint
                    222:                ;;
1.1       millert   223: esac
                    224:
                    225: # Decode aliases for certain CPU-COMPANY combinations.
                    226: case $basic_machine in
                    227:        # Recognize the basic CPU types without company name.
                    228:        # Some are omitted here because they have special meanings below.
1.3     ! millert   229:        1750a | 580 \
        !           230:        | a29k \
        !           231:        | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
        !           232:        | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
        !           233:        | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \
        !           234:        | clipper \
        !           235:        | d10v | d30v | dlx | dsp16xx \
        !           236:        | fr30 | frv \
        !           237:        | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
        !           238:        | i370 | i860 | i960 | ia64 \
        !           239:        | ip2k \
        !           240:        | m32r | m68000 | m68k | m88k | mcore \
        !           241:        | mips | mipsbe | mipseb | mipsel | mipsle \
        !           242:        | mips16 \
        !           243:        | mips64 | mips64el \
        !           244:        | mips64vr | mips64vrel \
        !           245:        | mips64orion | mips64orionel \
        !           246:        | mips64vr4100 | mips64vr4100el \
        !           247:        | mips64vr4300 | mips64vr4300el \
        !           248:        | mips64vr5000 | mips64vr5000el \
        !           249:        | mipsisa32 | mipsisa32el \
        !           250:        | mipsisa64 | mipsisa64el \
        !           251:        | mipsisa64sb1 | mipsisa64sb1el \
        !           252:        | mipsisa64sr71k | mipsisa64sr71kel \
        !           253:        | mipstx39 | mipstx39el \
        !           254:        | mn10200 | mn10300 \
        !           255:        | ns16k | ns32k \
        !           256:        | openrisc | or32 \
        !           257:        | pdp10 | pdp11 | pj | pjl \
        !           258:        | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
        !           259:        | pyramid \
        !           260:        | sh | sh[1234] | sh3e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \
        !           261:        | sh64 | sh64le \
        !           262:        | sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv9 | sparcv9b \
        !           263:        | strongarm \
        !           264:        | tahoe | thumb | tic80 | tron \
        !           265:        | v850 | v850e \
        !           266:        | we32k \
        !           267:        | x86 | xscale | xstormy16 | xtensa \
        !           268:        | z8k)
1.2       millert   269:                basic_machine=$basic_machine-unknown
                    270:                ;;
                    271:        m6811 | m68hc11 | m6812 | m68hc12)
                    272:                # Motorola 68HC11/12.
1.1       millert   273:                basic_machine=$basic_machine-unknown
1.2       millert   274:                os=-none
                    275:                ;;
                    276:        m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
1.1       millert   277:                ;;
1.2       millert   278:
1.1       millert   279:        # We use `pc' rather than `unknown'
                    280:        # because (1) that's what they normally are, and
                    281:        # (2) the word "unknown" tends to confuse beginning users.
1.2       millert   282:        i*86 | x86_64)
1.1       millert   283:          basic_machine=$basic_machine-pc
                    284:          ;;
                    285:        # Object if more than one company name word.
                    286:        *-*-*)
                    287:                echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
                    288:                exit 1
                    289:                ;;
                    290:        # Recognize the basic CPU types with company name.
1.3     ! millert   291:        580-* \
        !           292:        | a29k-* \
        !           293:        | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
        !           294:        | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
        !           295:        | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
        !           296:        | arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
        !           297:        | avr-* \
        !           298:        | bs2000-* \
        !           299:        | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* \
        !           300:        | clipper-* | cydra-* \
        !           301:        | d10v-* | d30v-* | dlx-* \
        !           302:        | elxsi-* \
        !           303:        | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \
        !           304:        | h8300-* | h8500-* \
        !           305:        | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
        !           306:        | i*86-* | i860-* | i960-* | ia64-* \
        !           307:        | ip2k-* \
        !           308:        | m32r-* \
        !           309:        | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
        !           310:        | m88110-* | m88k-* | mcore-* \
        !           311:        | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
        !           312:        | mips16-* \
        !           313:        | mips64-* | mips64el-* \
        !           314:        | mips64vr-* | mips64vrel-* \
        !           315:        | mips64orion-* | mips64orionel-* \
        !           316:        | mips64vr4100-* | mips64vr4100el-* \
        !           317:        | mips64vr4300-* | mips64vr4300el-* \
        !           318:        | mips64vr5000-* | mips64vr5000el-* \
        !           319:        | mipsisa32-* | mipsisa32el-* \
        !           320:        | mipsisa64-* | mipsisa64el-* \
        !           321:        | mipsisa64sb1-* | mipsisa64sb1el-* \
        !           322:        | mipsisa64sr71k-* | mipsisa64sr71kel-* \
        !           323:        | mipstx39 | mipstx39el \
        !           324:        | none-* | np1-* | ns16k-* | ns32k-* \
        !           325:        | orion-* \
        !           326:        | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
        !           327:        | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
        !           328:        | pyramid-* \
        !           329:        | romp-* | rs6000-* \
        !           330:        | sh-* | sh[1234]-* | sh3e-* | sh[34]eb-* | shbe-* \
        !           331:        | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
        !           332:        | sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \
        !           333:        | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \
        !           334:        | tahoe-* | thumb-* | tic30-* | tic4x-* | tic54x-* | tic80-* | tron-* \
        !           335:        | v850-* | v850e-* | vax-* \
        !           336:        | we32k-* \
        !           337:        | x86-* | x86_64-* | xps100-* | xscale-* | xstormy16-* \
        !           338:        | xtensa-* \
        !           339:        | ymp-* \
        !           340:        | z8k-*)
1.1       millert   341:                ;;
                    342:        # Recognize the various machine names and aliases which stand
                    343:        # for a CPU type and a company and sometimes even an OS.
1.2       millert   344:        386bsd)
                    345:                basic_machine=i386-unknown
                    346:                os=-bsd
                    347:                ;;
1.1       millert   348:        3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
                    349:                basic_machine=m68000-att
                    350:                ;;
                    351:        3b*)
                    352:                basic_machine=we32k-att
                    353:                ;;
1.2       millert   354:        a29khif)
                    355:                basic_machine=a29k-amd
                    356:                os=-udi
                    357:                ;;
                    358:        adobe68k)
                    359:                basic_machine=m68010-adobe
                    360:                os=-scout
                    361:                ;;
1.1       millert   362:        alliant | fx80)
                    363:                basic_machine=fx80-alliant
                    364:                ;;
                    365:        altos | altos3068)
                    366:                basic_machine=m68k-altos
                    367:                ;;
                    368:        am29k)
                    369:                basic_machine=a29k-none
                    370:                os=-bsd
                    371:                ;;
                    372:        amdahl)
                    373:                basic_machine=580-amdahl
                    374:                os=-sysv
                    375:                ;;
                    376:        amiga | amiga-*)
1.2       millert   377:                basic_machine=m68k-unknown
1.1       millert   378:                ;;
1.2       millert   379:        amigaos | amigados)
                    380:                basic_machine=m68k-unknown
                    381:                os=-amigaos
1.1       millert   382:                ;;
                    383:        amigaunix | amix)
1.2       millert   384:                basic_machine=m68k-unknown
1.1       millert   385:                os=-sysv4
                    386:                ;;
                    387:        apollo68)
                    388:                basic_machine=m68k-apollo
                    389:                os=-sysv
                    390:                ;;
1.2       millert   391:        apollo68bsd)
                    392:                basic_machine=m68k-apollo
                    393:                os=-bsd
                    394:                ;;
1.1       millert   395:        aux)
                    396:                basic_machine=m68k-apple
                    397:                os=-aux
                    398:                ;;
                    399:        balance)
                    400:                basic_machine=ns32k-sequent
                    401:                os=-dynix
                    402:                ;;
1.3     ! millert   403:        c90)
        !           404:                basic_machine=c90-cray
        !           405:                os=-unicos
        !           406:                ;;
1.1       millert   407:        convex-c1)
                    408:                basic_machine=c1-convex
                    409:                os=-bsd
                    410:                ;;
                    411:        convex-c2)
                    412:                basic_machine=c2-convex
                    413:                os=-bsd
                    414:                ;;
                    415:        convex-c32)
                    416:                basic_machine=c32-convex
                    417:                os=-bsd
                    418:                ;;
                    419:        convex-c34)
                    420:                basic_machine=c34-convex
                    421:                os=-bsd
                    422:                ;;
                    423:        convex-c38)
                    424:                basic_machine=c38-convex
                    425:                os=-bsd
                    426:                ;;
1.3     ! millert   427:        cray | j90)
        !           428:                basic_machine=j90-cray
1.1       millert   429:                os=-unicos
                    430:                ;;
                    431:        crds | unos)
                    432:                basic_machine=m68k-crds
                    433:                ;;
1.2       millert   434:        cris | cris-* | etrax*)
                    435:                basic_machine=cris-axis
                    436:                ;;
1.1       millert   437:        da30 | da30-*)
                    438:                basic_machine=m68k-da30
                    439:                ;;
                    440:        decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
                    441:                basic_machine=mips-dec
                    442:                ;;
1.3     ! millert   443:        decsystem10* | dec10*)
        !           444:                basic_machine=pdp10-dec
        !           445:                os=-tops10
        !           446:                ;;
        !           447:        decsystem20* | dec20*)
        !           448:                basic_machine=pdp10-dec
        !           449:                os=-tops20
        !           450:                ;;
1.1       millert   451:        delta | 3300 | motorola-3300 | motorola-delta \
                    452:              | 3300-motorola | delta-motorola)
                    453:                basic_machine=m68k-motorola
                    454:                ;;
                    455:        delta88)
                    456:                basic_machine=m88k-motorola
                    457:                os=-sysv3
                    458:                ;;
                    459:        dpx20 | dpx20-*)
                    460:                basic_machine=rs6000-bull
                    461:                os=-bosx
                    462:                ;;
                    463:        dpx2* | dpx2*-bull)
                    464:                basic_machine=m68k-bull
                    465:                os=-sysv3
                    466:                ;;
                    467:        ebmon29k)
                    468:                basic_machine=a29k-amd
                    469:                os=-ebmon
                    470:                ;;
                    471:        elxsi)
                    472:                basic_machine=elxsi-elxsi
                    473:                os=-bsd
                    474:                ;;
                    475:        encore | umax | mmax)
                    476:                basic_machine=ns32k-encore
                    477:                ;;
1.2       millert   478:        es1800 | OSE68k | ose68k | ose | OSE)
                    479:                basic_machine=m68k-ericsson
                    480:                os=-ose
                    481:                ;;
1.1       millert   482:        fx2800)
                    483:                basic_machine=i860-alliant
                    484:                ;;
                    485:        genix)
                    486:                basic_machine=ns32k-ns
                    487:                ;;
                    488:        gmicro)
                    489:                basic_machine=tron-gmicro
                    490:                os=-sysv
                    491:                ;;
1.2       millert   492:        go32)
                    493:                basic_machine=i386-pc
                    494:                os=-go32
                    495:                ;;
1.1       millert   496:        h3050r* | hiux*)
                    497:                basic_machine=hppa1.1-hitachi
                    498:                os=-hiuxwe2
                    499:                ;;
                    500:        h8300hms)
                    501:                basic_machine=h8300-hitachi
                    502:                os=-hms
                    503:                ;;
1.2       millert   504:        h8300xray)
                    505:                basic_machine=h8300-hitachi
                    506:                os=-xray
                    507:                ;;
                    508:        h8500hms)
                    509:                basic_machine=h8500-hitachi
                    510:                os=-hms
                    511:                ;;
1.1       millert   512:        sr2201*)
                    513:                basic_machine=harp1e-hitachi
                    514:                os=-hiuxmpp
                    515:                ;;
                    516:        harris)
                    517:                basic_machine=m88k-harris
                    518:                os=-sysv3
                    519:                ;;
                    520:        hp300-*)
                    521:                basic_machine=m68k-hp
                    522:                ;;
                    523:        hp300bsd)
                    524:                basic_machine=m68k-hp
                    525:                os=-bsd
                    526:                ;;
                    527:        hp300hpux)
                    528:                basic_machine=m68k-hp
                    529:                os=-hpux
                    530:                ;;
1.2       millert   531:        hp3k9[0-9][0-9] | hp9[0-9][0-9])
                    532:                basic_machine=hppa1.0-hp
                    533:                ;;
1.1       millert   534:        hp9k2[0-9][0-9] | hp9k31[0-9])
                    535:                basic_machine=m68000-hp
                    536:                ;;
                    537:        hp9k3[2-9][0-9])
                    538:                basic_machine=m68k-hp
                    539:                ;;
1.2       millert   540:        hp9k6[0-9][0-9] | hp6[0-9][0-9])
                    541:                basic_machine=hppa1.0-hp
                    542:                ;;
                    543:        hp9k7[0-79][0-9] | hp7[0-79][0-9])
                    544:                basic_machine=hppa1.1-hp
                    545:                ;;
                    546:        hp9k78[0-9] | hp78[0-9])
                    547:                # FIXME: really hppa2.0-hp
                    548:                basic_machine=hppa1.1-hp
                    549:                ;;
                    550:        hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
                    551:                # FIXME: really hppa2.0-hp
                    552:                basic_machine=hppa1.1-hp
                    553:                ;;
                    554:        hp9k8[0-9][13679] | hp8[0-9][13679])
1.1       millert   555:                basic_machine=hppa1.1-hp
                    556:                ;;
                    557:        hp9k8[0-9][0-9] | hp8[0-9][0-9])
                    558:                basic_machine=hppa1.0-hp
                    559:                ;;
                    560:        hppa-next)
                    561:                os=-nextstep3
                    562:                ;;
1.2       millert   563:        hppaosf)
                    564:                basic_machine=hppa1.1-hp
                    565:                os=-osf
                    566:                ;;
                    567:        hppro)
                    568:                basic_machine=hppa1.1-hp
                    569:                os=-proelf
                    570:                ;;
1.1       millert   571:        i370-ibm* | ibm*)
                    572:                basic_machine=i370-ibm
                    573:                ;;
                    574: # I'm not sure what "Sysv32" means.  Should this be sysv3.2?
1.2       millert   575:        i*86v32)
1.1       millert   576:                basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
                    577:                os=-sysv32
                    578:                ;;
1.2       millert   579:        i*86v4*)
1.1       millert   580:                basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
                    581:                os=-sysv4
                    582:                ;;
1.2       millert   583:        i*86v)
1.1       millert   584:                basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
                    585:                os=-sysv
                    586:                ;;
1.2       millert   587:        i*86sol2)
1.1       millert   588:                basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
                    589:                os=-solaris2
                    590:                ;;
1.2       millert   591:        i386mach)
                    592:                basic_machine=i386-mach
                    593:                os=-mach
                    594:                ;;
                    595:        i386-vsta | vsta)
                    596:                basic_machine=i386-unknown
                    597:                os=-vsta
                    598:                ;;
1.1       millert   599:        iris | iris4d)
                    600:                basic_machine=mips-sgi
                    601:                case $os in
                    602:                    -irix*)
                    603:                        ;;
                    604:                    *)
                    605:                        os=-irix4
                    606:                        ;;
                    607:                esac
                    608:                ;;
                    609:        isi68 | isi)
                    610:                basic_machine=m68k-isi
                    611:                os=-sysv
                    612:                ;;
                    613:        m88k-omron*)
                    614:                basic_machine=m88k-omron
                    615:                ;;
                    616:        magnum | m3230)
                    617:                basic_machine=mips-mips
                    618:                os=-sysv
                    619:                ;;
                    620:        merlin)
                    621:                basic_machine=ns32k-utek
                    622:                os=-sysv
                    623:                ;;
1.2       millert   624:        mingw32)
                    625:                basic_machine=i386-pc
                    626:                os=-mingw32
                    627:                ;;
1.1       millert   628:        miniframe)
                    629:                basic_machine=m68000-convergent
                    630:                ;;
1.2       millert   631:        *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*)
                    632:                basic_machine=m68k-atari
                    633:                os=-mint
                    634:                ;;
1.1       millert   635:        mips3*-*)
                    636:                basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
                    637:                ;;
                    638:        mips3*)
                    639:                basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
                    640:                ;;
1.2       millert   641:        mmix*)
                    642:                basic_machine=mmix-knuth
                    643:                os=-mmixware
                    644:                ;;
                    645:        monitor)
                    646:                basic_machine=m68k-rom68k
                    647:                os=-coff
                    648:                ;;
1.3     ! millert   649:        morphos)
        !           650:                basic_machine=powerpc-unknown
        !           651:                os=-morphos
        !           652:                ;;
1.2       millert   653:        msdos)
                    654:                basic_machine=i386-pc
                    655:                os=-msdos
                    656:                ;;
                    657:        mvs)
                    658:                basic_machine=i370-ibm
                    659:                os=-mvs
                    660:                ;;
1.1       millert   661:        ncr3000)
                    662:                basic_machine=i486-ncr
                    663:                os=-sysv4
                    664:                ;;
1.2       millert   665:        netbsd386)
                    666:                basic_machine=i386-unknown
                    667:                os=-netbsd
                    668:                ;;
                    669:        netwinder)
                    670:                basic_machine=armv4l-rebel
                    671:                os=-linux
                    672:                ;;
1.1       millert   673:        news | news700 | news800 | news900)
                    674:                basic_machine=m68k-sony
                    675:                os=-newsos
                    676:                ;;
                    677:        news1000)
                    678:                basic_machine=m68030-sony
                    679:                os=-newsos
                    680:                ;;
                    681:        news-3600 | risc-news)
                    682:                basic_machine=mips-sony
                    683:                os=-newsos
                    684:                ;;
1.2       millert   685:        necv70)
                    686:                basic_machine=v70-nec
                    687:                os=-sysv
                    688:                ;;
1.1       millert   689:        next | m*-next )
                    690:                basic_machine=m68k-next
                    691:                case $os in
                    692:                    -nextstep* )
                    693:                        ;;
                    694:                    -ns2*)
                    695:                      os=-nextstep2
                    696:                        ;;
                    697:                    *)
                    698:                      os=-nextstep3
                    699:                        ;;
                    700:                esac
                    701:                ;;
                    702:        nh3000)
                    703:                basic_machine=m68k-harris
                    704:                os=-cxux
                    705:                ;;
                    706:        nh[45]000)
                    707:                basic_machine=m88k-harris
                    708:                os=-cxux
                    709:                ;;
                    710:        nindy960)
                    711:                basic_machine=i960-intel
                    712:                os=-nindy
                    713:                ;;
1.2       millert   714:        mon960)
                    715:                basic_machine=i960-intel
                    716:                os=-mon960
                    717:                ;;
                    718:        nonstopux)
                    719:                basic_machine=mips-compaq
                    720:                os=-nonstopux
                    721:                ;;
1.1       millert   722:        np1)
                    723:                basic_machine=np1-gould
                    724:                ;;
1.2       millert   725:        nsr-tandem)
                    726:                basic_machine=nsr-tandem
                    727:                ;;
                    728:        op50n-* | op60c-*)
                    729:                basic_machine=hppa1.1-oki
                    730:                os=-proelf
                    731:                ;;
1.3     ! millert   732:        or32 | or32-*)
        !           733:                basic_machine=or32-unknown
        !           734:                os=-coff
        !           735:                ;;
1.2       millert   736:        OSE68000 | ose68000)
                    737:                basic_machine=m68000-ericsson
                    738:                os=-ose
                    739:                ;;
                    740:        os68k)
                    741:                basic_machine=m68k-none
                    742:                os=-os68k
                    743:                ;;
1.1       millert   744:        pa-hitachi)
                    745:                basic_machine=hppa1.1-hitachi
                    746:                os=-hiuxwe2
                    747:                ;;
                    748:        paragon)
                    749:                basic_machine=i860-intel
                    750:                os=-osf
                    751:                ;;
                    752:        pbd)
                    753:                basic_machine=sparc-tti
                    754:                ;;
                    755:        pbb)
                    756:                basic_machine=m68k-tti
                    757:                ;;
1.3     ! millert   758:        pc532 | pc532-*)
1.1       millert   759:                basic_machine=ns32k-pc532
                    760:                ;;
1.3     ! millert   761:        pentium | p5 | k5 | k6 | nexgen | viac3)
1.2       millert   762:                basic_machine=i586-pc
1.1       millert   763:                ;;
1.3     ! millert   764:        pentiumpro | p6 | 6x86 | athlon | athlon_*)
1.2       millert   765:                basic_machine=i686-pc
1.1       millert   766:                ;;
1.2       millert   767:        pentiumii | pentium2)
                    768:                basic_machine=i686-pc
                    769:                ;;
1.3     ! millert   770:        pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
1.1       millert   771:                basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
                    772:                ;;
1.2       millert   773:        pentiumpro-* | p6-* | 6x86-* | athlon-*)
1.1       millert   774:                basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
                    775:                ;;
1.2       millert   776:        pentiumii-* | pentium2-*)
                    777:                basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
1.1       millert   778:                ;;
                    779:        pn)
                    780:                basic_machine=pn-gould
                    781:                ;;
1.2       millert   782:        power)  basic_machine=power-ibm
1.1       millert   783:                ;;
                    784:        ppc)    basic_machine=powerpc-unknown
1.3     ! millert   785:                ;;
1.1       millert   786:        ppc-*)  basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
                    787:                ;;
                    788:        ppcle | powerpclittle | ppc-le | powerpc-little)
                    789:                basic_machine=powerpcle-unknown
1.3     ! millert   790:                ;;
1.1       millert   791:        ppcle-* | powerpclittle-*)
                    792:                basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
                    793:                ;;
1.3     ! millert   794:        ppc64)  basic_machine=powerpc64-unknown
        !           795:                ;;
        !           796:        ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
        !           797:                ;;
        !           798:        ppc64le | powerpc64little | ppc64-le | powerpc64-little)
        !           799:                basic_machine=powerpc64le-unknown
        !           800:                ;;
        !           801:        ppc64le-* | powerpc64little-*)
        !           802:                basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
        !           803:                ;;
1.1       millert   804:        ps2)
                    805:                basic_machine=i386-ibm
                    806:                ;;
1.2       millert   807:        pw32)
                    808:                basic_machine=i586-unknown
                    809:                os=-pw32
                    810:                ;;
                    811:        rom68k)
                    812:                basic_machine=m68k-rom68k
                    813:                os=-coff
                    814:                ;;
1.1       millert   815:        rm[46]00)
                    816:                basic_machine=mips-siemens
                    817:                ;;
                    818:        rtpc | rtpc-*)
                    819:                basic_machine=romp-ibm
                    820:                ;;
1.3     ! millert   821:        s390 | s390-*)
        !           822:                basic_machine=s390-ibm
        !           823:                ;;
        !           824:        s390x | s390x-*)
        !           825:                basic_machine=s390x-ibm
        !           826:                ;;
1.2       millert   827:        sa29200)
                    828:                basic_machine=a29k-amd
                    829:                os=-udi
                    830:                ;;
1.3     ! millert   831:        sb1)
        !           832:                basic_machine=mipsisa64sb1-unknown
        !           833:                ;;
        !           834:        sb1el)
        !           835:                basic_machine=mipsisa64sb1el-unknown
        !           836:                ;;
1.1       millert   837:        sequent)
                    838:                basic_machine=i386-sequent
                    839:                ;;
                    840:        sh)
                    841:                basic_machine=sh-hitachi
                    842:                os=-hms
                    843:                ;;
1.3     ! millert   844:        sparclite-wrs | simso-wrs)
1.2       millert   845:                basic_machine=sparclite-wrs
                    846:                os=-vxworks
                    847:                ;;
1.1       millert   848:        sps7)
                    849:                basic_machine=m68k-bull
                    850:                os=-sysv2
                    851:                ;;
                    852:        spur)
                    853:                basic_machine=spur-unknown
                    854:                ;;
1.2       millert   855:        st2000)
                    856:                basic_machine=m68k-tandem
                    857:                ;;
                    858:        stratus)
                    859:                basic_machine=i860-stratus
                    860:                os=-sysv4
                    861:                ;;
1.1       millert   862:        sun2)
                    863:                basic_machine=m68000-sun
                    864:                ;;
                    865:        sun2os3)
                    866:                basic_machine=m68000-sun
                    867:                os=-sunos3
                    868:                ;;
                    869:        sun2os4)
                    870:                basic_machine=m68000-sun
                    871:                os=-sunos4
                    872:                ;;
                    873:        sun3os3)
                    874:                basic_machine=m68k-sun
                    875:                os=-sunos3
                    876:                ;;
                    877:        sun3os4)
                    878:                basic_machine=m68k-sun
                    879:                os=-sunos4
                    880:                ;;
                    881:        sun4os3)
                    882:                basic_machine=sparc-sun
                    883:                os=-sunos3
                    884:                ;;
                    885:        sun4os4)
                    886:                basic_machine=sparc-sun
                    887:                os=-sunos4
                    888:                ;;
                    889:        sun4sol2)
                    890:                basic_machine=sparc-sun
                    891:                os=-solaris2
                    892:                ;;
                    893:        sun3 | sun3-*)
                    894:                basic_machine=m68k-sun
                    895:                ;;
                    896:        sun4)
                    897:                basic_machine=sparc-sun
                    898:                ;;
                    899:        sun386 | sun386i | roadrunner)
                    900:                basic_machine=i386-sun
                    901:                ;;
1.2       millert   902:        sv1)
                    903:                basic_machine=sv1-cray
                    904:                os=-unicos
                    905:                ;;
1.1       millert   906:        symmetry)
                    907:                basic_machine=i386-sequent
                    908:                os=-dynix
                    909:                ;;
1.3     ! millert   910:        t3d)
        !           911:                basic_machine=alpha-cray
        !           912:                os=-unicos
        !           913:                ;;
1.2       millert   914:        t3e)
1.3     ! millert   915:                basic_machine=alphaev5-cray
        !           916:                os=-unicos
        !           917:                ;;
        !           918:        t90)
        !           919:                basic_machine=t90-cray
1.2       millert   920:                os=-unicos
                    921:                ;;
1.3     ! millert   922:         tic4x | c4x*)
        !           923:                basic_machine=tic4x-unknown
        !           924:                os=-coff
        !           925:                ;;
1.2       millert   926:        tic54x | c54x*)
                    927:                basic_machine=tic54x-unknown
                    928:                os=-coff
                    929:                ;;
                    930:        tx39)
                    931:                basic_machine=mipstx39-unknown
                    932:                ;;
                    933:        tx39el)
                    934:                basic_machine=mipstx39el-unknown
                    935:                ;;
1.3     ! millert   936:        toad1)
        !           937:                basic_machine=pdp10-xkl
        !           938:                os=-tops20
        !           939:                ;;
1.1       millert   940:        tower | tower-32)
                    941:                basic_machine=m68k-ncr
                    942:                ;;
                    943:        udi29k)
                    944:                basic_machine=a29k-amd
                    945:                os=-udi
                    946:                ;;
                    947:        ultra3)
                    948:                basic_machine=a29k-nyu
                    949:                os=-sym1
                    950:                ;;
1.2       millert   951:        v810 | necv810)
                    952:                basic_machine=v810-nec
                    953:                os=-none
                    954:                ;;
1.1       millert   955:        vaxv)
                    956:                basic_machine=vax-dec
                    957:                os=-sysv
                    958:                ;;
                    959:        vms)
                    960:                basic_machine=vax-dec
                    961:                os=-vms
                    962:                ;;
1.2       millert   963:        vpp*|vx|vx-*)
1.3     ! millert   964:                basic_machine=f301-fujitsu
        !           965:                ;;
1.1       millert   966:        vxworks960)
                    967:                basic_machine=i960-wrs
                    968:                os=-vxworks
                    969:                ;;
                    970:        vxworks68)
                    971:                basic_machine=m68k-wrs
                    972:                os=-vxworks
                    973:                ;;
                    974:        vxworks29k)
                    975:                basic_machine=a29k-wrs
                    976:                os=-vxworks
                    977:                ;;
1.2       millert   978:        w65*)
                    979:                basic_machine=w65-wdc
                    980:                os=-none
                    981:                ;;
                    982:        w89k-*)
                    983:                basic_machine=hppa1.1-winbond
                    984:                os=-proelf
                    985:                ;;
1.3     ! millert   986:        xps | xps100)
        !           987:                basic_machine=xps100-honeywell
1.2       millert   988:                ;;
1.3     ! millert   989:        ymp)
        !           990:                basic_machine=ymp-cray
1.1       millert   991:                os=-unicos
                    992:                ;;
1.2       millert   993:        z8k-*-coff)
                    994:                basic_machine=z8k-unknown
                    995:                os=-sim
                    996:                ;;
1.1       millert   997:        none)
                    998:                basic_machine=none-none
                    999:                os=-none
                   1000:                ;;
                   1001:
                   1002: # Here we handle the default manufacturer of certain CPU types.  It is in
                   1003: # some cases the only manufacturer, in others, it is the most popular.
1.2       millert  1004:        w89k)
                   1005:                basic_machine=hppa1.1-winbond
                   1006:                ;;
                   1007:        op50n)
                   1008:                basic_machine=hppa1.1-oki
                   1009:                ;;
                   1010:        op60c)
                   1011:                basic_machine=hppa1.1-oki
                   1012:                ;;
1.1       millert  1013:        romp)
                   1014:                basic_machine=romp-ibm
                   1015:                ;;
                   1016:        rs6000)
                   1017:                basic_machine=rs6000-ibm
                   1018:                ;;
                   1019:        vax)
                   1020:                basic_machine=vax-dec
                   1021:                ;;
1.2       millert  1022:        pdp10)
                   1023:                # there are many clones, so DEC is not a safe bet
                   1024:                basic_machine=pdp10-unknown
                   1025:                ;;
1.1       millert  1026:        pdp11)
                   1027:                basic_machine=pdp11-dec
                   1028:                ;;
                   1029:        we32k)
                   1030:                basic_machine=we32k-att
                   1031:                ;;
1.3     ! millert  1032:        sh3 | sh4 | sh3eb | sh4eb | sh[1234]le | sh3ele)
1.2       millert  1033:                basic_machine=sh-unknown
                   1034:                ;;
1.3     ! millert  1035:        sh64)
        !          1036:                basic_machine=sh64-unknown
        !          1037:                ;;
1.2       millert  1038:        sparc | sparcv9 | sparcv9b)
1.1       millert  1039:                basic_machine=sparc-sun
                   1040:                ;;
1.3     ! millert  1041:        cydra)
1.1       millert  1042:                basic_machine=cydra-cydrome
                   1043:                ;;
                   1044:        orion)
                   1045:                basic_machine=orion-highlevel
                   1046:                ;;
                   1047:        orion105)
                   1048:                basic_machine=clipper-highlevel
                   1049:                ;;
1.2       millert  1050:        mac | mpw | mac-mpw)
                   1051:                basic_machine=m68k-apple
                   1052:                ;;
                   1053:        pmac | pmac-mpw)
                   1054:                basic_machine=powerpc-apple
                   1055:                ;;
                   1056:        *-unknown)
                   1057:                # Make sure to match an already-canonicalized machine name.
                   1058:                ;;
1.1       millert  1059:        *)
                   1060:                echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
                   1061:                exit 1
                   1062:                ;;
                   1063: esac
                   1064:
                   1065: # Here we canonicalize certain aliases for manufacturers.
                   1066: case $basic_machine in
                   1067:        *-digital*)
                   1068:                basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
                   1069:                ;;
                   1070:        *-commodore*)
                   1071:                basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
                   1072:                ;;
                   1073:        *)
                   1074:                ;;
                   1075: esac
                   1076:
                   1077: # Decode manufacturer-specific aliases for certain operating systems.
                   1078:
                   1079: if [ x"$os" != x"" ]
                   1080: then
                   1081: case $os in
                   1082:         # First match some system type aliases
                   1083:         # that might get confused with valid system types.
                   1084:        # -solaris* is a basic system type, with this one exception.
                   1085:        -solaris1 | -solaris1.*)
                   1086:                os=`echo $os | sed -e 's|solaris1|sunos4|'`
                   1087:                ;;
                   1088:        -solaris)
                   1089:                os=-solaris2
                   1090:                ;;
1.2       millert  1091:        -svr4*)
1.1       millert  1092:                os=-sysv4
                   1093:                ;;
1.2       millert  1094:        -unixware*)
                   1095:                os=-sysv4.2uw
                   1096:                ;;
1.1       millert  1097:        -gnu/linux*)
                   1098:                os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
                   1099:                ;;
                   1100:        # First accept the basic system types.
                   1101:        # The portable systems comes first.
                   1102:        # Each alternative MUST END IN A *, to match a version number.
                   1103:        # -sysv* is not here because it comes later, after sysvr4.
                   1104:        -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
                   1105:              | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\
                   1106:              | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
1.2       millert  1107:              | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
                   1108:              | -aos* \
1.1       millert  1109:              | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
                   1110:              | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
                   1111:              | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \
1.2       millert  1112:              | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
1.1       millert  1113:              | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
                   1114:              | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
1.2       millert  1115:              | -chorusos* | -chorusrdb* \
                   1116:              | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
                   1117:              | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \
1.3     ! millert  1118:              | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
1.2       millert  1119:              | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
1.3     ! millert  1120:              | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
        !          1121:              | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
        !          1122:              | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
        !          1123:              | -powermax* | -dnix*)
1.1       millert  1124:        # Remember, each alternative MUST END IN *, to match a version number.
                   1125:                ;;
1.2       millert  1126:        -qnx*)
                   1127:                case $basic_machine in
                   1128:                    x86-* | i*86-*)
                   1129:                        ;;
                   1130:                    *)
                   1131:                        os=-nto$os
                   1132:                        ;;
                   1133:                esac
                   1134:                ;;
1.3     ! millert  1135:        -nto-qnx*)
        !          1136:                ;;
1.2       millert  1137:        -nto*)
1.3     ! millert  1138:                os=`echo $os | sed -e 's|nto|nto-qnx|'`
1.2       millert  1139:                ;;
                   1140:        -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
                   1141:              | -windows* | -osx | -abug | -netware* | -os9* | -beos* \
                   1142:              | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
                   1143:                ;;
                   1144:        -mac*)
                   1145:                os=`echo $os | sed -e 's|mac|macos|'`
                   1146:                ;;
1.1       millert  1147:        -linux*)
                   1148:                os=`echo $os | sed -e 's|linux|linux-gnu|'`
                   1149:                ;;
                   1150:        -sunos5*)
                   1151:                os=`echo $os | sed -e 's|sunos5|solaris2|'`
                   1152:                ;;
                   1153:        -sunos6*)
                   1154:                os=`echo $os | sed -e 's|sunos6|solaris3|'`
                   1155:                ;;
1.2       millert  1156:        -opened*)
                   1157:                os=-openedition
                   1158:                ;;
                   1159:        -wince*)
                   1160:                os=-wince
                   1161:                ;;
1.1       millert  1162:        -osfrose*)
                   1163:                os=-osfrose
                   1164:                ;;
                   1165:        -osf*)
                   1166:                os=-osf
                   1167:                ;;
                   1168:        -utek*)
                   1169:                os=-bsd
                   1170:                ;;
                   1171:        -dynix*)
                   1172:                os=-bsd
                   1173:                ;;
                   1174:        -acis*)
                   1175:                os=-aos
                   1176:                ;;
1.3     ! millert  1177:        -atheos*)
        !          1178:                os=-atheos
        !          1179:                ;;
1.2       millert  1180:        -386bsd)
                   1181:                os=-bsd
                   1182:                ;;
1.1       millert  1183:        -ctix* | -uts*)
                   1184:                os=-sysv
                   1185:                ;;
1.3     ! millert  1186:        -nova*)
        !          1187:                os=-rtmk-nova
        !          1188:                ;;
1.1       millert  1189:        -ns2 )
1.3     ! millert  1190:                os=-nextstep2
1.1       millert  1191:                ;;
1.2       millert  1192:        -nsk*)
                   1193:                os=-nsk
                   1194:                ;;
1.1       millert  1195:        # Preserve the version number of sinix5.
                   1196:        -sinix5.*)
                   1197:                os=`echo $os | sed -e 's|sinix|sysv|'`
                   1198:                ;;
                   1199:        -sinix*)
                   1200:                os=-sysv4
                   1201:                ;;
                   1202:        -triton*)
                   1203:                os=-sysv3
                   1204:                ;;
                   1205:        -oss*)
                   1206:                os=-sysv3
                   1207:                ;;
                   1208:        -svr4)
                   1209:                os=-sysv4
                   1210:                ;;
                   1211:        -svr3)
                   1212:                os=-sysv3
                   1213:                ;;
                   1214:        -sysvr4)
                   1215:                os=-sysv4
                   1216:                ;;
                   1217:        # This must come after -sysvr4.
                   1218:        -sysv*)
                   1219:                ;;
1.2       millert  1220:        -ose*)
                   1221:                os=-ose
                   1222:                ;;
                   1223:        -es1800*)
                   1224:                os=-ose
                   1225:                ;;
1.1       millert  1226:        -xenix)
                   1227:                os=-xenix
                   1228:                ;;
1.3     ! millert  1229:        -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
        !          1230:                os=-mint
1.2       millert  1231:                ;;
1.1       millert  1232:        -none)
                   1233:                ;;
                   1234:        *)
                   1235:                # Get rid of the `-' at the beginning of $os.
                   1236:                os=`echo $os | sed 's/[^-]*-//'`
                   1237:                echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
                   1238:                exit 1
                   1239:                ;;
                   1240: esac
                   1241: else
                   1242:
                   1243: # Here we handle the default operating systems that come with various machines.
                   1244: # The value should be what the vendor currently ships out the door with their
                   1245: # machine or put another way, the most popular os provided with the machine.
                   1246:
                   1247: # Note that if you're going to try to match "-MANUFACTURER" here (say,
                   1248: # "-sun"), then you have to tell the case statement up towards the top
                   1249: # that MANUFACTURER isn't an operating system.  Otherwise, code above
                   1250: # will signal an error saying that MANUFACTURER isn't an operating
                   1251: # system, and we'll never get to this point.
                   1252:
                   1253: case $basic_machine in
                   1254:        *-acorn)
                   1255:                os=-riscix1.2
                   1256:                ;;
1.2       millert  1257:        arm*-rebel)
                   1258:                os=-linux
                   1259:                ;;
1.1       millert  1260:        arm*-semi)
                   1261:                os=-aout
                   1262:                ;;
1.3     ! millert  1263:        # This must come before the *-dec entry.
1.2       millert  1264:        pdp10-*)
                   1265:                os=-tops20
                   1266:                ;;
1.3     ! millert  1267:        pdp11-*)
1.1       millert  1268:                os=-none
                   1269:                ;;
                   1270:        *-dec | vax-*)
                   1271:                os=-ultrix4.2
                   1272:                ;;
                   1273:        m68*-apollo)
                   1274:                os=-domain
                   1275:                ;;
                   1276:        i386-sun)
                   1277:                os=-sunos4.0.2
                   1278:                ;;
                   1279:        m68000-sun)
                   1280:                os=-sunos3
                   1281:                # This also exists in the configure program, but was not the
                   1282:                # default.
                   1283:                # os=-sunos4
                   1284:                ;;
1.2       millert  1285:        m68*-cisco)
                   1286:                os=-aout
                   1287:                ;;
                   1288:        mips*-cisco)
                   1289:                os=-elf
                   1290:                ;;
                   1291:        mips*-*)
                   1292:                os=-elf
                   1293:                ;;
1.3     ! millert  1294:        or32-*)
        !          1295:                os=-coff
        !          1296:                ;;
1.1       millert  1297:        *-tti)  # must be before sparc entry or we get the wrong os.
                   1298:                os=-sysv3
                   1299:                ;;
                   1300:        sparc-* | *-sun)
                   1301:                os=-sunos4.1.1
                   1302:                ;;
1.2       millert  1303:        *-be)
                   1304:                os=-beos
                   1305:                ;;
1.1       millert  1306:        *-ibm)
                   1307:                os=-aix
                   1308:                ;;
1.2       millert  1309:        *-wec)
                   1310:                os=-proelf
                   1311:                ;;
                   1312:        *-winbond)
                   1313:                os=-proelf
                   1314:                ;;
                   1315:        *-oki)
                   1316:                os=-proelf
                   1317:                ;;
1.1       millert  1318:        *-hp)
                   1319:                os=-hpux
                   1320:                ;;
                   1321:        *-hitachi)
                   1322:                os=-hiux
                   1323:                ;;
                   1324:        i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
                   1325:                os=-sysv
                   1326:                ;;
                   1327:        *-cbm)
1.2       millert  1328:                os=-amigaos
1.1       millert  1329:                ;;
                   1330:        *-dg)
                   1331:                os=-dgux
                   1332:                ;;
                   1333:        *-dolphin)
                   1334:                os=-sysv3
                   1335:                ;;
                   1336:        m68k-ccur)
                   1337:                os=-rtu
                   1338:                ;;
                   1339:        m88k-omron*)
                   1340:                os=-luna
                   1341:                ;;
                   1342:        *-next )
                   1343:                os=-nextstep
                   1344:                ;;
                   1345:        *-sequent)
                   1346:                os=-ptx
                   1347:                ;;
                   1348:        *-crds)
                   1349:                os=-unos
                   1350:                ;;
                   1351:        *-ns)
                   1352:                os=-genix
                   1353:                ;;
                   1354:        i370-*)
                   1355:                os=-mvs
                   1356:                ;;
                   1357:        *-next)
                   1358:                os=-nextstep3
                   1359:                ;;
1.3     ! millert  1360:        *-gould)
1.1       millert  1361:                os=-sysv
                   1362:                ;;
1.3     ! millert  1363:        *-highlevel)
1.1       millert  1364:                os=-bsd
                   1365:                ;;
                   1366:        *-encore)
                   1367:                os=-bsd
                   1368:                ;;
1.3     ! millert  1369:        *-sgi)
1.1       millert  1370:                os=-irix
                   1371:                ;;
1.3     ! millert  1372:        *-siemens)
1.1       millert  1373:                os=-sysv4
                   1374:                ;;
                   1375:        *-masscomp)
                   1376:                os=-rtu
                   1377:                ;;
1.2       millert  1378:        f30[01]-fujitsu | f700-fujitsu)
1.1       millert  1379:                os=-uxpv
                   1380:                ;;
1.2       millert  1381:        *-rom68k)
                   1382:                os=-coff
                   1383:                ;;
                   1384:        *-*bug)
                   1385:                os=-coff
                   1386:                ;;
                   1387:        *-apple)
                   1388:                os=-macos
                   1389:                ;;
                   1390:        *-atari*)
                   1391:                os=-mint
                   1392:                ;;
1.1       millert  1393:        *)
                   1394:                os=-none
                   1395:                ;;
                   1396: esac
                   1397: fi
                   1398:
                   1399: # Here we handle the case where we know the os, and the CPU type, but not the
                   1400: # manufacturer.  We pick the logical manufacturer.
                   1401: vendor=unknown
                   1402: case $basic_machine in
                   1403:        *-unknown)
                   1404:                case $os in
                   1405:                        -riscix*)
                   1406:                                vendor=acorn
                   1407:                                ;;
                   1408:                        -sunos*)
                   1409:                                vendor=sun
                   1410:                                ;;
                   1411:                        -aix*)
                   1412:                                vendor=ibm
                   1413:                                ;;
1.2       millert  1414:                        -beos*)
                   1415:                                vendor=be
                   1416:                                ;;
1.1       millert  1417:                        -hpux*)
                   1418:                                vendor=hp
                   1419:                                ;;
1.2       millert  1420:                        -mpeix*)
                   1421:                                vendor=hp
                   1422:                                ;;
1.1       millert  1423:                        -hiux*)
                   1424:                                vendor=hitachi
                   1425:                                ;;
                   1426:                        -unos*)
                   1427:                                vendor=crds
                   1428:                                ;;
                   1429:                        -dgux*)
                   1430:                                vendor=dg
                   1431:                                ;;
                   1432:                        -luna*)
                   1433:                                vendor=omron
                   1434:                                ;;
                   1435:                        -genix*)
                   1436:                                vendor=ns
                   1437:                                ;;
1.2       millert  1438:                        -mvs* | -opened*)
1.1       millert  1439:                                vendor=ibm
                   1440:                                ;;
                   1441:                        -ptx*)
                   1442:                                vendor=sequent
                   1443:                                ;;
1.3     ! millert  1444:                        -vxsim* | -vxworks* | -windiss*)
1.1       millert  1445:                                vendor=wrs
                   1446:                                ;;
                   1447:                        -aux*)
                   1448:                                vendor=apple
                   1449:                                ;;
1.2       millert  1450:                        -hms*)
                   1451:                                vendor=hitachi
                   1452:                                ;;
                   1453:                        -mpw* | -macos*)
                   1454:                                vendor=apple
                   1455:                                ;;
                   1456:                        -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
                   1457:                                vendor=atari
1.3     ! millert  1458:                                ;;
        !          1459:                        -vos*)
        !          1460:                                vendor=stratus
1.2       millert  1461:                                ;;
1.1       millert  1462:                esac
                   1463:                basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
                   1464:                ;;
                   1465: esac
                   1466:
                   1467: echo $basic_machine$os
1.2       millert  1468: exit 0
                   1469:
                   1470: # Local variables:
                   1471: # eval: (add-hook 'write-file-hooks 'time-stamp)
                   1472: # time-stamp-start: "timestamp='"
                   1473: # time-stamp-format: "%:y-%02m-%02d"
                   1474: # time-stamp-end: "'"
                   1475: # End: