* Makefile.in: Rename HOST_ONLY to NATIVE.
[deliverable/binutils-gdb.git] / configure
1 #!/bin/sh
2
3 ### WARNING: this file contains embedded tabs. Do not run untabify on this file.
4
5 # Configuration script
6 # Copyright (C) 1988, 90, 91, 92, 93, 94 Free Software Foundation, Inc.
7
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
12 #
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 #
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.
21
22 # Please email any bugs, comments, and/or additions to this file to:
23 # configure@cygnus.com
24
25 # This file was written by K. Richard Pixley.
26
27 #
28 # Shell script to create proper links to machine-dependent files in
29 # preparation for compilation.
30 #
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.
34 #
35
36 export PATH || (echo "OOPS, this isn't sh. Desperation time. I will feed myself to sh."; sh $0 $argv; kill $$)
37
38 remove=rm
39 hard_link=ln
40 symbolic_link='ln -s'
41
42 #for Test
43 #remove="echo rm"
44 #hard_link="echo ln"
45 #symbolic_link="echo ln -s"
46
47 # clear some things potentially inherited from environment.
48
49 Makefile=Makefile
50 Makefile_in=Makefile.in
51 arguments=$*
52 build_alias=
53 configdirs=
54 exec_prefix=
55 exec_prefixoption=
56 fatal=
57 floating_point=default
58 gas=default
59 host_alias=NOHOST
60 host_makefile_frag=
61 moveifchange=
62 norecursion=
63 other_options=
64 package_makefile_frag=
65 prefix=/usr/local
66 progname=
67 program_prefix=
68 program_prefixoption=
69 program_suffix=
70 program_suffixoption=
71 program_transform_name=
72 program_transform_nameoption=
73 redirect=">/dev/null"
74 removing=
75 site=
76 site_makefile_frag=
77 site_option=
78 srcdir=
79 srctrigger=
80 subdirs=
81 target_alias=NOTARGET
82 target_makefile_frag=
83 undefs=NOUNDEFS
84 version="$Revision$"
85 x11=default
86
87 ### we might need to use some other shell than /bin/sh for running subshells
88 #
89 config_shell=${CONFIG_SHELL-/bin/sh}
90
91 NO_EDIT="This file was generated automatically by configure. Do not edit."
92
93 ## this is a little touchy and won't always work, but...
94 ##
95 ## if the argv[0] starts with a slash then it is an absolute name that can (and
96 ## must) be used as is.
97 ##
98 ## otherwise, if argv[0] has no slash in it, we can assume that it is on the
99 ## path. Since PATH might include "." we also add `pwd` to the end of PATH.
100 ##
101
102 progname=$0
103 # if PWD already has a value, it is probably wrong.
104 if [ -n "$PWD" ]; then PWD=`pwd`; fi
105
106 case "${progname}" in
107 /*) ;;
108 */*) ;;
109 *)
110 PATH=$PATH:${PWD=`pwd`} ; export PATH
111 ;;
112 esac
113
114 # Loop over all args
115
116 while :
117 do
118
119 # Break out if there are no more args
120 case $# in
121 0)
122 break
123 ;;
124 esac
125
126 # Get the first arg, and shuffle
127 option=$1
128 shift
129
130 # Make all options have two hyphens
131 orig_option=$option # Save original for error messages
132 case $option in
133 --*) ;;
134 -*) option=-$option ;;
135 esac
136
137 # Split out the argument for options that take them
138 case $option in
139 --*=*)
140 optarg=`echo $option | sed -e 's/^[^=]*=//'`
141 ;;
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* | --x-*)
145 optarg=$1
146 shift
147 ;;
148 esac
149
150 # Now, process the options
151 case $option in
152
153 --build* | --b*)
154 case "$build_alias" in
155 "") build_alias=$optarg ;;
156 *) echo '***' Can only configure for one build machine at a time. 1>&2
157 fatal=yes
158 ;;
159 esac
160 ;;
161 --disable-*)
162 enableopt=`echo ${option} | sed 's:^--disable-:enable_:;s:-:_:g'`
163 eval $enableopt=no
164 disableoptions="$disableoptions $option"
165 ;;
166 --enable-*)
167 case "$option" in
168 *=*) ;;
169 *) optarg=yes ;;
170 esac
171
172 enableopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
173 eval $enableopt="$optarg"
174 enableoptions="$enableoptions $option"
175 ;;
176 --exec-prefix* | --ex*)
177 exec_prefix=$optarg
178 exec_prefixoption="--exec-prefix=$optarg"
179 ;;
180 --gas | --g*)
181 gas=yes
182 ;;
183 --help | --he*)
184 fatal=yes
185 ;;
186 --host* | --ho*)
187 case $host_alias in
188 NOHOST) host_alias=$optarg ;;
189 *) echo '***' Can only configure for one host at a time. 1>&2
190 fatal=yes
191 ;;
192 esac
193 ;;
194 --nfp | --nf*)
195 floating_point=no
196 ;;
197 --norecursion | --no*)
198 norecursion=yes
199 ;;
200 --prefix* | --pre*)
201 prefix=$optarg
202 prefixoption="--prefix=$optarg"
203 ;;
204 --program-prefix* | --program-p*)
205 program_prefix=$optarg
206 program_prefixoption="--program-prefix=$optarg"
207 ;;
208 --program-suffix* | --program-s*)
209 program_suffix=$optarg
210 program_suffixoption="--program-suffix=$optarg"
211 ;;
212 --program-transform-name* | --program-t*)
213 # Double any backslashes or dollar signs in the argument
214 program_transform_name="${program_transform_name} -e `echo ${optarg} | sed -e 's/\\\\/\\\\\\\\/g' -e 's/\\\$/$$/g'`"
215 program_transform_nameoption="--program-transform-nameoption='$optarg'"
216 ;;
217 --rm)
218 removing=--rm
219 ;;
220 --silent | --sil* | --quiet | --q*)
221 redirect=">/dev/null"
222 verbose=--silent
223 ;;
224 --site* | --sit*)
225 site=$optarg
226 site_option="--site=$optarg"
227 ;;
228 --srcdir*/ | --sr*/)
229 # Remove trailing slashes. Otherwise, when the file name gets
230 # bolted into an object file as debug info, it has two slashes
231 # in it. Ordinarily this is ok, but emacs takes double slash
232 # to mean "forget the first part".
233 srcdir=`echo $optarg | sed -e 's:/$::'`
234 ;;
235 --srcdir* | --sr*)
236 srcdir=$optarg
237 ;;
238 --target* | --ta*)
239 case $target_alias in
240 NOTARGET) target_alias=$optarg ;;
241 *) echo '***' Can only configure for one target at a time. 1>&2
242 fatal=yes
243 ;;
244 esac
245 ;;
246 --tmpdir* | --tm*)
247 TMPDIR=$optarg
248 tmpdiroption="--tmpdir=$optarg"
249 ;;
250 --verbose | --v | --verb*)
251 redirect=
252 verbose=--verbose
253 ;;
254 --version | --V | --vers*)
255 echo "This is Cygnus Configure version" `echo ${version} | sed 's/[ $:]//g'`
256 exit 0
257 ;;
258 --with-*)
259 case "$option" in
260 *=*) ;;
261 *) optarg=yes ;;
262 esac
263
264 withopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
265 eval $withopt="$optarg"
266 withoptions="$withoptions $option"
267 ;;
268 --without-*)
269 withopt=`echo ${option} | sed 's:^--::;s:out::;s:-:_:g'`
270 eval $withopt=no
271 withoutoptions="$withoutoptions $option"
272 ;;
273 --x) with_x=yes
274 withoptions="$withoptions --with-x"
275 ;;
276 --x-i* | --x-l*) other_options="$other_options $orig_option"
277 ;;
278 --*)
279 echo "configure: Unrecognized option: \"$orig_option\"; use --help for usage." >&2
280 exit 1
281 ;;
282 *)
283 case $undefs in
284 NOUNDEFS) undefs=$option ;;
285 *) echo '***' Can only configure for one host and one target at a time. 1>&2
286 fatal=yes
287 ;;
288 esac
289 ;;
290 esac
291 done
292
293 # process host and target
294
295 # Do some error checking and defaulting for the host and target type.
296 # The inputs are:
297 # configure --host=HOST --target=TARGET UNDEFS
298 #
299 # The rules are:
300 # 1. You aren't allowed to specify --host, --target, and undefs at the
301 # same time.
302 # 2. Host defaults to undefs.
303 # 3. If undefs is not specified, then host defaults to the current host,
304 # as determined by config.guess.
305 # 4. Target defaults to undefs.
306 # 5. If undefs is not specified, then target defaults to host.
307
308 case "${fatal}" in
309 "")
310 # Make sure that host, target & undefs aren't all specified at the
311 # same time.
312 case $host_alias---$target_alias---$undefs in
313 NOHOST---*---* | *---NOTARGET---* | *---*---NOUNDEFS)
314 ;;
315 *) echo '***' Can only configure for one host and one target at a time. 1>&2
316 fatal=yes
317 break 2
318 ;;
319 esac
320
321 # Now, do defaulting for host.
322 case $host_alias in
323 NOHOST)
324 case $undefs in
325 NOUNDEFS)
326 # Neither --host option nor undefs were present.
327 # Call config.guess.
328 guesssys=`echo ${progname} | sed 's/configure$/config.guess/'`
329 if host_alias=`${guesssys}`
330 then
331 echo "Configuring for a ${host_alias} host." 1>&2
332 arguments="--host=$host_alias $arguments"
333 else
334 echo 'Config.guess failed to determine the host type. You need to specify one.' 1>&2
335 fatal=yes
336 fi
337 ;;
338 *)
339 host_alias=$undefs
340 ;;
341 esac
342 esac
343
344 # Do defaulting for target. If --target option isn't present, default
345 # to undefs. If undefs isn't present, default to host.
346 case $target_alias in
347 NOTARGET)
348 case $undefs in
349 NOUNDEFS)
350 target_alias=$host_alias
351 ;;
352 *)
353 target_alias=$undefs
354 ;;
355 esac
356 esac
357 ;;
358 *) ;;
359 esac
360
361 if [ -n "${fatal}" -o "${host_alias}" = "help" ] ; then
362 exec 1>&2
363 echo Usage: configure [OPTIONS] HOST
364 echo
365 echo Options: [defaults in brackets]
366 echo ' --prefix=MYDIR configure for installation of host independent files into MYDIR. ["/usr/local"]'
367 echo ' --exec-prefix=MYDIR configure for installation of host dependent files into MYDIR. ["/usr/local"]'
368 echo ' --help print this message. [normal config]'
369 echo ' --build=BUILD configure for building on BUILD. [BUILD=HOST]'
370 echo ' --host=HOST configure for HOST. [determined via config.guess]'
371 echo ' --norecursion configure this directory only. [recurse]'
372 echo ' --program-prefix=FOO install programs with FOO prepended to their names. [ "" ]'
373 echo ' --program-suffix=FOO install programs with FOO appended to their names. [ "" ]'
374 echo ' --program-transform-name=FOO install programs with names transformed by sed pattern FOO. [ "" ]'
375 echo ' --site=SITE configure with site specific makefile for SITE'
376 echo ' --srcdir=DIR find the sources in DIR. ["." or ".."]'
377 echo ' --target=TARGET configure for TARGET. [TARGET = HOST]'
378 echo ' --tmpdir=TMPDIR create temporary files in TMPDIR. [ TMPDIR = "/tmp" ]'
379 echo ' --nfp configure the compilers default to soft floating point. [hard float]'
380 echo ' --with-FOO, --with-FOO=BAR package FOO is available (parameter BAR)'
381 echo ' --without-FOO package FOO is NOT available'
382 echo ' --enable-FOO, --enable-FOO=BAR include feature FOO (parameter BAR)'
383 echo ' --disable-FOO do not include feature FOO'
384 echo
385 echo 'Where HOST and TARGET are something like "sun4", "decstation", "encore", etc.'
386 echo
387 if [ -r config.status ] ; then
388 cat config.status
389 fi
390
391 exit 1
392 fi
393
394 configsub=`echo ${progname} | sed 's/configure$/config.sub/'`
395 moveifchange=`echo ${progname} | sed 's/configure$/move-if-change/'`
396
397 # this is a hack. sun4 must always be a valid host alias or this will fail.
398 if ${configsub} sun4 >/dev/null 2>&1 ; then
399 true
400 else
401 echo '***' cannot find config.sub. 1>&2
402 exit 1
403 fi
404
405 touch config.junk
406 if ${moveifchange} config.junk config.trash ; then
407 true
408 else
409 echo '***' cannot find move-if-change. 1>&2
410 exit 1
411 fi
412 rm -f config.junk config.trash
413
414 case "${srcdir}" in
415 "")
416 if [ -r configure.in ] ; then
417 srcdir=.
418 else
419 if [ -r ${progname}.in ] ; then
420 srcdir=`echo ${progname} | sed 's:/configure$::'`
421 else
422 echo '***' "Can't find configure.in. Try using --srcdir=some_dir" 1>&2
423 exit 1
424 fi
425 fi
426 ;;
427 *) ;;
428 esac
429
430 ### warn about some conflicting configurations.
431
432 case "${srcdir}" in
433 ".") ;;
434 *)
435 if [ -f ${srcdir}/config.status ] ; then
436 echo '***' Cannot configure here in \"${PWD=`pwd`}\" when \"${srcdir}\" is currently configured. 1>&2
437 exit 1
438 fi
439 esac
440
441 # default exec_prefix
442 case "${exec_prefix}" in
443 "") exec_prefix="\$(prefix)" ;;
444 *) ;;
445 esac
446
447 ### break up ${srcdir}/configure.in.
448 case "`grep '^# per\-host:' ${srcdir}/configure.in`" in
449 "")
450 echo '***' ${srcdir}/configure.in has no \"per-host:\" line. 1>&2
451 exit 1
452 ;;
453 *) ;;
454 esac
455
456 case "`grep '^# per\-target:' ${srcdir}/configure.in`" in
457 "")
458 echo '***' ${srcdir}/configure.in has no \"per-target:\" line. 1>&2
459 exit 1
460 ;;
461 *) ;;
462 esac
463
464 case "${TMPDIR}" in
465 "") TMPDIR=/tmp ; export TMPDIR ;;
466 *) ;;
467 esac
468
469 # keep this filename short for &%*%$*# 14 char file names
470 tmpfile=${TMPDIR}/cONf$$
471 trap "rm -f ${tmpfile}.com ${tmpfile}.tgt ${tmpfile}.hst ${tmpfile}.pos" 0
472
473 # split ${srcdir}/configure.in into common, per-host, per-target,
474 # and post-target parts. Post-target is optional.
475 sed -e '/^# per\-host:/,$d' ${srcdir}/configure.in > ${tmpfile}.com
476 sed -e '1,/^# per\-host:/d' -e '/^# per\-target:/,$d' ${srcdir}/configure.in > ${tmpfile}.hst
477 if grep '^# post-target:' ${srcdir}/configure.in >/dev/null ; then
478 sed -e '1,/^# per\-target:/d' -e '/^# post\-target:/,$d' ${srcdir}/configure.in > ${tmpfile}.tgt
479 sed -e '1,/^# post\-target:/d' ${srcdir}/configure.in > ${tmpfile}.pos
480 else
481 sed -e '1,/^# per\-target:/d' ${srcdir}/configure.in > ${tmpfile}.tgt
482 echo >${tmpfile}.pos
483 fi
484
485 ### do common part of configure.in
486
487 . ${tmpfile}.com
488
489 # some sanity checks on configure.in
490 case "${srctrigger}" in
491 "")
492 echo '***' srctrigger not set in ${PWD=`pwd`}/configure.in. 1>&2
493 exit 1
494 ;;
495 *) ;;
496 esac
497
498 case "${build_alias}" in
499 "") ;;
500 *)
501 result=`${configsub} ${build_alias}`
502 buildopt="--build=${build_alias}"
503 build_cpu=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
504 build_vendor=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
505 build_os=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
506 build=${build_cpu}-${build_vendor}-${build_os}
507 ;;
508 esac
509
510 result=`${configsub} ${host_alias}`
511 host_cpu=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
512 host_vendor=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
513 host_os=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
514 host=${host_cpu}-${host_vendor}-${host_os}
515
516 . ${tmpfile}.hst
517
518 result=`${configsub} ${target_alias}`
519 target_cpu=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
520 target_vendor=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
521 target_os=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
522 target=${target_cpu}-${target_vendor}-${target_os}
523
524 . ${tmpfile}.tgt
525
526 # Find the source files, if location was not specified.
527 case "${srcdir}" in
528 "")
529 srcdirdefaulted=1
530 srcdir=.
531 if [ ! -r ${srctrigger} ] ; then
532 srcdir=..
533 fi
534 ;;
535 *) ;;
536 esac
537
538 if [ ! -r ${srcdir}/${srctrigger} ] ; then
539 case "${srcdirdefaulted}" in
540 "") echo '***' "${progname}: Can't find ${srcname} sources in ${PWD=`pwd`}/${srcdir}" 1>&2 ;;
541 *) echo '***' "${progname}: Can't find ${srcname} sources in ${PWD=`pwd`}/. or ${PWD=`pwd`}/.." 1>&2 ;;
542 esac
543
544 echo '***' \(At least ${srctrigger} is missing.\) 1>&2
545 exit 1
546 fi
547
548 # Some systems (e.g., one of the i386-aix systems the gas testers are
549 # using) don't handle "\$" correctly, so don't use it here.
550 tooldir='$(exec_prefix)'/${target_alias}
551
552 if [ "${host_alias}" != "${target_alias}" ] ; then
553 if [ "${program_prefixoption}" = "" ] ; then
554 if [ "${program_suffixoption}" = "" ] ; then
555 if [ "${program_transform_nameoption}" = "" ] ; then
556 program_prefix=${target_alias}- ;
557 fi
558 fi
559 fi
560 fi
561
562 # Merge program_prefix and program_suffix onto program_transform_name
563 # Use a double $ so that make ignores it
564 if [ "${program_suffix}" != "" ] ; then
565 program_transform_name="-e s,\$\$,${program_suffix}, ${program_transform_name}"
566 fi
567
568 if [ "${program_prefix}" != "" ] ; then
569 program_transform_name="-e s,^,${program_prefix}, ${program_transform_name}"
570 fi
571
572 for subdir in . ${subdirs} ; do
573
574 # ${subdir} is relative path from . to the directory we're currently
575 # configuring.
576 # ${invsubdir} is inverse of ${subdir), *with* trailing /, if needed.
577 invsubdir=`echo ${subdir}/ | sed -e 's|\./||g' -e 's|[^/]*/|../|g'`
578
579 ### figure out what to do with srcdir
580 case "${srcdir}" in
581 ".") # no -srcdir option. We're building in place.
582 makesrcdir=. ;;
583 /*) # absolute path
584 makesrcdir=`echo ${srcdir}/${subdir} | sed -e 's|/\.$||'`
585 ;;
586 *) # otherwise relative
587 case "${subdir}" in
588 .) makesrcdir=${srcdir} ;;
589 *) makesrcdir=${invsubdir}${srcdir}/${subdir} ;;
590 esac
591 ;;
592 esac
593
594 if [ "${subdir}/" != "./" ] ; then
595 Makefile=${subdir}/Makefile
596 fi
597
598 if [ ! -d ${subdir} ] ; then
599 if mkdir ${subdir} ; then
600 true
601 else
602 echo '***' "${progname}: could not make ${PWD=`pwd`}/${subdir}" 1>&2
603 exit 1
604 fi
605 fi
606
607 case "${removing}" in
608 "")
609 case "${subdir}" in
610 .) ;;
611 *) eval echo Building in ${subdir} ${redirect} ;;
612 esac
613
614 # FIXME Should this be done recursively ??? (Useful for e.g. gdbtest)
615 # Set up the list of links to be made.
616 # ${links} is the list of link names, and ${files} is the list of names to link to.
617
618 # Make the links.
619 configlinks="${links}"
620 if [ -r ${subdir}/config.status ] ; then
621 mv -f ${subdir}/config.status ${subdir}/config.back
622 fi
623 while [ -n "${files}" ] ; do
624 # set file to car of files, files to cdr of files
625 set ${files}; file=$1; shift; files=$*
626 set ${links}; link=$1; shift; links=$*
627
628 if [ ! -r ${srcdir}/${file} ] ; then
629 echo '***' "${progname}: cannot create a link \"${link}\"," 1>&2
630 echo '***' "since the file \"${srcdir}/${file}\" does not exist." 1>&2
631 exit 1
632 fi
633
634 ${remove} -f ${link}
635 # Make a symlink if possible, otherwise try a hard link
636 if ${symbolic_link} ${srcdir}/${file} ${link} >/dev/null 2>&1 ; then
637 true
638 else
639 # We need to re-remove the file because Lynx leaves a
640 # very strange directory there when it fails an NFS symlink.
641 ${remove} -r -f ${link}
642 ${hard_link} ${srcdir}/${file} ${link}
643 fi
644 if [ ! -r ${link} ] ; then
645 echo '***' "${progname}: unable to link \"${link}\" to \"${srcdir}/${file}\"." 1>&2
646 exit 1
647 fi
648
649 echo "Linked \"${link}\" to \"${srcdir}/${file}\"."
650 done
651
652 # Create a .gdbinit file which runs the one in srcdir
653 # and tells GDB to look there for source files.
654
655 if [ -r ${srcdir}/${subdir}/.gdbinit ] ; then
656 case ${srcdir} in
657 .) ;;
658 *) cat > ${subdir}/.gdbinit <<EOF
659 # ${NO_EDIT}
660 dir .
661 dir ${makesrcdir}
662 source ${makesrcdir}/.gdbinit
663 EOF
664 ;;
665 esac
666 fi
667
668 # Install a makefile, and make it set VPATH
669 # if necessary so that the sources are found.
670 # Also change its value of srcdir.
671 # NOTE: Makefile generation constitutes the majority of the time in configure. Hence, this section has
672 # been somewhat optimized and is perhaps a bit twisty.
673
674 # code is order so as to try to sed the smallest input files we know.
675
676 # the four makefile fragments MUST end up in the resulting Makefile in this order:
677 # package, target, host, and site. so do these separately because I don't trust the
678 # order of sed -e expressions.
679
680 if [ -f ${srcdir}/${subdir}/${Makefile_in} ] ; then
681
682 # Conditionalize for this site from "Makefile.in" (or whatever it's called) into Makefile.tem
683 rm -f ${subdir}/Makefile.tem
684 case "${site}" in
685 "") cp ${srcdir}/${subdir}/${Makefile_in} ${subdir}/Makefile.tem ;;
686 *)
687 site_makefile_frag=${srcdir}/config/ms-${site}
688
689 if [ -f ${site_makefile_frag} ] ; then
690 sed -e "/^####/ r ${site_makefile_frag}" ${srcdir}/${subdir}/${Makefile_in} \
691 > ${subdir}/Makefile.tem
692 else
693 cp ${srcdir}/${subdir}/${Makefile_in} ${subdir}/Makefile.tem
694 site_makefile_frag=
695 fi
696 ;;
697 esac
698 # working copy now in ${subdir}/Makefile.tem
699
700 # Conditionalize the makefile for this host.
701 rm -f ${Makefile}
702 case "${host_makefile_frag}" in
703 "") mv ${subdir}/Makefile.tem ${Makefile} ;;
704 *)
705 if [ ! -f ${host_makefile_frag} ] ; then
706 host_makefile_frag=${srcdir}/${host_makefile_frag}
707 fi
708 if [ -f ${host_makefile_frag} ] ; then
709 sed -e "/^####/ r ${host_makefile_frag}" ${subdir}/Makefile.tem > ${Makefile}
710 else
711 echo '***' Expected host makefile fragment \"${host_makefile_frag}\" 1>&2
712 echo '***' is missing in ${PWD=`pwd`}. 1>&2
713 mv ${subdir}/Makefile.tem ${Makefile}
714 fi
715 esac
716 # working copy now in ${Makefile}
717
718 # Conditionalize the makefile for this target.
719 rm -f ${subdir}/Makefile.tem
720 case "${target_makefile_frag}" in
721 "") mv ${Makefile} ${subdir}/Makefile.tem ;;
722 *)
723 if [ ! -f ${target_makefile_frag} ] ; then
724 target_makefile_frag=${srcdir}/${target_makefile_frag}
725 fi
726 if [ -f ${target_makefile_frag} ] ; then
727 sed -e "/^####/ r ${target_makefile_frag}" ${Makefile} > ${subdir}/Makefile.tem
728 else
729 mv ${Makefile} ${subdir}/Makefile.tem
730 target_makefile_frag=
731 fi
732 ;;
733 esac
734 # real copy now in ${subdir}/Makefile.tem
735
736 # Conditionalize the makefile for this package.
737 rm -f ${Makefile}
738 case "${package_makefile_frag}" in
739 "") mv ${subdir}/Makefile.tem ${Makefile} ;;
740 *)
741 if [ ! -f ${package_makefile_frag} ] ; then
742 package_makefile_frag=${srcdir}/${package_makefile_frag}
743 fi
744 if [ -f ${package_makefile_frag} ] ; then
745 sed -e "/^####/ r ${package_makefile_frag}" ${subdir}/Makefile.tem > ${Makefile}
746 else
747 echo '***' Expected package makefile fragment \"${package_makefile_frag}\" 1>&2
748 echo '***' is missing in ${PWD=`pwd`}. 1>&2
749 mv ${subdir}/Makefile.tem ${Makefile}
750 fi
751 esac
752 # working copy now in ${Makefile}
753
754 mv ${Makefile} ${subdir}/Makefile.tem
755
756 # real copy now in ${subdir}/Makefile.tem
757
758 # Remove patch suffixes from host name.
759 # See similar code in configure.in.
760 # Example: 'sparc-sun-sunos4.1.3_U1'
761 host_osnop=`echo ${host_os} | sed '/sunos/s/_U1//'`
762
763 # prepend warning about editting, and a bunch of variables.
764 rm -f ${Makefile}
765 cat > ${Makefile} <<EOF
766 # ${NO_EDIT}
767 VPATH = ${makesrcdir}
768 links = ${configlinks}
769 host_alias = ${host_alias}
770 host_cpu = ${host_cpu}
771 host_vendor = ${host_vendor}
772 host_os = ${host_os}
773 host_canonical = ${host_cpu}-${host_vendor}-${host_osnop}
774 target_alias = ${target_alias}
775 target_cpu = ${target_cpu}
776 target_vendor = ${target_vendor}
777 target_os = ${target_os}
778 target_canonical = ${target_cpu}-${target_vendor}-${target_os}
779 EOF
780 case "${build}" in
781 "") ;;
782 *) build_osnop=`echo ${build_os} | sed '/sunos/s/_U1//'`
783 cat >> ${Makefile} << EOF
784 build_alias = ${build_alias}
785 build_cpu = ${build_cpu}
786 build_vendor = ${build_vendor}
787 build_os = ${build_os}
788 build_canonical = ${build_cpu}-${build_vendor}-${build_osnop}
789 EOF
790 esac
791
792 case "${package_makefile_frag}" in
793 "") ;;
794 /*) echo package_makefile_frag = ${package_makefile_frag} >>${Makefile} ;;
795 *) echo package_makefile_frag = ${invsubdir}${package_makefile_frag} >>${Makefile} ;;
796 esac
797
798 case "${target_makefile_frag}" in
799 "") ;;
800 /*) echo target_makefile_frag = ${target_makefile_frag} >>${Makefile} ;;
801 *) echo target_makefile_frag = ${invsubdir}${target_makefile_frag} >>${Makefile} ;;
802 esac
803
804 case "${host_makefile_frag}" in
805 "") ;;
806 /*) echo host_makefile_frag = ${host_makefile_frag} >>${Makefile} ;;
807 *) echo host_makefile_frag = ${invsubdir}${host_makefile_frag} >>${Makefile} ;;
808 esac
809
810 if [ "${site_makefile_frag}" != "" ] ; then
811 echo site_makefile_frag = ${invsubdir}${site_makefile_frag} >>${Makefile}
812 fi
813
814 # make sure that some sort of reasonable default exists for these
815 # two variables
816 CXX=${CXX-"g++ -O"}
817 CC=${CC-cc}
818
819 # reset prefix, exec_prefix, srcdir, SUBDIRS, NONSUBDIRS,
820 # remove any form feeds.
821 if [ -z "${subdirs}" ]; then
822 rm -f ${subdir}/Makefile.tem2
823 sed -e "s:^SUBDIRS[ ]*=.*$:SUBDIRS = ${configdirs}:" \
824 -e "s:^NONSUBDIRS[ ]*=.*$:NONSUBDIRS = ${noconfigdirs}:" \
825 ${subdir}/Makefile.tem > ${subdir}/Makefile.tem2
826 rm -f ${subdir}/Makefile.tem
827 mv ${subdir}/Makefile.tem2 ${subdir}/Makefile.tem
828 fi
829 sed -e "s:^prefix[ ]*=.*$:prefix = ${prefix}:" \
830 -e "s:^exec_prefix[ ]*=.*$:exec_prefix = ${exec_prefix}:" \
831 -e "s:^SHELL[ ]*=.*$:SHELL = ${config_shell}:" \
832 -e "s:^srcdir[ ]*=.*$:srcdir = ${makesrcdir}:" \
833 -e "s/\f//" \
834 -e "s:^program_prefix[ ]*=.*$:program_prefix = ${program_prefix}:" \
835 -e "s:^program_suffix[ ]*=.*$:program_suffix = ${program_suffix}:" \
836 -e "s:^program_transform_name[ ]*=.*$:program_transform_name = ${program_transform_name}:" \
837 -e "s:^tooldir[ ]*=.*$:tooldir = ${tooldir}:" \
838 ${subdir}/Makefile.tem >> ${Makefile}
839 # final copy now in ${Makefile}
840
841 else
842 echo "No Makefile.in found in ${srcdir}/${subdir}, unable to configure" 1>&2
843 fi
844
845 rm -f ${subdir}/Makefile.tem
846
847 case "${host_makefile_frag}" in
848 "") using= ;;
849 *) using="and \"${host_makefile_frag}\"" ;;
850 esac
851
852 case "${target_makefile_frag}" in
853 "") ;;
854 *) using="${using} and \"${target_makefile_frag}\"" ;;
855 esac
856
857 case "${site_makefile_frag}" in
858 "") ;;
859 *) using="${using} and \"${site_makefile_frag}\"" ;;
860 esac
861
862 newusing=`echo "${using}" | sed 's/and/using/'`
863 using=${newusing}
864 echo "Created \"${Makefile}\" in" ${PWD=`pwd`} ${using}
865
866 . ${tmpfile}.pos
867
868 # describe the chosen configuration in config.status.
869 # Make that file a shellscript which will reestablish
870 # the same configuration. Used in Makefiles to rebuild
871 # Makefiles.
872
873 case "${norecursion}" in
874 "") arguments="${arguments} --norecursion" ;;
875 *) ;;
876 esac
877
878 if [ ${subdir} = . ] ; then
879 echo "#!/bin/sh
880 # ${NO_EDIT}
881 # This directory was configured as follows:
882 ${progname}" ${arguments} "
883 # ${using}" > ${subdir}/config.new
884 else
885 echo "#!/bin/sh
886 # ${NO_EDIT}
887 # This directory was configured as follows:
888 cd ${invsubdir}
889 ${progname}" ${arguments} "
890 # ${using}" > ${subdir}/config.new
891 fi
892 chmod a+x ${subdir}/config.new
893 if [ -r ${subdir}/config.back ] ; then
894 mv -f ${subdir}/config.back ${subdir}/config.status
895 fi
896 ${moveifchange} ${subdir}/config.new ${subdir}/config.status
897 ;;
898
899 *) rm -f ${Makefile} ${subdir}/config.status ${links} ;;
900 esac
901 done
902
903 # If there are subdirectories, then recur.
904 if [ -z "${norecursion}" -a -n "${configdirs}" ] ; then
905 for configdir in ${configdirs} ; do
906
907 if [ -d ${srcdir}/${configdir} ] ; then
908 eval echo Configuring ${configdir}... ${redirect}
909 case "${srcdir}" in
910 ".") ;;
911 *)
912 if [ ! -d ./${configdir} ] ; then
913 if mkdir ./${configdir} ; then
914 true
915 else
916 echo '***' "${progname}: could not make ${PWD=`pwd`}/${configdir}" 1>&2
917 exit 1
918 fi
919 fi
920 ;;
921 esac
922
923 POPDIR=${PWD=`pwd`}
924 cd ${configdir}
925
926 ### figure out what to do with srcdir
927 case "${srcdir}" in
928 ".") newsrcdir=${srcdir} ;; # no -srcdir option. We're building in place.
929 /*) # absolute path
930 newsrcdir=${srcdir}/${configdir}
931 srcdiroption="--srcdir=${newsrcdir}"
932 ;;
933 *) # otherwise relative
934 newsrcdir=../${srcdir}/${configdir}
935 srcdiroption="--srcdir=${newsrcdir}"
936 ;;
937 esac
938
939 ### check for guested configure, otherwise fix possibly relative progname
940 if [ -f ${newsrcdir}/configure ] ; then
941 recprog=${newsrcdir}/configure
942 elif [ -f ${newsrcdir}/configure.in ] ; then
943 case "${progname}" in
944 /*) recprog=${progname} ;;
945 *) recprog=../${progname} ;;
946 esac
947 else
948 eval echo No configuration information in ${configdir} ${redirect}
949 recprog=
950 fi
951
952 ### The recursion line is here.
953 if [ ! -z "${recprog}" ] ; then
954 if eval ${config_shell} ${recprog} ${verbose} ${buildopt} --host=${host_alias} --target=${target_alias} \
955 ${prefixoption} ${tmpdiroption} ${exec_prefixoption} \
956 ${srcdiroption} ${program_prefixoption} ${program_suffixoption} ${program_transform_nameoption} ${site_option} ${withoptions} ${withoutoptions} ${enableoptions} ${disableoptions} ${removing} ${other_options} ${redirect} ; then
957 true
958 else
959 echo Configure in `pwd` failed, exiting. 1>&2
960 exit 1
961 fi
962 fi
963
964 cd ${POPDIR}
965 fi
966 done
967 fi
968
969 exit 0
970
971 #
972 # Local Variables:
973 # fill-column: 131
974 # End:
975 #
976
977 # end of configure
This page took 0.065835 seconds and 5 git commands to generate.