home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / libg++-2.6.2.lha / libg++-2.6.2 / configure < prev    next >
Text File  |  1994-10-20  |  33KB  |  1,017 lines

  1. #!/bin/sh
  2.  
  3. ### WARNING: this file contains embedded tabs.  Do not run untabify on this file.
  4.  
  5. # Configuration script
  6. # Copyright (C) 1988, 90, 91, 92, 93, 94 Free Software Foundation, Inc.
  7.  
  8. # This program 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. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. # GNU General Public License for more details.
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program; if not, write to the Free Software
  18. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  
  20. # Please report any problems running this configure script to
  21. # configure@cygnus.com
  22. # Please do not send reports about other problems to this address.  See
  23. # gdb/README, gas/README, etc., for info on where and how to report
  24. # problems about particular tools.
  25.  
  26. # This file was written by K. Richard Pixley.
  27.  
  28. #
  29. # Shell script to create proper links to machine-dependent files in
  30. # preparation for compilation.
  31. #
  32. # If configure succeeds, it leaves its status in config.status.
  33. # If configure fails after disturbing the status quo, 
  34. #       config.status is removed.
  35. #
  36.  
  37. export PATH || (echo "OOPS, this isn't sh.  Desperation time.  I will feed myself to sh."; sh $0 $argv; kill $$)
  38.  
  39. remove=rm
  40. hard_link=ln
  41. symbolic_link='ln -s'
  42.  
  43. #for Test
  44. #remove="echo rm"
  45. #hard_link="echo ln"
  46. #symbolic_link="echo ln -s"
  47.  
  48. # clear some things potentially inherited from environment.
  49.  
  50. Makefile=Makefile
  51. Makefile_in=Makefile.in
  52. arguments=$*
  53. build_alias=
  54. configdirs=
  55. exec_prefix=
  56. exec_prefixoption=
  57. fatal=
  58. floating_point=default
  59. gas=default
  60. host_alias=NOHOST
  61. host_makefile_frag=
  62. moveifchange=
  63. norecursion=
  64. other_options=
  65. package_makefile_frag=
  66. prefix=/usr/local
  67. progname=
  68. program_prefix=
  69. program_prefixoption=
  70. program_suffix=
  71. program_suffixoption=
  72. program_transform_name=
  73. program_transform_nameoption=
  74. redirect=">/dev/null"
  75. removing=
  76. site=
  77. site_makefile_frag=
  78. site_option=
  79. srcdir=
  80. srctrigger=
  81. subdirs=
  82. target_alias=NOTARGET
  83. target_makefile_frag=
  84. undefs=NOUNDEFS
  85. version="$Revision: 1.198 $"
  86. x11=default
  87.  
  88. ### we might need to use some other shell than /bin/sh for running subshells
  89. #
  90. config_shell=${CONFIG_SHELL-/bin/sh}
  91.  
  92. NO_EDIT="This file was generated automatically by configure.  Do not edit."
  93.  
  94. ## this is a little touchy and won't always work, but...
  95. ##
  96. ## if the argv[0] starts with a slash then it is an absolute name that can (and
  97. ## must) be used as is.
  98. ##
  99. ## otherwise, if argv[0] has no slash in it, we can assume that it is on the
  100. ## path.  Since PATH might include "." we also add `pwd` to the end of PATH.
  101. ##
  102.  
  103. progname=$0
  104. # if PWD already has a value, it is probably wrong.
  105. if [ -n "$PWD" ]; then PWD=`pwd`; fi
  106.  
  107. case "${progname}" in
  108. /*) ;;
  109. */*) ;;
  110. *)
  111.         PATH=$PATH:${PWD=`pwd`} ; export PATH
  112.         ;;
  113. esac
  114.  
  115. # Loop over all args
  116.  
  117. while :
  118. do
  119.  
  120. # Break out if there are no more args
  121.     case $# in
  122.     0)
  123.         break
  124.         ;;
  125.     esac
  126.  
  127. # Get the first arg, and shuffle
  128.     option=$1
  129.     shift
  130.  
  131. # Make all options have two hyphens
  132.     orig_option=$option    # Save original for error messages
  133.     case $option in
  134.     --*) ;;
  135.     -*) option=-$option ;;
  136.     esac
  137.         
  138. # Split out the argument for options that take them
  139.     case $option in
  140.     --*=*)
  141.         optarg=`echo $option | sed -e 's/^[^=]*=//'`
  142.         ;;
  143. # These options have mandatory values.  Since we didn't find an = sign,
  144. # the value must be in the next argument
  145.     --b* | --cache* | --ex* | --ho* | --pre* | --program-p* | --program-s* | --program-t* | --si* | --sr* | --ta* | --tm* | --x-*)
  146.         optarg=$1
  147.         shift
  148.         ;;
  149.     esac
  150.  
  151. # Now, process the options
  152.     case $option in
  153.  
  154.     --build* | --b*)
  155.         case "$build_alias" in
  156.         "") build_alias=$optarg ;;
  157.         *) echo '***' Can only configure for one build machine at a time.  1>&2
  158.            fatal=yes
  159.            ;;
  160.         esac
  161.         ;;
  162. # Accepted for compatibility with new autoconf; ignored.
  163.     --cache*)
  164.         ;;
  165.     --disable-*)
  166.         enableopt=`echo ${option} | sed 's:^--disable-:enable_:;s:-:_:g'`
  167.         eval $enableopt=no
  168.         disableoptions="$disableoptions $option"
  169.         ;;
  170.     --enable-*)
  171.         case "$option" in
  172.         *=*)    ;;
  173.         *)    optarg=yes ;;
  174.         esac
  175.  
  176.         enableopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
  177.         eval $enableopt="$optarg"
  178.         enableoptions="$enableoptions $option"
  179.         ;;
  180.     --exec-prefix* | --ex*)
  181.         exec_prefix=$optarg
  182.         exec_prefixoption="--exec-prefix=$optarg"
  183.         ;;
  184.     --gas | --g*)
  185.         gas=yes
  186.         ;;
  187.     --help | --he*)
  188.         fatal=yes
  189.         ;;
  190.     --host* | --ho*)
  191.         case $host_alias in
  192.         NOHOST) host_alias=$optarg ;;
  193.         *) echo '***' Can only configure for one host at a time.  1>&2
  194.            fatal=yes
  195.            ;;
  196.         esac
  197.         ;;
  198.     --nfp | --nf*)
  199.         floating_point=no
  200.         ;;
  201.     --norecursion | --no*)
  202.         norecursion=yes
  203.         ;;
  204.     --prefix* | --pre*)
  205.         prefix=$optarg
  206.         prefixoption="--prefix=$optarg"
  207.         ;;
  208.     --program-prefix* | --program-p*)
  209.         program_prefix=$optarg
  210.         program_prefixoption="--program-prefix=$optarg"
  211.         ;;
  212.     --program-suffix* | --program-s*)
  213.         program_suffix=$optarg
  214.         program_suffixoption="--program-suffix=$optarg"
  215.         ;;
  216.     --program-transform-name* | --program-t*)
  217.         # Double any backslashes or dollar signs in the argument
  218.         program_transform_name="${program_transform_name} -e `echo ${optarg} | sed -e 's/\\\\/\\\\\\\\/g' -e 's/\\\$/$$/g'`"
  219.         program_transform_nameoption="${program_transform_nameoption} --program-transform-name='$optarg'"
  220.         ;;
  221.     --rm)
  222.         removing=--rm
  223.         ;;
  224.     --silent | --sil* | --quiet | --q*)
  225.         redirect=">/dev/null"
  226.         verbose=--silent
  227.         ;;
  228.     --site* | --sit*)
  229.         site=$optarg
  230.         site_option="--site=$optarg"
  231.         ;;
  232.     --srcdir*/ | --sr*/)
  233.                 # Remove trailing slashes.  Otherwise, when the file name gets
  234.                 # bolted into an object file as debug info, it has two slashes
  235.                 # in it.  Ordinarily this is ok, but emacs takes double slash
  236.                 # to mean "forget the first part".
  237.         srcdir=`echo $optarg | sed -e 's:/$::'`
  238.         ;;
  239.     --srcdir* | --sr*)
  240.         srcdir=$optarg
  241.         ;;
  242.     --target* | --ta*)
  243.         case $target_alias in
  244.         NOTARGET) target_alias=$optarg ;;
  245.         *) echo '***' Can only configure for one target at a time.  1>&2
  246.            fatal=yes
  247.            ;;
  248.         esac
  249.         ;;
  250.     --tmpdir* | --tm*)
  251.         TMPDIR=$optarg
  252.         tmpdiroption="--tmpdir=$optarg"
  253.         ;;
  254.     --verbose | --v | --verb*)
  255.         redirect=
  256.         verbose=--verbose
  257.         ;;
  258.     --version | --V | --vers*)
  259.         echo "This is Cygnus Configure version" `echo ${version} | sed 's/[ $:]//g'`
  260.         exit 0
  261.         ;;
  262.     --with-*)
  263.         case "$option" in
  264.         *=*)    ;;
  265.         *)    optarg=yes ;;
  266.         esac
  267.  
  268.         withopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
  269.         eval $withopt="$optarg"
  270.         withoptions="$withoptions $option"
  271.         ;;
  272.     --without-*)
  273.         withopt=`echo ${option} | sed 's:^--::;s:out::;s:-:_:g'`
  274.         eval $withopt=no
  275.         withoutoptions="$withoutoptions $option"
  276.         ;;
  277.     --x)    with_x=yes
  278.         withoptions="$withoptions --with-x"
  279.         ;;
  280.     --x-i* | --x-l*) other_options="$other_options $orig_option"
  281.         ;;
  282.     --*)
  283.         echo "configure: Unrecognized option: \"$orig_option\"; use --help for usage." >&2
  284.         exit 1
  285.         ;;
  286.     *)
  287.         case $undefs in
  288.         NOUNDEFS) undefs=$option ;;
  289.         *) echo '***' Can only configure for one host and one target at a time.  1>&2
  290.            fatal=yes
  291.            ;;
  292.         esac
  293.         ;;
  294.     esac
  295. done
  296.  
  297. # process host and target
  298.  
  299. # Do some error checking and defaulting for the host and target type.
  300. # The inputs are:
  301. #    configure --host=HOST --target=TARGET UNDEFS
  302. #
  303. # The rules are:
  304. # 1. You aren't allowed to specify --host, --target, and undefs at the
  305. #    same time.
  306. # 2. Host defaults to undefs.
  307. # 3. If undefs is not specified, then host defaults to the current host,
  308. #    as determined by config.guess.
  309. # 4. Target defaults to undefs.
  310. # 5. If undefs is not specified, then target defaults to host.
  311.  
  312. case "${fatal}" in
  313. "")
  314.     # Make sure that host, target & undefs aren't all specified at the
  315.     # same time.
  316.     case $host_alias---$target_alias---$undefs in
  317.     NOHOST---*---* | *---NOTARGET---* | *---*---NOUNDEFS)
  318.         ;;
  319.     *) echo '***' Can only configure for one host and one target at a time.  1>&2
  320.        fatal=yes
  321.        break 2
  322.         ;;
  323.     esac
  324.  
  325.     # Now, do defaulting for host.
  326.     case $host_alias in
  327.     NOHOST)
  328.         case $undefs in