home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / libg++-2.7.1-src.tgz / tar.out / fsf / libg++ / configure < prev    next >
Text File  |  1996-09-28  |  39KB  |  1,231 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19.  
  20. # This file was originally written by K. Richard Pixley.
  21.  
  22. #
  23. # Shell script to create proper links to machine-dependent files in
  24. # preparation for compilation.
  25. #
  26. # If configure succeeds, it leaves its status in config.status.
  27. # If configure fails after disturbing the status quo, 
  28. #       config.status is removed.
  29. #
  30.  
  31. # In places where the argument to echo may start with a '-', use echo since
  32. # the AmigaOS pdksh builtin echo botches this case.
  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=cp
  38. symbolic_link=cp
  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. cache_file=
  52. cache_file_option=
  53. configdirs=
  54. exec_prefix=
  55. exec_prefixoption=
  56. fatal=
  57. floating_point=default
  58. gas=default
  59. host_alias=NOHOST
  60. host_makefile_frag=
  61. moveifchange=
  62. norecursion=
  63. other_options=
  64. package_makefile_frag=
  65. prefix=/ade
  66. progname=
  67. program_prefix=
  68. program_prefixoption=
  69. program_suffix=
  70. program_suffixoption=
  71. program_transform_name=
  72. program_transform_nameoption=
  73. redirect=">/dev/null"
  74. removing=
  75. site=
  76. site_makefile_frag=
  77. site_option=
  78. srcdir=
  79. srctrigger=
  80. subdirs=
  81. target_alias=NOTARGET
  82. target_makefile_frag=
  83. undefs=NOUNDEFS
  84. version="$Revision: 1.211 $"
  85. x11=default
  86.  
  87. ### we might need to use some other shell than /bin/sh for running subshells
  88. #
  89. config_shell=${CONFIG_SHELL-/bin/sh}
  90.  
  91. NO_EDIT="This file was generated automatically by configure.  Do not edit."
  92.  
  93. ## this is a little touchy and won't always work, but...
  94. ##
  95. ## if the argv[0] starts with a slash then it is an absolute name that can (and
  96. ## must) be used as is.
  97. ##
  98. ## otherwise, if argv[0] has no slash in it, we can assume that it is on the
  99. ## path.  Since PATH might include "." we also add `pwd` to the end of PATH.
  100. ##
  101.  
  102. progname=$0
  103.  
  104. # if PWD already has a value, it is probably wrong.
  105. # AmigaOS change - pdksh treats PWD as readonly - fnf
  106. #if [ -n "$PWD" ]; then PWD=`pwd`; fi
  107.  
  108. case "${progname}" in
  109. *:*) progname=/`echo $progname | sed -e 's@:@/@'`;;
  110. /*) ;;
  111. */*) ;;
  112. *)
  113.         PATH=$PATH:${PWD=`pwd`} ; export PATH
  114.         ;;
  115. esac
  116.  
  117. # Loop over all args
  118.  
  119. while :
  120. do
  121.  
  122. # Break out if there are no more args
  123.     case $# in
  124.     0)
  125.         break
  126.         ;;
  127.     esac
  128.  
  129. # Get the first arg, and shuffle
  130.     option=$1
  131.     shift
  132.  
  133. # Make all options have two hyphens
  134.     orig_option=$option    # Save original for error messages
  135.     case $option in
  136.     --*) ;;
  137.     -*) option=-$option ;;
  138.     esac
  139.         
  140. # Split out the argument for options that take them
  141.     case $option in
  142.     --*=*)
  143.         optarg=`echo $option | sed -e 's/^[^=]*=//'`
  144.         ;;
  145. # These options have mandatory values.  Since we didn't find an = sign,
  146. # the value must be in the next argument
  147.     --b* | --cache* | --ex* | --ho* | --pre* | --program-p* | --program-s* | --program-t* | --si* | --sr* | --ta* | --tm* | --x-*)
  148.         optarg=$1
  149.         shift
  150.         ;;
  151.     esac
  152.  
  153. # Now, process the options
  154.     case $option in
  155.  
  156.     --build* | --b*)
  157.         case "$build_alias" in
  158.         "") build_alias=$optarg ;;
  159.         *) echo '***' Can only configure for one build machine at a time.  1>&2
  160.            fatal=yes
  161.            ;;
  162.         esac
  163.         ;;
  164.     --cache*)
  165.         cache_file=$optarg
  166.         ;;
  167.     --disable-*)
  168.         enableopt=`echo ${option} | sed 's:^--disable-:enable_:;s:-:_:g'`
  169.         eval $enableopt=no
  170.         disableoptions="$disableoptions $option"
  171.         ;;
  172.     --enable-*)
  173.         case "$option" in
  174.         *=*)    ;;
  175.         *)    optarg=yes ;;
  176.         esac
  177.  
  178.         enableopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
  179.         eval $enableopt="$optarg"
  180.         enableoptions="$enableoptions $option"
  181.         ;;
  182.     --exec-prefix* | --ex*)
  183.         exec_prefix=$optarg
  184.         exec_prefixoption="--exec-prefix=$optarg"
  185.         ;;
  186.     --gas | --g*)
  187.         gas=yes
  188.         ;;
  189.     --help | --he*)
  190.         fatal=yes
  191.         ;;
  192.     --host* | --ho*)
  193.         case $host_alias in
  194.         NOHOST) host_alias=$optarg ;;
  195.         *) echo '***' Can only configure for one host at a time.  1>&2
  196.            fatal=yes
  197.            ;;
  198.         esac
  199.         ;;
  200.     --nfp | --nf*)
  201.         floating_point=no
  202.         ;;
  203.     --norecursion | --no*)
  204.         norecursion=yes
  205.         ;;
  206.     --prefix* | --pre*)
  207.         prefix=$optarg
  208.         prefixoption="--prefix=$optarg"
  209.         ;;
  210.     --program-prefix* | --program-p*)
  211.         program_prefix=$optarg
  212.         program_prefixoption="--program-prefix=$optarg"
  213.         ;;
  214.     --program-suffix* | --program-s*)
  215.         program_suffix=$optarg
  216.         program_suffixoption="--program-suffix=$optarg"
  217.         ;;
  218.     --program-transform-name* | --program-t*)
  219.         # Double any backslashes or dollar signs in the argument
  220.         program_transform_name="${program_transform_name} -e `echo ${optarg} | sed -e 's/\\\\/\\\\\\\\/g' -e 's/\\\$/$$/g'`"
  221.         program_transform_nameoption="${program_transform_nameoption} --program-transform-name='$optarg'"
  222.         ;;
  223.     --rm)
  224.         removing=--rm
  225.         ;;
  226.     --silent | --sil* | --quiet | --q*)
  227.         redirect=">/dev/null"
  228.         verbose=--silent
  229.         ;;
  230.     --site* | --sit*)
  231.         site=$optarg
  232.         site_option="--site=$optarg"
  233.         ;;
  234.     --srcdir*/ | --sr*/)
  235.                 # Remove trailing slashes.  Otherwise, when the file name gets
  236.                 # bolted into an object file as debug info, it has two slashes
  237.                 # in it.  Ordinarily this is ok, but emacs takes double slash
  238.                 # to mean "forget the first part".
  239.         srcdir=`echo $optarg | sed -e 's:/$::'`
  240.         ;;
  241.     --srcdir* | --sr*)
  242.         srcdir=$optarg
  243.         ;;
  244.     --target* | --ta*)
  245.         case $target_alias in
  246.         NOTARGET) target_alias=$optarg ;;
  247.         *) echo '***' Can only configure for one target at a time.  1>&2
  248.            fatal=yes
  249.            ;;
  250.         esac
  251.         ;;
  252.     --tmpdir* | --tm*)
  253.         TMPDIR=$optarg
  254.         tmpdiroption="--tmpdir=$optarg"
  255.         ;;
  256.     --verbose | --v | --verb*)
  257.         redirect=
  258.         verbose=--verbose
  259.         ;;
  260.     --version | --V | --vers*)
  261.         echo "This is Cygnus Configure version" `echo ${version} | sed 's/[ $:]//g'`
  262.         exit 0
  263.         ;;
  264.     --with-*)
  265.         case "$option" in
  266.         *=*)    ;;
  267.         *)    optarg=yes ;;
  268.         esac
  269.  
  270.         withopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
  271.         eval $withopt="$optarg"
  272.         withoptions="$withoptions $option"
  273.         ;;
  274.     --without-*)
  275.         withopt=`echo ${option} | sed 's:^--::;s:out::;s:-:_:g'`
  276.         eval $withopt=no
  277.         withoutoptions="$withoutoptions $option"
  278.         ;;
  279.     --x)    with_x=yes
  280.         withoptions="$withoptions --with-x"
  281.         ;;
  282.     --x-i* | --x-l*) other_options="$other_options $orig_option"
  283.         ;;
  284.     --*)
  285.         echo "configure: Unrecognized option: \"$orig_option\"; use --help for usage." >&2
  286.         exit 1
  287.         ;;
  288.     *)
  289.         case $undefs in
  290.         NOUNDEFS) undefs=$option ;;
  291.         *) echo '***' Can only configure for one host and one target at a time.  1>&2
  292.            fatal=yes
  293.            ;;
  294.         esac
  295.         ;;
  296.     esac
  297. done
  298.  
  299. # process host and target
  300.  
  301. # Do some error checking and defaulting for the host and target type.
  302. # The inputs are:
  303. #    configure --host=HOST --target=TARGET UNDEFS
  304. #
  305. # The rules are:
  306. # 1. You aren't allowed to specify --host, --target, and undefs at the
  307. #    same time.
  308. # 2. Host defaults to undefs.
  309. # 3. If undefs is not specified, then host defaults to the current host,
  310. #    as determined by config.guess.
  311. # 4. Target defaults to undefs.
  312. # 5. If undefs is not specified, then target defaults to host.
  313.  
  314. case "${fatal}" in
  315. "")
  316.     # Make sure that host, target & undefs aren't all specified at the
  317.     # same time.
  318.     case $host_alias---$target_alias---$undefs in
  319.     NOHOST---*---* | *---NOTARGET---* | *---*---NOUNDEFS)
  320.         ;;
  321.     *) echo '***' Can only configure for one host and one target at a time.  1>&2
  322.        fatal=yes
  323.        break 2
  324.         ;;
  325.     esac
  326.  
  327.     # Now, do defaulting for host.
  328.     case $host_alias in
  329.     NOHOST)
  330.         case $undefs in
  331.         NOUNDEFS)
  332.             # Neither --host option nor undefs were present.
  333.             # Call config.guess.
  334.             guesssys=`echo ${progname} | sed 's/configure$/config.guess/'`
  335.             if host_alias=`${guesssys}`
  336.             then
  337.                 # If the string we are going to use for
  338.                 # the target is a prefix of the string
  339.                 # we just guessed for the host, then
  340.                 # assume we are running native, and force
  341.                 # the same string for both target and host.
  342.                 case $target_alias in
  343.                 NOTARGET) ;;
  344.                 *)
  345.                     if expr $host_alias : $target_alias >/dev/null
  346.                     then
  347.                         host_alias=$target_alias
  348.                     fi
  349.                     ;;
  350.                 esac
  351.                 echo "Configuring for a ${host_alias} host." 1>&2
  352.                 arguments="--host=$host_alias $arguments"
  353.             else
  354.                 echo 'Config.guess failed to determine the host type.  You need to specify one.' 1>&2
  355.                 fatal=yes
  356.             fi
  357.             ;;
  358.         *)
  359.             host_alias=$undefs
  360.             ;;
  361.         esac
  362.     esac
  363.  
  364.     # Do defaulting for target.  If --target option isn't present, default
  365.     # to undefs.  If undefs isn't present, default to host.
  366.     case $target_alias in
  367.     NOTARGET)
  368.         case $undefs in
  369.         NOUNDEFS)
  370.             target_alias=$host_alias
  371.             ;;
  372.         *)
  373.             target_alias=$undefs
  374.             ;;
  375.         esac
  376.     esac
  377.     ;;
  378. *) ;;
  379. esac
  380.  
  381. if [ -n "${fatal}" -o "${host_alias}" = "help" ] ; then
  382.     exec 1>&2
  383.     echo Usage: configure [OPTIONS] [HOST]
  384.     echo
  385.     echo Options: [defaults in brackets]
  386.     echo ' --prefix=MYDIR         install into MYDIR [/usr/local]'
  387.     echo ' --exec-prefix=MYDIR     install host-dependent files into MYDIR [/usr/local]'
  388.     echo ' --help             print this message [normal config]'
  389.     echo ' --build=BUILD         configure for building on BUILD [BUILD=HOST]'
  390.     echo ' --host=HOST         configure for HOST [determined via config.guess]'
  391.     echo ' --norecursion         configure this directory only [recurse]'
  392.     echo ' --program-prefix=FOO     prepend FOO to installed program names [""]'
  393.     echo ' --program-suffix=FOO     append FOO to installed program names [""]'
  394.     echo ' --program-transform-name=P transform installed names by sed pattern P [""]'
  395.     echo ' --site=SITE         configure with site-specific makefile for SITE'
  396.     echo ' --srcdir=DIR         find the sources in DIR [. or ..]'
  397.     echo ' --target=TARGET     configure for TARGET [TARGET=HOST]'
  398.     echo ' --tmpdir=TMPDIR     create temporary files in TMPDIR [/tmp]'
  399.     echo ' --nfp             configure for software floating point [hard float]'
  400.     echo ' --with-FOO, --with-FOO=BAR package FOO is available (parameter BAR)'
  401.     echo ' --without-FOO         package FOO is NOT available'
  402.     echo ' --enable-FOO, --enable-FOO=BAR include feature FOO (parameter BAR)'
  403.     echo ' --disable-FOO         do not include feature FOO'
  404.     echo
  405.     echo 'Where HOST and TARGET are something like "sparc-sunos", "mips-sgi-irix5", etc.'
  406.     echo
  407.     if [ -r config.status ] ; then
  408.         cat config.status
  409.     fi
  410.  
  411.     exit 1
  412. fi
  413.  
  414. configsub=`echo ${progname} | sed 's/configure$/config.sub/'`
  415. moveifchange=`echo ${progname} | sed 's/configure$/move-if-change/'`
  416.  
  417. # this is a hack.  sun4 must always be a valid host alias or this will fail.
  418. if ${configsub} sun4 >/dev/null 2>&1 ; then
  419.         true
  420. else
  421.         echo '***' cannot find config.sub.  1>&2
  422.         exit 1
  423. fi
  424.  
  425. touch config.junk
  426. if ${moveifchange} config.junk config.trash ; then
  427.         true
  428. else
  429.         echo '***' cannot find move-if-change.  1>&2
  430.         exit 1
  431. fi
  432. rm -f config.junk config.trash
  433.  
  434. case "${srcdir}" in
  435. "")
  436.         if [ -r configure.in ] ; then
  437.                 srcdir=.
  438.         else
  439.                 if [ -r ${progname}.in ] ; then
  440.                         srcdir=`echo ${progname} | sed 's:/configure$::'`
  441.                 else
  442.                         echo '***' "Can't find configure.in.  Try using --srcdir=some_dir"  1>&2
  443.                         exit 1
  444.                 fi
  445.         fi
  446.         ;;
  447. *) ;;
  448. esac
  449.  
  450. ### warn about some conflicting configurations.
  451.  
  452. case "${srcdir}" in
  453. ".") ;;
  454. *)
  455.         if [ -f ${srcdir}/config.status ] ; then
  456.                 echo '***' Cannot configure here in \"${PWD=`pwd`}\" when \"${srcdir}\" is currently configured. 1>&2
  457.                 exit 1
  458.         fi
  459. esac
  460.  
  461. # default exec_prefix
  462. case "${exec_prefixoption}" in
  463. "") exec_prefix="\$(prefix)" ;;
  464. *) ;;
  465. esac
  466.  
  467. ### break up ${srcdir}/configure.in.
  468. case "`grep '^# per\-host:' ${srcdir}/configure.in`" in
  469. "")
  470.         echo '***' ${srcdir}/configure.in has no \"per-host:\" line. 1>&2
  471.     # Check for a directory that's been converted to use autoconf since
  472.     # it was last configured.
  473.     if grep AC_OUTPUT ${srcdir}/configure.in >/dev/null ; then
  474.       echo '***' Hmm, looks like this directory has been autoconfiscated. 1>&2
  475.       if [ -r ${srcdir}/configure ] ; then
  476.         echo '***' Running the local configure script. 1>&2
  477.         case "${cache_file}" in
  478.         "") cache_file_option= ;;
  479.         *)  cache_file_option="--cache-file=${cache_file}" ;;
  480.         esac
  481.         srcdiroption="--srcdir=${srcdir}"
  482.         case "${build_alias}" in
  483.         "") buildopt= ;;
  484.         *)  buildopt="--build=${build_alias}" ;;
  485.         esac
  486.         eval exec ${config_shell} ${srcdir}/configure ${verbose} \
  487.         ${buildopt} --host=${host_alias} --target=${target_alias} \
  488.         ${prefixoption} ${tmpdiroption} ${exec_prefixoption} \
  489.         ${srcdiroption} \
  490.         ${program_prefixoption} ${program_suffixoption} \
  491.         ${program_transform_nameoption} ${site_option} \
  492.         ${withoptions} ${withoutoptions} \
  493.         ${enableoptions} ${disableoptions} \
  494.         ${cache_file_option} ${removing} ${other_options} ${redirect}
  495.       else
  496.         echo '***' There is no configure script present though. 1>&2
  497.       fi
  498.     fi
  499.         exit 1
  500.         ;;
  501. *) ;;
  502. esac
  503.  
  504. case "`grep '^# per\-target:' ${srcdir}/configure.in`" in
  505. "")
  506.         echo '***' ${srcdir}/configure.in has no \"per-target:\" line. 1>&2
  507.         exit 1
  508.         ;;
  509. *) ;;
  510. esac
  511.  
  512. case "${TMPDIR}" in
  513. "") TMPDIR=/tmp ; export TMPDIR ;;
  514. *) ;;
  515. esac
  516.  
  517. # keep this filename short for &%*%$*# 14 char file names
  518. tmpfile=${TMPDIR}/cONf$$
  519. # Note that under many versions of sh a trap handler for 0 will *override* any
  520. # exit status you explicitly specify!  At this point, the only non-error exit
  521. # is at the end of the script; these actions are duplicated there, minus
  522. # the "exit 1".  Don't use "exit 0" anywhere after this without resetting the
  523. # trap handler, or you'll lose.
  524. trap "rm -f Makefile.tem ${tmpfile}.com ${tmpfile}.tgt ${tmpfile}.hst ${tmpfile}.pos; exit 1" 0 1 2 15
  525.  
  526. # split ${srcdir}/configure.in into common, per-host, per-target,
  527. # and post-target parts.  Post-target is optional.
  528. sed -e '/^# per\-host:/,$d' ${srcdir}/configure.in > ${tmpfile}.com
  529. sed -e '1,/^# per\-host:/d' -e '/^# per\-target:/,$d' ${srcdir}/configure.in > ${tmpfile}.hst
  530. if grep '^# post-target:' ${srcdir}/configure.in >/dev/null ; then
  531.   sed -e '1,/^# per\-target:/d' -e '/^# post\-target:/,$d' ${srcdir}/configure.in > ${tmpfile}.tgt
  532.   sed -e '1,/^# post\-target:/d' ${srcdir}/configure.in > ${tmpfile}.pos
  533. else
  534.   sed -e '1,/^# per\-target:/d' ${srcdir}/configure.in > ${tmpfile}.tgt
  535.   echo >${tmpfile}.pos
  536. fi
  537.  
  538. ### do common part of configure.in
  539.  
  540. . ${tmpfile}.com
  541.  
  542. # some sanity checks on configure.in
  543. case "${srctrigger}" in
  544. "")
  545.         echo '***' srctrigger not set in ${PWD=`pwd`}/configure.in.  1>&2
  546.         exit 1
  547.         ;;
  548. *) ;;
  549. esac
  550.  
  551. case "${build_alias}" in
  552. "")
  553.     if result=`${config_shell} ${configsub} ${host_alias}` ; then
  554.         build_cpu=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
  555.         build_vendor=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
  556.         build_os=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
  557.         build=${build_cpu}-${build_vendor}-${build_os}
  558.         build_alias=${host_alias}
  559.     fi
  560.     ;;
  561. *)
  562.     if result=`${config_shell} ${configsub} ${build_alias}` ; then
  563.         buildopt="--build=${build_alias}"
  564.         build_cpu=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
  565.         build_vendor=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
  566.         build_os=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
  567.         build=${build_cpu}-${build_vendor}-${build_os}
  568.     else
  569.         echo "Unrecognized build system name ${build_alias}." 1>&2
  570.         exit 1
  571.     fi
  572.     ;;
  573. esac
  574.  
  575. if result=`${config_shell} ${configsub} ${host_alias}` ; then
  576.     true
  577. else
  578.     echo "Unrecognized host system name ${host_alias}." 1>&2
  579.     exit 1
  580. fi
  581. host_cpu=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
  582. host_vendor=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
  583. host_os=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
  584. host=${host_cpu}-${host_vendor}-${host_os}
  585.  
  586. . ${tmpfile}.hst
  587.  
  588. if result=`${config_shell} ${configsub} ${target_alias}` ; then
  589.     true
  590. else
  591.     echo "Unrecognized target system name ${target_alias}." 1>&2
  592.     exit 1
  593. fi
  594. target_cpu=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
  595. target_vendor=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
  596. target_os=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
  597. target=${target_cpu}-${target_vendor}-${target_os}
  598.  
  599. . ${tmpfile}.tgt
  600.  
  601. # Find the source files, if location was not specified.
  602. case "${srcdir}" in
  603. "")
  604.         srcdirdefaulted=1
  605.         srcdir=.
  606.         if [ ! -r ${srctrigger} ] ; then
  607.                 srcdir=..
  608.         fi
  609.         ;;
  610. *) ;;
  611. esac
  612.  
  613. if [ ! -r ${srcdir}/${srctrigger} ] ; then
  614.         case "${srcdirdefaulted}" in
  615.         "") echo '***' "${progname}: Can't find ${srcname} sources in ${PWD=`pwd`}/${srcdir}" 1>&2 ;;
  616.         *)  echo '***' "${progname}: Can't find ${srcname} sources in ${PWD=`pwd`}/. or ${PWD=`pwd`}/.." 1>&2 ;;
  617.         esac
  618.  
  619.         echo '***' \(At least ${srctrigger} is missing.\) 1>&2
  620.         exit 1
  621. fi
  622.  
  623. # Some systems (e.g., one of the i386-aix systems the gas testers are
  624. # using) don't handle "\$" correctly, so don't use it here.
  625. tooldir='$(exec_prefix)'/${target_alias}
  626.  
  627. if [ "${host_alias}" != "${target_alias}" ] ; then
  628.     if [ "${program_prefixoption}" = "" ] ; then
  629.         if [ "${program_suffixoption}" = "" ] ; then 
  630.             if [ "${program_transform_nameoption}" = "" ] ; then
  631.                 program_prefix=${target_alias}- ;
  632.             fi
  633.         fi
  634.     fi
  635. fi
  636.  
  637. # Merge program_prefix and program_suffix onto program_transform_name.
  638. # (program_suffix used to use $, but it's hard to preserve $ through both
  639. # make and sh.)
  640. if [ "${program_suffix}" != "" ] ; then
  641.     program_transform_name="-e s,\\\\(.*\\\\),\\\\1${program_suffix}, ${program_transform_name}"
  642. fi
  643.  
  644. if [ "${program_prefix}" != "" ] ; then
  645.     program_transform_name="-e s,^,${program_prefix}, ${program_transform_name}"
  646. fi
  647.  
  648. # If CC and CXX are not set in the environment, and the Makefile
  649. # exists, try to extract them from it.  This is to handle running
  650. # ./config.status by hand.
  651. if [ -z "${CC}" -a -r Makefile ]; then
  652.   sed -n -e ':loop
  653. /\\$/ N
  654. /\\$/ b loop
  655. s/\\\n//g
  656. /^CC[     ]*=/ s/CC[     ]*=[     ]*\(.*\)/\1/p' < Makefile > Makefile.cc
  657.   CC=`tail -1 Makefile.cc`
  658.   rm -f Makefile.cc
  659. fi
  660.  
  661. if [ -z "${CXX}" -a -r Makefile ]; then
  662.   sed -n -e ':loop
  663. /\\$/ N
  664. /\\$/ b loop
  665. s/\\\n//g
  666. /^CXX[     ]*=/ s/CXX[     ]*=[     ]*\(.*\)/\1/p' < Makefile > Makefile.cc
  667.   CXX=`tail -1 Makefile.cc`
  668.   rm -f Makefile.cc
  669. fi
  670.  
  671. if [ "${build}" != "${host}" ]; then
  672.   # If we are doing a Canadian Cross, in which the host and build systems
  673.   # are not the same, we set reasonable default values for the tools.
  674.  
  675.   tools="AR AR_FOR_TARGET AS AS_FOR_TARGET BISON CC_FOR_BUILD"
  676.   tools="${tools} CC_FOR_TARGET CXX_FOR_TARGET HOST_PREFIX"
  677.   tools="${tools} HOST_PREFIX_1 LEX MAKEINFO NM NM_FOR_TARGET"
  678.   tools="${tools} RANLIB RANLIB_FOR_TARGET"
  679.  
  680.   for var in ${tools}; do
  681.     if [ -z "`eval 'echo $'"${var}"`" -a -r Makefile ]; then
  682.       sed -n -e ':loop
  683. /\\$/ N
  684. /\\$/ b loop
  685. s/\\\n//g
  686. /^'"${var}"'[     ]*=/ s/'"${var}"'[     ]*=[     ]*\(.*\)/\1/p' \
  687.     < Makefile > Makefile.v
  688.       t=`tail -1 Makefile.v`
  689.       if [ -n "${t}" ]; then
  690.     eval "${var}='${t}'"
  691.       fi
  692.       rm -f Makefile.v
  693.     fi
  694.   done
  695.  
  696.   AR=${AR-${host_alias}-ar}
  697.   AR_FOR_TARGET=${AR_FOR_TARGET-${target_alias}-ar}
  698.   AS=${AS-${host_alias}-as}
  699.   AS_FOR_TARGET=${AS_FOR_TARGET-${target_alias}-as}
  700.   CC=${CC-${host_alias}-gcc}
  701.   CXX=${CXX-${host_alias}-gcc}
  702.   CC_FOR_BUILD=${CC_FOR_BUILD-gcc}
  703.   CC_FOR_TARGET=${CC_FOR_TARGET-${target_alias}-gcc}
  704.   CXX_FOR_TARGET=${CXX_FOR_TARGET-${target_alias}-gcc}
  705.   HOST_PREFIX=${build_alias}-
  706.   HOST_PREFIX_1=${build_alias}-
  707.   MAKEINFO=${MAKEINFO-makeinfo}
  708.   NM=${NM-${host_alias}-nm}
  709.   NM_FOR_TARGET=${NM_FOR_TARGET-${target_alias}-nm}
  710.   RANLIB=${RANLIB-${host_alias}-ranlib}
  711.   RANLIB_FOR_TARGET=${RANLIB_FOR_TARGET-${target_alias}-ranlib}
  712.  
  713.   if [ -z "${BISON}" ]; then
  714.     IFS="${IFS=     }"; save_ifs="$IFS"; IFS="${IFS}:"
  715.     for dir in $PATH; do
  716.       test -z "$dir" && dir=.
  717.       if test -f $dir/byacc; then
  718.     BISON=byacc
  719.     break
  720.       fi
  721.       if test -f $dir/bison; then
  722.     BISON=bison
  723.     break
  724.       fi
  725.       if test -f $dir/yacc; then
  726.     BISON=yacc
  727.     break
  728.       fi
  729.     done
  730.     IFS="$save_ifs"
  731.     BISON=${BISON-bison}
  732.   fi
  733.  
  734.   if [ -z "${LEX}" ]; then
  735.     IFS="${IFS=     }"; save_ifs="$IFS"; IFS="${IFS}:"
  736.     for dir in $PATH; do
  737.       test -z "$dir" && dir=.
  738.       if test -f $dir/flex; then
  739.     LEX=flex
  740.     break
  741.       fi
  742.       if test -f $dir/lex; then
  743.     LEX=lex
  744.     break
  745.       fi
  746.     done
  747.     IFS="$save_ifs"
  748.     LEX=${LEX-flex}
  749.   fi
  750.  
  751.   # Export variables which autoconf might try to set.
  752.   export AS
  753.   export AR
  754.   export CC_FOR_BUILD
  755.   export NM
  756.   export RANLIB
  757. else
  758.   # If CC is still not set, try to get gcc.
  759.   if [ -z "${CC}" ]; then
  760.     IFS="${IFS=     }"; save_ifs="$IFS"; IFS="${IFS}:"
  761.     for dir in $PATH; do
  762.       test -z "$dir" && dir=.
  763.       if test -f $dir/gcc; then
  764.     CC="gcc -O2"
  765.     break
  766.       fi
  767.     done
  768.     IFS="$save_ifs"
  769.     CC=${CC-cc}
  770.   fi
  771.  
  772.   CXX=${CXX-"gcc"}
  773. fi
  774.  
  775. export CC
  776. export CXX
  777.  
  778. for subdir in . ${subdirs} ; do
  779.  
  780.     # ${subdir} is relative path from . to the directory we're currently
  781.     # configuring.
  782.     # ${invsubdir} is inverse of ${subdir), *with* trailing /, if needed.
  783.     invsubdir=`echo ${subdir}/ | sed -e 's|\./||g' -e 's|[^/]*/|../|g'`
  784.  
  785.     ### figure out what to do with srcdir
  786.     case "${srcdir}" in
  787.         ".")  # no -srcdir option.  We're building in place.
  788.                 makesrcdir=. ;;
  789.         /*) # absolute path
  790.                 makesrcdir=`echo ${srcdir}/${subdir} | sed -e 's|/\.$||'`
  791.                 ;;
  792.         *) # otherwise relative
  793.                 case "${subdir}" in
  794.                 .) makesrcdir=${srcdir} ;;
  795.                 *) makesrcdir=${invsubdir}${srcdir}/${subdir} ;;
  796.                 esac
  797.                 ;;
  798.     esac
  799.  
  800.     if [ "${subdir}/" != "./" ] ; then
  801.         Makefile=${subdir}/Makefile
  802.     fi
  803.  
  804.     if [ ! -d ${subdir} ] ; then
  805.         if mkdir ${subdir} ; then
  806.                 true
  807.         else
  808.                 echo '***' "${progname}: could not make ${PWD=`pwd`}/${subdir}" 1>&2
  809.                 exit 1
  810.         fi
  811.     fi
  812.  
  813.     case "${removing}" in
  814.     "")
  815.         case "${subdir}" in
  816.         .) ;;
  817.         *) eval echo Building in ${subdir} ${redirect} ;;
  818.         esac
  819.  
  820.         # FIXME Should this be done recursively ??? (Useful for e.g. gdbtest)
  821.         # Set up the list of links to be made.
  822.         # ${links} is the list of link names, and ${files} is the list of names to link to.
  823.  
  824.         # Make the links.
  825.         configlinks="${links}"
  826.         if [ -r ${subdir}/config.status ] ; then
  827.                 mv -f ${subdir}/config.status ${subdir}/config.back
  828.         fi
  829.         while [ -n "${files}" ] ; do
  830.                 # set file to car of files, files to cdr of files
  831.                 set ${files}; file=$1; shift; files=$*
  832.                 set ${links}; link=$1; shift; links=$*
  833.  
  834.                 if [ ! -r ${srcdir}/${file} ] ; then
  835.                         echo '***' "${progname}: cannot create a link \"${link}\"," 1>&2
  836.                         echo '***' "since the file \"${srcdir}/${file}\" does not exist." 1>&2
  837.                         exit 1
  838.                 fi
  839.  
  840.                 ${remove} -f ${link}
  841.         # Make a symlink if possible, otherwise try a hard link
  842.         if ${symbolic_link} ${srcdir}/${file} ${link} >/dev/null 2>&1 ; then
  843.             true
  844.         else
  845.             # We need to re-remove the file because Lynx leaves a 
  846.             # very strange directory there when it fails an NFS symlink.
  847.             ${remove} -r -f ${link}
  848.             ${hard_link} ${srcdir}/${file} ${link}
  849.         fi
  850.                 if [ ! -r ${link} ] ; then
  851.                         echo '***' "${progname}: unable to link \"${link}\" to \"${srcdir}/${file}\"." 1>&2
  852.                         exit 1
  853.                 fi
  854.  
  855.                 echo "Linked \"${link}\" to \"${srcdir}/${file}\"."
  856.         done
  857.  
  858.         # Create a .gdbinit file which runs the one in srcdir
  859.         # and tells GDB to look there for source files.
  860.  
  861.         if [ -r ${srcdir}/${subdir}/.gdbinit ] ; then
  862.                 case ${srcdir} in
  863.                 .) ;;
  864.                 *) cat > ${subdir}/.gdbinit <<EOF
  865. # ${NO_EDIT}
  866. dir ${makesrcdir}
  867. dir .
  868. source ${makesrcdir}/.gdbinit
  869. EOF
  870.                         ;;
  871.                 esac
  872.         fi
  873.  
  874.         # Install a makefile, and make it set VPATH
  875.         # if necessary so that the sources are found.
  876.         # Also change its value of srcdir.
  877.         # NOTE: Makefile generation constitutes the majority of the time in configure.  Hence, this section has
  878.         # been somewhat optimized and is perhaps a bit twisty.
  879.  
  880.         # code is order so as to try to sed the smallest input files we know.
  881.  
  882.         # the four makefile fragments MUST end up in the resulting Makefile in this order: 
  883.         # package, target, host, and site.  so do these separately because I don't trust the
  884.         #  order of sed -e expressions.
  885.  
  886.         if [ -f ${srcdir}/${subdir}/${Makefile_in} ] ; then
  887.  
  888.             # Conditionalize for this site from "Makefile.in" (or whatever it's called) into Makefile.tem
  889.             rm -f ${subdir}/Makefile.tem
  890.               case "${site}" in
  891.               "") cp ${srcdir}/${subdir}/${Makefile_in} ${subdir}/Makefile.tem ;;
  892.               *)
  893.                       site_makefile_frag=${srcdir}/config/ms-${site}
  894.  
  895.                       if [ -f ${site_makefile_frag} ] ; then
  896.                               sed -e "/^####/  r ${site_makefile_frag}" ${srcdir}/${subdir}/${Makefile_in} \
  897.                                       > ${subdir}/Makefile.tem
  898.                       else
  899.                               cp ${srcdir}/${subdir}/${Makefile_in} ${subdir}/Makefile.tem
  900.                               site_makefile_frag=
  901.                       fi
  902.                       ;;
  903.             esac
  904.             # working copy now in ${subdir}/Makefile.tem
  905.  
  906.             # Conditionalize the makefile for this host.
  907.             rm -f ${Makefile}
  908.             case "${host_makefile_frag}" in
  909.               "") mv ${subdir}/Makefile.tem ${Makefile} ;;
  910.               *)
  911.                       if [ ! -f ${host_makefile_frag} ] ; then
  912.                               host_makefile_frag=${srcdir}/${host_makefile_frag}
  913.                       fi
  914.                       if [ -f ${host_makefile_frag} ] ; then
  915.                               sed -e "/^####/  r ${host_makefile_frag}" ${subdir}/Makefile.tem > ${Makefile}
  916.                       else
  917.                               echo '***' Expected host makefile fragment \"${host_makefile_frag}\" 1>&2
  918.                               echo '***' is missing in ${PWD=`pwd`}. 1>&2
  919.                               mv ${subdir}/Makefile.tem ${Makefile}
  920.                       fi
  921.             esac
  922.             # working copy now in ${Makefile}
  923.  
  924.             # Conditionalize the makefile for this target.
  925.             rm -f ${subdir}/Makefile.tem
  926.             case "${target_makefile_frag}" in
  927.               "") mv ${Makefile} ${subdir}/Makefile.tem ;;
  928.               *)
  929.                       if [ ! -f ${target_makefile_frag} ] ; then
  930.                               target_makefile_frag=${srcdir}/${target_makefile_frag}
  931.                       fi
  932.                       if [ -f ${target_makefile_frag} ] ; then
  933.                               sed -e "/^####/  r ${target_makefile_frag}" ${Makefile} > ${subdir}/Makefile.tem
  934.                       else
  935.                               mv ${Makefile} ${subdir}/Makefile.tem
  936.                               target_makefile_frag=
  937.                       fi
  938.                       ;;
  939.             esac
  940.             # real copy now in ${subdir}/Makefile.tem
  941.  
  942.             # Conditionalize the makefile for this package.
  943.             rm -f ${Makefile}
  944.             case "${package_makefile_frag}" in
  945.               "") mv ${subdir}/Makefile.tem ${Makefile} ;;
  946.               *)
  947.                       if [ ! -f ${package_makefile_frag} ] ; then
  948.                               package_makefile_frag=${srcdir}/${package_makefile_frag}
  949.                       fi
  950.                       if [ -f ${package_makefile_frag} ] ; then
  951.                               sed -e "/^####/  r ${package_makefile_frag}" ${subdir}/Makefile.tem > ${Makefile}
  952.                   rm -f ${subdir}/Makefile.tem
  953.                       else
  954.                               echo '***' Expected package makefile fragment \"${package_makefile_frag}\" 1>&2
  955.                               echo '***' is missing in ${PWD=`pwd`}. 1>&2
  956.                               mv ${subdir}/Makefile.tem ${Makefile}
  957.                       fi
  958.             esac
  959.             # working copy now in ${Makefile}
  960.  
  961.             mv ${Makefile} ${subdir}/Makefile.tem
  962.  
  963.             # real copy now in ${subdir}/Makefile.tem
  964.  
  965.             # prepend warning about editting, and a bunch of variables.
  966.             rm -f ${Makefile}
  967.             cat > ${Makefile} <<EOF
  968. # ${NO_EDIT}
  969. VPATH = ${makesrcdir}
  970. links = ${configlinks}
  971. host_alias = ${host_alias}
  972. host_cpu = ${host_cpu}
  973. host_vendor = ${host_vendor}
  974. host_os = ${host_os}
  975. host_canonical = ${host_cpu}-${host_vendor}-${host_os}
  976. target_alias = ${target_alias}
  977. target_cpu = ${target_cpu}
  978. target_vendor = ${target_vendor}
  979. target_os = ${target_os}
  980. target_canonical = ${target_cpu}-${target_vendor}-${target_os}
  981. EOF
  982.         case "${build}" in
  983.           "") ;;
  984.           *)  cat >> ${Makefile} << EOF
  985. build_alias = ${build_alias}
  986. build_cpu = ${build_cpu}
  987. build_vendor = ${build_vendor}
  988. build_os = ${build_os}
  989. build_canonical = ${build_cpu}-${build_vendor}-${build_os}
  990. EOF
  991.         esac
  992.  
  993.             case "${package_makefile_frag}" in
  994.               "") ;;
  995.               /*) echo package_makefile_frag = ${package_makefile_frag} >>${Makefile} ;;
  996.               *)  echo package_makefile_frag = ${invsubdir}${package_makefile_frag} >>${Makefile} ;;
  997.             esac
  998.  
  999.             case "${target_makefile_frag}" in
  1000.               "") ;;
  1001.               /*) echo target_makefile_frag = ${target_makefile_frag} >>${Makefile} ;;
  1002.               *)  echo target_makefile_frag = ${invsubdir}${target_makefile_frag} >>${Makefile} ;;
  1003.             esac
  1004.  
  1005.             case "${host_makefile_frag}" in
  1006.               "") ;;
  1007.               /*) echo host_makefile_frag = ${host_makefile_frag} >>${Makefile} ;;
  1008.               *)  echo host_makefile_frag = ${invsubdir}${host_makefile_frag} >>${Makefile} ;;
  1009.             esac
  1010.  
  1011.             if [ "${site_makefile_frag}" != "" ] ; then
  1012.                 echo site_makefile_frag = ${invsubdir}${site_makefile_frag} >>${Makefile}
  1013.             fi 
  1014.  
  1015.         # make sure that some sort of reasonable default exists for these 
  1016.         # two variables
  1017.         CXX=${CXX-"g++ -O"}
  1018.         CC=${CC-gcc}
  1019.  
  1020.             # reset prefix, exec_prefix, srcdir, SUBDIRS, NONSUBDIRS,
  1021.             # remove any form feeds.
  1022.             if [ -z "${subdirs}" ]; then
  1023.                 rm -f ${subdir}/Makefile.tem2
  1024.                 sed -e "s:^SUBDIRS[     ]*=.*$:SUBDIRS = ${configdirs}:" \
  1025.                     -e "s:^NONSUBDIRS[     ]*=.*$:NONSUBDIRS = ${noconfigdirs}:" \
  1026.                     ${subdir}/Makefile.tem > ${subdir}/Makefile.tem2
  1027.                 rm -f ${subdir}/Makefile.tem
  1028.                 mv ${subdir}/Makefile.tem2 ${subdir}/Makefile.tem
  1029.             fi
  1030.             sed -e "s:^prefix[     ]*=.*$:prefix = ${prefix}:" \
  1031.                     -e "s:^exec_prefix[     ]*=.*$:exec_prefix = ${exec_prefix}:" \
  1032.             -e "/^CC[     ]*=/{
  1033.             :loop1
  1034.             /\\\\$/ N
  1035.             /\\\\$/ b loop1
  1036.             s/\\\\\\n//g
  1037.             s%^CC[     ]*=.*$%CC = ${CC}%
  1038.             }" \
  1039.             -e "/^CXX[     ]*=/{
  1040.             :loop2
  1041.             /\\\\$/ N
  1042.             /\\\\$/ b loop2
  1043.             s/\\\\\\n//g
  1044.             s%^CXX[     ]*=.*$%CXX = ${CXX}%
  1045.             }" \
  1046.             -e "s:^SHELL[     ]*=.*$:SHELL = ${config_shell}:" \
  1047.                     -e "s:^srcdir[     ]*=.*$:srcdir = ${makesrcdir}:" \
  1048.                     -e "s/ //" \
  1049.                     -e "s:^program_prefix[     ]*=.*$:program_prefix = ${program_prefix}:" \
  1050.                     -e "s:^program_suffix[     ]*=.*$:program_suffix = ${program_suffix}:" \
  1051.                     -e "s:^program_transform_name[     ]*=.*$:program_transform_name = ${program_transform_name}:" \
  1052.                     -e "s:^tooldir[     ]*=.*$:tooldir = ${tooldir}:" \
  1053.                     ${subdir}/Makefile.tem >> ${Makefile}
  1054.  
  1055.         # If this is a Canadian Cross, preset the values of many more
  1056.         # tools.
  1057.         if [ "${build}" != "${host}" ]; then
  1058.         for var in ${tools}; do
  1059.             val=`eval 'echo $'"${var}"`
  1060.             sed -e "/^${var}[     ]*=/{
  1061.                :loop1
  1062.                /\\\\$/ N
  1063.                /\\\\$/ b loop1
  1064.                s/\\\\\\n//g
  1065.                s%^${var}[     ]*=.*$%${var} = ${val}%
  1066.                }" ${Makefile} > ${Makefile}.tem
  1067.             mv -f ${Makefile}.tem ${Makefile}
  1068.         done
  1069.         fi
  1070.  
  1071.             # final copy now in ${Makefile}
  1072.  
  1073.         else
  1074.            echo "No Makefile.in found in ${srcdir}/${subdir}, unable to configure" 1>&2
  1075.         fi
  1076.  
  1077.         rm -f ${subdir}/Makefile.tem
  1078.  
  1079.         case "${host_makefile_frag}" in
  1080.         "") using= ;;
  1081.         *) using="and \"${host_makefile_frag}\"" ;;
  1082.         esac
  1083.  
  1084.         case "${target_makefile_frag}" in
  1085.         "") ;;
  1086.         *) using="${using} and \"${target_makefile_frag}\"" ;;
  1087.         esac
  1088.  
  1089.         case "${site_makefile_frag}" in
  1090.         "") ;;
  1091.         *) using="${using} and \"${site_makefile_frag}\"" ;;
  1092.         esac
  1093.  
  1094.         newusing=`echo "${using}" | sed 's/and/using/'`
  1095.         using=${newusing}
  1096.         echo "Created \"${Makefile}\" in" ${PWD=`pwd`} ${using}
  1097.  
  1098.         . ${tmpfile}.pos
  1099.  
  1100.         # describe the chosen configuration in config.status.
  1101.         # Make that file a shellscript which will reestablish
  1102.         # the same configuration.  Used in Makefiles to rebuild
  1103.         # Makefiles.
  1104.  
  1105.         case "${norecursion}" in
  1106.         "") arguments="${arguments} --norecursion" ;;
  1107.         *) ;;
  1108.         esac
  1109.  
  1110.         if [ ${subdir} = . ] ; then
  1111.             echo "#!/bin/sh
  1112. # ${NO_EDIT}
  1113. # This directory was configured as follows:
  1114. ${progname}" ${arguments}  "
  1115. # ${using}" > ${subdir}/config.new
  1116.         else
  1117.             echo "#!/bin/sh
  1118. # ${NO_EDIT}
  1119. # This directory was configured as follows:
  1120. cd ${invsubdir}
  1121. ${progname}" ${arguments}  "
  1122. # ${using}" > ${subdir}/config.new
  1123.         fi
  1124.         chmod a+x ${subdir}/config.new
  1125.         if [ -r ${subdir}/config.back ] ; then
  1126.                 mv -f ${subdir}/config.back ${subdir}/config.status
  1127.         fi
  1128.         ${moveifchange} ${subdir}/config.new ${subdir}/config.status
  1129.         ;;
  1130.  
  1131.     *)  rm -f ${Makefile} ${subdir}/config.status ${links} ;;
  1132.     esac
  1133. done
  1134.  
  1135. # If there are subdirectories, then recur. 
  1136. if [ -z "${norecursion}" -a -n "${configdirs}" ] ; then 
  1137.     echo "Configure subdirectories ${configdirs}"
  1138.         for configdir in ${configdirs} ; do
  1139.  
  1140.                 if [ -d ${srcdir}/${configdir} ] ; then
  1141.                         eval echo Configuring ${configdir}... ${redirect}
  1142.                         case "${srcdir}" in
  1143.                         ".") ;;
  1144.                         *)
  1145.                                 if [ ! -d ./${configdir} ] ; then
  1146.                                         if mkdir ./${configdir} ; then
  1147.                                                 true
  1148.                                         else
  1149.                                                 echo '***' "${progname}: could not make ${PWD=`pwd`}/${configdir}" 1>&2
  1150.                                                 exit 1
  1151.                                         fi
  1152.                                 fi
  1153.                                 ;;
  1154.                         esac
  1155.  
  1156.                         POPDIR=${PWD=`pwd`}
  1157.                         cd ${configdir} 
  1158.  
  1159. ### figure out what to do with srcdir
  1160.                         case "${srcdir}" in
  1161.                         ".") newsrcdir=${srcdir} ;; # no -srcdir option.  We're building in place.
  1162.                         /*) # absolute path
  1163.                                 newsrcdir=${srcdir}/${configdir}
  1164.                                 srcdiroption="--srcdir=${newsrcdir}"
  1165.                                 ;;
  1166.                         *) # otherwise relative
  1167.                                 newsrcdir=../${srcdir}/${configdir}
  1168.                                 srcdiroption="--srcdir=${newsrcdir}"
  1169.                                 ;;
  1170.                         esac
  1171.  
  1172.             # Handle --cache-file=../XXX
  1173.             case "${cache_file}" in
  1174.             "") # empty
  1175.                 ;;
  1176.             /*) # absolute path
  1177.                 cache_file_option="--cache-file=${cache_file}"
  1178.                 ;;
  1179.             *) # relative path
  1180.                 cache_file_option="--cache-file=../${cache_file}"
  1181.                 ;;
  1182.             esac
  1183.  
  1184. ### check for guested configure, otherwise fix possibly relative progname
  1185.                         if [ -f ${newsrcdir}/configure ] ; then
  1186.                                 recprog=${newsrcdir}/configure
  1187.                         elif [ -f ${newsrcdir}/configure.in ] ; then
  1188.                                 case "${progname}" in
  1189.                                 /*)     recprog=${progname} ;;
  1190.                                 *)      recprog=../${progname} ;;
  1191.                                 esac
  1192.             else
  1193.                 eval echo No configuration information in ${configdir} ${redirect}
  1194.                 recprog=
  1195.                         fi
  1196.  
  1197. ### The recursion line is here.
  1198.             if [ ! -z "${recprog}" ] ; then
  1199.                 echo ${config_shell} ${recprog} ${verbose} ${buildopt} --host=${host_alias} --target=${target_alias} ${prefixoption} ${tmpdiroption} ${exec_prefixoption} ${srcdiroption} ${program_prefixoption} ${program_suffixoption} ${program_transform_nameoption} ${site_option} ${withoptions} ${withoutoptions} ${enableoptions} ${disableoptions} ${removing} ${other_options} ${redirect}
  1200.                             if eval ${config_shell} ${recprog} ${verbose} ${buildopt} --host=${host_alias} --target=${target_alias} \
  1201.                                     ${prefixoption} ${tmpdiroption} ${exec_prefixoption} \
  1202.                                     ${srcdiroption} ${program_prefixoption} ${program_suffixoption} ${program_transform_nameoption} ${site_option} ${withoptions} ${withoutoptions} ${enableoptions} ${disableoptions} ${cache_file_option} ${removing} ${other_options} ${redirect} ; then
  1203.                                     true
  1204.                             else
  1205.                     echo Configure in `pwd` failed, exiting. 1>&2
  1206.                                     exit 1
  1207.                             fi
  1208.             fi
  1209.  
  1210.                         cd ${POPDIR}
  1211.                 fi
  1212.         done
  1213. fi
  1214.  
  1215. # Perform the same cleanup as the trap handler, minus the "exit 1" of course,
  1216. # and reset the trap handler.
  1217. rm -f ${tmpfile}.com ${tmpfile}.tgt ${tmpfile}.hst ${tmpfile}.pos
  1218. trap 0
  1219.  
  1220. exit 0
  1221.  
  1222. #
  1223. # Local Variables:
  1224. # fill-column: 131
  1225. # End:
  1226. #
  1227.  
  1228. # end of configure
  1229.