[BACK]Return to config.sub CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / gmp

Diff for /OpenXM_contrib/gmp/Attic/config.sub between version 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2000/01/10 15:35:21 version 1.1.1.2, 2000/09/09 14:12:13
Line 1 
Line 1 
 #! /bin/sh  #! /bin/sh
 # Configuration validation subroutine script, version 1.1.  # Configuration validation subroutine script, version 1.1.
 #   Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc.  #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
   #   Free Software Foundation, Inc.
   #
 # This file is (in principle) common to ALL GNU software.  # This file is (in principle) common to ALL GNU software.
 # The presence of a machine in this file suggests that SOME GNU software  # The presence of a machine in this file suggests that SOME GNU software
 # can handle that machine.  It does not imply ALL GNU software can.  # can handle that machine.  It does not imply ALL GNU software can.
 #  #
 # This file is free software; you can redistribute it and/or modify  # This file is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by  # it under the terms of the GNU General Public License as published by
Line 25 
Line 27 
 # configuration script generated by Autoconf, you may include it under  # configuration script generated by Autoconf, you may include it under
 # the same distribution terms that you use for the rest of that program.  # the same distribution terms that you use for the rest of that program.
   
   # Written by Per Bothner <bothner@cygnus.com>.
   # Please send patches to <config-patches@gnu.org>.
   #
 # Configuration subroutine to validate and canonicalize a configuration type.  # Configuration subroutine to validate and canonicalize a configuration type.
 # Supply the specified configuration type as an argument.  # Supply the specified configuration type as an argument.
 # If it is invalid, we print an error message on stderr and exit with code 1.  # If it is invalid, we print an error message on stderr and exit with code 1.
Line 41 
Line 46 
 # The goal of this file is to map all the various variations of a given  # The goal of this file is to map all the various variations of a given
 # machine specification into a single specification in the form:  # machine specification into a single specification in the form:
 #       CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM  #       CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
   # or in some cases, the newer four-part form:
   #       CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
 # It is wrong to echo any other type of specification.  # It is wrong to echo any other type of specification.
   
 if [ x$1 = x ]  if [ x$1 = x ]
Line 62  case $1 in
Line 69  case $1 in
         ;;          ;;
 esac  esac
   
 # Separate what the user gave into CPU-COMPANY and OS (if any).  # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
 basic_machine=`echo $1 | sed 's/-[^-]*$//'`  # Here we must recognize all the valid KERNEL-OS combinations.
 if [ $basic_machine != $1 ]  maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
 then os=`echo $1 | sed 's/.*-/-/'`  case $maybe_os in
 else os=; fi    nto-qnx* | linux-gnu*)
       os=-$maybe_os
       basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
       ;;
     *)
       basic_machine=`echo $1 | sed 's/-[^-]*$//'`
       if [ $basic_machine != $1 ]
       then os=`echo $1 | sed 's/.*-/-/'`
       else os=; fi
       ;;
   esac
   
 ### Let's recognize common machines as not being operating systems so  ### Let's recognize common machines as not being operating systems so
 ### that things like config.sub decstation-3100 work.  We also  ### that things like config.sub decstation-3100 work.  We also
Line 81  case $os in
Line 98  case $os in
         -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \          -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
         -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\          -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
         -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \          -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
         -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp )          -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
           -apple)
                 os=                  os=
                 basic_machine=$1                  basic_machine=$1
                 ;;                  ;;
         -sim | -cisco | -oki | -wec | -winbond )        # CYGNUS LOCAL          -sim | -cisco | -oki | -wec | -winbond)
                 os=                  os=
                 basic_machine=$1                  basic_machine=$1
                 ;;                  ;;
         -apple*)                                        # CYGNUS LOCAL          -scout)
                 os=  
                 basic_machine=$1  
                 ;;                  ;;
         -scout)                                         # CYGNUS LOCAL          -wrs)
                 ;;                  os=-vxworks
         -wrs)                                           # CYGNUS LOCAL  
                 os=vxworks  
                 basic_machine=$1                  basic_machine=$1
                 ;;                  ;;
         -hiux*)          -hiux*)
                 os=-hiuxwe2                  os=-hiuxwe2
                 ;;                  ;;
           -sco5)
                   os=-sco3.2v5
                   basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
                   ;;
         -sco4)          -sco4)
                 os=-sco3.2v4                  os=-sco3.2v4
                 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`                  basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
                 ;;                  ;;
         -sco3.2.[4-9]*)          -sco3.2.[4-9]*)
                 os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`                  os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
                 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`                  basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
                 ;;                  ;;
         -sco3.2v[4-9]*)          -sco3.2v[4-9]*)
                 # Don't forget version if it is 3.2v4 or newer.                  # Don't forget version if it is 3.2v4 or newer.
                 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`                  basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
                 ;;                  ;;
         -sco*)          -sco*)
                 os=-sco3.2v2                  os=-sco3.2v2
                 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`                  basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
                 ;;                  ;;
           -udk*)
                   basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
                   ;;
         -isc)          -isc)
                 os=-isc2.2                  os=-isc2.2
                 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`                  basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
                 ;;                  ;;
         -clix*)          -clix*)
                 basic_machine=clipper-intergraph                  basic_machine=clipper-intergraph
                 ;;                  ;;
         -isc*)          -isc*)
                 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`                  basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
                 ;;                  ;;
         -lynx*)          -lynx*)
                 os=-lynxos                  os=-lynxos
Line 137  case $os in
Line 158  case $os in
         -windowsnt*)          -windowsnt*)
                 os=`echo $os | sed -e 's/windowsnt/winnt/'`                  os=`echo $os | sed -e 's/windowsnt/winnt/'`
                 ;;                  ;;
           -psos*)
                   os=-psos
                   ;;
           -mint | -mint[0-9]*)
                   basic_machine=m68k-atari
                   os=-mint
                   ;;
 esac  esac
   
 # Decode aliases for certain CPU-COMPANY combinations.  # Decode aliases for certain CPU-COMPANY combinations.
 case $basic_machine in  case $basic_machine in
         # Recognize the basic CPU types without company name.          # Recognize the basic CPU types without company name.
         # Some are omitted here because they have special meanings below.          # Some are omitted here because they have special meanings below.
         tahoe | i[345]86 | i860 | m68k | m68000 | m88k | ns32k | arm | armeb \          tahoe | i860 | ia64 | m32r | m68k | m68000 | m88k | ns32k | arc | arm \
                 | armel | pyramid \                  | arme[lb] | pyramid | mn10200 | mn10300 | tron | a29k \
                 | tron | a29k | 580 | i960 | h8300 | hppa1.0 | hppa1.1 \                  | 580 | i960 | h8300 \
                 | alpha | we32k | ns16k | clipper | sparclite | i370 | sh \                  | x86 | ppcbe | mipsbe | mipsle | shbe | shle | armbe | armle \
                 | powerpc | powerpcle | sparc64 | 1750a | dsp16xx | mips64 | mipsel \                  | hppa | hppa1.0 | hppa1.1 | hppa2.0 | hppa2.0w | hppa2.0n \
                 | pdp11 | mips64el | mips64orion | mips64orionel \                  | alpha | alphaev[4-8] | alphaev56 | alphapca5[67] \
                 | sparc | sparc8 | supersparc | microsparc | ultrasparc)                  | alphaev6[78] \
                   | we32k | ns16k | clipper | i370 | sh | powerpc | powerpcle \
                   | 1750a | dsp16xx | pdp11 | mips16 | mips64 | mipsel | mips64el \
                   | mips64orion | mips64orionel | mipstx39 | mipstx39el \
                   | mips64vr4300 | mips64vr4300el | mips64vr4100 | mips64vr4100el \
                   | mips64vr5000 | miprs64vr5000el | mcore \
                   | sparc | sparclet | sparclite | sparc64 | sparcv9 | v850 | c4x \
                   | powerpc64 | sparcv8 | supersparc | microsparc | ultrasparc \
                   | thumb | d10v | fr30 | avr)
                 basic_machine=$basic_machine-unknown                  basic_machine=$basic_machine-unknown
                 ;;                  ;;
         m88110 | m680[012346]0 | m683?2 | m68360 | z8k | v70 | h8500 | w65) # CYGNUS LOCAL          m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | z8k | v70 | h8500 | w65 | pj | pjl)
                 basic_machine=$basic_machine-unknown  
                 ;;                  ;;
         mips64vr4300 | mips64vr4300el) # CYGNUS LOCAL jsmith  
                 basic_machine=$basic_machine-unknown          # We use `pc' rather than `unknown'
                 ;;          # because (1) that's what they normally are, and
           # (2) the word "unknown" tends to confuse beginning users.
           i[34567]86 | pentium[23] | k[56] | k6[23] | athlon)
             basic_machine=$basic_machine-pc
             ;;
         # Object if more than one company name word.          # Object if more than one company name word.
         *-*-*)          *-*-*)
                 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2                  echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
                 exit 1                  exit 1
                 ;;                  ;;
         # Recognize the basic CPU types with company name.          # Recognize the basic CPU types with company name.
         vax-* | tahoe-* | i[3456]86-* | i860-* | m68k-* | m68000-* | m88k-* \          vax-* | tahoe-* | i[34567]86-* | pentium[23]-* | i860-* | ia64-* | m32r-* | m68k-* | m68000-* \
               | sparc-* | ns32k-* | fx80-* | arm-* | arme[lb]-* | c[123]* \                | m88k-* | sparc-* | ns32k-* | fx80-* | arc-* | arm-* | c[123]* \
               | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* | power-* \                | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* \
               | none-* | 580-* | cray2-* | h8300-* | i960-* | xmp-* | ymp-* \                | power-* | none-* | 580-* | cray2-* | h8300-* | h8500-* | i960-* \
               | hppa1.0-* | hppa1.1-* | alpha-* | we32k-* | cydra-* | ns16k-* \                | xmp-* | ymp-* \
               | pn-* | np1-* | xps100-* | clipper-* | orion-* | sparclite-* \                | x86-* | ppcbe-* | mipsbe-* | mipsle-* | shbe-* | shle-* | armbe-* | armle-* \
               | pdp11-* | sh-* | powerpc-* | powerpcle-* | sparc64-* \                | hppa-* | hppa1.0-* | hppa1.1-* | hppa2.0-* | hppa2.0w-* | hppa2.0n-* \
               | mips64-* | mipsel-* | mips64el-* | mips64orion-* \                | alpha-* | alphaev[4-8]-* | alphaev56-* | alphapca5[67]-* \
               | mips64orionel-* | sparc8-* | supersparc-* | microsparc-* | ultrasparc-*)                | alphaev6[78]-* \
                 | we32k-* | cydra-* | ns16k-* | pn-* | np1-* | xps100-* \
                 | clipper-* | orion-* \
                 | sparclite-* | pdp11-* | sh-* | powerpc-* | powerpcle-* \
                 | sparc64-* | sparcv9-* | sparc86x-* | mips16-* | mips64-* | mipsel-* \
                 | mips64el-* | mips64orion-* | mips64orionel-* \
                 | mips64vr4100-* | mips64vr4100el-* | mips64vr4300-* | mips64vr4300el-* \
                 | mipstx39-* | mipstx39el-* | mcore-* \
                 | f301-* | armv*-* | s390-* | sv1-* | t3e-* \
                 | m88110-* | m680[01234]0-* | m683?2-* | m68360-* | z8k-* | d10v-* \
                 | k[56]-* | k6[23]-* | athlon-* | powerpc64-* \
                 | sparcv8-* | supersparc-* | microsparc-* | ultrasparc-* \
                 | thumb-* | v850-* | d30v-* | tic30-* | c30-* | fr30-* )
                 ;;                  ;;
         m88110-* | m680[012346]0-* | m683?2-* | m68360-* | z8k-* | h8500-*) # CYGNUS LOCAL  
                 ;;  
         mips64vr4300-* | mips64vr4300el-*) # CYGNUS LOCAL jsmith  
                 ;;  
         # Recognize the various machine names and aliases which stand          # Recognize the various machine names and aliases which stand
         # for a CPU type and a company and sometimes even an OS.          # for a CPU type and a company and sometimes even an OS.
         386bsd)                                         # CYGNUS LOCAL  
                 basic_machine=i386-unknown  
                 os=-bsd  
                 ;;  
         3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)          3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
                 basic_machine=m68000-att                  basic_machine=m68000-att
                 ;;                  ;;
         3b*)          3b*)
                 basic_machine=we32k-att                  basic_machine=we32k-att
                 ;;                  ;;
         a29khif)                                        # CYGNUS LOCAL          a29khif)
                 basic_machine=a29k-amd                  basic_machine=a29k-amd
                 os=-udi                  os=-udi
                 ;;                  ;;
         adobe68k)                                       # CYGNUS LOCAL          adobe68k)
                 basic_machine=m68010-adobe                  basic_machine=m68010-adobe
                 os=-scout                  os=-scout
                 ;;                  ;;
Line 215  case $basic_machine in
Line 258  case $basic_machine in
         amiga | amiga-*)          amiga | amiga-*)
                 basic_machine=m68k-cbm                  basic_machine=m68k-cbm
                 ;;                  ;;
         amigados)          amigaos | amigados)
                 basic_machine=m68k-cbm                  basic_machine=m68k-cbm
                 os=-amigados                  os=-amigaos
                 ;;                  ;;
         amigaunix | amix)          amigaunix | amix)
                 basic_machine=m68k-cbm                  basic_machine=m68k-cbm
Line 227  case $basic_machine in
Line 270  case $basic_machine in
                 basic_machine=m68k-apollo                  basic_machine=m68k-apollo
                 os=-sysv                  os=-sysv
                 ;;                  ;;
         apollo68bsd)                                    # CYGNUS LOCAL          apollo68bsd)
                 basic_machine=m68k-apollo                  basic_machine=m68k-apollo
                 os=-bsd                  os=-bsd
                 ;;                  ;;
         arm | armel | armeb)          aux)
                 basic_machine=arm-arm                  basic_machine=m68k-apple
                 os=-aout                  os=-aux
                 ;;                  ;;
         balance)          balance)
                 basic_machine=ns32k-sequent                  basic_machine=ns32k-sequent
                 os=-dynix                  os=-dynix
                 ;;                  ;;
         [ctj]90-cray)  
                 basic_machine=c90-cray  
                 os=-unicos  
                 ;;  
         convex-c1)          convex-c1)
                 basic_machine=c1-convex                  basic_machine=c1-convex
                 os=-bsd                  os=-bsd
Line 271  case $basic_machine in
Line 310  case $basic_machine in
                 basic_machine=cray2-cray                  basic_machine=cray2-cray
                 os=-unicos                  os=-unicos
                 ;;                  ;;
           [ctj]90-cray)
                   basic_machine=c90-cray
                   os=-unicos
                   ;;
         crds | unos)          crds | unos)
                 basic_machine=m68k-crds                  basic_machine=m68k-crds
                 ;;                  ;;
Line 307  case $basic_machine in
Line 350  case $basic_machine in
         encore | umax | mmax)          encore | umax | mmax)
                 basic_machine=ns32k-encore                  basic_machine=ns32k-encore
                 ;;                  ;;
         es1800 | OSE68k | ose68k | ose | OSE)           # CYGNUS LOCAL          es1800 | OSE68k | ose68k | ose | OSE)
                 basic_machine=m68k-ericsson                  basic_machine=m68k-ericsson
                 os=-ose                  os=-ose
                 ;;                  ;;
Line 329  case $basic_machine in
Line 372  case $basic_machine in
                 basic_machine=h8300-hitachi                  basic_machine=h8300-hitachi
                 os=-hms                  os=-hms
                 ;;                  ;;
         h8300xray)                                      # CYGNUS LOCAL          h8300xray)
                 basic_machine=h8300-hitachi                  basic_machine=h8300-hitachi
                 os=-xray                  os=-xray
                 ;;                  ;;
         h8500hms)                                       # CYGNUS LOCAL          h8500hms)
                 basic_machine=h8500-hitachi                  basic_machine=h8500-hitachi
                 os=-hms                  os=-hms
                 ;;                  ;;
Line 352  case $basic_machine in
Line 395  case $basic_machine in
                 basic_machine=m68k-hp                  basic_machine=m68k-hp
                 os=-hpux                  os=-hpux
                 ;;                  ;;
         w89k-*)                                         # CYGNUS LOCAL          hp3k9[0-9][0-9] | hp9[0-9][0-9])
                 basic_machine=hppa1.1-winbond                  basic_machine=hppa1.0-hp
                 os=-proelf                  ;;
                 ;;  
         op50n-*)                                        # CYGNUS LOCAL  
                 basic_machine=hppa1.1-oki  
                 os=-proelf  
                 ;;  
         op60c-*)                                        # CYGNUS LOCAL  
                 basic_machine=hppa1.1-oki  
                 os=-proelf  
                 ;;  
         hppro)                                          # CYGNUS LOCAL  
                 basic_machine=hppa1.1-hp  
                 os=-proelf  
                 ;;  
         hp9k2[0-9][0-9] | hp9k31[0-9])          hp9k2[0-9][0-9] | hp9k31[0-9])
                 basic_machine=m68000-hp                  basic_machine=m68000-hp
                 ;;                  ;;
         hp9k3[2-9][0-9])          hp9k3[2-9][0-9])
                 basic_machine=m68k-hp                  basic_machine=m68k-hp
                 ;;                  ;;
         hp9k7[0-9][0-9] | hp7[0-9][0-9] | hp9k8[0-9]7 | hp8[0-9]7)          hp9k6[0-9][0-9] | hp6[0-9][0-9])
                   basic_machine=hppa1.0-hp
                   ;;
           hp9k7[0-79][0-9] | hp7[0-79][0-9])
                 basic_machine=hppa1.1-hp                  basic_machine=hppa1.1-hp
                 ;;                  ;;
           hp9k78[0-9] | hp78[0-9])
                   basic_machine=hppa2.0-hp
                   ;;
           hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
                   basic_machine=hppa2.0-hp
                   ;;
           hp9k8[0-9][13679] | hp8[0-9][13679])
                   basic_machine=hppa1.1-hp
                   ;;
         hp9k8[0-9][0-9] | hp8[0-9][0-9])          hp9k8[0-9][0-9] | hp8[0-9][0-9])
                 basic_machine=hppa1.0-hp                  basic_machine=hppa1.0-hp
                 ;;                  ;;
         hppaosf)                                        # CYGNUS LOCAL          hppa-next)
                   os=-nextstep3
                   ;;
           hppaosf)
                 basic_machine=hppa1.1-hp                  basic_machine=hppa1.1-hp
                 os=-osf                  os=-osf
                 ;;                  ;;
           hppro)
                   basic_machine=hppa1.1-hp
                   os=-proelf
                   ;;
         i370-ibm* | ibm*)          i370-ibm* | ibm*)
                 basic_machine=i370-ibm                  basic_machine=i370-ibm
                 os=-mvs  
                 ;;                  ;;
 # I'm not sure what "Sysv32" means.  Should this be sysv3.2?  # I'm not sure what "Sysv32" means.  Should this be sysv3.2?
         i[3456]86v32)          i[34567]86v32)
                 basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`                  basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
                 os=-sysv32                  os=-sysv32
                 ;;                  ;;
         i[3456]86v4*)          i[34567]86v4*)
                 basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`                  basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
                 os=-sysv4                  os=-sysv4
                 ;;                  ;;
         i[3456]86v)          i[34567]86v)
                 basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`                  basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
                 os=-sysv                  os=-sysv
                 ;;                  ;;
         i[3456]86sol2)          i[34567]86sol2)
                 basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`                  basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
                 os=-solaris2                  os=-solaris2
                 ;;                  ;;
         i386mach)                                       # CYGNUS LOCAL          i386mach)
                 basic_machine=i386-mach                  basic_machine=i386-mach
                 os=-mach                  os=-mach
                 ;;                  ;;
         i386-vsta | vsta)                               # CYGNUS LOCAL          i386-vsta | vsta)
                 basic_machine=i386-unknown                  basic_machine=i386-unknown
                 os=-vsta                  os=-vsta
                 ;;                  ;;
         i386-go32 | go32)                               # CYGNUS LOCAL          i386-go32 | go32)
                 basic_machine=i386-unknown                  basic_machine=i386-unknown
                 os=-go32                  os=-go32
                 ;;                  ;;
           i386-mingw32 | mingw32)
                   basic_machine=i386-unknown
                   os=-mingw32
                   ;;
         iris | iris4d)          iris | iris4d)
                 basic_machine=mips-sgi                  basic_machine=mips-sgi
                 case $os in                  case $os in
Line 431  case $basic_machine in
Line 483  case $basic_machine in
                 basic_machine=m68k-isi                  basic_machine=m68k-isi
                 os=-sysv                  os=-sysv
                 ;;                  ;;
           macppc*)
                   basic_machine=powerpc-apple
                   ;;
         m88k-omron*)          m88k-omron*)
                 basic_machine=m88k-omron                  basic_machine=m88k-omron
                 ;;                  ;;
Line 445  case $basic_machine in
Line 500  case $basic_machine in
         miniframe)          miniframe)
                 basic_machine=m68000-convergent                  basic_machine=m68000-convergent
                 ;;                  ;;
           *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*)
                   basic_machine=m68k-atari
                   os=-mint
                   ;;
           mipsel*-linux*)
                   basic_machine=mipsel-unknown
                   os=-linux-gnu
                   ;;
           mips*-linux*)
                   basic_machine=mips-unknown
                   os=-linux-gnu
                   ;;
         mips3*-*)          mips3*-*)
                 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`                  basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
                 ;;                  ;;
         mips3*)          mips3*)
                 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown                  basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
                 ;;                  ;;
         monitor)                                        # CYGNUS LOCAL          mmix*)
                   basic_machine=mmix-knuth
                   os=-mmixware
                   ;;
           monitor)
                 basic_machine=m68k-rom68k                  basic_machine=m68k-rom68k
                 os=-coff                  os=-coff
                 ;;                  ;;
         msdos)                                          # CYGNUS LOCAL          msdos)
                 basic_machine=i386-unknown                  basic_machine=i386-unknown
                 os=-msdos                  os=-msdos
                 ;;                  ;;
           mvs)
                   basic_machine=i370-ibm
                   os=-mvs
                   ;;
         ncr3000)          ncr3000)
                 basic_machine=i486-ncr                  basic_machine=i486-ncr
                 os=-sysv4                  os=-sysv4
                 ;;                  ;;
         netbsd386)          netbsd386)
                 basic_machine=i386-unknown              # CYGNUS LOCAL                  basic_machine=i386-unknown
                 os=-netbsd                  os=-netbsd
                 ;;                  ;;
           netwinder)
                   basic_machine=armv4l-rebel
                   os=-linux
                   ;;
         news | news700 | news800 | news900)          news | news700 | news800 | news900)
                 basic_machine=m68k-sony                  basic_machine=m68k-sony
                 os=-newsos                  os=-newsos
Line 479  case $basic_machine in
Line 558  case $basic_machine in
                 basic_machine=mips-sony                  basic_machine=mips-sony
                 os=-newsos                  os=-newsos
                 ;;                  ;;
         necv70)                                         # CYGNUS LOCAL          necv70)
                 basic_machine=v70-nec                  basic_machine=v70-nec
                 os=-sysv                  os=-sysv
                 ;;                  ;;
Line 508  case $basic_machine in
Line 587  case $basic_machine in
                 basic_machine=i960-intel                  basic_machine=i960-intel
                 os=-nindy                  os=-nindy
                 ;;                  ;;
           mon960)
                   basic_machine=i960-intel
                   os=-mon960
                   ;;
         np1)          np1)
                 basic_machine=np1-gould                  basic_machine=np1-gould
                 ;;                  ;;
         OSE68000 | ose68000)                            # CYGNUS LOCAL          nsr-tandem)
                   basic_machine=nsr-tandem
                   ;;
           op50n-* | op60c-*)
                   basic_machine=hppa1.1-oki
                   os=-proelf
                   ;;
           OSE68000 | ose68000)
                 basic_machine=m68000-ericsson                  basic_machine=m68000-ericsson
                 os=-ose                  os=-ose
                 ;;                  ;;
         os68k)                                          # CYGNUS LOCAL          os68k)
                 basic_machine=m68k-none                  basic_machine=m68k-none
                 os=-os68k                  os=-os68k
                 ;;                  ;;
Line 536  case $basic_machine in
Line 626  case $basic_machine in
         pc532 | pc532-*)          pc532 | pc532-*)
                 basic_machine=ns32k-pc532                  basic_machine=ns32k-pc532
                 ;;                  ;;
         pentium | p5)          pentiummmx | p55)
                 basic_machine=i586-intel                  basic_machine=pentiummmx-pc
                 ;;                  ;;
           pentium | p5 | i586)
                   basic_machine=pentium-pc
                   ;;
         pentiumpro | p6)          pentiumpro | p6)
                 basic_machine=i686-intel                  basic_machine=pentiumpro-pc
                 ;;                  ;;
         pentium-* | p5-*)          pentiummmx-* | p55-*)
                 basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`                  basic_machine=pentiummmx-`echo $basic_machine | sed 's/^[^-]*-//'`
                 ;;                  ;;
           pentium-* | p5-* | i586-*)
                   basic_machine=pentium-`echo $basic_machine | sed 's/^[^-]*-//'`
                   ;;
         pentiumpro-* | p6-*)          pentiumpro-* | p6-*)
                 basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`                  basic_machine=pentiumpro-`echo $basic_machine | sed 's/^[^-]*-//'`
                 ;;                  ;;
         k5)          nexen)
                 # We don't have specific support for AMD's K5 yet, so just call it a Pentium  
                 basic_machine=i586-amd  
                 ;;  
         nexgen)  
                 # We don't have specific support for Nexgen yet, so just call it a Pentium                  # We don't have specific support for Nexgen yet, so just call it a Pentium
                 basic_machine=i586-nexgen                  basic_machine=i586-nexgen
                 ;;                  ;;
Line 565  case $basic_machine in
Line 657  case $basic_machine in
                 ;;                  ;;
         ppc-*)  basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`          ppc-*)  basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
                 ;;                  ;;
           ppc64)  basic_machine=powerpc64-unknown
                   ;;
           ppc64-*)
                   basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
                   ;;
         ppcle | powerpclittle | ppc-le | powerpc-little)          ppcle | powerpclittle | ppc-le | powerpc-little)
                 basic_machine=powerpcle-unknown                  basic_machine=powerpcle-unknown
                 ;;                  ;;
Line 574  case $basic_machine in
Line 671  case $basic_machine in
         ps2)          ps2)
                 basic_machine=i386-ibm                  basic_machine=i386-ibm
                 ;;                  ;;
         rom68k)                                         # CYGNUS LOCAL          rom68k)
                 basic_machine=m68k-rom68k                  basic_machine=m68k-rom68k
                 os=-coff                  os=-coff
                 ;;                  ;;
Line 584  case $basic_machine in
Line 681  case $basic_machine in
         rtpc | rtpc-*)          rtpc | rtpc-*)
                 basic_machine=romp-ibm                  basic_machine=romp-ibm
                 ;;                  ;;
         sa29200)                                        # CYGNUS LOCAL          sa29200)
                 basic_machine=a29k-amd                  basic_machine=a29k-amd
                 os=-udi                  os=-udi
                 ;;                  ;;
Line 595  case $basic_machine in
Line 692  case $basic_machine in
                 basic_machine=sh-hitachi                  basic_machine=sh-hitachi
                 os=-hms                  os=-hms
                 ;;                  ;;
         sparclite-wrs)                                  # CYGNUS LOCAL          sparclite-wrs)
                 basic_machine=sparclite-wrs                  basic_machine=sparclite-wrs
                 os=-vxworks                  os=-vxworks
                 ;;                  ;;
         sparcfrw)                                       # CYGNUS LOCAL  
                 basic_machine=sparcfrw-sun  
                 os=-sunos4  
                 ;;  
         sparcfrwcompat)                                 # CYGNUS LOCAL  
                 basic_machine=sparcfrwcompat-sun  
                 os=-sunos4  
                 ;;  
         sparclitefrw)                                   # CYGNUS LOCAL  
                 basic_machine=sparclitefrw-fujitsu  
                 ;;  
         sparclitefrwcompat)                             # CYGNUS LOCAL  
                 basic_machine=sparclitefrwcompat-fujitsu  
                 ;;  
         sps7)          sps7)
                 basic_machine=m68k-bull                  basic_machine=m68k-bull
                 os=-sysv2                  os=-sysv2
Line 620  case $basic_machine in
Line 703  case $basic_machine in
         spur)          spur)
                 basic_machine=spur-unknown                  basic_machine=spur-unknown
                 ;;                  ;;
         st2000)                                         # CYGNUS LOCAL          st2000)
                 basic_machine=m68k-tandem                  basic_machine=m68k-tandem
                 ;;                  ;;
         stratus)                                        # CYGNUS LOCAL          stratus)
                 basic_machine=i860-stratus                  basic_machine=i860-stratus
                 os=-sysv4                  os=-sysv4
                 ;;                  ;;
Line 667  case $basic_machine in
Line 750  case $basic_machine in
         sun386 | sun386i | roadrunner)          sun386 | sun386i | roadrunner)
                 basic_machine=i386-sun                  basic_machine=i386-sun
                 ;;                  ;;
           sv1)
                   basic_machine=sv1-cray
                   os=-unicos
                   ;;
         symmetry)          symmetry)
                 basic_machine=i386-sequent                  basic_machine=i386-sequent
                 os=-dynix                  os=-dynix
                 ;;                  ;;
           t3e)
                   basic_machine=t3e-cray
                   os=-unicos
                   ;;
           tx39)
                   basic_machine=mipstx39-unknown
                   ;;
           tx39el)
                   basic_machine=mipstx39el-unknown
                   ;;
         tower | tower-32)          tower | tower-32)
                 basic_machine=m68k-ncr                  basic_machine=m68k-ncr
                 ;;                  ;;
Line 682  case $basic_machine in
Line 779  case $basic_machine in
                 basic_machine=a29k-nyu                  basic_machine=a29k-nyu
                 os=-sym1                  os=-sym1
                 ;;                  ;;
         v810 | necv810)                                 # CYGNUS LOCAL          v810 | necv810)
                 basic_machine=v810-nec                  basic_machine=v810-nec
                 os=-none                  os=-none
                 ;;                  ;;
Line 694  case $basic_machine in
Line 791  case $basic_machine in
                 basic_machine=vax-dec                  basic_machine=vax-dec
                 os=-vms                  os=-vms
                 ;;                  ;;
           vpp*|vx|vx-*)
                  basic_machine=f301-fujitsu
                  ;;
         vxworks960)          vxworks960)
                 basic_machine=i960-wrs                  basic_machine=i960-wrs
                 os=-vxworks                  os=-vxworks
Line 702  case $basic_machine in
Line 802  case $basic_machine in
                 basic_machine=m68k-wrs                  basic_machine=m68k-wrs
                 os=-vxworks                  os=-vxworks
                 ;;                  ;;
         vxworks29k)                                     # CYGNUS LOCAL          vxworks29k)
                 basic_machine=a29k-wrs                  basic_machine=a29k-wrs
                 os=-vxworks                  os=-vxworks
                 ;;  
         w65*)                                           # CYGNUS LOCAL  
                 basic_machine=w65-wdc  
                 os=-none  
                 ;;                  ;;
           w65*)
                   basic_machine=w65-wdc
                   os=-none
                   ;;
           w89k-*)
                   basic_machine=hppa1.1-winbond
                   os=-proelf
                   ;;
         xmp)          xmp)
                 basic_machine=xmp-cray                  basic_machine=xmp-cray
                 os=-unicos                  os=-unicos
Line 717  case $basic_machine in
Line 821  case $basic_machine in
         xps | xps100)          xps | xps100)
                 basic_machine=xps100-honeywell                  basic_machine=xps100-honeywell
                 ;;                  ;;
         z8k-*-coff)                                     # CYGNUS LOCAL          z8k-*-coff)
                 basic_machine=z8k-unknown                  basic_machine=z8k-unknown
                 os=-sim                  os=-sim
                 ;;                  ;;
Line 728  case $basic_machine in
Line 832  case $basic_machine in
   
 # Here we handle the default manufacturer of certain CPU types.  It is in  # Here we handle the default manufacturer of certain CPU types.  It is in
 # some cases the only manufacturer, in others, it is the most popular.  # some cases the only manufacturer, in others, it is the most popular.
         w89k)                                           # CYGNUS LOCAL          w89k)
                 basic_machine=hppa1.1-winbond                  basic_machine=hppa1.1-winbond
                 ;;                  ;;
         op50n)                                          # CYGNUS LOCAL          op50n)
                 basic_machine=hppa1.1-oki                  basic_machine=hppa1.1-oki
                 ;;                  ;;
         op60c)                                          # CYGNUS LOCAL          op60c)
                 basic_machine=hppa1.1-oki                  basic_machine=hppa1.1-oki
                 ;;                  ;;
         mips)          mips)
                 basic_machine=mips-mips                  if [ x$os = x-linux-gnu ]; then
                           basic_machine=mips-unknown
                   else
                           basic_machine=mips-mips
                   fi
                 ;;                  ;;
         romp)          romp)
                 basic_machine=romp-ibm                  basic_machine=romp-ibm
Line 755  case $basic_machine in
Line 863  case $basic_machine in
         we32k)          we32k)
                 basic_machine=we32k-att                  basic_machine=we32k-att
                 ;;                  ;;
         sparc)          sparc | sparcv9)
                 basic_machine=sparc-sun                  basic_machine=sparc-sun
                 ;;                  ;;
         cydra)          cydra)
Line 767  case $basic_machine in
Line 875  case $basic_machine in
         orion105)          orion105)
                 basic_machine=clipper-highlevel                  basic_machine=clipper-highlevel
                 ;;                  ;;
         mac | mpw | mac-mpw)                            # CYGNUS LOCAL          mac | mpw | mac-mpw)
                 basic_machine=m68k-apple                  basic_machine=m68k-apple
                 ;;                  ;;
         pmac | pmac-mpw)                                # CYGNUS LOCAL          pmac | pmac-mpw)
                 basic_machine=powerpc-apple                  basic_machine=powerpc-apple
                 ;;                  ;;
           c4x*)
                   basic_machine=c4x-none
                   os=-coff
                   ;;
         *)          *)
                 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2                  echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
                 exit 1                  exit 1
Line 796  esac
Line 908  esac
 if [ x"$os" != x"" ]  if [ x"$os" != x"" ]
 then  then
 case $os in  case $os in
           # First match some system type aliases
           # that might get confused with valid system types.
         # -solaris* is a basic system type, with this one exception.          # -solaris* is a basic system type, with this one exception.
         -solaris1 | -solaris1.*)          -solaris1 | -solaris1.*)
                 os=`echo $os | sed -e 's|solaris1|sunos4|'`                  os=`echo $os | sed -e 's|solaris1|sunos4|'`
Line 803  case $os in
Line 917  case $os in
         -solaris)          -solaris)
                 os=-solaris2                  os=-solaris2
                 ;;                  ;;
         -unixware* | svr4*)          -svr4*)
                 os=-sysv4                  os=-sysv4
                 ;;                  ;;
           -unixware*)
                   os=-sysv4.2uw
                   ;;
         -gnu/linux*)          -gnu/linux*)
                 os=`echo $os | sed -e 's|gnu/linux|linux|'`                  os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
                 ;;                  ;;
         # First accept the basic system types.          # First accept the basic system types.
         # The portable systems comes first.          # The portable systems comes first.
         # Each alternative must end in a *, to match a version number.          # Each alternative MUST END IN A *, to match a version number.
         # -sysv* is not here because it comes later, after sysvr4.          # -sysv* is not here because it comes later, after sysvr4.
         -gnu* | -bsd* | -mach* | -lites* | -minix* | -genix* | -ultrix* | -irix* \          -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
               | -vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[3456]* \                | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\
               | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \                | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
               | -amigados* | -msdos* | -moss* | -newsos* | -unicos* | -aos* \                | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
               | -nindy* | -vxworks* | -ebmon* | -hms* | -mvs* | -clix* \                | -aos* \
               | -riscos* | -linux* | -uniplus* | -iris* | -rtu* | -xenix* \                | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
               | -hiux* | -386bsd* | -netbsd* | -freebsd* | -riscix*  | -lites* \                | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
               | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* \                | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \
               | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta | -udi \                | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
               | -eabi* | -ieee*)                | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
                 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
                 | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
                 | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \
                 | -interix* | -uwin* | -rhapsody* | -darwin* | -opened* \
                 | -openstep* | -oskit*)
           # Remember, each alternative MUST END IN *, to match a version number.
                 ;;                  ;;
         # CYGNUS LOCAL          -qnx*)
         -go32 | -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \                  case $basic_machine in
               | -windows* | -osx | -abug |  -netware* | -proelf | -os9* \                      x86-* | i[34567]86-*)
               | -macos* | -mpw* | -magic* | -pe* | -win32)                          ;;
                       *)
                           os=-nto$os
                           ;;
                   esac
                 ;;                  ;;
         -mac*)                                          # CYGNUS LOCAL          -nto*)
                   os=-nto-qnx
                   ;;
           -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
                 | -windows* | -osx | -abug | -netware* | -os9* | -beos* \
                 | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
                   ;;
           -mac*)
                 os=`echo $os | sed -e 's|mac|macos|'`                  os=`echo $os | sed -e 's|mac|macos|'`
                 ;;                  ;;
           -linux*)
                   os=`echo $os | sed -e 's|linux|linux-gnu|'`
                   ;;
         -sunos5*)          -sunos5*)
                 os=`echo $os | sed -e 's|sunos5|solaris2|'`                  os=`echo $os | sed -e 's|sunos5|solaris2|'`
                 ;;                  ;;
         -sunos6*)          -sunos6*)
                 os=`echo $os | sed -e 's|sunos6|solaris3|'`                  os=`echo $os | sed -e 's|sunos6|solaris3|'`
                 ;;                  ;;
           -opened*)
                   os=-openedition
                   ;;
           -wince*)
                   os=-wince
                   ;;
         -osfrose*)          -osfrose*)
                 os=-osfrose                  os=-osfrose
                 ;;                  ;;
Line 853  case $os in
Line 996  case $os in
         -acis*)          -acis*)
                 os=-aos                  os=-aos
                 ;;                  ;;
         -386bsd)                                        # CYGNUS LOCAL          -386bsd)
                 os=-bsd                  os=-bsd
                 ;;                  ;;
         -ctix* | -uts*)          -ctix* | -uts*)
                 os=-sysv                  os=-sysv
                 ;;                  ;;
           -ns2 )
                   os=-nextstep2
                   ;;
           -nsk)
                   os=-nsk
                   ;;
         # Preserve the version number of sinix5.          # Preserve the version number of sinix5.
         -sinix5.*)          -sinix5.*)
                 os=`echo $os | sed -e 's|sinix|sysv|'`                  os=`echo $os | sed -e 's|sinix|sysv|'`
Line 884  case $os in
Line 1033  case $os in
         # This must come after -sysvr4.          # This must come after -sysvr4.
         -sysv*)          -sysv*)
                 ;;                  ;;
         -ose*)                                          # CYGNUS LOCAL          -ose*)
                 os=-ose                  os=-ose
                 ;;                  ;;
         -es1800*)                                       # CYGNUS LOCAL          -es1800*)
                 os=-ose                  os=-ose
                 ;;                  ;;
         -xenix)          -xenix)
                 os=-xenix                  os=-xenix
                 ;;                  ;;
           -*mint | -*MiNT)
                   os=-mint
                   ;;
         -none)          -none)
                 ;;                  ;;
         *)          *)
Line 918  case $basic_machine in
Line 1070  case $basic_machine in
         *-acorn)          *-acorn)
                 os=-riscix1.2                  os=-riscix1.2
                 ;;                  ;;
           arm*-rebel)
                   os=-linux
                   ;;
           arm*-semi)
                   os=-aout
                   ;;
         pdp11-*)          pdp11-*)
                 os=-none                  os=-none
                 ;;                  ;;
Line 936  case $basic_machine in
Line 1094  case $basic_machine in
                 # default.                  # default.
                 # os=-sunos4                  # os=-sunos4
                 ;;                  ;;
         m68*-cisco)                                     # CYGNUS LOCAL          m68*-cisco)
                 os=-aout                  os=-aout
                 ;;                  ;;
         mips*-cisco)                                    # CYGNUS LOCAL          mips*-cisco)
                 os=-elf                  os=-elf
                 ;;                  ;;
           mips*-*)
                   os=-elf
                   ;;
         *-tti)  # must be before sparc entry or we get the wrong os.          *-tti)  # must be before sparc entry or we get the wrong os.
                 os=-sysv3                  os=-sysv3
                 ;;                  ;;
         sparc-* | *-sun)          sparc-* | *-sun)
                 os=-sunos4.1.1                  os=-sunos4.1.1
                 ;;                  ;;
           *-be)
                   os=-beos
                   ;;
         *-ibm)          *-ibm)
                 os=-aix                  os=-aix
                 ;;                  ;;
         *-wec)                                          # CYGNUS LOCAL          *-wec)
                 os=-proelf                  os=-proelf
                 ;;                  ;;
         *-winbond)                                      # CYGNUS LOCAL          *-winbond)
                 os=-proelf                  os=-proelf
                 ;;                  ;;
         *-oki)                                          # CYGNUS LOCAL          *-oki)
                 os=-proelf                  os=-proelf
                 ;;                  ;;
         *-hp)          *-hp)
Line 970  case $basic_machine in
Line 1134  case $basic_machine in
                 os=-sysv                  os=-sysv
                 ;;                  ;;
         *-cbm)          *-cbm)
                 os=-amigados                  os=-amigaos
                 ;;                  ;;
         *-dg)          *-dg)
                 os=-dgux                  os=-dgux
Line 984  case $basic_machine in
Line 1148  case $basic_machine in
         m88k-omron*)          m88k-omron*)
                 os=-luna                  os=-luna
                 ;;                  ;;
           *-next )
                   os=-nextstep
                   ;;
         *-sequent)          *-sequent)
                 os=-ptx                  os=-ptx
                 ;;                  ;;
Line 1017  case $basic_machine in
Line 1184  case $basic_machine in
         *-masscomp)          *-masscomp)
                 os=-rtu                  os=-rtu
                 ;;                  ;;
         *-rom68k)                                       # CYGNUS LOCAL          f301-fujitsu)
                   os=-uxpv
                   ;;
           *-rom68k)
                 os=-coff                  os=-coff
                 ;;                  ;;
         *-*bug)                                         # CYGNUS LOCAL          *-*bug)
                 os=-coff                  os=-coff
                 ;;                  ;;
         *-apple)                                        # CYGNUS LOCAL          *-apple)
                 os=-macos                  os=-macos
                 ;;                  ;;
           *-atari*)
                   os=-mint
                   ;;
         *)          *)
                 os=-none                  os=-none
                 ;;                  ;;
Line 1044  case $basic_machine in
Line 1217  case $basic_machine in
                         -sunos*)                          -sunos*)
                                 vendor=sun                                  vendor=sun
                                 ;;                                  ;;
                         -bosx*)                         # CYGNUS LOCAL  
                                 vendor=bull  
                                 ;;  
                         -lynxos*)  
                                 vendor=lynx  
                                 ;;  
                         -aix*)                          -aix*)
                                 vendor=ibm                                  vendor=ibm
                                 ;;                                  ;;
                           -beos*)
                                   vendor=be
                                   ;;
                         -hpux*)                          -hpux*)
                                 vendor=hp                                  vendor=hp
                                 ;;                                  ;;
                           -mpeix*)
                                   vendor=hp
                                   ;;
                         -hiux*)                          -hiux*)
                                 vendor=hitachi                                  vendor=hitachi
                                 ;;                                  ;;
Line 1071  case $basic_machine in
Line 1244  case $basic_machine in
                         -genix*)                          -genix*)
                                 vendor=ns                                  vendor=ns
                                 ;;                                  ;;
                         -mvs*)                          -mvs* | -opened*)
                                 vendor=ibm                                  vendor=ibm
                                 ;;                                  ;;
                         -ptx*)                          -ptx*)
                                 vendor=sequent                                  vendor=sequent
                                 ;;                                  ;;
                         -vxworks*)                          -vxsim* | -vxworks*)
                                 vendor=wrs                                  vendor=wrs
                                 ;;                                  ;;
                         -hms*)                          # CYGNUS LOCAL                          -aux*)
                                   vendor=apple
                                   ;;
                           -hms*)
                                 vendor=hitachi                                  vendor=hitachi
                                 ;;                                  ;;
                         -mpw* | -macos*)                # CYGNUS LOCAL                          -mpw* | -macos*)
                                 vendor=apple                                  vendor=apple
                                   ;;
                           -*mint | -*MiNT)
                                   vendor=atari
                                 ;;                                  ;;
                 esac                  esac
                 basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`                  basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>