3 ### WARNING: this file contains embedded tabs. Do not run untabify on this file.
6 # Copyright (C) 1988, 90, 91, 92, 93, 94 Free Software Foundation, Inc.
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.
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.
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 # Please email any bugs, comments, and/or additions to this file to:
23 # configure@cygnus.com
25 # This file was written by K. Richard Pixley.
28 # Shell script to create proper links to machine-dependent files in
29 # preparation for compilation.
31 # If configure succeeds, it leaves its status in config.status.
32 # If configure fails after disturbing the status quo,
33 # config.status is removed.
36 export PATH || (echo "OOPS, this isn't sh. Desperation time. I will feed myself to sh."; sh $0 $argv; kill $$)
45 #symbolic_link="echo ln -s"
47 # clear some things potentially inherited from environment.
50 Makefile_in=Makefile.in
57 floating_point=default
64 package_makefile_frag=
71 program_transform_name=
72 program_transform_nameoption=
87 ### we might need to use some other shell than /bin/sh for running subshells
89 config_shell=${CONFIG_SHELL-/bin/sh}
91 NO_EDIT="This file was generated automatically by configure. Do not edit."
93 ## this is a little touchy and won't always work, but...
95 ## if the argv[0] starts with a slash then it is an absolute name that can (and
96 ## must) be used as is.
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.
103 # if PWD already has a value, it is probably wrong.
104 if [ -n "$PWD" ]; then PWD=`pwd`; fi
106 case "${progname}" in
110 PATH=$PATH:${PWD=`pwd`} ; export PATH
119 # Break out if there are no more args
126 # Get the first arg, and shuffle
130 # Make all options have two hyphens
131 orig_option=$option # Save original for error messages
134 -*) option=-$option ;;
137 # Split out the argument for options that take them
140 optarg=`echo $option | sed -e 's/^[^=]*=//'`
142 # These options have mandatory values. Since we didn't find an = sign,
143 # the value must be in the next argument
144 --b* | --ex* | --ho* | --pre* | --program-p* | --program-s* | --program-t* | --si* | --sr* | --ta* | --tm*)
150 # Now, process the options
154 case "$build_alias" in
155 "") build_alias=$optarg ;;
156 *) echo '***' Can only configure for one build machine at a time. 1>&2
167 enableopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
168 eval $enableopt="$optarg"
169 enableoptions="$enableoptions $option"
171 --exec-prefix* | --ex*)
173 exec_prefixoption="--exec-prefix=$optarg"
183 NOHOST) host_alias=$optarg ;;
184 *) echo '***' Can only configure for one host at a time. 1>&2
192 --norecursion | --no*)
197 prefixoption="--prefix=$optarg"
199 --program-prefix* | --program-p*)
200 program_prefix=$optarg
201 program_prefixoption="--program-prefix=$optarg"
203 --program-suffix* | --program-s*)
204 program_suffix=$optarg
205 program_suffixoption="--program-suffix=$optarg"
207 --program-transform-name* | --program-t*)
208 # Double any backslashes or dollar signs in the argument
209 program_transform_name="${program_transform_name} -e `echo ${optarg} | sed -e 's/\\\\/\\\\\\\\/g' -e 's/\\\$/$$/g'`"
210 program_transform_nameoption="--program-transform-nameoption='$optarg'"
217 site_option="--site=$optarg"
220 # Remove trailing slashes. Otherwise, when the file name gets
221 # bolted into an object file as debug info, it has two slashes in
222 # it. Ordinarily this is ok, but emacs takes double slash to
223 # mean "forget the first part".
224 srcdir=`echo $optarg | sed -e 's:/$::'`
230 case $target_alias in
231 NOTARGET) target_alias=$optarg ;;
232 *) echo '***' Can only configure for one target at a time. 1>&2
239 tmpdiroption="--tmpdir=$optarg"
241 --verbose | --v | --verb*)
245 --version | --V | --vers*)
246 echo "This is Cygnus Configure version" `echo ${version} | sed 's/[ $:]//g'`
255 withopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
256 eval $withopt="$optarg"
257 withoptions="$withoptions $option"
260 withopt=`echo ${option} | sed 's:^--::;s:out::;s:-:_:g'`
262 withoutoptions="$withoutoptions $option"
265 withoptions="$withoptions --with-x"
268 echo "Warning: Unrecognized option: \"$orig_option\"". >&2
269 # Pass the option to any configure scripts in subdirectories
270 # in case they recognize it.
271 other_options="$other_options $orig_option"
275 NOUNDEFS) undefs=$option ;;
276 *) echo '***' Can only configure for one host and one target at a time. 1>&2
284 # process host and target
286 # Do some error checking and defaulting for the host and target type.
288 # configure --host=HOST --target=TARGET UNDEFS
291 # 1. You aren't allowed to specify --host, --target, and undefs at the
293 # 2. Host defaults to undefs.
294 # 3. If undefs is not specified, then host defaults to the current host,
295 # as determined by config.guess.
296 # 4. Target defaults to undefs.
297 # 5. If undefs is not specified, then target defaults to host.
301 # Make sure that host, target & undefs aren't all specified at the
303 case $host_alias---$target_alias---$undefs in
304 NOHOST---*---* | *---NOTARGET---* | *---*---NOUNDEFS)
306 *) echo '***' Can only configure for one host and one target at a time. 1>&2
312 # Now, do defaulting for host.
317 # Neither --host option nor undefs were present.
319 guesssys=`echo ${progname} | sed 's/configure$/config.guess/'`
320 if host_alias=`${guesssys}`
322 echo "Configuring for a ${host_alias} host." 1>&2
323 arguments="--host=$host_alias $arguments"
325 echo 'Config.guess failed to determine the host type. You need to specify one.' 1>&2
335 # Do defaulting for target. If --target option isn't present, default
336 # to undefs. If undefs isn't present, default to host.
337 case $target_alias in
341 target_alias=$host_alias
352 if [ -n "${fatal}" -o "${host_alias}" = "help" ] ; then
354 echo Usage: configure HOST
356 echo Options: [defaults in brackets]
357 echo ' --prefix=MYDIR configure for installation of host independent files into MYDIR. ["/usr/local"]'
358 echo ' --exec-prefix=MYDIR configure for installation of host dependent files into MYDIR. ["/usr/local"]'
359 echo ' --help print this message. [normal config]'
360 echo ' --build=BUILD configure for building on BUILD. [BUILD=HOST]'
361 echo ' --host=HOST configure for HOST. [determined via config.guess]'
362 echo ' --norecursion configure this directory only. [recurse]'
363 echo ' --program-prefix=FOO install programs with FOO prepended to their names. [ "" ]'
364 echo ' --program-suffix=FOO install programs with FOO appended to their names. [ "" ]'
365 echo ' --program-transform-name=FOO install programs with names transformed by sed pattern FOO. [ "" ]'
366 echo ' --site=SITE configure with site specific makefile for SITE'
367 echo ' --srcdir=DIR find the sources in DIR. ["." or ".."]'
368 echo ' --target=TARGET configure for TARGET. [TARGET = HOST]'
369 echo ' --tmpdir=TMPDIR create temporary files in TMPDIR. [ TMPDIR = "/tmp" ]'
370 echo ' --nfp configure the compilers default to soft floating point. [hard float]'
371 echo ' --with-FOO, --with-FOO=BAR package FOO is available (parameter BAR)'
372 echo ' --without-FOO package FOO is NOT available'
373 echo ' --enable-FOO, --enable-FOO=BAR include feature FOO (parameter BAR)'
375 echo 'Where HOST and TARGET are something like "vax", "sun3", "encore", etc.'
377 if [ -r config.status ] ; then
384 configsub=`echo ${progname} | sed 's/configure$/config.sub/'`
385 moveifchange=`echo ${progname} | sed 's/configure$/move-if-change/'`
387 # this is a hack. sun4 must always be a valid host alias or this will fail.
388 if ${configsub} sun4 >/dev/null 2>&1 ; then
391 echo '***' cannot find config.sub. 1>&2
396 if ${moveifchange} config.junk config.trash ; then
399 echo '***' cannot find move-if-change. 1>&2
402 rm -f config.junk config.trash
406 if [ -r configure.in ] ; then
409 if [ -r ${progname}.in ] ; then
410 srcdir=`echo ${progname} | sed 's:/configure$::'`
412 echo '***' "Can't find configure.in. Try using --srcdir=some_dir" 1>&2
420 ### warn about some conflicting configurations.
425 if [ -f ${srcdir}/config.status ] ; then
426 echo '***' Cannot configure here in \"${PWD=`pwd`}\" when \"${srcdir}\" is currently configured. 1>&2
431 # default exec_prefix
432 case "${exec_prefix}" in
433 "") exec_prefix="\$(prefix)" ;;
437 ### break up ${srcdir}/configure.in.
438 case "`grep '^# per\-host:' ${srcdir}/configure.in`" in
440 echo '***' ${srcdir}/configure.in has no \"per-host:\" line. 1>&2
446 case "`grep '^# per\-target:' ${srcdir}/configure.in`" in
448 echo '***' ${srcdir}/configure.in has no \"per-target:\" line. 1>&2
455 "") TMPDIR=/tmp ; export TMPDIR ;;
459 # keep this filename short for &%*%$*# 14 char file names
460 tmpfile=${TMPDIR}/cONf$$
461 trap "rm -f ${tmpfile}.com ${tmpfile}.tgt ${tmpfile}.hst ${tmpfile}.pos" 0
463 # split ${srcdir}/configure.in into common, per-host, per-target,
464 # and post-target parts. Post-target is optional.
465 sed -e '/^# per\-host:/,$d' ${srcdir}/configure.in > ${tmpfile}.com
466 sed -e '1,/^# per\-host:/d' -e '/^# per\-target:/,$d' ${srcdir}/configure.in > ${tmpfile}.hst
467 if grep '^# post-target:' ${srcdir}/configure.in >/dev/null ; then
468 sed -e '1,/^# per\-target:/d' -e '/^# post\-target:/,$d' ${srcdir}/configure.in > ${tmpfile}.tgt
469 sed -e '1,/^# post\-target:/d' ${srcdir}/configure.in > ${tmpfile}.pos
471 sed -e '1,/^# per\-target:/d' ${srcdir}/configure.in > ${tmpfile}.tgt
475 ### do common part of configure.in
479 # some sanity checks on configure.in
480 case "${srctrigger}" in
482 echo '***' srctrigger not set in ${PWD=`pwd`}/configure.in. 1>&2
488 case "${build_alias}" in
491 result=`${configsub} ${build_alias}`
492 buildopt="--build=${build_alias}"
493 build_cpu=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
494 build_vendor=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
495 build_os=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
496 build=${build_cpu}-${build_vendor}-${build_os}
500 result=`${configsub} ${host_alias}`
501 host_cpu=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
502 host_vendor=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
503 host_os=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
504 host=${host_cpu}-${host_vendor}-${host_os}
508 result=`${configsub} ${target_alias}`
509 target_cpu=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
510 target_vendor=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
511 target_os=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
512 target=${target_cpu}-${target_vendor}-${target_os}
516 # Find the source files, if location was not specified.
521 if [ ! -r ${srctrigger} ] ; then
528 if [ ! -r ${srcdir}/${srctrigger} ] ; then
529 case "${srcdirdefaulted}" in
530 "") echo '***' "${progname}: Can't find ${srcname} sources in ${PWD=`pwd`}/${srcdir}" 1>&2 ;;
531 *) echo '***' "${progname}: Can't find ${srcname} sources in ${PWD=`pwd`}/. or ${PWD=`pwd`}/.." 1>&2 ;;
534 echo '***' \(At least ${srctrigger} is missing.\) 1>&2
538 # Some systems (e.g., one of the i386-aix systems the gas testers are
539 # using) don't handle "\$" correctly, so don't use it here.
540 tooldir='$(exec_prefix)'/${target_alias}
542 if [ "${host_alias}" != "${target_alias}" ] ; then
543 if [ "${program_prefixoption}" = "" ] ; then
544 if [ "${program_suffixoption}" = "" ] ; then
545 if [ "${program_transform_nameoption}" = "" ] ; then
546 program_prefix=${target_alias}- ;
552 # Merge program_prefix and program_suffix onto program_transform_name
553 # Use a double $ so that make ignores it
554 if [ "${program_suffix}" != "" ] ; then
555 program_transform_name="-e s,\$\$,${program_suffix}, ${program_transform_name}"
558 if [ "${program_prefix}" != "" ] ; then
559 program_transform_name="-e s,^,${program_prefix}, ${program_transform_name}"
562 for subdir in . ${subdirs} ; do
564 # ${subdir} is relative path from . to the directory we're currently
566 # ${invsubdir} is inverse of ${subdir), *with* trailing /, if needed.
567 invsubdir=`echo ${subdir}/ | sed -e 's|\./||g' -e 's|[^/]*/|../|g'`
569 ### figure out what to do with srcdir
571 ".") # no -srcdir option. We're building in place.
574 makesrcdir=`echo ${srcdir}/${subdir} | sed -e 's|/\.$||'`
576 *) # otherwise relative
578 .) makesrcdir=${srcdir} ;;
579 *) makesrcdir=${invsubdir}${srcdir}/${subdir} ;;
584 if [ "${subdir}/" != "./" ] ; then
585 Makefile=${subdir}/Makefile
588 if [ ! -d ${subdir} ] ; then
589 if mkdir ${subdir} ; then
592 echo '***' "${progname}: could not make ${PWD=`pwd`}/${subdir}" 1>&2
597 case "${removing}" in
601 *) eval echo Building in ${subdir} ${redirect} ;;
604 # FIXME Should this be done recursively ??? (Useful for e.g. gdbtest)
605 # Set up the list of links to be made.
606 # ${links} is the list of link names, and ${files} is the list of names to link to.
609 configlinks="${links}"
610 if [ -r ${subdir}/config.status ] ; then
611 mv -f ${subdir}/config.status ${subdir}/config.back
613 while [ -n "${files}" ] ; do
614 # set file to car of files, files to cdr of files
615 set ${files}; file=$1; shift; files=$*
616 set ${links}; link=$1; shift; links=$*
618 if [ ! -r ${srcdir}/${file} ] ; then
619 echo '***' "${progname}: cannot create a link \"${link}\"," 1>&2
620 echo '***' "since the file \"${srcdir}/${file}\" does not exist." 1>&2
625 # Make a symlink if possible, otherwise try a hard link
626 ${symbolic_link} ${srcdir}/${file} ${link} 2>/dev/null || ${hard_link} ${srcdir}/${file} ${link}
628 if [ ! -r ${link} ] ; then
629 echo '***' "${progname}: unable to link \"${link}\" to \"${srcdir}/${file}\"." 1>&2
633 echo "Linked \"${link}\" to \"${srcdir}/${file}\"."
636 # Create a .gdbinit file which runs the one in srcdir
637 # and tells GDB to look there for source files.
639 if [ -r ${srcdir}/${subdir}/.gdbinit ] ; then
642 *) cat > ${subdir}/.gdbinit <<EOF
646 source ${makesrcdir}/.gdbinit
652 # Install a makefile, and make it set VPATH
653 # if necessary so that the sources are found.
654 # Also change its value of srcdir.
655 # NOTE: Makefile generation constitutes the majority of the time in configure. Hence, this section has
656 # been somewhat optimized and is perhaps a bit twisty.
658 # code is order so as to try to sed the smallest input files we know.
660 # the four makefile fragments MUST end up in the resulting Makefile in this order:
661 # package, target, host, and site. so do these separately because I don't trust the
662 # order of sed -e expressions.
664 if [ -f ${srcdir}/${subdir}/${Makefile_in} ] ; then
666 # Conditionalize for this site from "Makefile.in" (or whatever it's called) into Makefile.tem
667 rm -f ${subdir}/Makefile.tem
669 "") cp ${srcdir}/${subdir}/${Makefile_in} ${subdir}/Makefile.tem ;;
671 site_makefile_frag=${srcdir}/config/ms-${site}
673 if [ -f ${site_makefile_frag} ] ; then
674 sed -e "/^####/ r ${site_makefile_frag}" ${srcdir}/${subdir}/${Makefile_in} \
675 > ${subdir}/Makefile.tem
677 cp ${srcdir}/${subdir}/${Makefile_in} ${subdir}/Makefile.tem
682 # working copy now in ${subdir}/Makefile.tem
684 # Conditionalize the makefile for this host.
686 case "${host_makefile_frag}" in
687 "") mv ${subdir}/Makefile.tem ${Makefile} ;;
689 if [ ! -f ${host_makefile_frag} ] ; then
690 host_makefile_frag=${srcdir}/${host_makefile_frag}
692 if [ -f ${host_makefile_frag} ] ; then
693 sed -e "/^####/ r ${host_makefile_frag}" ${subdir}/Makefile.tem > ${Makefile}
695 echo '***' Expected host makefile fragment \"${host_makefile_frag}\" 1>&2
696 echo '***' is missing in ${PWD=`pwd`}. 1>&2
697 mv ${subdir}/Makefile.tem ${Makefile}
700 # working copy now in ${Makefile}
702 # Conditionalize the makefile for this target.
703 rm -f ${subdir}/Makefile.tem
704 case "${target_makefile_frag}" in
705 "") mv ${Makefile} ${subdir}/Makefile.tem ;;
707 if [ ! -f ${target_makefile_frag} ] ; then
708 target_makefile_frag=${srcdir}/${target_makefile_frag}
710 if [ -f ${target_makefile_frag} ] ; then
711 sed -e "/^####/ r ${target_makefile_frag}" ${Makefile} > ${subdir}/Makefile.tem
713 mv ${Makefile} ${subdir}/Makefile.tem
714 target_makefile_frag=
718 # real copy now in ${subdir}/Makefile.tem
720 # Conditionalize the makefile for this package.
722 case "${package_makefile_frag}" in
723 "") mv ${subdir}/Makefile.tem ${Makefile} ;;
725 if [ ! -f ${package_makefile_frag} ] ; then
726 package_makefile_frag=${srcdir}/${package_makefile_frag}
728 if [ -f ${package_makefile_frag} ] ; then
729 sed -e "/^####/ r ${package_makefile_frag}" ${subdir}/Makefile.tem > ${Makefile}
731 echo '***' Expected package makefile fragment \"${package_makefile_frag}\" 1>&2
732 echo '***' is missing in ${PWD=`pwd`}. 1>&2
733 mv ${subdir}/Makefile.tem ${Makefile}
736 # working copy now in ${Makefile}
738 mv ${Makefile} ${subdir}/Makefile.tem
740 # real copy now in ${subdir}/Makefile.tem
742 # prepend warning about editting, and a bunch of variables.
744 cat > ${Makefile} <<EOF
746 VPATH = ${makesrcdir}
747 links = ${configlinks}
748 host_alias = ${host_alias}
749 host_cpu = ${host_cpu}
750 host_vendor = ${host_vendor}
752 host_canonical = ${host_cpu}-${host_vendor}-${host_os}
753 target_alias = ${target_alias}
754 target_cpu = ${target_cpu}
755 target_vendor = ${target_vendor}
756 target_os = ${target_os}
757 target_canonical = ${target_cpu}-${target_vendor}-${target_os}
761 *) cat >> ${Makefile} << EOF
762 build_alias = ${build_alias}
763 build_cpu = ${build_cpu}
764 build_vendor = ${build_vendor}
765 build_os = ${build_os}
766 build_canonical = ${build_cpu}-${build_vendor}-${build_os}
770 case "${package_makefile_frag}" in
772 /*) echo package_makefile_frag = ${package_makefile_frag} >>${Makefile} ;;
773 *) echo package_makefile_frag = ${invsubdir}${package_makefile_frag} >>${Makefile} ;;
776 case "${target_makefile_frag}" in
778 /*) echo target_makefile_frag = ${target_makefile_frag} >>${Makefile} ;;
779 *) echo target_makefile_frag = ${invsubdir}${target_makefile_frag} >>${Makefile} ;;
782 case "${host_makefile_frag}" in
784 /*) echo host_makefile_frag = ${host_makefile_frag} >>${Makefile} ;;
785 *) echo host_makefile_frag = ${invsubdir}${host_makefile_frag} >>${Makefile} ;;
788 if [ "${site_makefile_frag}" != "" ] ; then
789 echo site_makefile_frag = ${invsubdir}${site_makefile_frag} >>${Makefile}
792 # make sure that some sort of reasonable default exists for these
797 # reset prefix, exec_prefix, srcdir, SUBDIRS, NONSUBDIRS,
798 # remove any form feeds.
799 if [ -z "${subdirs}" ]; then
800 rm -f ${subdir}/Makefile.tem2
801 sed -e "s:^SUBDIRS[ ]*=.*$:SUBDIRS = ${configdirs}:" \
802 -e "s:^NONSUBDIRS[ ]*=.*$:NONSUBDIRS = ${noconfigdirs}:" \
803 ${subdir}/Makefile.tem > ${subdir}/Makefile.tem2
804 rm -f ${subdir}/Makefile.tem
805 mv ${subdir}/Makefile.tem2 ${subdir}/Makefile.tem
807 sed -e "s:^prefix[ ]*=.*$:prefix = ${prefix}:" \
808 -e "s:^exec_prefix[ ]*=.*$:exec_prefix = ${exec_prefix}:" \
809 -e "s:^SHELL[ ]*=.*$:SHELL = ${config_shell}:" \
810 -e "s:^srcdir[ ]*=.*$:srcdir = ${makesrcdir}:" \
812 -e "s:^program_prefix[ ]*=.*$:program_prefix = ${program_prefix}:" \
813 -e "s:^program_suffix[ ]*=.*$:program_suffix = ${program_suffix}:" \
814 -e "s:^program_transform_name[ ]*=.*$:program_transform_name = ${program_transform_name}:" \
815 -e "s:^tooldir[ ]*=.*$:tooldir = ${tooldir}:" \
816 ${subdir}/Makefile.tem >> ${Makefile}
817 # final copy now in ${Makefile}
820 echo "No Makefile.in found in ${srcdir}/${subdir}, unable to configure" 1>&2
823 rm -f ${subdir}/Makefile.tem
825 case "${host_makefile_frag}" in
827 *) using="and \"${host_makefile_frag}\"" ;;
830 case "${target_makefile_frag}" in
832 *) using="${using} and \"${target_makefile_frag}\"" ;;
835 case "${site_makefile_frag}" in
837 *) using="${using} and \"${site_makefile_frag}\"" ;;
840 newusing=`echo "${using}" | sed 's/and/using/'`
842 echo "Created \"${Makefile}\" in" ${PWD=`pwd`} ${using}
846 # describe the chosen configuration in config.status.
847 # Make that file a shellscript which will reestablish
848 # the same configuration. Used in Makefiles to rebuild
851 case "${norecursion}" in
852 "") arguments="${arguments} --norecursion" ;;
856 if [ ${subdir} = . ] ; then
859 # This directory was configured as follows:
860 ${progname}" ${arguments} "
861 # ${using}" > ${subdir}/config.new
865 # This directory was configured as follows:
867 ${progname}" ${arguments} "
868 # ${using}" > ${subdir}/config.new
870 chmod a+x ${subdir}/config.new
871 if [ -r ${subdir}/config.back ] ; then
872 mv -f ${subdir}/config.back ${subdir}/config.status
874 ${moveifchange} ${subdir}/config.new ${subdir}/config.status
877 *) rm -f ${Makefile} ${subdir}/config.status ${links} ;;
881 # If there are subdirectories, then recur.
882 if [ -z "${norecursion}" -a -n "${configdirs}" ] ; then
883 for configdir in ${configdirs} ; do
885 if [ -d ${srcdir}/${configdir} ] ; then
886 eval echo Configuring ${configdir}... ${redirect}
890 if [ ! -d ./${configdir} ] ; then
891 if mkdir ./${configdir} ; then
894 echo '***' "${progname}: could not make ${PWD=`pwd`}/${configdir}" 1>&2
904 ### figure out what to do with srcdir
906 ".") newsrcdir=${srcdir} ;; # no -srcdir option. We're building in place.
908 newsrcdir=${srcdir}/${configdir}
909 srcdiroption="--srcdir=${newsrcdir}"
911 *) # otherwise relative
912 newsrcdir=../${srcdir}/${configdir}
913 srcdiroption="--srcdir=${newsrcdir}"
917 ### check for guested configure, otherwise fix possibly relative progname
918 if [ -f ${newsrcdir}/configure ] ; then
919 recprog=${newsrcdir}/configure
920 elif [ -f ${newsrcdir}/configure.in ] ; then
921 case "${progname}" in
922 /*) recprog=${progname} ;;
923 *) recprog=../${progname} ;;
926 eval echo No configuration information in ${configdir} ${redirect}
930 ### The recursion line is here.
931 if [ ! -z "${recprog}" ] ; then
932 if eval ${config_shell} ${recprog} ${verbose} ${buildopt} --host=${host_alias} --target=${target_alias} \
933 ${prefixoption} ${tmpdiroption} ${exec_prefixoption} \
934 ${srcdiroption} ${program_prefixoption} ${program_suffixoption} ${program_transform_nameoption} ${site_option} ${withoptions} ${withoutoptions} ${enableoptions} ${removing} ${other_options} ${redirect} ; then
937 echo Configure in `pwd` failed, exiting. 1>&2