home *** CD-ROM | disk | FTP | other *** search
/ Programming Win32 Under the API / ProgrammingWin32UnderTheApiPatVillani.iso / src / mingw-runtime-19991107 / configure < prev    next >
Text File  |  1999-11-07  |  47KB  |  1,524 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, 95, 96, 1997
  7. # Free Software Foundation, Inc.
  8.  
  9. # This program is free software; you can redistribute it and/or modify
  10. # it under the terms of the GNU General Public License as published by
  11. # the Free Software Foundation; either version 2 of the License, or
  12. # (at your option) any later version.
  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. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  20.  
  21. # This file was originally written by K. Richard Pixley.
  22.  
  23. #
  24. # Shell script to create proper links to machine-dependent files in
  25. # preparation for compilation.
  26. #
  27. # If configure succeeds, it leaves its status in config.status.
  28. # If configure fails after disturbing the status quo, 
  29. #       config.status is removed.
  30. #
  31.  
  32. export PATH || (echo "OOPS, this isn't sh.  Desperation time.  I will feed myself to sh."; sh $0 $argv; kill $$)
  33.  
  34. remove=rm
  35. hard_link=ln
  36. symbolic_link='ln -s'
  37.  
  38. #for Test
  39. #remove="echo rm"
  40. #hard_link="echo ln"
  41. #symbolic_link="echo ln -s"
  42.  
  43. # clear some things potentially inherited from environment.
  44.  
  45. Makefile=Makefile
  46. Makefile_in=Makefile.in
  47. arguments=
  48. build_alias=
  49. cache_file=config.cache
  50. cache_file_option=
  51. configdirs=
  52. exec_prefix=
  53. exec_prefixoption=
  54. fatal=
  55. floating_point=default
  56. gas=default
  57. gcc_version=
  58. gcc_version_trigger=
  59. host_alias=NOHOST
  60. host_makefile_frag=
  61. moveifchange=
  62. norecursion=
  63. other_options=
  64. package_makefile_frag=
  65. package_makefile_rules_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.1.1.1 $"
  86. x11=default
  87.  
  88. ### we might need to use some other shell than /bin/sh for running subshells
  89.  
  90. ### If we are on Windows, search for the shell.  This will permit people
  91. ### to not have /bin/sh, but to be able to see /SOME/PATH/sh configure
  92. ### without also having to set CONFIG_SHELL.  This code will work when
  93. ### using bash, which sets OSTYPE.
  94. case "${OSTYPE}" in
  95. *win32*)
  96.   if [ x${CONFIG_SHELL} = x ]; then
  97.     if [ ! -f /bin/sh ]; then
  98.       if [ x${SHELL} != x ] && [ -f ${SHELL} ]; then
  99.     CONFIG_SHELL=${SHELL}
  100.     export CONFIG_SHELL
  101.       else
  102.     for prog in sh sh.exe bash bash.exe; do
  103.       IFS="${IFS=    }"; save_ifs="$IFS"; IFS="${IFS}:"
  104.       for dir in $PATH; do
  105.         test -z "$dir" && dir=.
  106.         if test -f $dir/$prog; then
  107.           CONFIG_SHELL=$dir/$prog
  108.           export CONFIG_SHELL
  109.           break
  110.         fi
  111.       done
  112.       IFS="$save_ifs"
  113.       test -n "${CONFIG_SHELL}" && break
  114.     done
  115.       fi
  116.     fi
  117.   fi
  118.   ;;
  119. esac
  120.  
  121. config_shell=${CONFIG_SHELL-/bin/sh}
  122.  
  123. NO_EDIT="This file was generated automatically by configure.  Do not edit."
  124.  
  125. ## this is a little touchy and won't always work, but...
  126. ##
  127. ## if the argv[0] starts with a slash then it is an absolute name that can (and
  128. ## must) be used as is.
  129. ##
  130. ## otherwise, if argv[0] has no slash in it, we can assume that it is on the
  131. ## path.  Since PATH might include "." we also add `pwd` to the end of PATH.
  132. ##
  133.  
  134. progname=$0
  135. # if PWD already has a value, it is probably wrong.
  136. if [ -n "$PWD" ]; then PWD=`pwd`; fi
  137.  
  138. case "${progname}" in
  139. /*) ;;
  140. */*) ;;
  141. *)
  142.         PATH=$PATH:${PWD=`pwd`} ; export PATH
  143.         ;;
  144. esac
  145.  
  146. # Loop over all args
  147.  
  148. while :
  149. do
  150.  
  151. # Break out if there are no more args
  152.     case $# in
  153.     0)
  154.         break
  155.         ;;
  156.     esac
  157.  
  158. # Get the first arg, and shuffle
  159.     option=$1
  160.     shift
  161.  
  162. # Make all options have two hyphens
  163.     orig_option=$option    # Save original for error messages
  164.     case $option in
  165.     --*) ;;
  166.     -*) option=-$option ;;
  167.     esac
  168.         
  169. # Split out the argument for options that take them
  170.     case $option in
  171.     --*=*)
  172.         optarg=`echo $option | sed -e 's/^[^=]*=//'`
  173.         arguments="$arguments $option"
  174.         ;;
  175. # These options have mandatory values.  Since we didn't find an = sign,
  176. # the value must be in the next argument
  177.     --bu* | --cache* | --ex* | --ho* | --pre* | --program-p* | --program-s* | --program-t* | --si* | --sr* | --ta* | --tm* | --x-* | --bi* | --sb* | --li* | --da* | --sy* | --sh* | --lo* | --in* | --ol* | --ma*)
  178.         optarg=$1
  179.         shift
  180.         arguments="$arguments $option=$optarg"
  181.         ;;
  182.     --v)
  183.         arguments="$arguments -v"
  184.         ;;
  185.     --*)
  186.         arguments="$arguments $option"
  187.         ;;
  188.     esac
  189.  
  190. # Now, process the options
  191.     case $option in
  192.  
  193.     --build* | --bu*)
  194.         case "$build_alias" in
  195.         "") build_alias=$optarg ;;
  196.         *) echo '***' Can only configure for one build machine at a time.  1>&2
  197.            fatal=yes
  198.            ;;
  199.         esac
  200.         ;;
  201.     --cache*)
  202.         cache_file=$optarg
  203.         ;;
  204.     --disable-*)
  205.         enableopt=`echo ${option} | sed 's:^--disable-:enable_:;s:-:_:g'`
  206.         eval $enableopt=no
  207.         disableoptions="$disableoptions $option"
  208.         ;;
  209.     --enable-*)
  210.         case "$option" in
  211.         *=*)    ;;
  212.         *)    optarg=yes ;;
  213.         esac
  214.  
  215.         enableopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
  216.         eval "$enableopt='$optarg'"
  217.         enableoptions="$enableoptions '$option'"
  218.         ;;
  219.     --exec-prefix* | --ex*)
  220.         exec_prefix=$optarg
  221.         exec_prefixoption="--exec-prefix=$optarg"
  222.         ;;
  223.     --gas | --g*)
  224.         gas=yes
  225.         ;;
  226.     --help | --he*)
  227.         fatal=yes
  228.         ;;
  229.     --host* | --ho*)
  230.         case $host_alias in
  231.         NOHOST) host_alias=$optarg ;;
  232.         *) echo '***' Can only configure for one host at a time.  1>&2
  233.            fatal=yes
  234.            ;;
  235.         esac
  236.         ;;
  237.     --nfp | --nf*)
  238.         floating_point=no
  239.         floating_pointoption="--nfp"
  240.         ;;
  241.     --norecursion | --no*)
  242.         norecursion=yes
  243.         ;;
  244.     --prefix* | --pre*)
  245.         prefix=$optarg
  246.         prefixoption="--prefix=$optarg"
  247.         ;;
  248.     --program-prefix* | --program-p*)
  249.         program_prefix=$optarg
  250.         program_prefixoption="--program-prefix=$optarg"
  251.         ;;
  252.     --program-suffix* | --program-s*)
  253.         program_suffix=$optarg
  254.         program_suffixoption="--program-suffix=$optarg"
  255.         ;;
  256.     --program-transform-name* | --program-t*)
  257.         # Double any backslashes or dollar signs in the argument
  258.         program_transform_name="${program_transform_name} -e `echo ${optarg} | sed -e 's/\\\\/\\\\\\\\/g' -e 's/\\\$/$$/g'`"
  259.         program_transform_nameoption="${program_transform_nameoption} --program-transform-name='$optarg'"
  260.         ;;
  261.     --rm)
  262.         removing=--rm
  263.         ;;
  264.     --silent | --sil* | --quiet | --q*)
  265.         redirect=">/dev/null"
  266.         verbose=--silent
  267.         ;;
  268.     --site* | --sit*)
  269.         site=$optarg
  270.         site_option="--site=$optarg"
  271.         ;;
  272.     --srcdir*/ | --sr*/)
  273.                 # Remove trailing slashes.  Otherwise, when the file name gets
  274.                 # bolted into an object file as debug info, it has two slashes
  275.                 # in it.  Ordinarily this is ok, but emacs takes double slash
  276.                 # to mean "forget the first part".
  277.         srcdir=`echo $optarg | sed -e 's:/$::'`
  278.         ;;
  279.     --srcdir* | --sr*)
  280.         srcdir=$optarg
  281.         ;;
  282.     --target* | --ta*)
  283.         case $target_alias in
  284.         NOTARGET) target_alias=$optarg ;;
  285.         *) echo '***' Can only configure for one target at a time.  1>&2
  286.            fatal=yes
  287.            ;;
  288.         esac
  289.         ;;
  290.     --tmpdir* | --tm*)
  291.         TMPDIR=$optarg
  292.         tmpdiroption="--tmpdir=$optarg"
  293.         ;;
  294.     --verbose | --v | --verb*)
  295.         redirect=
  296.         verbose=--verbose
  297.         ;;
  298.     --version | --V | --vers*)
  299.         echo "This is Cygnus Configure version" `echo ${version} | sed 's/[ $:]//g'`
  300.         exit 0
  301.         ;;
  302.     --with-*)
  303.         case "$option" in
  304.         *=*)    ;;
  305.         *)    optarg=yes ;;
  306.         esac
  307.  
  308.         withopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
  309.         eval $withopt="$optarg"
  310.         withoptions="$withoptions $option"
  311.         ;;
  312.     --without-*)
  313.         withopt=`echo ${option} | sed 's:^--::;s:out::;s:-:_:g'`
  314.         eval $withopt=no
  315.         withoutoptions="$withoutoptions $option"
  316.         ;;
  317.     --x)    with_x=yes
  318.         withoptions="$withoptions --with-x"
  319.         ;;
  320.     --x-i* | --x-l*) other_options="$other_options $orig_option"
  321.         ;;
  322.     --bi* | --sb* | --li* | --da* | --sy* | --sh* | --lo* | --in* | --ol* | --ma*)
  323.         # These options were added to autoconf for emacs.
  324.         ;;
  325.     --*)
  326.         echo "configure: Unrecognized option: \"$orig_option\"; use --help for usage." >&2
  327.         exit 1
  328.         ;;
  329.     *)
  330.         case $undefs in
  331.         NOUNDEFS) undefs=$option ;;
  332.         *) echo '***' Can only configure for one host and one target at a time.  1>&2
  333.            fatal=yes
  334.            ;;
  335.         esac
  336.         ;;
  337.     esac
  338. done
  339.  
  340. # process host and target
  341.  
  342. # Do some error checking and defaulting for the host and target type.
  343. # The inputs are:
  344. #    configure --host=HOST --target=TARGET UNDEFS
  345. #
  346. # The rules are:
  347. # 1. You aren't allowed to specify --host, --target, and undefs at the
  348. #    same time.
  349. # 2. Host defaults to undefs.
  350. # 3. If undefs is not specified, then host defaults to the current host,
  351. #    as determined by config.guess.
  352. # 4. Target defaults to undefs.
  353. # 5. If undefs is not specified, then target defaults to host.
  354.  
  355. case "${fatal}" in
  356. "")
  357.     # Make sure that host, target & undefs aren't all specified at the
  358.     # same time.
  359.     case $host_alias---$target_alias---$undefs in
  360.     NOHOST---*---* | *---NOTARGET---* | *---*---NOUNDEFS)
  361.         ;;
  362.     *) echo '***' Can only configure for one host and one target at a time.  1>&2
  363.        fatal=yes
  364.        break 2
  365.         ;;
  366.     esac
  367.  
  368.     # Now, do defaulting for host.
  369.     case $host_alias in
  370.     NOHOST)
  371.         case $undefs in
  372.         NOUNDEFS)
  373.             # Neither --host option nor undefs were present.
  374.             # Call config.guess.
  375.             guesssys=`echo ${progname} | sed 's/configure$/config.guess/'`
  376.             if host_alias=`${config_shell} ${guesssys}`
  377.             then
  378.                 # If the string we are going to use for
  379.                 # the target is a prefix of the string
  380.                 # we just guessed for the host, then
  381.                 # assume we are running native, and force
  382.                 # the same string for both target and host.
  383.                 case $target_alias in
  384.                 NOTARGET) ;;
  385.                 *)
  386.                     if expr $host_alias : $target_alias >/dev/null
  387.                     then
  388.                         host_alias=$target_alias
  389.                     fi
  390.                     ;;
  391.                 esac
  392.                 echo "Configuring for a ${host_alias} host." 1>&2
  393.                 arguments="--host=$host_alias $arguments"
  394.             else
  395.                 echo 'Config.guess failed to determine the host type.  You need to specify one.' 1>&2
  396.                 fatal=yes
  397.             fi
  398.             ;;
  399.         *)
  400.             host_alias=$undefs
  401.             arguments="--host=$host_alias $arguments"
  402.             undefs=NOUNDEFS
  403.             ;;
  404.         esac
  405.     esac
  406.  
  407.     # Do defaulting for target.  If --target option isn't present, default
  408.     # to undefs.  If undefs isn't present, default to host.
  409.     case $target_alias in
  410.     NOTARGET)
  411.         case $undefs in
  412.         NOUNDEFS)
  413.             target_alias=$host_alias
  414.             ;;
  415.         *)
  416.             target_alias=$undefs
  417.             arguments="--target=$target_alias $arguments"
  418.             ;;
  419.         esac
  420.     esac
  421.     ;;
  422. *) ;;
  423. esac
  424.  
  425. if [ -n "${fatal}" -o "${host_alias}" = "help" ] ; then
  426.     exec 1>&2
  427.     echo Usage: configure [OPTIONS] [HOST]
  428.     echo
  429.     echo Options: [defaults in brackets]
  430.     echo ' --prefix=MYDIR         install into MYDIR [/usr/local]'
  431.     echo ' --exec-prefix=MYDIR     install host-dependent files into MYDIR [/usr/local]'
  432.     echo ' --help             print this message [normal config]'
  433.     echo ' --build=BUILD         configure for building on BUILD [BUILD=HOST]'
  434.     echo ' --host=HOST         configure for HOST [determined via config.guess]'
  435.     echo ' --norecursion         configure this directory only [recurse]'
  436.     echo ' --program-prefix=FOO     prepend FOO to installed program names [""]'
  437.     echo ' --program-suffix=FOO     append FOO to installed program names [""]'
  438.     echo ' --program-transform-name=P transform installed names by sed pattern P [""]'
  439.     echo ' --site=SITE         configure with site-specific makefile for SITE'
  440.     echo ' --srcdir=DIR         find the sources in DIR [. or ..]'
  441.     echo ' --target=TARGET     configure for TARGET [TARGET=HOST]'
  442.     echo ' --tmpdir=TMPDIR     create temporary files in TMPDIR [/tmp]'
  443.     echo ' --nfp             configure for software floating point [hard float]'
  444.     echo ' --with-FOO, --with-FOO=BAR package FOO is available (parameter BAR)'
  445.     echo ' --without-FOO         package FOO is NOT available'
  446.     echo ' --enable-FOO, --enable-FOO=BAR include feature FOO (parameter BAR)'
  447.     echo ' --disable-FOO         do not include feature FOO'
  448.     echo
  449.     echo 'Where HOST and TARGET are something like "sparc-sunos", "mips-sgi-irix5", etc.'
  450.     echo
  451.     if [ -r config.status ] ; then
  452.         cat config.status
  453.     fi
  454.  
  455.     exit 1
  456. fi
  457.  
  458. configsub=`echo ${progname} | sed 's/configure$/config.sub/'`
  459. moveifchange=`echo ${progname} | sed 's/configure$/move-if-change/'`
  460. topsrcdir=`cd \`dirname ${progname}\`; pwd`
  461.  
  462. # this is a hack.  sun4 must always be a valid host alias or this will fail.
  463. if ${config_shell} ${configsub} sun4 >/dev/null 2>&1 ; then
  464.         true
  465. else
  466.         echo '***' cannot find config.sub.  1>&2
  467.         exit 1
  468. fi
  469.  
  470. touch config.junk
  471. if ${config_shell} ${moveifchange} config.junk config.trash ; then
  472.         true
  473. else
  474.         echo '***' cannot find move-if-change.  1>&2
  475.         exit 1
  476. fi
  477. rm -f config.junk config.trash
  478.  
  479. case "${srcdir}" in
  480. "")
  481.         if [ -r configure.in ] ; then
  482.                 srcdir=.
  483.         else
  484.                 if [ -r ${progname}.in ] ; then
  485.                         srcdir=`echo ${progname} | sed 's:/configure$::'`
  486.                 else
  487.                         echo '***' "Can't find configure.in.  Try using --srcdir=some_dir"  1>&2
  488.                         exit 1
  489.                 fi
  490.         fi
  491.         ;;
  492. *)
  493.     # Set srcdir to "." if that's what it is.
  494.     # This is important for multilib support.
  495.     if [ ! -d ${srcdir} ] ; then
  496.         echo "Invalid source directory ${srcdir}" >&2
  497.         exit 1
  498.     fi
  499.     pwd=`pwd`
  500.     srcpwd=`cd ${srcdir} ; pwd`
  501.     if [ "${pwd}" = "${srcpwd}" ] ; then
  502.         srcdir=.
  503.     fi
  504. esac
  505.  
  506. ### warn about some conflicting configurations.
  507.  
  508. case "${srcdir}" in
  509. ".") ;;
  510. *)
  511.         if [ -f ${srcdir}/config.status ] ; then
  512.                 echo '***' Cannot configure here in \"${PWD=`pwd`}\" when \"${srcdir}\" is currently configured. 1>&2
  513.                 exit 1
  514.         fi
  515. esac
  516.  
  517. # default exec_prefix
  518. case "${exec_prefixoption}" in
  519. "") exec_prefix="\$(prefix)" ;;
  520. *) ;;
  521. esac
  522.  
  523. # Define the trigger file to make sure configure will re-run whenever
  524. # the gcc version number changes.
  525. if [ "${with_gcc_version_trigger+set}" = set ]; then
  526.     gcc_version_trigger="$with_gcc_version_trigger"
  527.     gcc_version=`sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/' < ${with_gcc_version_trigger}`
  528. else
  529.     # If gcc's sources are available, define the trigger file.
  530.     if [ -f ${topsrcdir}/gcc/version.c ] ; then
  531.     gcc_version_trigger=${topsrcdir}/gcc/version.c
  532.     gcc_version=`sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/' < ${gcc_version_trigger}`
  533.     case "$arguments" in
  534.       *--with-gcc-version-trigger=$gcc_version_trigger* )
  535.         ;;
  536.       * )
  537.         # Make sure configure.in knows about this.
  538.         arguments="--with-gcc-version-trigger=$gcc_version_trigger $arguments"
  539.         ;;
  540.     esac
  541.     withoptions="--with-gcc-version-trigger=$gcc_version_trigger $withoptions"
  542.     fi
  543. fi
  544.  
  545. ### break up ${srcdir}/configure.in.
  546. case "`grep '^# per\-host:' ${srcdir}/configure.in`" in
  547. "")
  548.         echo '***' ${srcdir}/configure.in has no \"per-host:\" line. 1>&2
  549.     # Check for a directory that's been converted to use autoconf since
  550.     # it was last configured.
  551.     if grep AC_OUTPUT ${srcdir}/configure.in >/dev/null ; then
  552.       echo '***' Hmm, looks like this directory has been autoconfiscated. 1>&2
  553.       if [ -r ${srcdir}/configure ] ; then
  554.         echo '***' Running the local configure script. 1>&2
  555.         case "${cache_file}" in
  556.         "") cache_file_option= ;;
  557.         *)  cache_file_option="--cache-file=${cache_file}" ;;
  558.         esac
  559.         srcdiroption="--srcdir=${srcdir}"
  560.         case "${build_alias}" in
  561.         "") buildopt= ;;
  562.         *)  buildopt="--build=${build_alias}" ;;
  563.         esac
  564.         eval exec ${config_shell} ${srcdir}/configure ${verbose} \
  565.         ${buildopt} --host=${host_alias} --target=${target_alias} \
  566.         ${prefixoption} ${tmpdiroption} ${exec_prefixoption} \
  567.         ${srcdiroption} \
  568.         ${program_prefixoption} ${program_suffixoption} \
  569.         ${program_transform_nameoption} ${site_option} \
  570.         ${withoptions} ${withoutoptions} \
  571.         ${enableoptions} ${disableoptions} ${floating_pointoption} \
  572.         ${cache_file_option} ${removing} ${other_options} ${redirect}
  573.       else
  574.         echo '***' There is no configure script present though. 1>&2
  575.       fi
  576.     fi
  577.         exit 1
  578.         ;;
  579. *) ;;
  580. esac
  581.  
  582. case "`grep '^# per\-target:' ${srcdir}/configure.in`" in
  583. "")
  584.         echo '***' ${srcdir}/configure.in has no \"per-target:\" line. 1>&2
  585.         exit 1
  586.         ;;
  587. *) ;;
  588. esac
  589.  
  590. case "${TMPDIR}" in
  591. "") TMPDIR=/tmp ; export TMPDIR ;;
  592. *) ;;
  593. esac
  594.  
  595. # keep this filename short for &%*%$*# 14 char file names
  596. tmpfile=${TMPDIR}/cONf$$
  597. # Note that under many versions of sh a trap handler for 0 will *override* any
  598. # exit status you explicitly specify!  At this point, the only non-error exit
  599. # is at the end of the script; these actions are duplicated there, minus
  600. # the "exit 1".  Don't use "exit 0" anywhere after this without resetting the
  601. # trap handler, or you'll lose.
  602. trap "rm -f Makefile.tem ${tmpfile}.com ${tmpfile}.tgt ${tmpfile}.hst ${tmpfile}.pos; exit 1" 0 1 2 15
  603.  
  604. # split ${srcdir}/configure.in into common, per-host, per-target,
  605. # and post-target parts.  Post-target is optional.
  606. sed -e '/^# per\-host:/,$d' ${srcdir}/configure.in > ${tmpfile}.com
  607. sed -e '1,/^# per\-host:/d' -e '/^# per\-target:/,$d' ${srcdir}/configure.in > ${tmpfile}.hst
  608. if grep '^# post-target:' ${srcdir}/configure.in >/dev/null ; then
  609.   sed -e '1,/^# per\-target:/d' -e '/^# post\-target:/,$d' ${srcdir}/configure.in > ${tmpfile}.tgt
  610.   sed -e '1,/^# post\-target:/d' ${srcdir}/configure.in > ${tmpfile}.pos
  611. else
  612.   sed -e '1,/^# per\-target:/d' ${srcdir}/configure.in > ${tmpfile}.tgt
  613.   echo >${tmpfile}.pos
  614. fi
  615.  
  616. ### do common part of configure.in
  617.  
  618. . ${tmpfile}.com
  619.  
  620. # some sanity checks on configure.in
  621. case "${srctrigger}" in
  622. "")
  623.         echo '***' srctrigger not set in ${PWD=`pwd`}/configure.in.  1>&2
  624.         exit 1
  625.         ;;
  626. *) ;;
  627. esac
  628.  
  629. case "${build_alias}" in
  630. "")
  631.     if result=`${config_shell} ${configsub} ${host_alias}` ; then
  632.         build_cpu=`echo $result | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
  633.         build_vendor=`echo $result | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
  634.         build_os=`echo $result | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
  635.         build=${build_cpu}-${build_vendor}-${build_os}
  636.         build_alias=${host_alias}
  637.     fi
  638.     ;;
  639. *)
  640.     if result=`${config_shell} ${configsub} ${build_alias}` ; then
  641.         buildopt="--build=${build_alias}"
  642.         build_cpu=`echo $result | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
  643.         build_vendor=`echo $result | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
  644.         build_os=`echo $result | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
  645.         build=${build_cpu}-${build_vendor}-${build_os}
  646.     else
  647.         echo "Unrecognized build system name ${build_alias}." 1>&2
  648.         exit 1
  649.     fi
  650.     ;;
  651. esac
  652.  
  653. if result=`${config_shell} ${configsub} ${host_alias}` ; then
  654.     true
  655. else
  656.     echo "Unrecognized host system name ${host_alias}." 1>&2
  657.     exit 1
  658. fi
  659. host_cpu=`echo $result | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
  660. host_vendor=`echo $result | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
  661. host_os=`echo $result | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
  662. host=${host_cpu}-${host_vendor}-${host_os}
  663.  
  664. . ${tmpfile}.hst
  665.  
  666. if result=`${config_shell} ${configsub} ${target_alias}` ; then
  667.     true
  668. else
  669.     echo "Unrecognized target system name ${target_alias}." 1>&2
  670.     exit 1
  671. fi
  672. target_cpu=`echo $result | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
  673. target_vendor=`echo $result | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
  674. target_os=`echo $result | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
  675. target=${target_cpu}-${target_vendor}-${target_os}
  676.  
  677. . ${tmpfile}.tgt
  678.  
  679. # Find the source files, if location was not specified.
  680. case "${srcdir}" in
  681. "")
  682.         srcdirdefaulted=1
  683.         srcdir=.
  684.         if [ ! -r ${srctrigger} ] ; then
  685.                 srcdir=..
  686.         fi
  687.         ;;
  688. *) ;;
  689. esac
  690.  
  691. if [ ! -r ${srcdir}/${srctrigger} ] ; then
  692.         case "${srcdirdefaulted}" in
  693.         "") echo '***' "${progname}: Can't find ${srcname} sources in ${PWD=`pwd`}/${srcdir}" 1>&2 ;;
  694.         *)  echo '***' "${progname}: Can't find ${srcname} sources in ${PWD=`pwd`}/. or ${PWD=`pwd`}/.." 1>&2 ;;
  695.         esac
  696.  
  697.         echo '***' \(At least ${srctrigger} is missing.\) 1>&2
  698.         exit 1
  699. fi
  700.  
  701. # Some systems (e.g., one of the i386-aix systems the gas testers are
  702. # using) don't handle "\$" correctly, so don't use it here.
  703. tooldir='$(exec_prefix)'/${target_alias}
  704.  
  705. if [ "${host_alias}" != "${target_alias}" ] ; then
  706.     if [ "${program_prefixoption}" = "" ] ; then
  707.         if [ "${program_suffixoption}" = "" ] ; then 
  708.             if [ "${program_transform_nameoption}" = "" ] ; then
  709.                 program_prefix=${target_alias}- ;
  710.             fi
  711.         fi
  712.     fi
  713. fi
  714.  
  715. # Merge program_prefix and program_suffix onto program_transform_name.
  716. # (program_suffix used to use $, but it's hard to preserve $ through both
  717. # make and sh.)
  718. if [ "${program_suffix}" != "" ] ; then
  719.     program_transform_name="-e s,\\\\(.*\\\\),\\\\1${program_suffix}, ${program_transform_name}"
  720. fi
  721.  
  722. if [ "${program_prefix}" != "" ] ; then
  723.     program_transform_name="-e s,^,${program_prefix}, ${program_transform_name}"
  724. fi
  725.  
  726. # If CC and CXX are not set in the environment, and the Makefile
  727. # exists, try to extract them from it.  This is to handle running
  728. # ./config.status by hand.
  729. if [ -z "${CC}" -a -r Makefile ]; then
  730.   sed -n -e ':loop
  731. /\\$/ N
  732. s/\\\n//g
  733. t loop
  734. /^CC[     ]*=/ s/CC[     ]*=[     ]*\(.*\)/\1/p' < Makefile > Makefile.cc
  735.   CC=`tail -1 Makefile.cc`
  736.   rm -f Makefile.cc
  737. fi
  738.  
  739. if [ -z "${CFLAGS}" -a -r Makefile ]; then
  740.   sed -n -e ':loop
  741. /\\$/ N
  742. s/\\\n//g
  743. t loop
  744. /^CFLAGS[     ]*=/ s/CFLAGS[     ]*=[     ]*\(.*\)/\1/p' < Makefile > Makefile.cc
  745.   CFLAGS=`tail -1 Makefile.cc`
  746.   rm -f Makefile.cc
  747. fi
  748.  
  749. if [ -z "${CXX}" -a -r Makefile ]; then
  750.   sed -n -e ':loop
  751. /\\$/ N
  752. s/\\\n//g
  753. t loop
  754. /^CXX[     ]*=/ s/CXX[     ]*=[     ]*\(.*\)/\1/p' < Makefile > Makefile.cc
  755.   CXX=`tail -1 Makefile.cc`
  756.   rm -f Makefile.cc
  757. fi
  758.  
  759. if [ -z "${CXXFLAGS}" -a -r Makefile ]; then
  760.   sed -n -e ':loop
  761. /\\$/ N
  762. s/\\\n//g
  763. t loop
  764. /^CXXFLAGS[     ]*=/ s/CXXFLAGS[     ]*=[     ]*\(.*\)/\1/p' < Makefile > Makefile.cc
  765.   CXXFLAGS=`tail -1 Makefile.cc`
  766.   rm -f Makefile.cc
  767. fi
  768.  
  769. # Generate a default definition for YACC.  This is used if the makefile can't
  770. # locate bison or byacc in objdir.
  771.  
  772. for prog in 'bison -y' byacc yacc
  773. do
  774.   set dummy $prog; tmp=$2
  775.   IFS="${IFS=     }"; save_ifs="$IFS"; IFS="${IFS}:"
  776.   for dir in $PATH; do
  777.     test -z "$dir" && dir=.
  778.     if test -f $dir/$tmp; then
  779.       DEFAULT_YACC="$prog"
  780.       break
  781.     fi
  782.   done
  783.   IFS="$save_ifs"
  784.  
  785.   test -n "$DEFAULT_YACC" && break
  786. done
  787.  
  788. # Generate a default definition for M4.  This is used if the makefile can't
  789. # locate m4 in objdir.
  790.  
  791. for prog in gm4 gnum4 m4
  792. do
  793.   set dummy $prog; tmp=$2
  794.   IFS="${IFS=   }"; save_ifs="$IFS"; IFS="${IFS}:"
  795.   for dir in $PATH; do
  796.     test -z "$dir" && dir=.
  797.     if test -f $dir/$tmp; then
  798.       DEFAULT_M4="$prog"
  799.       break
  800.     fi
  801.   done
  802.   IFS="$save_ifs"
  803.  
  804.   test -n "$DEFAULT_M4" && break
  805. done
  806.  
  807. # Generate a default definition for LEX.  This is used if the makefile can't
  808. # locate flex in objdir.
  809.  
  810. for prog in flex lex
  811. do
  812.   set dummy $prog; tmp=$2
  813.   IFS="${IFS=     }"; save_ifs="$IFS"; IFS="${IFS}:"
  814.   for dir in $PATH; do
  815.     test -z "$dir" && dir=.
  816.     if test -f $dir/$tmp; then
  817.       DEFAULT_LEX="$prog"
  818.       break
  819.     fi
  820.   done
  821.   IFS="$save_ifs"
  822.  
  823.   test -n "$DEFAULT_LEX" && break
  824. done
  825.  
  826. if [ "${build}" != "${host}" ]; then
  827.   # If we are doing a Canadian Cross, in which the host and build systems
  828.   # are not the same, we set reasonable default values for the tools.
  829.  
  830.   tools="AR AR_FOR_TARGET AS AS_FOR_TARGET BISON CC_FOR_BUILD"
  831.   tools="${tools} CC_FOR_TARGET CXX_FOR_TARGET"
  832.   tools="${tools} DLLTOOL DLLTOOL_FOR_TARGET DLLWRAP DLLWRAP_FOR_TARGET"
  833.   tools="${tools} GCC_FOR_TARGET HOST_PREFIX"
  834.   tools="${tools} HOST_PREFIX_1 LD LD_FOR_TARGET LEX MAKEINFO NM"
  835.   tools="${tools} NM_FOR_TARGET RANLIB RANLIB_FOR_TARGET"
  836.   tools="${tools} WINDRES WINDRES_FOR_TARGET YACC"
  837.  
  838.   for var in ${tools}; do
  839.     if [ -z "`eval 'echo $'"${var}"`" -a -r Makefile ]; then
  840.       sed -n -e ':loop
  841. /\\$/ N
  842. s/\\\n//g
  843. t loop
  844. /^'"${var}"'[     ]*=/ s/'"${var}"'[     ]*=[     ]*\(.*\)/\1/p' \
  845.     < Makefile > Makefile.v
  846.       t=`tail -1 Makefile.v`
  847.       if [ -n "${t}" ]; then
  848.     eval "${var}='${t}'"
  849.       fi
  850.       rm -f Makefile.v
  851.     fi
  852.   done
  853.  
  854.   AR=${AR-${host_alias}-ar}
  855.   AR_FOR_TARGET=${AR_FOR_TARGET-${target_alias}-ar}
  856.   AS=${AS-${host_alias}-as}
  857.   AS_FOR_TARGET=${AS_FOR_TARGET-${target_alias}-as}
  858.   BISON=${BISON-bison}
  859.   CC=${CC-${host_alias}-gcc}
  860.   CFLAGS=${CFLAGS-"-g -O2"}
  861.   CXX=${CXX-${host_alias}-c++}
  862.   CXXFLAGS=${CXXFLAGS-"-g -O2"}
  863.   CC_FOR_BUILD=${CC_FOR_BUILD-gcc}
  864.   CC_FOR_TARGET=${CC_FOR_TARGET-${target_alias}-gcc}
  865.   CXX_FOR_TARGET=${CXX_FOR_TARGET-${target_alias}-c++}
  866.   DLLTOOL=${DLLTOOL-${host_alias}-dlltool}
  867.   DLLTOOL_FOR_TARGET=${DLLTOOL_FOR_TARGET-${target_alias}-dlltool}
  868.   DLLWRAP=${DLLWRAP-${host_alias}-dllwrap}
  869.   DLLWRAP_FOR_TARGET=${DLLWRAP_FOR_TARGET-${target_alias}-dllwrap}
  870.   GCC_FOR_TARGET=${GCC_FOR_TARGET-${CC_FOR_TARGET-${target_alias}-gcc}}
  871.   HOST_PREFIX=${build_alias}-
  872.   HOST_PREFIX_1=${build_alias}-
  873.   LD=${LD-${host_alias}-ld}
  874.   LD_FOR_TARGET=${LD_FOR_TARGET-${target_alias}-ld}
  875.   MAKEINFO=${MAKEINFO-makeinfo}
  876.   NM=${NM-${host_alias}-nm}
  877.   NM_FOR_TARGET=${NM_FOR_TARGET-${target_alias}-nm}
  878.   RANLIB=${RANLIB-${host_alias}-ranlib}
  879.   RANLIB_FOR_TARGET=${RANLIB_FOR_TARGET-${target_alias}-ranlib}
  880.   WINDRES=${WINDRES-${host_alias}-windres}
  881.   WINDRES_FOR_TARGET=${WINDRES_FOR_TARGET-${target_alias}-windres}
  882.  
  883.   if [ -z "${YACC}" ]; then
  884.     IFS="${IFS=     }"; save_ifs="$IFS"; IFS="${IFS}:"
  885.     for dir in $PATH; do
  886.       test -z "$dir" && dir=.
  887.       if test -f $dir/bison; then
  888.     YACC="bison -y"
  889.     break
  890.       fi
  891.       if test -f $dir/byacc; then
  892.     YACC=byacc
  893.     break
  894.       fi
  895.       if test -f $dir/yacc; then
  896.     YACC=yacc
  897.     break
  898.       fi
  899.     done
  900.     IFS="$save_ifs"
  901.     if [ -z "${YACC}" ]; then
  902.       YACC="bison -y"
  903.     fi
  904.   fi
  905.  
  906.   if [ -z "${LEX}" ]; then
  907.     IFS="${IFS=     }"; save_ifs="$IFS"; IFS="${IFS}:"
  908.     for dir in $PATH; do
  909.       test -z "$dir" && dir=.
  910.       if test -f $dir/flex; then
  911.     LEX=flex
  912.     break
  913.       fi
  914.       if test -f $dir/lex; then
  915.     LEX=lex
  916.     break
  917.       fi
  918.     done
  919.     IFS="$save_ifs"
  920.     LEX=${LEX-flex}
  921.   fi
  922.  
  923.   # Export variables which autoconf might try to set.
  924.   export AS
  925.   export AR
  926.   export CC_FOR_BUILD
  927.   export DLLTOOL
  928.   export DLLWRAP
  929.   export LD
  930.   export NM
  931.   export RANLIB
  932.   export WINDRES
  933. else
  934.   # If CC is still not set, try to get gcc.
  935.   if [ -z "${CC}" ]; then
  936.     IFS="${IFS=     }"; save_ifs="$IFS"; IFS="${IFS}:"
  937.     for dir in $PATH; do
  938.       test -z "$dir" && dir=.
  939.       if test -f $dir/gcc; then
  940.     CC="gcc"
  941.     echo 'void f(){}' > conftest.c
  942.     if test -z "`${CC} -g -c conftest.c 2>&1`"; then
  943.       CFLAGS=${CFLAGS-"-g -O2"}
  944.       CXXFLAGS=${CXXFLAGS-"-g -O2"}
  945.     else
  946.       CFLAGS=${CFLAGS-"-O2"}
  947.       CXXFLAGS=${CXXFLAGS-"-O2"}
  948.     fi
  949.     rm -f conftest*
  950.     break
  951.       fi
  952.     done
  953.     IFS="$save_ifs"
  954.     CC=${CC-cc}
  955.   fi
  956.  
  957.   CXX=${CXX-"c++"}
  958.   CFLAGS=${CFLAGS-"-g"}
  959.   CXXFLAGS=${CXXFLAGS-"-g -O2"}
  960. fi
  961.  
  962. export CC
  963. export CXX
  964. export CFLAGS
  965. export CXXFLAGS
  966.  
  967. # FIXME: This should be in configure.in, not configure
  968. case "$host" in
  969.     *go32*)
  970.         enable_gdbtk=no ;;
  971.     *msdosdjgpp*)
  972.         enable_gdbtk=no ;;
  973.     *cygwin32*)
  974.         enable_gdbtk=no ;;
  975. esac
  976.  
  977. # FIXME: This should be in configure.in, not configure
  978. # Determine whether gdb needs tk/tcl or not.
  979. if [ "$enable_gdbtk" != "no" ]; then
  980.     GDB_TK="all-tcl all-tk all-itcl all-tix"
  981. else
  982.     GDB_TK=""
  983. fi
  984.  
  985. for subdir in . ${subdirs} ; do
  986.  
  987.     # ${subdir} is relative path from . to the directory we're currently
  988.     # configuring.
  989.     # ${invsubdir} is inverse of ${subdir), *with* trailing /, if needed.
  990.     invsubdir=`echo ${subdir}/ | sed -e 's|\./||g' -e 's|[^/]*/|../|g'`
  991.  
  992.     ### figure out what to do with srcdir
  993.     case "${srcdir}" in
  994.         ".")  # no -srcdir option.  We're building in place.
  995.                 makesrcdir=. ;;
  996.         /*) # absolute path
  997.                 makesrcdir=`echo ${srcdir}/${subdir} | sed -e 's|/\.$||'`
  998.                 ;;
  999.         *) # otherwise relative
  1000.                 case "${subdir}" in
  1001.                 .) makesrcdir=${srcdir} ;;
  1002.                 *) makesrcdir=${invsubdir}${srcdir}/${subdir} ;;
  1003.                 esac
  1004.                 ;;
  1005.     esac
  1006.  
  1007.     if [ "${subdir}/" != "./" ] ; then
  1008.         Makefile=${subdir}/Makefile
  1009.     fi
  1010.  
  1011.     if [ ! -d ${subdir} ] ; then
  1012.         if mkdir ${subdir} ; then
  1013.                 true
  1014.         else
  1015.                 echo '***' "${progname}: could not make ${PWD=`pwd`}/${subdir}" 1>&2
  1016.                 exit 1
  1017.         fi
  1018.     fi
  1019.  
  1020.     case "${removing}" in
  1021.     "")
  1022.         case "${subdir}" in
  1023.         .) ;;
  1024.         *) eval echo Building in ${subdir} ${redirect} ;;
  1025.         esac
  1026.  
  1027.         # FIXME Should this be done recursively ??? (Useful for e.g. gdbtest)
  1028.         # Set up the list of links to be made.
  1029.         # ${links} is the list of link names, and ${files} is the list of names to link to.
  1030.  
  1031.         # Make the links.
  1032.         configlinks="${links}"
  1033.         if [ -r ${subdir}/config.status ] ; then
  1034.                 mv -f ${subdir}/config.status ${subdir}/config.back
  1035.         fi
  1036.         while [ -n "${files}" ] ; do
  1037.                 # set file to car of files, files to cdr of files
  1038.                 set ${files}; file=$1; shift; files=$*
  1039.                 set ${links}; link=$1; shift; links=$*
  1040.  
  1041.                 if [ ! -r ${srcdir}/${file} ] ; then
  1042.                   if [ ! -r ${file} ] ; then
  1043.             
  1044.                         echo '***' "${progname}: cannot create a link \"${link}\"," 1>&2
  1045.                         echo '***' "since the file \"${srcdir}/${file}\" does not exist." 1>&2
  1046.                         exit 1
  1047.           else
  1048.             srcfile=${file}
  1049.           fi
  1050.         else
  1051.             srcfile=${srcdir}/${file}
  1052.                 fi
  1053.  
  1054.                 ${remove} -f ${link}
  1055.         # Make a symlink if possible, otherwise try a hard link
  1056.         if ${symbolic_link} ${srcfile} ${link} >/dev/null 2>&1 ; then
  1057.             true
  1058.         else
  1059.             # We need to re-remove the file because Lynx leaves a 
  1060.             # very strange directory there when it fails an NFS symlink.
  1061.             ${remove} -r -f ${link}
  1062.             ${hard_link} ${srcfile} ${link}
  1063.         fi
  1064.                 if [ ! -r ${link} ] ; then
  1065.                         echo '***' "${progname}: unable to link \"${link}\" to \"${srcfile}\"." 1>&2
  1066.                         exit 1
  1067.                 fi
  1068.  
  1069.                 echo "Linked \"${link}\" to \"${srcfile}\"."
  1070.         done
  1071.  
  1072.         # Create a .gdbinit file which runs the one in srcdir
  1073.         # and tells GDB to look there for source files.
  1074.  
  1075.         if [ -r ${srcdir}/${subdir}/.gdbinit ] ; then
  1076.                 case ${srcdir} in
  1077.                 .) ;;
  1078.                 *) cat > ${subdir}/.gdbinit <<EOF
  1079. # ${NO_EDIT}
  1080. dir ${makesrcdir}
  1081. dir .
  1082. source ${makesrcdir}/.gdbinit
  1083. EOF
  1084.                         ;;
  1085.                 esac
  1086.         fi
  1087.  
  1088.         # Install a makefile, and make it set VPATH
  1089.         # if necessary so that the sources are found.
  1090.         # Also change its value of srcdir.
  1091.         # NOTE: Makefile generation constitutes the majority of the time in configure.  Hence, this section has
  1092.         # been somewhat optimized and is perhaps a bit twisty.
  1093.  
  1094.         # code is order so as to try to sed the smallest input files we know.
  1095.         # so do these separately because I don't trust the order of sed -e expressions.
  1096.  
  1097.         # the five makefile fragments MUST end up in the resulting Makefile in this order: 
  1098.         # package macros, target, host, site, and package rules.
  1099.  
  1100.         if [ -f ${srcdir}/${subdir}/${Makefile_in} ] ; then
  1101.  
  1102.             # Conditionalize the makefile for this package from "Makefile.in" (or whatever it's called) into Makefile.tem.
  1103.             rm -f ${subdir}/${Makefile}.tem
  1104.             case "${package_makefile_rules_frag}" in
  1105.               "") cp ${srcdir}/${subdir}/${Makefile_in} ${subdir}/Makefile.tem ;;
  1106.               *)
  1107.                       if [ ! -f ${package_makefile_rules_frag} ] ; then
  1108.                               package_makefile_rules_frag=${srcdir}/${package_makefile_rules_frag}
  1109.                       fi
  1110.                       if [ -f ${package_makefile_rules_frag} ] ; then
  1111.                               sed -e "/^####/  r ${package_makefile_rules_frag}" ${srcdir}/${subdir}/${Makefile_in} > ${Makefile}.tem
  1112.                       else
  1113.                               echo '***' Expected package makefile rules fragment \"${package_makefile_rules_frag}\" 1>&2
  1114.                               echo '***' is missing in ${PWD=`pwd`}. 1>&2
  1115.                               cp ${srcdir}/${subdir}/${Makefile_in} ${subdir}/Makefile.tem
  1116.                       fi
  1117.             esac
  1118.             # working copy now in ${Makefile}.tem
  1119.  
  1120.             # Conditionalize for this site.
  1121.             rm -f ${Makefile}
  1122.               case "${site}" in
  1123.               "") mv ${subdir}/Makefile.tem ${Makefile} ;;
  1124.               *)
  1125.                       site_makefile_frag=${srcdir}/config/ms-${site}
  1126.  
  1127.                       if [ -f ${site_makefile_frag} ] ; then
  1128.                               sed -e "/^####/  r ${site_makefile_frag}" ${subdir}/Makefile.tem \
  1129.                                       > ${Makefile}
  1130.                       else
  1131.                               mv ${subdir}/Makefile.tem ${Makefile}
  1132.                               site_makefile_frag=
  1133.                       fi
  1134.                       ;;
  1135.             esac
  1136.             # working copy now in ${Makefile}
  1137.  
  1138.             # Conditionalize the makefile for this host.
  1139.             rm -f ${subdir}/Makefile.tem
  1140.             case "${host_makefile_frag}" in
  1141.               "") mv ${Makefile} ${subdir}/Makefile.tem ;;
  1142.               *)
  1143.                       if [ ! -f ${host_makefile_frag} ] ; then
  1144.                               host_makefile_frag=${srcdir}/${host_makefile_frag}
  1145.                       fi
  1146.                       if [ -f ${host_makefile_frag} ] ; then
  1147.                               sed -e "/^####/  r ${host_makefile_frag}" ${Makefile} > ${subdir}/Makefile.tem
  1148.                       else
  1149.                               echo '***' Expected host makefile fragment \"${host_makefile_frag}\" 1>&2
  1150.                               echo '***' is missing in ${PWD=`pwd`}. 1>&2
  1151.                               mv ${Makefile} ${subdir}/Makefile.tem
  1152.                       fi
  1153.             esac
  1154.             # working copy now in ${subdir)/Makefile.tem
  1155.  
  1156.             # Conditionalize the makefile for this target.
  1157.             rm -f ${Makefile}
  1158.             case "${target_makefile_frag}" in
  1159.               "") mv ${subdir}/Makefile.tem ${Makefile} ;;
  1160.               *)
  1161.                       if [ ! -f ${target_makefile_frag} ] ; then
  1162.                               target_makefile_frag=${srcdir}/${target_makefile_frag}
  1163.                       fi
  1164.                       if [ -f ${target_makefile_frag} ] ; then
  1165.                               sed -e "/^####/  r ${target_makefile_frag}" ${subdir}/Makefile.tem > ${Makefile}
  1166.                       else
  1167.                               mv ${subdir}/Makefile.tem ${Makefile}
  1168.                               target_makefile_frag=
  1169.                       fi
  1170.                       ;;
  1171.             esac
  1172.             # working copy now in ${Makefile}
  1173.  
  1174.             # Emit the default values of this package's macros.
  1175.             rm -f ${subdir}/Makefile.tem
  1176.             case "${package_makefile_frag}" in
  1177.               "") mv ${Makefile} ${subdir}/Makefile.tem ;;
  1178.               *)
  1179.                       if [ ! -f ${package_makefile_frag} ] ; then
  1180.                               package_makefile_frag=${srcdir}/${package_makefile_frag}
  1181.                       fi
  1182.                       if [ -f ${package_makefile_frag} ] ; then
  1183.                               sed -e "/^####/  r ${package_makefile_frag}" ${Makefile} > ${subdir}/Makefile.tem
  1184.                       else
  1185.                               echo '***' Expected package makefile fragment \"${package_makefile_rules_frag}\" 1>&2
  1186.                               echo '***' is missing in ${PWD=`pwd`}. 1>&2
  1187.                               mv ${Makefile} ${subdir}/Makefile.tem
  1188.                       fi
  1189.             esac
  1190.             # real copy now in ${subdir}/Makefile.tem
  1191.  
  1192.             # prepend warning about editting, and a bunch of variables.
  1193.             rm -f ${Makefile}
  1194.             cat > ${Makefile} <<EOF
  1195. # ${NO_EDIT}
  1196. VPATH = ${makesrcdir}
  1197. links = ${configlinks}
  1198. host_alias = ${host_alias}
  1199. host_cpu = ${host_cpu}
  1200. host_vendor = ${host_vendor}
  1201. host_os = ${host_os}
  1202. host_canonical = ${host_cpu}-${host_vendor}-${host_os}
  1203. target_alias = ${target_alias}
  1204. target_cpu = ${target_cpu}
  1205. target_vendor = ${target_vendor}
  1206. target_os = ${target_os}
  1207. target_canonical = ${target_cpu}-${target_vendor}-${target_os}
  1208. EOF
  1209.         case "${build}" in
  1210.           "") ;;
  1211.           *)  cat >> ${Makefile} << EOF
  1212. build_alias = ${build_alias}
  1213. build_cpu = ${build_cpu}
  1214. build_vendor = ${build_vendor}
  1215. build_os = ${build_os}
  1216. build_canonical = ${build_cpu}-${build_vendor}-${build_os}
  1217. EOF
  1218.         esac
  1219.  
  1220.             case "${package_makefile_frag}" in
  1221.               "") ;;
  1222.               /*) echo package_makefile_frag = ${package_makefile_frag} >>${Makefile} ;;
  1223.               *)  echo package_makefile_frag = ${invsubdir}${package_makefile_frag} >>${Makefile} ;;
  1224.             esac
  1225.  
  1226.             case "${target_makefile_frag}" in
  1227.               "") ;;
  1228.               /*) echo target_makefile_frag = ${target_makefile_frag} >>${Makefile} ;;
  1229.               *)  echo target_makefile_frag = ${invsubdir}${target_makefile_frag} >>${Makefile} ;;
  1230.             esac
  1231.  
  1232.             case "${host_makefile_frag}" in
  1233.               "") ;;
  1234.               /*) echo host_makefile_frag = ${host_makefile_frag} >>${Makefile} ;;
  1235.               *)  echo host_makefile_frag = ${invsubdir}${host_makefile_frag} >>${Makefile} ;;
  1236.             esac
  1237.  
  1238.             if [ "${site_makefile_frag}" != "" ] ; then
  1239.                 echo site_makefile_frag = ${invsubdir}${site_makefile_frag} >>${Makefile}
  1240.             fi 
  1241.  
  1242.         # provide a proper gxx_include_dir to all subdirs.
  1243.         # Note, if you change the default, make sure to fix both here
  1244.         # and in the gcc subdirectory.
  1245.         # Check whether --with-gxx-include-dir or --without-gxx-include-dir was given.
  1246.         gxx_include_dir=
  1247.         if test -n "${with_gxx_include_dir}"; then
  1248.         case "${with_gxx_include_dir}" in
  1249.           yes )
  1250.             echo "configure: error: bad value ${withval} given for g++ include directory" 1>&2
  1251.             exit 1
  1252.             ;;
  1253.           no )
  1254.             ;;
  1255.           * )
  1256.             gxx_include_dir=${with_gxx_include_dir}
  1257.             ;;
  1258.         esac
  1259.         fi
  1260.         if test x${gxx_include_dir} = x; then
  1261.             if test x${enable_version_specific_runtime_libs} = xyes; then
  1262.             echo gxx_include_dir = '${libsubdir}/include/g++' >> ${Makefile}
  1263.         else
  1264.             echo gxx_include_dir = '${prefix}/include/g++' >> ${Makefile}
  1265.         fi
  1266.         else
  1267.         echo gxx_include_dir = ${gxx_include_dir} >> ${Makefile}
  1268.         fi
  1269.  
  1270.         # record if we want to build shared libs.
  1271.         if test -z "${enable_shared}"; then
  1272.             echo enable_shared = no >> ${Makefile}
  1273.         else
  1274.             echo enable_shared = ${enable_shared} >> ${Makefile}
  1275.         fi
  1276.         # record if we want to rumtime library stuff installed in libsubdir.
  1277.         if test -z "${enable_version_specific_runtime_libs}"; then
  1278.             echo enable_version_specific_runtime_libs = no >> ${Makefile}
  1279.         else
  1280.             echo enable_version_specific_runtime_libs = ${enable_version_specific_runtime_libs} >> ${Makefile}
  1281.         fi
  1282.  
  1283.         # Emit a macro which describes the file containing gcc's
  1284.         # version number.
  1285.         echo gcc_version_trigger = ${gcc_version_trigger} >> ${Makefile}
  1286.         # And emit a macro defining gcc's version number.
  1287.         echo gcc_version = ${gcc_version} >> ${Makefile}
  1288.  
  1289.             # reset prefix, exec_prefix, srcdir, SUBDIRS, NONSUBDIRS,
  1290.             # remove any form feeds.
  1291.             if [ -z "${subdirs}" ]; then
  1292.                 rm -f ${subdir}/Makefile.tm2
  1293.                 sed -e "s:^SUBDIRS[     ]*=.*$:SUBDIRS = ${configdirs}:" \
  1294.                     -e "s:^NONSUBDIRS[     ]*=.*$:NONSUBDIRS = ${noconfigdirs}:" \
  1295.                     ${subdir}/Makefile.tem > ${subdir}/Makefile.tm2
  1296.                 rm -f ${subdir}/Makefile.tem
  1297.                 mv ${subdir}/Makefile.tm2 ${subdir}/Makefile.tem
  1298.         fi
  1299.         sed     -e "s|^prefix[     ]*=.*$|prefix = ${prefix}|" \
  1300.                     -e "s|^exec_prefix[     ]*=.*$|exec_prefix = ${exec_prefix}|" \
  1301.             -e "/^CC[     ]*=/{
  1302.             :loop1
  1303.             /\\\\$/ N
  1304.             s/\\\\\\n//g
  1305.             t loop1
  1306.             s%^CC[     ]*=.*$%CC = ${CC}%
  1307.             }" \
  1308.             -e "/^CXX[     ]*=/{
  1309.             :loop2
  1310.             /\\\\$/ N
  1311.             s/\\\\\\n//g
  1312.             t loop2
  1313.             s%^CXX[     ]*=.*$%CXX = ${CXX}%
  1314.             }" \
  1315.             -e "/^CFLAGS[     ]*=/{
  1316.             :loop3
  1317.             /\\\\$/ N
  1318.             s/\\\\\\n//g
  1319.             t loop3
  1320.             s%^CFLAGS[     ]*=.*$%CFLAGS = ${CFLAGS}%
  1321.             }" \
  1322.             -e "/^CXXFLAGS[     ]*=/{
  1323.             :loop4
  1324.             /\\\\$/ N
  1325.             s/\\\\\\n//g
  1326.             t loop4
  1327.             s%^CXXFLAGS[     ]*=.*$%CXXFLAGS = ${CXXFLAGS}%
  1328.             }" \
  1329.             -e "s|^SHELL[     ]*=.*$|SHELL = ${config_shell}|" \
  1330.             -e "s:^GDB_TK[     ]*=.*$:GDB_TK = ${GDB_TK}:" \
  1331.                     -e "s|^srcdir[     ]*=.*$|srcdir = ${makesrcdir}|" \
  1332.                     -e "s/ //" \
  1333.                     -e "s:^program_prefix[     ]*=.*$:program_prefix = ${program_prefix}:" \
  1334.                     -e "s:^program_suffix[     ]*=.*$:program_suffix = ${program_suffix}:" \
  1335.                     -e "s:^program_transform_name[     ]*=.*$:program_transform_name = ${program_transform_name}:" \
  1336.                     -e "s|^tooldir[     ]*=.*$|tooldir = ${tooldir}|" \
  1337.             -e "s:^DEFAULT_YACC[     ]*=.*$:DEFAULT_YACC = ${DEFAULT_YACC}:" \
  1338.             -e "s:^DEFAULT_LEX[     ]*=.*$:DEFAULT_LEX = ${DEFAULT_LEX}:" \
  1339.             -e "s:^DEFAULT_M4[  ]*=.*$:DEFAULT_M4 = ${DEFAULT_M4}:" \
  1340.                     ${subdir}/Makefile.tem >> ${Makefile}
  1341.  
  1342.         # If this is a Canadian Cross, preset the values of many more
  1343.         # tools.
  1344.         if [ "${build}" != "${host}" ]; then
  1345.         for var in ${tools}; do
  1346.             val=`eval 'echo $'"${var}"`
  1347.             sed -e "/^${var}[     ]*=/{
  1348.                :loop1
  1349.                /\\\\$/ N
  1350.                /\\\\$/ b loop1
  1351.                s/\\\\\\n//g
  1352.                s%^${var}[     ]*=.*$%${var} = ${val}%
  1353.                }" ${Makefile} > ${Makefile}.tem
  1354.             mv -f ${Makefile}.tem ${Makefile}
  1355.         done
  1356.         fi
  1357.  
  1358.             # final copy now in ${Makefile}
  1359.  
  1360.         else
  1361.            echo "No Makefile.in found in ${srcdir}/${subdir}, unable to configure" 1>&2
  1362.         fi
  1363.  
  1364.         rm -f ${subdir}/Makefile.tem
  1365.  
  1366.         case "${host_makefile_frag}" in
  1367.         "") using= ;;
  1368.         *) using="and \"${host_makefile_frag}\"" ;;
  1369.         esac
  1370.  
  1371.         case "${target_makefile_frag}" in
  1372.         "") ;;
  1373.         *) using="${using} and \"${target_makefile_frag}\"" ;;
  1374.         esac
  1375.  
  1376.         case "${site_makefile_frag}" in
  1377.         "") ;;
  1378.         *) using="${using} and \"${site_makefile_frag}\"" ;;
  1379.         esac
  1380.  
  1381.         newusing=`echo "${using}" | sed 's/and/using/'`
  1382.         using=${newusing}
  1383.         echo "Created \"${Makefile}\" in" ${PWD=`pwd`} ${using}
  1384.  
  1385.         . ${tmpfile}.pos
  1386.  
  1387.         # describe the chosen configuration in config.status.
  1388.         # Make that file a shellscript which will reestablish
  1389.         # the same configuration.  Used in Makefiles to rebuild
  1390.         # Makefiles.
  1391.  
  1392.         case "${norecursion}" in
  1393.         "") arguments="${arguments} --norecursion" ;;
  1394.         *) ;;
  1395.         esac
  1396.  
  1397.         if [ ${subdir} = . ] ; then
  1398.             echo "#!/bin/sh
  1399. # ${NO_EDIT}
  1400. # This directory was configured as follows:
  1401. ${progname}" ${arguments}  "
  1402. # ${using}" > ${subdir}/config.new
  1403.         else
  1404.             echo "#!/bin/sh
  1405. # ${NO_EDIT}
  1406. # This directory was configured as follows:
  1407. cd ${invsubdir}
  1408. ${progname}" ${arguments}  "
  1409. # ${using}" > ${subdir}/config.new
  1410.         fi
  1411.         chmod a+x ${subdir}/config.new
  1412.         if [ -r ${subdir}/config.back ] ; then
  1413.                 mv -f ${subdir}/config.back ${subdir}/config.status
  1414.         fi
  1415.     ${config_shell} ${moveifchange} ${subdir}/config.new ${subdir}/config.status
  1416.         ;;
  1417.  
  1418.     *)  rm -f ${Makefile} ${subdir}/config.status ${links} ;;
  1419.     esac
  1420. done
  1421.  
  1422. # If there are subdirectories, then recur.
  1423. if [ -z "${norecursion}" -a -n "${configdirs}" ] ; then 
  1424.         for configdir in ${configdirs} ; do
  1425.  
  1426.                 if [ -d ${srcdir}/${configdir} ] ; then
  1427.                         eval echo Configuring ${configdir}... ${redirect}
  1428.                         case "${srcdir}" in
  1429.                         ".") ;;
  1430.                         *)
  1431.                                 if [ ! -d ./${configdir} ] ; then
  1432.                                         if mkdir ./${configdir} ; then
  1433.                                                 true
  1434.                                         else
  1435.                                                 echo '***' "${progname}: could not make ${PWD=`pwd`}/${configdir}" 1>&2
  1436.                                                 exit 1
  1437.                                         fi
  1438.                                 fi
  1439.                                 ;;
  1440.                         esac
  1441.  
  1442.                         POPDIR=${PWD=`pwd`}
  1443.                         cd ${configdir} 
  1444.  
  1445. ### figure out what to do with srcdir
  1446.                         case "${srcdir}" in
  1447.                         ".") newsrcdir=${srcdir} ;; # no -srcdir option.  We're building in place.
  1448.                         /*) # absolute path
  1449.                                 newsrcdir=${srcdir}/${configdir}
  1450.                                 srcdiroption="--srcdir=${newsrcdir}"
  1451.                                 ;;
  1452.                         ?:*) # absolute path on win32
  1453.                                 newsrcdir=${srcdir}/${configdir}
  1454.                                 srcdiroption="--srcdir=${newsrcdir}"
  1455.                                 ;;
  1456.                         *) # otherwise relative
  1457.                                 newsrcdir=../${srcdir}/${configdir}
  1458.                                 srcdiroption="--srcdir=${newsrcdir}"
  1459.                                 ;;
  1460.                         esac
  1461.  
  1462.             # Handle --cache-file=../XXX
  1463.             case "${cache_file}" in
  1464.             "") # empty
  1465.                 ;;
  1466.             /*) # absolute path
  1467.                 cache_file_option="--cache-file=${cache_file}"
  1468.                 ;;
  1469.             ?:*) # absolute path on win32
  1470.                 cache_file_option="--cache-file=${cache_file}"
  1471.                 ;;
  1472.             *) # relative path
  1473.                 cache_file_option="--cache-file=../${cache_file}"
  1474.                 ;;
  1475.             esac
  1476.  
  1477. ### check for guested configure, otherwise fix possibly relative progname
  1478.                         if [ -f ${newsrcdir}/configure ] ; then
  1479.                                 recprog=${newsrcdir}/configure
  1480.                         elif [ -f ${newsrcdir}/configure.in ] ; then
  1481.                                 case "${progname}" in
  1482.                                 /*)     recprog=${progname} ;;
  1483.                                 ?:*)    recprog=${progname} ;;
  1484.                                 *)      recprog=../${progname} ;;
  1485.                                 esac
  1486.             else
  1487.                 eval echo No configuration information in ${configdir} ${redirect}
  1488.                 recprog=
  1489.                         fi
  1490.  
  1491. ### The recursion line is here.
  1492.             if [ ! -z "${recprog}" ] ; then
  1493.                             if eval ${config_shell} ${recprog} ${verbose} ${buildopt} --host=${host_alias} --target=${target_alias} \
  1494.                                     ${prefixoption} ${tmpdiroption} ${exec_prefixoption} \
  1495.                                     ${srcdiroption} ${program_prefixoption} ${program_suffixoption} ${program_transform_nameoption} ${site_option} ${withoptions} ${withoutoptions} ${enableoptions} ${disableoptions} ${floating_pointoption} ${cache_file_option} ${removing} ${other_options} ${redirect} ; then
  1496.                                     true
  1497.                             else
  1498.                     echo Configure in `pwd` failed, exiting. 1>&2
  1499.                                     exit 1
  1500.                             fi
  1501.             fi
  1502.  
  1503.                         cd ${POPDIR}
  1504.                 fi
  1505.         done
  1506. fi
  1507.  
  1508. # Perform the same cleanup as the trap handler, minus the "exit 1" of course,
  1509. # and reset the trap handler.
  1510. rm -f ${tmpfile}.com ${tmpfile}.tgt ${tmpfile}.hst ${tmpfile}.pos
  1511. trap 0
  1512.  
  1513. exit 0
  1514.  
  1515. #
  1516. # Local Variables:
  1517. # fill-column: 131
  1518. # End:
  1519. #
  1520.  
  1521. # end of configure
  1522.