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