home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / src / amiga / configure < prev    next >
Text File  |  1994-06-19  |  32KB  |  974 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 || (/bin/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="/bin/echo rm"
  42. #hard_link="/bin/echo ln"
  43. #symbolic_link="/bin/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=/gnu
  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. #AmigaDOS change - pdksh treats PWD as readonly - fnf
  103. #if [ -n "$PWD" ]; then PWD=`pwd`; fi
  104.  
  105. case "${progname}" in
  106. /*) ;;
  107. */*) ;;
  108. *)
  109.         PATH=$PATH:${PWD=`pwd`} ; export PATH
  110.         ;;
  111. esac
  112.  
  113. # Loop over all args
  114.  
  115. while :
  116. do
  117.  
  118. # Break out if there are no more args
  119.     case $# in
  120.     0)
  121.         break
  122.         ;;
  123.     esac
  124.  
  125. # Get the first arg, and shuffle
  126.     option=$1
  127.     shift
  128.  
  129. # Make all options have two hyphens
  130.     orig_option=$option    # Save original for error messages
  131.     case $option in
  132.     --*) ;;
  133.     -*) option=-$option ;;
  134.     esac
  135.         
  136. # Split out the argument for options that take them
  137.     case $option in
  138.     --*=*)
  139.         optarg=`/bin/echo $option | sed -e 's/^[^=]*=//'`
  140.         ;;
  141. # These options have mandatory values.  Since we didn't find an = sign,
  142. # the value must be in the next argument
  143.     --b* | --ex* | --ho* | --pre* | --program-p* | --program-s* | --program-t* | --si* | --sr* | --ta* | --tm* | --x-*)
  144.         optarg=$1
  145.         shift
  146.         ;;
  147.     esac
  148.  
  149. # Now, process the options
  150.     case $option in
  151.  
  152.     --build* | --b*)
  153.         case "$build_alias" in
  154.         "") build_alias=$optarg ;;
  155.         *) /bin/echo '***' Can only configure for one build machine at a time.  1>&2
  156.            fatal=yes
  157.            ;;
  158.         esac
  159.         ;;
  160.     --disable-*)
  161.         enableopt=`/bin/echo ${option} | sed 's:^--disable-:enable_:;s:-:_:g'`
  162.         eval $enableopt=no
  163.         disableoptions="$disableoptions $option"
  164.         ;;
  165.     --enable-*)
  166.         case "$option" in
  167.         *=*)    ;;
  168.         *)    optarg=yes ;;
  169.         esac
  170.  
  171.         enableopt=`/bin/echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
  172.         eval $enableopt="$optarg"
  173.         enableoptions="$enableoptions $option"
  174.         ;;
  175.     --exec-prefix* | --ex*)
  176.         exec_prefix=$optarg
  177.         exec_prefixoption="--exec-prefix=$optarg"
  178.         ;;
  179.     --gas | --g*)
  180.         gas=yes
  181.         ;;
  182.     --help | --he*)
  183.         fatal=yes
  184.         ;;
  185.     --host* | --ho*)
  186.         case $host_alias in
  187.         NOHOST) host_alias=$optarg ;;
  188.         *) /bin/echo '***' Can only configure for one host at a time.  1>&2
  189.            fatal=yes
  190.            ;;
  191.         esac
  192.         ;;
  193.     --nfp | --nf*)
  194.         floating_point=no
  195.         ;;
  196.     --norecursion | --no*)
  197.         norecursion=yes
  198.         ;;
  199.     --prefix* | --pre*)
  200.         prefix=$optarg
  201.         prefixoption="--prefix=$optarg"
  202.         ;;
  203.     --program-prefix* | --program-p*)
  204.         program_prefix=$optarg
  205.         program_prefixoption="--program-prefix=$optarg"
  206.         ;;
  207.     --program-suffix* | --program-s*)
  208.         program_suffix=$optarg
  209.         program_suffixoption="--program-suffix=$optarg"
  210.         ;;
  211.     --program-transform-name* | --program-t*)
  212.         # Double any backslashes or dollar signs in the argument
  213.         program_transform_name="${program_transform_name} -e `/bin/echo ${optarg} | sed -e 's/\\\\/\\\\\\\\/g' -e 's/\\\$/$$/g'`"
  214.         program_transform_nameoption="--program-transform-nameoption='$optarg'"
  215.         ;;
  216.     --rm)
  217.         removing=--rm
  218.         ;;
  219.     --silent | --sil* | --quiet | --q*)
  220.         redirect=">/dev/null"
  221.         verbose=--silent
  222.         ;;
  223.     --site* | --sit*)
  224.         site=$optarg
  225.         site_option="--site=$optarg"
  226.         ;;
  227.     --srcdir*/ | --sr*/)
  228.                 # Remove trailing slashes.  Otherwise, when the file name gets
  229.                 # bolted into an object file as debug info, it has two slashes
  230.                 # in it.  Ordinarily this is ok, but emacs takes double slash
  231.                 # to mean "forget the first part".
  232.         srcdir=`/bin/echo $optarg | sed -e 's:/$::'`
  233.         ;;
  234.     --srcdir* | --sr*)
  235.         srcdir=$optarg
  236.         ;;
  237.     --target* | --ta*)
  238.         case $target_alias in
  239.         NOTARGET) target_alias=$optarg ;;
  240.         *) /bin/echo '***' Can only configure for one target at a time.  1>&2
  241.            fatal=yes
  242.            ;;
  243.         esac
  244.         ;;
  245.     --tmpdir* | --tm*)
  246.         TMPDIR=$optarg
  247.         tmpdiroption="--tmpdir=$optarg"
  248.         ;;
  249.     --verbose | --v | --verb*)
  250.         redirect=
  251.         verbose=--verbose
  252.         ;;
  253.     --version | --V | --vers*)
  254.         /bin/echo "This is Cygnus Configure version" `/bin/echo ${version} | sed 's/[ $:]//g'`
  255.         exit 0
  256.         ;;
  257.     --with-*)
  258.         case "$option" in
  259.         *=*)    ;;
  260.         *)    optarg=yes ;;
  261.         esac
  262.  
  263.         withopt=`/bin/echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
  264.         eval $withopt="$optarg"
  265.         withoptions="$withoptions $option"
  266.         ;;
  267.     --without-*)
  268.         withopt=`/bin/echo ${option} | sed 's:^--::;s:out::;s:-:_:g'`
  269.         eval $withopt=no
  270.         withoutoptions="$withoutoptions $option"
  271.         ;;
  272.     --x)    with_x=yes
  273.         withoptions="$withoptions --with-x"
  274.         ;;
  275.     --x-i* | --x-l*) other_options="$other_options $orig_option"
  276.         ;;
  277.     --*)
  278.         /bin/echo "configure: Unrecognized option: \"$orig_option\"; use --help for usage." >&2
  279.         exit 1
  280.         ;;
  281.     *)
  282.         case $undefs in
  283.         NOUNDEFS) undefs=$option ;;
  284.         *) /bin/echo '***' Can only configure for one host and one target at a time.  1>&2
  285.            fatal=yes
  286.            ;;
  287.         esac
  288.         ;;
  289.     esac
  290. done
  291.  
  292. # process host and target
  293.  
  294. # Do some error checking and defaulting for the host and target type.
  295. # The inputs are:
  296. #    configure --host=HOST --target=TARGET UNDEFS
  297. #
  298. # The rules are:
  299. # 1. You aren't allowed to specify --host, --target, and undefs at the
  300. #    same time.
  301. # 2. Host defaults to undefs.
  302. # 3. If undefs is not specified, then host defaults to the current host,
  303. #    as determined by config.guess.
  304. # 4. Target defaults to undefs.
  305. # 5. If undefs is not specified, then target defaults to host.
  306.  
  307. case "${fatal}" in
  308. "")
  309.     # Make sure that host, target & undefs aren't all specified at the
  310.     # same time.
  311.     case $host_alias---$target_alias---$undefs in
  312.     NOHOST---*---* | *---NOTARGET---* | *---*---NOUNDEFS)
  313.         ;;
  314.     *) /bin/echo '***' Can only configure for one host and one target at a time.  1>&2
  315.        fatal=yes
  316.        break 2
  317.         ;;
  318.     esac
  319.  
  320.     # Now, do defaulting for host.
  321.     case $host_alias in
  322.     NOHOST)
  323.         case $undefs in
  324.         NOUNDEFS)
  325.             # Neither --host option nor undefs were present.
  326.             # Call config.guess.
  327.             guesssys=`/bin/echo ${progname} | sed 's/c