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