home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / rexxtk12.zip / config.sub < prev    next >
Text File  |  2000-04-23  |  19KB  |  945 lines

  1. #! /bin/sh
  2. # Configuration validation subroutine script, version 1.1.
  3. #   Copyright (C) 1991, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
  4. # This file is (in principle) common to ALL GNU software.
  5. # The presence of a machine in this file suggests that SOME GNU software
  6. # can handle that machine.  It does not imply ALL GNU software can.
  7. #
  8. # This file is free software; you can redistribute it and/or modify
  9. # it under the terms of the GNU General Public License as published by
  10. # the Free Software Foundation; either version 2 of the License, or
  11. # (at your option) any later version.
  12. #
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. # GNU General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU General Public License
  19. # along with this program; if not, write to the Free Software
  20. # Foundation, Inc., 59 Temple Place - Suite 330,
  21. # Boston, MA 02111-1307, USA.
  22.  
  23. # As a special exception to the GNU General Public License, if you
  24. # distribute this file as part of a program that contains a
  25. # configuration script generated by Autoconf, you may include it under
  26. # the same distribution terms that you use for the rest of that program.
  27.  
  28. # Configuration subroutine to validate and canonicalize a configuration type.
  29. # Supply the specified configuration type as an argument.
  30. # If it is invalid, we print an error message on stderr and exit with code 1.
  31. # Otherwise, we print the canonical config type on stdout and succeed.
  32.  
  33. # This file is supposed to be the same for all GNU packages
  34. # and recognize all the CPU types, system types and aliases
  35. # that are meaningful with *any* GNU software.
  36. # Each package is responsible for reporting which valid configurations
  37. # it does not support.  The user should be able to distinguish
  38. # a failure to support a valid configuration from a meaningless
  39. # configuration.
  40.  
  41. # The goal of this file is to map all the various variations of a given
  42. # machine specification into a single specification in the form:
  43. #    CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
  44. # or in some cases, the newer four-part form:
  45. #    CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
  46. # It is wrong to echo any other type of specification.
  47.  
  48. if [ x$1 = x ]
  49. then
  50.     echo Configuration name missing. 1>&2
  51.     echo "Usage: $0 CPU-MFR-OPSYS" 1>&2
  52.     echo "or     $0 ALIAS" 1>&2
  53.     echo where ALIAS is a recognized configuration type. 1>&2
  54.     exit 1
  55. fi
  56.  
  57. # First pass through any local machine types.
  58. case $1 in
  59.     *local*)
  60.         echo $1
  61.         exit 0
  62.         ;;
  63.     *)
  64.     ;;
  65. esac
  66.  
  67. # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
  68. # Here we must recognize all the valid KERNEL-OS combinations.
  69. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
  70. case $maybe_os in
  71.   linux-gnu*)
  72.     os=-$maybe_os
  73.     basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
  74.     ;;
  75.   *)
  76.     basic_machine=`echo $1 | sed 's/-[^-]*$//'`
  77.     if [ $basic_machine != $1 ]
  78.     then os=`echo $1 | sed 's/.*-/-/'`
  79.     else os=; fi
  80.     ;;
  81. esac
  82.  
  83. ### Let's recognize common machines as not being operating systems so
  84. ### that things like config.sub decstation-3100 work.  We also
  85. ### recognize some manufacturers as not being operating systems, so we
  86. ### can provide default operating systems below.
  87. case $os in
  88.     -sun*os*)
  89.         # Prevent following clause from handling this invalid input.
  90.         ;;
  91.     -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
  92.     -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
  93.     -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
  94.     -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
  95.     -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
  96.     -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
  97.     -apple)
  98.         os=
  99.         basic_machine=$1
  100.         ;;
  101.     -QNX*)
  102.         os=`echo $os | sed -e 's/QNX/qnx/'`
  103.         basic_machine=i386
  104.         ;;
  105.     -os390*)
  106.         os=`echo $os | sed -e 's/OS/os/'`
  107.         ;;
  108.     -hiux*)
  109.         os=-hiuxwe2
  110.         ;;
  111.     -sco5)
  112.         os=sco3.2v5
  113.         basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
  114.         ;;
  115.     -sco4)
  116.         os=-sco3.2v4
  117.         basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
  118.         ;;
  119.     -sco3.2.[4-9]*)
  120.         os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
  121.         basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
  122.         ;;
  123.     -sco3.2v[4-9]*)
  124.         # Don't forget version if it is 3.2v4 or newer.
  125.         basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
  126.         ;;
  127.     -sco*)
  128.         os=-sco3.2v2
  129.         basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
  130.         ;;
  131.     -isc)
  132.         os=-isc2.2
  133.         basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
  134.         ;;
  135.     -clix*)
  136.         basic_machine=clipper-intergraph
  137.         ;;
  138.     -isc*)
  139.         basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
  140.         ;;
  141.     -lynx*)
  142.         os=-lynxos
  143.         ;;
  144.     -ptx*)
  145.         basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
  146.         ;;
  147.     -windowsnt*)
  148.         os=`echo $os | sed -e 's/windowsnt/winnt/'`
  149.         ;;
  150.     -psos*)
  151.         os=-psos
  152.         ;;
  153. esac
  154.  
  155. # Decode aliases for certain CPU-COMPANY combinations.
  156. case $basic_machine in
  157.     # Recognize the basic CPU types without company name.
  158.     # Some are omitted here because they have special meanings below.
  159.     tahoe | i860 | m68k | m68000 | m88k | ns32k | arm \
  160.         | arme[lb] | pyramid \
  161.         | tron | a29k | 580 | i960 | h8300 | hppa | hppa1.0 | hppa1.1 \
  162.         | alpha | we32k | ns16k | clipper | i370 | sh \
  163.         | powerpc | powerpcle | 1750a | dsp16xx | mips64 | mipsel \
  164.         | pdp11 | mips64el | mips64orion | mips64orionel \
  165.         | sparc | sparclet | sparclite | sparc64)
  166.         basic_machine=$basic_machine-unknown
  167.         ;;
  168.     # We use `pc' rather than `unknown'
  169.     # because (1) that's what they normally are, and
  170.     # (2) the word "unknown" tends to confuse beginning users.
  171.     i[3456]86)
  172.       basic_machine=$basic_machine-pc
  173.       ;;
  174.     # Object if more than one company name word.
  175.     *-*-*)
  176.         echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
  177.         exit 1
  178.         ;;
  179.     # Recognize the basic CPU types with company name.
  180.     vax-* | tahoe-* | i[3456]86-* | i860-* | m68k-* | m68000-* | m88k-* \
  181.           | sparc-* | ns32k-* | fx80-* | arm-* | c[123]* \
  182.           | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* | power-* \
  183.           | none-* | 580-* | cray2-* | h8300-* | i960-* | xmp-* | ymp-* \
  184.           | hppa-* | hppa1.0-* | hppa1.1-* | alpha-* | we32k-* | cydra-* | ns16k-* \
  185.           | pn-* | np1-* | xps100-* | clipper-* | orion-* | sparclite-* \
  186.           | pdp11-* | sh-* | powerpc-* | powerpcle-* | sparc64-* | mips64-* | mipsel-* \
  187.           | mips64el-* | mips64orion-* | mips64orionel-* | f301-*)
  188.         ;;
  189.     # Recognize the various machine names and aliases which stand
  190.     # for a CPU type and a company and sometimes even an OS.
  191.     3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
  192.         basic_machine=m68000-att
  193.         ;;
  194.     3b*)
  195.         basic_machine=we32k-att
  196.         ;;
  197.     alliant | fx80)
  198.         basic_machine=fx80-alliant
  199.         ;;
  200.     altos | altos3068)
  201.         basic_machine=m68k-altos
  202.         ;;
  203.     am29k)
  204.         basic_machine=a29k-none
  205.         os=-bsd
  206.         ;;
  207.     amdahl)
  208.         basic_machine=580-amdahl
  209.         os=-sysv
  210.         ;;
  211.     amiga | amiga-*)
  212.         basic_machine=m68k-cbm
  213.         ;;
  214.     amigados)
  215.         basic_machine=m68k-cbm
  216.         os=-amigados
  217.         ;;
  218.     amigaunix | amix)
  219.         basic_machine=m68k-cbm
  220.         os=-sysv4
  221.         ;;
  222.     apollo68)
  223.         basic_machine=m68k-apollo
  224.         os=-sysv
  225.         ;;
  226.     aux)
  227.         basic_machine=m68k-apple
  228.         os=-aux
  229.         ;;
  230.     balance)
  231.         basic_machine=ns32k-sequent
  232.         os=-dynix
  233.         ;;
  234.     convex-c1)
  235.         basic_machine=c1-convex
  236.         os=-bsd
  237.         ;;
  238.     convex-c2)
  239.         basic_machine=c2-convex
  240.         os=-bsd
  241.         ;;
  242.     convex-c32)
  243.         basic_machine=c32-convex
  244.         os=-bsd
  245.         ;;
  246.     convex-c34)
  247.         basic_machine=c34-convex
  248.         os=-bsd
  249.         ;;
  250.     convex-c38)
  251.         basic_machine=c38-convex
  252.         os=-bsd
  253.         ;;
  254.     cray | ymp)
  255.         basic_machine=ymp-cray
  256.         os=-unicos
  257.         ;;
  258.     cray2)
  259.         basic_machine=cray2-cray
  260.         os=-unicos
  261.         ;;
  262.     [ctj]90-cray)
  263.         basic_machine=c90-cray
  264.         os=-unicos
  265.         ;;
  266.     crds | unos)
  267.         basic_machine=m68k-crds
  268.         ;;
  269.     da30 | da30-*)
  270.         basic_machine=m68k-da30
  271.         ;;
  272.     decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
  273.         basic_machine=mips-dec
  274.         ;;
  275.     delta | 3300 | motorola-3300 | motorola-delta \
  276.           | 3300-motorola | delta-motorola)
  277.         basic_machine=m68k-motorola
  278.         ;;
  279.     delta88)
  280.         basic_machine=m88k-motorola
  281.         os=-sysv3
  282.         ;;
  283.     dpx20 | dpx20-*)
  284.         basic_machine=rs6000-bull
  285.         os=-bosx
  286.         ;;
  287.     dpx2* | dpx2*-bull)
  288.         basic_machine=m68k-bull
  289.         os=-sysv3
  290.         ;;
  291.     ebmon29k)
  292.         basic_machine=a29k-amd
  293.         os=-ebmon
  294.         ;;
  295.     elxsi)
  296.         basic_machine=elxsi-elxsi
  297.         os=-bsd
  298.         ;;
  299.     encore | umax | mmax)
  300.         basic_machine=ns32k-encore
  301.         ;;
  302.     fx2800)
  303.         basic_machine=i860-alliant
  304.         ;;
  305.     genix)
  306.         basic_machine=ns32k-ns
  307.         ;;
  308.     gmicro)
  309.         basic_machine=tron-gmicro
  310.         os=-sysv
  311.         ;;
  312.     h3050r* | hiux*)
  313.         basic_machine=hppa1.1-hitachi
  314.         os=-hiuxwe2
  315.         ;;
  316.     h8300hms)
  317.         basic_machine=h8300-hitachi
  318.         os=-hms
  319.         ;;
  320.     harris)
  321.         basic_machine=m88k-harris
  322.         os=-sysv3
  323.         ;;
  324.     hp300-*)
  325.         basic_machine=m68k-hp
  326.         ;;
  327.     hp300bsd)
  328.         basic_machine=m68k-hp
  329.         os=-bsd
  330.         ;;
  331.     hp300hpux)
  332.         basic_machine=m68k-hp
  333.         os=-hpux
  334.         ;;
  335.     hp9k2[0-9][0-9] | hp9k31[0-9])
  336.         basic_machine=m68000-hp
  337.         ;;
  338.     hp9k3[2-9][0-9])
  339.         basic_machine=m68k-hp
  340.         ;;
  341.     hp9k7[0-9][0-9] | hp7[0-9][0-9] | hp9k8[0-9]7 | hp8[0-9]7)
  342.         basic_machine=hppa1.1-hp
  343.         ;;
  344.     hp9k8[0-9][0-9] | hp8[0-9][0-9])
  345.         basic_machine=hppa1.0-hp
  346.         ;;
  347.     hppa-next)
  348.         os=-nextstep3
  349.         ;;
  350.     i390-ibm*)
  351.         basic_machine=i390-ibm
  352.         ;;
  353.     i370-ibm* | ibm*)
  354.         basic_machine=i370-ibm
  355.         os=-mvs
  356.         ;;
  357. # I'm not sure what "Sysv32" means.  Should this be sysv3.2?
  358.     i[3456]86v32)
  359.         basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
  360.         os=-sysv32
  361.         ;;
  362.     i[3456]86v4*)
  363.         basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
  364.         os=-sysv4
  365.         ;;
  366.     i[3456]86v)
  367.         basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
  368.         os=-sysv
  369.         ;;
  370.     i[3456]86sol2)
  371.         basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
  372.         os=-solaris2
  373.         ;;
  374.     iris | iris4d)
  375.         basic_machine=mips-sgi
  376.         case $os in
  377.             -irix*)
  378.             ;;
  379.             *)
  380.             os=-irix4
  381.             ;;
  382.         esac
  383.         ;;
  384.     isi68 | isi)
  385.         basic_machine=m68k-isi
  386.         os=-sysv
  387.         ;;
  388.     m88k-omron*)
  389.         basic_machine=m88k-omron
  390.         ;;
  391.     magnum | m3230)
  392.         basic_machine=mips-mips
  393.         os=-sysv
  394.         ;;
  395.     merlin)
  396.         basic_machine=ns32k-utek
  397.         os=-sysv
  398.         ;;
  399.     miniframe)
  400.         basic_machine=m68000-convergent
  401.         ;;
  402.     mips3*-*)
  403.         basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
  404.         ;;
  405.     mips3*)
  406.         basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
  407.         ;;
  408.     ncr3000)
  409.         basic_machine=i486-ncr
  410.         os=-sysv4
  411.         ;;
  412.     news | news700 | news800 | news900)
  413.         basic_machine=m68k-sony
  414.         os=-newsos
  415.         ;;
  416.     news1000)
  417.         basic_machine=m68030-sony
  418.         os=-newsos
  419.         ;;
  420.     news-3600 | risc-news)
  421.         basic_machine=mips-sony
  422.         os=-newsos
  423.         ;;
  424.     next | m*-next )
  425.         basic_machine=m68k-next
  426.         case $os in
  427.             -nextstep* )
  428.             ;;
  429.             -ns2*)
  430.               os=-nextstep2
  431.             ;;
  432.             *)
  433.               os=-nextstep3
  434.             ;;
  435.         esac
  436.         ;;
  437.     nh3000)
  438.         basic_machine=m68k-harris
  439.         os=-cxux
  440.         ;;
  441.     nh[45]000)
  442.         basic_machine=m88k-harris
  443.         os=-cxux
  444.         ;;
  445.     nindy960)
  446.         basic_machine=i960-intel
  447.         os=-nindy
  448.         ;;
  449.     np1)
  450.         basic_machine=np1-gould
  451.         ;;
  452.     pa-hitachi)
  453.         basic_machine=hppa1.1-hitachi
  454.         os=-hiuxwe2
  455.         ;;
  456.     paragon)
  457.         basic_machine=i860-intel
  458.         os=-osf
  459.         ;;
  460.     pbd)
  461.         basic_machine=sparc-tti
  462.         ;;
  463.     pbb)
  464.         basic_machine=m68k-tti
  465.         ;;
  466.         pc532 | pc532-*)
  467.         basic_machine=ns32k-pc532
  468.         ;;
  469.     pentium | p5)
  470.         basic_machine=i586-intel
  471.         ;;
  472.     pentiumpro | p6)
  473.         basic_machine=i686-intel
  474.         ;;
  475.     pentium-* | p5-*)
  476.         basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
  477.         ;;
  478.     pentiumpro-* | p6-*)
  479.         basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
  480.         ;;
  481.     k5)
  482.         # We don't have specific support for AMD's K5 yet, so just call it a Pentium
  483.         basic_machine=i586-amd
  484.         ;;
  485.     nexen)
  486.         # We don't have specific support for Nexgen yet, so just call it a Pentium
  487.         basic_machine=i586-nexgen
  488.         ;;
  489.     pn)
  490.         basic_machine=pn-gould
  491.         ;;
  492.     power)    basic_machine=rs6000-ibm
  493.         ;;
  494.     ppc)    basic_machine=powerpc-unknown
  495.             ;;
  496.     ppc-*)    basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
  497.         ;;
  498.     ppcle | powerpclittle | ppc-le | powerpc-little)
  499.         basic_machine=powerpcle-unknown
  500.             ;;
  501.     ppcle-* | powerpclittle-*)
  502.         basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
  503.         ;;
  504.     ps2)
  505.         basic_machine=i386-ibm
  506.         ;;
  507.     rm[46]00)
  508.         basic_machine=mips-siemens
  509.         ;;
  510.     rtpc | rtpc-*)
  511.         basic_machine=romp-ibm
  512.         ;;
  513.     sequent)
  514.         basic_machine=i386-sequent
  515.         ;;
  516.     sh)
  517.         basic_machine=sh-hitachi
  518.         os=-hms
  519.         ;;
  520.     sps7)
  521.         basic_machine=m68k-bull
  522.         os=-sysv2
  523.         ;;
  524.     spur)
  525.         basic_machine=spur-unknown
  526.         ;;
  527.     sun2)
  528.         basic_machine=m68000-sun
  529.         ;;
  530.     sun2os3)
  531.         basic_machine=m68000-sun
  532.         os=-sunos3
  533.         ;;
  534.     sun2os4)
  535.         basic_machine=m68000-sun
  536.         os=-sunos4
  537.         ;;
  538.     sun3os3)
  539.         basic_machine=m68k-sun
  540.         os=-sunos3
  541.         ;;
  542.     sun3os4)
  543.         basic_machine=m68k-sun
  544.         os=-sunos4
  545.         ;;
  546.     sun4os3)
  547.         basic_machine=sparc-sun
  548.         os=-sunos3
  549.         ;;
  550.     sun4os4)
  551.         basic_machine=sparc-sun
  552.         os=-sunos4
  553.         ;;
  554.     sun4sol2)
  555.         basic_machine=sparc-sun
  556.         os=-solaris2
  557.         ;;
  558.     sun3 | sun3-*)
  559.         basic_machine=m68k-sun
  560.         ;;
  561.     sun4)
  562.         basic_machine=sparc-sun
  563.         ;;
  564.     sun386 | sun386i | roadrunner)
  565.         basic_machine=i386-sun
  566.         ;;
  567.     symmetry)
  568.         basic_machine=i386-sequent
  569.         os=-dynix
  570.         ;;
  571.     tower | tower-32)
  572.         basic_machine=m68k-ncr
  573.         ;;
  574.     udi29k)
  575.         basic_machine=a29k-amd
  576.         os=-udi
  577.         ;;
  578.     ultra3)
  579.         basic_machine=a29k-nyu
  580.         os=-sym1
  581.         ;;
  582.     vaxv)
  583.         basic_machine=vax-dec
  584.         os=-sysv
  585.         ;;
  586.     vms)
  587.         basic_machine=vax-dec
  588.         os=-vms
  589.         ;;
  590.        vpp*|vx|vx-*)
  591.                basic_machine=f301-fujitsu
  592.                ;;
  593.     vxworks960)
  594.         basic_machine=i960-wrs
  595.         os=-vxworks
  596.         ;;
  597.     vxworks68)
  598.         basic_machine=m68k-wrs
  599.         os=-vxworks
  600.         ;;
  601.     vxworks29k)
  602.         basic_machine=a29k-wrs
  603.         os=-vxworks
  604.         ;;
  605.     xmp)
  606.         basic_machine=xmp-cray
  607.         os=-unicos
  608.         ;;
  609.         xps | xps100)
  610.         basic_machine=xps100-honeywell
  611.         ;;
  612.     none)
  613.         basic_machine=none-none
  614.         os=-none
  615.         ;;
  616.  
  617. # Here we handle the default manufacturer of certain CPU types.  It is in
  618. # some cases the only manufacturer, in others, it is the most popular.
  619.     mips)
  620.         basic_machine=mips-mips
  621.         ;;
  622.     romp)
  623.         basic_machine=romp-ibm
  624.         ;;
  625.     rs6000)
  626.         basic_machine=rs6000-ibm
  627.         ;;
  628.     vax)
  629.         basic_machine=vax-dec
  630.         ;;
  631.     pdp11)
  632.         basic_machine=pdp11-dec
  633.         ;;
  634.     we32k)
  635.         basic_machine=we32k-att
  636.         ;;
  637.     sparc)
  638.         basic_machine=sparc-sun
  639.         ;;
  640.         cydra)
  641.         basic_machine=cydra-cydrome
  642.         ;;
  643.     orion)
  644.         basic_machine=orion-highlevel
  645.         ;;
  646.     orion105)
  647.         basic_machine=clipper-highlevel
  648.         ;;
  649.     *)
  650.         echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
  651.         exit 1
  652.         ;;
  653. esac
  654.  
  655. # Here we canonicalize certain aliases for manufacturers.
  656. case $basic_machine in
  657.     *-digital*)
  658.         basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
  659.         ;;
  660.     *-commodore*)
  661.         basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
  662.         ;;
  663.     *)
  664.         ;;
  665. esac
  666.  
  667. # Decode manufacturer-specific aliases for certain operating systems.
  668.  
  669. if [ x"$os" != x"" ]
  670. then
  671. case $os in
  672.         # First match some system type aliases
  673.         # that might get confused with valid system types.
  674.     # -solaris* is a basic system type, with this one exception.
  675.     -solaris1 | -solaris1.*)
  676.         os=`echo $os | sed -e 's|solaris1|sunos4|'`
  677.         ;;
  678.     -solaris)
  679.         os=-solaris2
  680.         ;;
  681.     -unixware* | svr4*)
  682.         os=-sysv4
  683.         ;;
  684.     -gnu/linux*)
  685.         os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
  686.         ;;
  687.     # First accept the basic system types.
  688.     # The portable systems comes first.
  689.     # Each alternative MUST END IN A *, to match a version number.
  690.     # -sysv* is not here because it comes later, after sysvr4.
  691.     -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
  692.           | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\
  693.           | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
  694.           | -amigados* | -msdos* | -newsos* | -unicos* | -aof* | -aos* \
  695.           | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
  696.           | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
  697.           | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \
  698.           | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* \
  699.           | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
  700.           | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
  701.           | -cygwin32* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
  702.           | -linux-gnu* | -uxpv*)
  703.     # Remember, each alternative MUST END IN *, to match a version number.
  704.         ;;
  705.     -linux*)
  706.         os=`echo $os | sed -e 's|linux|linux-gnu|'`
  707.         ;;
  708.     -sunos5*)
  709.         os=`echo $os | sed -e 's|sunos5|solaris2|'`
  710.         ;;
  711.     -sunos6*)
  712.         os=`echo $os | sed -e 's|sunos6|solaris3|'`
  713.         ;;
  714.     -osfrose*)
  715.         os=-osfrose
  716.         ;;
  717.     -osf*)
  718.         os=-osf
  719.         ;;
  720.     -utek*)
  721.         os=-bsd
  722.         ;;
  723.     -dynix*)
  724.         os=-bsd
  725.         ;;
  726.     -acis*)
  727.         os=-aos
  728.         ;;
  729.     -ctix* | -uts*)
  730.         os=-sysv
  731.         ;;
  732.     -ns2 )
  733.             os=-nextstep2
  734.         ;;
  735.     # Preserve the version number of sinix5.
  736.     -sinix5.*)
  737.         os=`echo $os | sed -e 's|sinix|sysv|'`
  738.         ;;
  739.     -sinix*)
  740.         os=-sysv4
  741.         ;;
  742.     -triton*)
  743.         os=-sysv3
  744.         ;;
  745.     -oss*)
  746.         os=-sysv3
  747.         ;;
  748.     -svr4)
  749.         os=-sysv4
  750.         ;;
  751.     -svr3)
  752.         os=-sysv3
  753.         ;;
  754.     -sysvr4)
  755.         os=-sysv4
  756.         ;;
  757.     # This must come after -sysvr4.
  758.     -sysv*)
  759.         ;;
  760.     -qnx*)
  761.         ;;
  762.     -os390* | -OS390*)
  763.         ;;
  764.     -xenix)
  765.         os=-xenix
  766.         ;;
  767.     -none)
  768.         ;;
  769.     *)
  770.         # Get rid of the `-' at the beginning of $os.
  771.         os=`echo $os | sed 's/[^-]*-//'`
  772.         echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
  773.         exit 1
  774.         ;;
  775. esac
  776. else
  777.  
  778. # Here we handle the default operating systems that come with various machines.
  779. # The value should be what the vendor currently ships out the door with their
  780. # machine or put another way, the most popular os provided with the machine.
  781.  
  782. # Note that if you're going to try to match "-MANUFACTURER" here (say,
  783. # "-sun"), then you have to tell the case statement up towards the top
  784. # that MANUFACTURER isn't an operating system.  Otherwise, code above
  785. # will signal an error saying that MANUFACTURER isn't an operating
  786. # system, and we'll never get to this point.
  787.  
  788. case $basic_machine in
  789.     *-acorn)
  790.         os=-riscix1.2
  791.         ;;
  792.     arm*-semi)
  793.         os=-aout
  794.         ;;
  795.         pdp11-*)
  796.         os=-none
  797.         ;;
  798.     *-dec | vax-*)
  799.         os=-ultrix4.2
  800.         ;;
  801.     m68*-apollo)
  802.         os=-domain
  803.         ;;
  804.     i386-sun)
  805.         os=-sunos4.0.2
  806.         ;;
  807.     m68000-sun)
  808.         os=-sunos3
  809.         # This also exists in the configure program, but was not the
  810.         # default.
  811.         # os=-sunos4
  812.         ;;
  813.     *-tti)    # must be before sparc entry or we get the wrong os.
  814.         os=-sysv3
  815.         ;;
  816.     sparc-* | *-sun)
  817.         os=-sunos4.1.1
  818.         ;;
  819.     *-ibm)
  820.         os=-aix
  821.         ;;
  822.     *-hp)
  823.         os=-hpux
  824.         ;;
  825.     *-hitachi)
  826.         os=-hiux
  827.         ;;
  828.     i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
  829.         os=-sysv
  830.         ;;
  831.     *-cbm)
  832.         os=-amigados
  833.         ;;
  834.     *-dg)
  835.         os=-dgux
  836.         ;;
  837.     *-dolphin)
  838.         os=-sysv3
  839.         ;;
  840.     m68k-ccur)
  841.         os=-rtu
  842.         ;;
  843.     m88k-omron*)
  844.         os=-luna
  845.         ;;
  846.     *-next )
  847.         os=-nextstep
  848.         ;;
  849.     *-sequent)
  850.         os=-ptx
  851.         ;;
  852.     *-crds)
  853.         os=-unos
  854.         ;;
  855.     *-ns)
  856.         os=-genix
  857.         ;;
  858.     i370-*)
  859.         os=-mvs
  860.         ;;
  861.     i390-*)
  862.         os=-os390
  863.         ;;
  864.     *-next)
  865.         os=-nextstep3
  866.         ;;
  867.         *-gould)
  868.         os=-sysv
  869.         ;;
  870.         *-highlevel)
  871.         os=-bsd
  872.         ;;
  873.     *-encore)
  874.         os=-bsd
  875.         ;;
  876.         *-sgi)
  877.         os=-irix
  878.         ;;
  879.         *-siemens)
  880.         os=-sysv4
  881.         ;;
  882.     *-masscomp)
  883.         os=-rtu
  884.         ;;
  885.     f301-fujitsu)
  886.         os=-uxpv
  887.         ;;
  888.     *)
  889.         os=-none
  890.         ;;
  891. esac
  892. fi
  893.  
  894. # Here we handle the case where we know the os, and the CPU type, but not the
  895. # manufacturer.  We pick the logical manufacturer.
  896. vendor=unknown
  897. case $basic_machine in
  898.     *-unknown)
  899.         case $os in
  900.             -riscix*)
  901.                 vendor=acorn
  902.                 ;;
  903.             -sunos*)
  904.                 vendor=sun
  905.                 ;;
  906.             -aix*)
  907.                 vendor=ibm
  908.                 ;;
  909.             -hpux*)
  910.                 vendor=hp
  911.                 ;;
  912.             -hiux*)
  913.                 vendor=hitachi
  914.                 ;;
  915.             -unos*)
  916.                 vendor=crds
  917.                 ;;
  918.             -dgux*)
  919.                 vendor=dg
  920.                 ;;
  921.             -luna*)
  922.                 vendor=omron
  923.                 ;;
  924.             -genix*)
  925.                 vendor=ns
  926.                 ;;
  927.             -mvs*)
  928.                 vendor=ibm
  929.                 ;;
  930.             -ptx*)
  931.                 vendor=sequent
  932.                 ;;
  933.             -vxsim* | -vxworks*)
  934.                 vendor=wrs
  935.                 ;;
  936.             -aux*)
  937.                 vendor=apple
  938.                 ;;
  939.         esac
  940.         basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
  941.         ;;
  942. esac
  943.  
  944. echo $basic_machine$os
  945.