]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/configure
Makefile.in (INCLUDES): Include "-I.." for libiberty/alloca-conf.h.
[thirdparty/binutils-gdb.git] / gas / configure
CommitLineData
b11fb939 1#!/bin/sh
fb589130 2
b11fb939 3# Guess values for system-dependent variables and create Makefiles.
fb589130 4# Generated automatically using autoconf version 1.109
b11fb939
KR
5# Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
6#
7# This configure script is free software; you can redistribute it and/or
8# modify it under the terms of the GNU General Public License as published
9# by the Free Software Foundation; either version 2, or (at your option)
10# any later version.
11#
12# This script is distributed in the hope that it will be useful, but
13# WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
15# Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20
21ac_help=
22ac_help="${ac_help}
23 bfd-assembler use BFD back end for writing object files"
24# Save the original args to write them into config.status later.
25configure_args="$@"
26
27# Omit some internal, obsolete, or unimplemented options to make the
28# list less imposing.
29ac_usage="Usage: configure [options] [host]
30Options: [defaults in brackets after descriptions]
31Configuration:
32 --cache-file=FILE cache test results in FILE
33 --help print this message
34 --no-create do not create output files
35 --quiet, --silent do not print \`checking...' messages
36 --version print the version of autoconf that created configure
37Directories:
38 --exec-prefix=PREFIX install host dependent files in PREFIX [/usr/local]
39 --prefix=PREFIX install host independent files in PREFIX [/usr/local]
40 --srcdir=DIR find the sources in DIR [configure dir or ..]
41Host type:
42 --build=BUILD configure for building on BUILD [BUILD=HOST]
43 --host=HOST configure for HOST [guessed]
44 --target=TARGET configure for TARGET [TARGET=HOST]
45Features and packages:
46 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
47 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
48 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
49 --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
50 --x-includes=DIR X include files are in DIR
51 --x-libraries=DIR X library files are in DIR
52--enable and --with options recognized:$ac_help"
53
54# Initialize some variables set by options.
55# The variables have the same names as the options, with
56# dashes changed to underlines.
57build=NONE
58cache_file=./config.cache
59exec_prefix=NONE
60host=NONE
61no_create=
62nonopt=NONE
63norecursion=
64prefix=NONE
65program_prefix=
66program_suffix=
67program_transform_name=
68silent=
69srcdir=
70target=NONE
71verbose=
72x_includes=NONE
73x_libraries=NONE
74
75# Initialize some other variables.
76subdirs=
77
78ac_prev=
79for ac_option
80do
81
82 # If the previous option needs an argument, assign it.
83 if test -n "$ac_prev"; then
84 eval "$ac_prev=\$ac_option"
85 ac_prev=
86 continue
87 fi
88
89 case "$ac_option" in
90 -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
91 *) ac_optarg= ;;
92 esac
93
94 # Accept (but ignore some of) the important Cygnus configure
95 # options, so we can diagnose typos.
96
97 case "$ac_option" in
98
99 -build | --build | --buil | --bui | --bu | --b)
100 ac_prev=build ;;
101 -build=* | --build=* | --buil=* | --bui=* | --bu=* | --b=*)
102 build="$ac_optarg" ;;
103
104 -cache-file | --cache-file | --cache-fil | --cache-fi \
105 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
106 ac_prev=cache_file ;;
107 -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
108 | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
109 cache_file="$ac_optarg" ;;
110
111 -disable-* | --disable-*)
112 ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
113 # Reject names that are not valid shell variable names.
114 if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
115 { echo "configure: $ac_feature: invalid feature name" 1>&2; exit 1; }
116 fi
117 ac_feature=`echo $ac_feature| sed 's/-/_/g'`
118 eval "enable_${ac_feature}=no" ;;
119
120 -enable-* | --enable-*)
121 ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
122 # Reject names that are not valid shell variable names.
123 if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
124 { echo "configure: $ac_feature: invalid feature name" 1>&2; exit 1; }
125 fi
126 ac_feature=`echo $ac_feature| sed 's/-/_/g'`
127 case "$ac_option" in
128 *=*) ;;
129 *) ac_optarg=yes ;;
130 esac
131 eval "enable_${ac_feature}='$ac_optarg'" ;;
132
133 -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
134 | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
135 | --exec | --exe | --ex)
136 ac_prev=exec_prefix ;;
137 -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
138 | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
139 | --exec=* | --exe=* | --ex=*)
140 exec_prefix="$ac_optarg" ;;
141
142 -gas | --gas | --ga | --g)
143 # Obsolete; use --with-gas.
144 with_gas=yes ;;
145
146 -help | --help | --hel | --he)
147 cat << EOF
148$ac_usage
149EOF
150 exit 0 ;;
151
152 -host | --host | --hos | --ho)
153 ac_prev=host ;;
154 -host=* | --host=* | --hos=* | --ho=*)
155 host="$ac_optarg" ;;
156
157 -nfp | --nfp | --nf)
158 # Obsolete; use --without-fp.
159 with_fp=no ;;
160
161 -no-create | --no-create | --no-creat | --no-crea | --no-cre \
162 | --no-cr | --no-c)
163 no_create=yes ;;
164
165 -norecursion | --norecursion | --norecursio | --norecursi \
166 | --norecurs | --norecur | --norecu | --norec | --nore | --nor)
167 norecursion=yes ;;
168
169 -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
170 ac_prev=prefix ;;
171 -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
172 prefix="$ac_optarg" ;;
173
174 -program-prefix | --program-prefix | --program-prefi | --program-pref \
175 | --program-pre | --program-pr | --program-p)
176 ac_prev=program_prefix ;;
177 -program-prefix=* | --program-prefix=* | --program-prefi=* \
178 | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
179 program_prefix="$ac_optarg" ;;
180
181 -program-suffix | --program-suffix | --program-suffi | --program-suff \
182 | --program-suf | --program-su | --program-s)
183 ac_prev=program_suffix ;;
184 -program-suffix=* | --program-suffix=* | --program-suffi=* \
185 | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
186 program_suffix="$ac_optarg" ;;
187
188 -program-transform-name | --program-transform-name \
189 | --program-transform-nam | --program-transform-na \
190 | --program-transform-n | --program-transform- \
191 | --program-transform | --program-transfor \
192 | --program-transfo | --program-transf \
193 | --program-trans | --program-tran \
194 | --progr-tra | --program-tr | --program-t)
195 ac_prev=program_transform_name ;;
196 -program-transform-name=* | --program-transform-name=* \
197 | --program-transform-nam=* | --program-transform-na=* \
198 | --program-transform-n=* | --program-transform-=* \
199 | --program-transform=* | --program-transfor=* \
200 | --program-transfo=* | --program-transf=* \
201 | --program-trans=* | --program-tran=* \
202 | --progr-tra=* | --program-tr=* | --program-t=*)
203 program_transform_name="$ac_optarg" ;;
204
205 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
206 | -silent | --silent | --silen | --sile | --sil)
207 silent=yes ;;
208
209 -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
210 ac_prev=srcdir ;;
211 -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
212 srcdir="$ac_optarg" ;;
213
214 -target | --target | --targe | --targ | --tar | --ta | --t)
215 ac_prev=target ;;
216 -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
217 target="$ac_optarg" ;;
218
219 -v | -verbose | --verbose | --verbos | --verbo | --verb)
220 verbose=yes ;;
221
222 -version | --version | --versio | --versi | --vers)
fb589130 223 echo "configure generated by autoconf version 1.109"
b11fb939
KR
224 exit 0 ;;
225
226 -with-* | --with-*)
227 ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
228 # Reject names that are not valid shell variable names.
229 if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
230 { echo "configure: $ac_package: invalid package name" 1>&2; exit 1; }
231 fi
232 ac_package=`echo $ac_package| sed 's/-/_/g'`
233 case "$ac_option" in
234 *=*) ;;
235 *) ac_optarg=yes ;;
236 esac
237 eval "with_${ac_package}='$ac_optarg'" ;;
238
239 -without-* | --without-*)
240 ac_package=`echo $ac_option|sed -e 's/-*without-//'`
241 # Reject names that are not valid shell variable names.
242 if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
243 { echo "configure: $ac_package: invalid package name" 1>&2; exit 1; }
244 fi
245 ac_package=`echo $ac_package| sed 's/-/_/g'`
246 eval "with_${ac_package}=no" ;;
247
248 --x)
249 # Obsolete; use --with-x.
250 with_x=yes ;;
251
252 -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
253 | --x-incl | --x-inc | --x-in | --x-i)
254 ac_prev=x_includes ;;
255 -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
256 | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
257 x_includes="$ac_optarg" ;;
258
259 -x-libraries | --x-libraries | --x-librarie | --x-librari \
260 | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
261 ac_prev=x_libraries ;;
262 -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
263 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
264 x_libraries="$ac_optarg" ;;
265
266 -*) { echo "configure: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; }
267 ;;
268
269 *)
270 if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
271 echo "configure: warning: $ac_option: invalid host type" 1>&2
272 fi
273 if test "x$nonopt" != xNONE; then
274 { echo "configure: can only configure for one host and one target at a time" 1>&2; exit 1; }
275 fi
276 nonopt="$ac_option"
277 ;;
278
279 esac
280done
281
282if test -n "$ac_prev"; then
283 { echo "configure: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
284fi
285
286trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
287trap 'rm -fr confdefs* $ac_clean_files' 0
288
289# File descriptor usage:
290# 0 unused; standard input
291# 1 file creation
292# 2 errors and warnings
293# 3 unused; some systems may open it to /dev/tty
294# 4 checking for... messages and results
295# 5 compiler messages saved in config.log
296if test "$silent" = yes; then
297 exec 4>/dev/null
298else
299 exec 4>&1
300fi
301exec 5>./config.log
302
303echo "\
304This file contains any messages produced by compilers while
305running configure, to aid debugging if configure makes a mistake.
306" 1>&5
307
308# Save the original args if we used an alternate arg parser.
309ac_configure_temp="${configure_args-$@}"
310# Strip out --no-create and --norecursion so they do not pile up.
311# Also quote any args containing spaces.
312configure_args=
313for ac_arg in $ac_configure_temp; do
314 case "$ac_arg" in
315 -no-create | --no-create | --no-creat | --no-crea | --no-cre \
316 | --no-cr | --no-c) ;;
317 -norecursion | --norecursion | --norecursio | --norecursi \
318 | --norecurs | --norecur | --norecu | --norec | --nore | --nor) ;;
319 *[" "]*) configure_args="$configure_args '$ac_arg'" ;;
320 *) configure_args="$configure_args $ac_arg" ;;
321 esac
322done
323
324# NLS nuisances.
325# Only set LANG and LC_ALL to C if already set.
326# These must not be set unconditionally because not all systems understand
327# e.g. LANG=C (notably SCO).
328if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
329if test "${LANG+set}" = set; then LANG=C; export LANG; fi
330
331# confdefs.h avoids OS command line length limits that DEFS can exceed.
332rm -rf conftest* confdefs.h
333# AIX cpp loses on an empty file, so make sure it contains at least a newline.
334echo > confdefs.h
335
336# A filename unique to this package, relative to the directory that
337# configure is in, which we can look for to find out if srcdir is correct.
338ac_unique_file=as.h
339
340# Find the source files, if location was not specified.
341if test -z "$srcdir"; then
342 ac_srcdir_defaulted=yes
343 # Try the directory containing this script, then its parent.
344 ac_prog=$0
345 ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
346 test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
347 srcdir=$ac_confdir
348 if test ! -r $srcdir/$ac_unique_file; then
349 srcdir=..
350 fi
351else
352 ac_srcdir_defaulted=no
353fi
354if test ! -r $srcdir/$ac_unique_file; then
355 if test "$ac_srcdir_defaulted" = yes; then
356 { echo "configure: can not find sources in ${ac_confdir} or .." 1>&2; exit 1; }
357 else
358 { echo "configure: can not find sources in ${srcdir}" 1>&2; exit 1; }
359 fi
360fi
361
362# Prefer explicitly selected file to automatically selected ones.
363if test ! -r "$CONFIG_SITE"; then
364 if test "x$prefix" != xNONE; then
365 CONFIG_SITE=$prefix/lib/config.site
366 else
367 CONFIG_SITE=/usr/local/lib/config.site
368 fi
369 # System dependent files override system independent ones.
370 if test "x$exec_prefix" != xNONE && test "x$exec_prefix" != "x$prefix"; then
371 CONFIG_SITE="$CONFIG_SITE $exec_prefix/lib/config.site"
372 fi
373fi
374for ac_site_file in $CONFIG_SITE; do
375 if test -r "$ac_site_file"; then
376 echo "loading site script $ac_site_file"
377 . "$ac_site_file"
378 fi
379done
380
381if test -r "$cache_file"; then
382 echo "loading cache $cache_file"
383 . $cache_file
384else
385 echo "creating cache $cache_file"
386 > $cache_file
387fi
388
389ac_ext=c
390# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
391ac_cpp='${CPP} $CPPFLAGS'
392ac_compile='${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS conftest.${ac_ext} -o conftest $LIBS 1>&5 2>&5'
393
394
bdee23af 395bfd_gas=no
b11fb939
KR
396# Check whether --enable-bfd-assembler or --disable-bfd-assembler was given.
397enableval="$enable_bfd_assembler"
398if test -n "$enableval"; then
399 case "${enableval}" in
400 yes) need_bfd=yes bfd_gas=yes ;;
401 no) ;;
402 *) { echo "configure: bad value ${enableval} given for bfd-assembler option" 1>&2; exit 1; } ;;
403esac
404fi
405
406# Generate a header file -- gets more post-processing by Makefile later.
407
408
409ac_aux_dir=
410for ac_dir in `cd $srcdir;pwd`/.. ${srcdir}/`cd $srcdir;pwd`/..; do
411 if test -f $ac_dir/install.sh; then
412 ac_aux_dir=$ac_dir; break
413 fi
414done
415if test -z "$ac_aux_dir"; then
416 { echo "configure: can not find install.sh in `cd $srcdir;pwd`/.. ${srcdir}/`cd $srcdir;pwd`/.." 1>&2; exit 1; }
417fi
418ac_config_guess=${ac_aux_dir}/config.guess
419ac_config_sub=${ac_aux_dir}/config.sub
420ac_configure=${ac_aux_dir}/configure # This should be Cygnus configure.
421ac_install_sh="${ac_aux_dir}/install.sh -c"
422
fb589130
KR
423if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
424 # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu.
425 if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
426 ac_n= ac_c='
427' ac_t=' '
428 else
429 ac_n=-n ac_c= ac_t=
430 fi
431else
432 ac_n= ac_c='\c' ac_t=
433fi
434
b11fb939
KR
435# Do some error checking and defaulting for the host and target type.
436# The inputs are:
437# configure --host=HOST --target=TARGET --build=BUILD NONOPT
438#
439# The rules are:
440# 1. You are not allowed to specify --host, --target, and nonopt at the
441# same time.
442# 2. Host defaults to nonopt.
443# 3. If nonopt is not specified, then host defaults to the current host,
444# as determined by config.guess.
445# 4. Target defaults to nonopt.
446# 5. If nonopt is not specified, then target defaults to host.
447# 6. build defaults to empty (but implicitly to host).
448
449# The aliases save the names the user supplied, while $host etc.
450# will get canonicalized.
451case $host---$target---$nonopt in
452NONE---*---* | *---NONE---* | *---*---NONE) ;;
453*) { echo "configure: can only configure for one host and one target at a time" 1>&2; exit 1; } ;;
454esac
455
456# Make sure we can run config.sub.
457if ${ac_config_sub} sun4 >/dev/null 2>&1; then :
458else { echo "configure: can not run ${ac_config_sub}" 1>&2; exit 1; }
459fi
460
b11fb939
KR
461echo $ac_n "checking host system type""... $ac_c" 1>&4
462
463host_alias=$host
464case "${host_alias}" in
465NONE)
466 case $nonopt in
467 NONE)
468 if host_alias=`${ac_config_guess}`; then :
469 else { echo "configure: can not guess host type; you must specify one" 1>&2; exit 1; }
470 fi ;;
471 *) host_alias=$nonopt ;;
472 esac ;;
473esac
474
475host=`${ac_config_sub} ${host_alias}`
476host_cpu=`echo $host | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
477host_vendor=`echo $host | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
478host_os=`echo $host | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
479echo "$ac_t""$host" 1>&4
480
481echo $ac_n "checking target system type""... $ac_c" 1>&4
482
483target_alias=$target
484case "${target_alias}" in
485NONE)
486 case $nonopt in
487 NONE) target_alias=$host_alias ;;
488 *) target_alias=$nonopt ;;
489 esac ;;
490esac
491
492target=`${ac_config_sub} ${target_alias}`
493target_cpu=`echo $target | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
494target_vendor=`echo $target | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
495target_os=`echo $target | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
496echo "$ac_t""$target" 1>&4
497
498echo $ac_n "checking build system type""... $ac_c" 1>&4
499
500build_alias=$build
501case "${build_alias}" in
502NONE) build= build_alias= ;;
503*)
504build=`${ac_config_sub} ${build_alias}`
505build_cpu=`echo $build | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
506build_vendor=`echo $build | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
507build_os=`echo $build | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
508;;
509esac
510echo "$ac_t""$build" 1>&4
511
512
513
514emulation=generic
515
516# assign cpu type
517
518# check for architecture variants
519case ${target_cpu} in
520 hppa*) cpu_type=hppa ;;
521 i[45]86) cpu_type=i386 ;;
522 m680[012346]0) cpu_type=m68k ;;
523 m68008) cpu_type=m68k ;;
524 m683??) cpu_type=m68k ;;
525 m8*) cpu_type=m88k ;;
526 mips*el) cpu_type=mips endian=little;;
527 mips*) cpu_type=mips endian=big ;;
528 powerpc*) cpu_type=ppc ;;
529 rs6000*) cpu_type=ppc ;;
530 sparc64) cpu_type=sparc obj_format=elf cat >> confdefs.h <<\EOF
531#define sparcv9 1
532EOF
533 ;;
534 sparclite*) cpu_type=sparc ;;
535 *) cpu_type=${target_cpu} ;;
536esac
537
538# do we need the opcodes library?
539case ${cpu_type} in
540 alpha | vax)
541 ;;
542 *)
543 OPCODES_LIB="../opcodes/libopcodes.a"
544 ;;
545esac
546
547
548gas_target=${cpu_type}
549generic_target=${cpu_type}-${target_vendor}-${target_os}
550dev=no
551
552# assign object format
553case ${generic_target} in
554 a29k-amd-udi) obj_format=coff gas_target=ebmon29k ;;
555 a29k-amd-ebmon) obj_format=coff gas_target=ebmon29k ;;
556
557 alpha-*-netware*) obj_format=ecoff ;;
558 alpha-*-osf*) obj_format=ecoff ;;
559
560 hppa-*-*elf*) obj_format=elf emulation=hppa ;;
561 hppa-*-osf*) obj_format=som emulation=hppa ;;
562 hppa-*-hpux*) obj_format=som emulation=hppa ;;
563 hppa-*-bsd*) obj_format=som emulation=hppa ;;
564 hppa-*-hiux*) obj_format=som emulation=hppa ;;
565
566 h8300-*-coff) obj_format=coff ;;
567
568 i386-ibm-aix*) obj_format=coff gas_target=i386coff
569 emulation=i386aix ;;
570 i386-*-bsd*) obj_format=aout emulation=386bsd ;;
571 i386-*-netbsd0.8) obj_format=aout emulation=386bsd ;;
572 i386-*-netbsd*) obj_format=aout emulation=netbsd ;;
573 i386-*-linux*elf*) obj_format=elf emulation=linux ;;
574 i386-*-linux*coff*) obj_format=coff emulation=linux
575 gas_target=i386coff ;;
576 i386-*-linux*) obj_format=aout emulation=linux ;;
577 i386-*-lynxos*) obj_format=coff gas_target=i386coff
578 emulation=lynx ;;
579 i386-*-sysv4* | i386-*-solaris* | i386-*-elf)
580 obj_format=elf ;;
581 i386-*-coff | i386-*-sysv* | i386-*-sco* | i386-*-isc*)
582 obj_format=coff gas_target=i386coff ;;
583 i386-*-vsta) obj_format=aout ;;
584 i386-*-go32) obj_format=coff gas_target=i386coff ;;
585 i386-*-mach* | i386-*-gnu*)
586 obj_format=aout emulation=mach bfd_gas=yes ;;
587
588 i960-*-bout) obj_format=bout ;;
589 i960-*-coff) obj_format=coff emulation=ic960 gas_target=ic960coff ;;
590 i960-*-nindy*) obj_format=bout ;;
591 i960-*-vxworks4*) obj_format=bout ;;
592 i960-*-vxworks5.0) obj_format=bout ;;
593 i960-*-vxworks5.*) obj_format=coff emulation=ic960 gas_target=ic960coff ;;
594 i960-*-vxworks*) obj_format=bout ;;
595
596 m68k-wrs-vxworks | m68k-ericsson-ose | m68k-*-sunos*)
597 obj_format=aout emulation=sun3 ;;
598 m68k-motorola-sysv) obj_format=coff gas_target=m68kcoff emulation=delta ;;
599 m68k-bull-sysv3*) obj_format=coff gas_target=m68kcoff emulation=dpx2 ;;
600 m68k-apollo-*) obj_format=coff gas_target=apollo emulation=apollo ;;
601 m68k-*-coff | m68k-*-sysv*)
602 obj_format=coff gas_target=m68kcoff ;;
603 m68k-*-hpux) obj_format=hp300 emulation=hp300 ;;
604 m68k-*-lynxos*) obj_format=coff gas_target=m68kcoff
605 emulation=lynx ;;
606
607 m88k-*-coff*) obj_format=coff gas_target=m88kcoff ;;
608
609 # don't change emulation like *-*-bsd does
610 mips-*-bsd*) bfd_gas=yes obj_format=aout gas_target=mips-lit ;;
611 mips-*-ultrix*) obj_format=ecoff gas_target=mips-lit ;;
612 mips-*-ecoff*) obj_format=ecoff
613 case "$endian" in
614 big) gas_target=mips-big ;;
615 *) gas_target=mips-lit ;;
616 esac
617 ;;
618 mips-*-ecoff*) obj_format=ecoff gas_target=mips-big ;;
619 mips-*-irix5*) obj_format=elf gas_target=mips-big ;;
620 mips-*-irix*) obj_format=ecoff gas_target=mips-big ;;
621 mips-*-riscos*) obj_format=ecoff gas_target=mips-big ;;
622 mips-*-sysv*) obj_format=ecoff gas_target=mips-big ;;
623 mips-*-elf*) obj_format=elf
624 case "$endian" in
625 big) gas_target=mips-big ;;
626 *) gas_target=mips-lit ;;
627 esac
628 ;;
629 ppc-*-aix*) obj_format=coff bfd_gas=yes ;;
630 ppc-*-elf*) obj_format=elf bfd_gas=yes ;;
631 ppc-*-netware*) obj_format=elf emulation=ppcnw ;;
632 ppc-*-sysv4*) obj_format=elf bfd_gas=yes ;;
633
634 sh-*-coff) obj_format=coff ;;
635
636 ns32k-pc532-mach*) obj_format=aout emulation=pc532 bfd_gas=yes ;;
637 ns32k-pc532-netbsd*) obj_format=aout emulation=netbsd532 bfd_gas=yes ;;
638
639 sparc*-*-sunos4*) obj_format=aout emulation=sun3 bfd_gas=yes ;;
640 sparc*-*-aout | sparc*-*-vxworks)
641 obj_format=aout bfd_gas=yes ;;
642 sparc*-*-coff) obj_format=coff bfd_gas=yes ;;
643 sparc*-*-lynxos*) obj_format=coff bfd_gas=yes emulation=lynx ;;
644 sparc*-fujitsu-none) obj_format=aout bfd_gas=yes ;;
645 sparc*-*-elf | sparc*-*-solaris*)
646 obj_format=elf ;;
647
648 vax-*-bsd* | vax-*-ultrix*)
649 obj_format=aout ;;
650 vax-*-vms) obj_format=vms ;;
651
652 z8k-*-coff | z8k-*-sim)
653 obj_format=coff ;;
654
655 *-*-aout | *-*-scout)
656 obj_format=aout ;;
657 *-*-nindy*)
658 obj_format=bout ;;
659 *-*-bsd*)
660 obj_format=aout emulation=sun3 ;;
661 *-*-generic) obj_format=generic ;;
662 *-*-xray | *-*-hms) obj_format=coff ;;
663 *-*-sim) obj_format=coff ;;
664 *-*-elf | *-*-sysv4* | *-*-solaris*)
665 echo "configure: warning: GAS support for ELF format is incomplete" 1>&2
666 obj_format=elf dev=yes ;;
667 *-*-vxworks) obj_format=aout ;;
668 *-*-netware) obj_format=elf ;;
669esac
670
671# Assign floating point type. Most processors with FP support
672# IEEE FP. On those that don't support FP at all, usually IEEE
673# is emulated.
674case ${target_cpu} in
675 vax | tahoe ) atof=${target_cpu} ;;
676 *) atof=ieee ;;
677esac
678
679case "${obj_format}" in
680 "") { echo "configure: GAS does not know what format to use for target ${target}" 1>&2; exit 1; } ;;
681esac
682
683
fb589130 684if test ! -r ${srcdir}/config/tc-${cpu_type}.c; then
b11fb939
KR
685 { echo "configure: GAS does not support target CPU ${cpu_type}" 1>&2; exit 1; }
686fi
687
fb589130 688if test ! -r ${srcdir}/config/obj-${obj_format}.c; then
b11fb939
KR
689 { echo "configure: GAS does not have support for object file format ${obj_format}" 1>&2; exit 1; }
690fi
691
b11fb939
KR
692# and target makefile frag
693
694target_frag=${srcdir}/config/${gas_target}.mt
695
696
697case ${bfd_gas}-${obj_format} in
698 yes-coff) need_bfd=yes ;;
699 no-coff) need_bfd=yes
700 cat >> confdefs.h <<\EOF
701#define MANY_SEGMENTS 1
702EOF
703 ;;
704 *-elf) bfd_gas=yes ;;
705 *-ecoff) bfd_gas=yes ;;
706 *-som) bfd_gas=yes ;;
707 *) ;;
708esac
709
710case ${with_bfd_assembler}-${bfd_gas} in
711 yes-yes | no-no)
712 # We didn't override user's choice.
713 ;;
714 no-yes)
715 echo "configure: warning: Use of BFD is required for ${target}; overriding config options." 1>&2
716 ;;
717 no-preferred)
718 bfd_gas=no
719 ;;
720 *-preferred)
721 bfd_gas=yes
722 ;;
723 -*)
724 # User specified nothing.
725 ;;
726esac
727
728reject_dev_configs=yes
729
730case ${reject_dev_configs}-${dev} in
731 yes-yes) # Oops.
732 { echo "configure: GAS does not support the ${generic_target} configuration." 1>&2; exit 1; }
733 ;;
734esac
735
736
737
738
739case "${bfd_gas}" in
740 yes) cat >> confdefs.h <<\EOF
741#define BFD_ASSEMBLER 1
742EOF
743
744 need_bfd=yes ;;
745esac
746
747case "${need_bfd}" in
748 yes) BFDLIB=../bfd/libbfd.a
749 ALL_OBJ_DEPS="$ALL_OBJ_DEPS ../bfd/bfd.h"
750 ;;
751esac
752
753
754
755case "x${host_canon}" in
756 x${target_canon}) ;;
757 *) cat >> confdefs.h <<\EOF
758#define CROSS_COMPILE 1
759EOF
760;;
761esac
762
763cat >> confdefs.h <<EOF
764#define TARGET_ALIAS "${target_alias}"
765EOF
766
767cat >> confdefs.h <<EOF
768#define TARGET_CANONICAL "${target}"
769EOF
770
771cat >> confdefs.h <<EOF
772#define TARGET_CPU "${target_cpu}"
773EOF
774
775cat >> confdefs.h <<EOF
776#define TARGET_VENDOR "${target_vendor}"
777EOF
778
779cat >> confdefs.h <<EOF
780#define TARGET_OS "${target_os}"
781EOF
782
783
784case ${host} in
785 rs6000-*-*)
786 # The IBM compiler mis-compiles some expressions used in gas.
787 # This will tell gas to work around this lossage.
788 cat >> confdefs.h <<\EOF
789#define IBM_COMPILER_SUX 1
790EOF
791 ;;
792 i386-*-go32)
793 # Using fopen(..., "w") for a binary file breaks under DOS.
794 cat >> confdefs.h <<\EOF
795#define WANT_FOPEN_BIN 1
796EOF
797 ;;
798esac
799
800echo $ac_n "checking for CC""... $ac_c" 1>&4
801test -z "$CC" && CC=`egrep '^CC *=' ../Makefile | tail -1 | sed 's/^CC *= *//'`
802test -z "$CC" && CC=cc
803echo "$ac_t""setting CC to $CC" 1>&4
804
805# Find out if we are using GNU C, under whatever name.
806cat > conftest.c <<EOF
807#ifdef __GNUC__
808 yes
809#endif
810EOF
811${CC-cc} -E conftest.c > conftest.out 2>&1
812if egrep yes conftest.out >/dev/null 2>&1; then
813 GCC=yes
814else
815 GCC=
816fi
817rm -f conftest*
818
819# Make sure to not get an incompatible install:
820# SysV /etc/install, /usr/sbin/install
821# SunOS /usr/etc/install
822# IRIX /sbin/install
823# AIX /bin/install
824# AFS /usr/afsws/bin/install, which mishandles nonexistent args
825# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
826# ./install, which can be erroneously created by make from ./install.sh.
827echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&4
828if test -z "${INSTALL}"; then
829if eval "test \"`echo '${'ac_cv_path_install'+set}'`\" = set"; then
830 echo $ac_n "(cached) $ac_c" 1>&4
831else
832 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
833 for ac_dir in $PATH; do
834 case "$ac_dir" in
835 ''|.|/etc|/usr/sbin|/usr/etc|/sbin|/usr/afsws/bin|/usr/ucb) ;;
836 *)
837 # OSF1 and SCO ODT 3.0 have their own names for install.
838 for ac_prog in ginstall installbsd scoinst install; do
839 if test -f $ac_dir/$ac_prog; then
840 if test $ac_prog = install &&
841 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
842 # AIX install. It has an incompatible calling convention.
843 # OSF/1 installbsd also uses dspmsg, but is usable.
844 :
845 else
846 ac_cv_path_install="$ac_dir/$ac_prog -c"
847 break 2
848 fi
849 fi
850 done
851 ;;
852 esac
853 done
854 IFS="$ac_save_ifs"
855 # As a last resort, use the slow shell script.
856 test -z "$ac_cv_path_install" && ac_cv_path_install="$ac_install_sh"
857fi
858 INSTALL="$ac_cv_path_install"
859fi
860echo "$ac_t""$INSTALL" 1>&4
861
862# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
863# It thinks the first close brace ends the variable substitution.
864test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
865
866test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
867
868
869echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&4
870# On Suns, sometimes $CPP names a directory.
871if test -n "$CPP" && test -d "$CPP"; then
872 CPP=
873fi
874if test -z "$CPP"; then
875if eval "test \"`echo '${'ac_cv_prog_CPP'+set}'`\" = set"; then
876 echo $ac_n "(cached) $ac_c" 1>&4
877else
878 # This must be in double quotes, not single quotes, because CPP may get
879 # substituted into the Makefile and "${CC-cc}" will confuse make.
880 CPP="${CC-cc} -E"
881 # On the NeXT, cc -E runs the code through the compiler's parser,
882 # not just through cpp.
883 cat > conftest.${ac_ext} <<EOF
fb589130 884#line 885 "configure"
b11fb939
KR
885#include "confdefs.h"
886#include <stdio.h>
887Syntax Error
888EOF
fb589130 889ac_err=`eval "$ac_cpp conftest.${ac_ext} >/dev/null" 2>&1`
b11fb939
KR
890if test -z "$ac_err"; then
891 :
892else
fb589130 893 echo "$ac_err" >&5
b11fb939
KR
894 rm -rf conftest*
895 CPP="${CC-cc} -E -traditional-cpp"
896 cat > conftest.${ac_ext} <<EOF
897#line 898 "configure"
898#include "confdefs.h"
899#include <stdio.h>
900Syntax Error
901EOF
fb589130 902ac_err=`eval "$ac_cpp conftest.${ac_ext} >/dev/null" 2>&1`
b11fb939
KR
903if test -z "$ac_err"; then
904 :
905else
fb589130 906 echo "$ac_err" >&5
b11fb939
KR
907 rm -rf conftest*
908 CPP=/lib/cpp
909fi
910rm -f conftest*
911fi
912rm -f conftest*
913 ac_cv_prog_CPP="$CPP"
914fi
915fi
916CPP="$ac_cv_prog_CPP"
917echo "$ac_t""$CPP" 1>&4
fb589130
KR
918
919for ac_hdr in string.h stdlib.h memory.h strings.h unistd.h stdarg.h varargs.h errno.h sys/types.h
920do
921ac_safe=`echo "${ac_hdr}" | tr './' '__'`
922echo $ac_n "checking for ${ac_hdr}""... $ac_c" 1>&4
923if eval "test \"`echo '${'ac_cv_header_$ac_safe'+set}'`\" = set"; then
b11fb939
KR
924 echo $ac_n "(cached) $ac_c" 1>&4
925else
926 cat > conftest.${ac_ext} <<EOF
fb589130 927#line 928 "configure"
b11fb939 928#include "confdefs.h"
fb589130 929#include <${ac_hdr}>
b11fb939 930EOF
fb589130 931ac_err=`eval "$ac_cpp conftest.${ac_ext} >/dev/null" 2>&1`
b11fb939
KR
932if test -z "$ac_err"; then
933 rm -rf conftest*
fb589130 934 eval "ac_cv_header_$ac_safe=yes"
b11fb939 935else
fb589130 936 echo "$ac_err" >&5
b11fb939 937 rm -rf conftest*
fb589130 938 eval "ac_cv_header_$ac_safe=no"
b11fb939
KR
939fi
940rm -f conftest*
b11fb939 941fi
fb589130
KR
942if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
943 echo "$ac_t""yes" 1>&4
944 ac_tr_hdr=HAVE_`echo $ac_hdr | tr '[a-z]./' '[A-Z]__'`
945 cat >> confdefs.h <<EOF
946#define ${ac_tr_hdr} 1
b11fb939 947EOF
fb589130 948
b11fb939 949else
fb589130 950 echo "$ac_t""no" 1>&4
b11fb939 951fi
fb589130 952done
b11fb939 953
b11fb939 954
b11fb939
KR
955# If we cannot run a trivial program, we must be cross compiling.
956echo $ac_n "checking whether cross-compiling""... $ac_c" 1>&4
957if eval "test \"`echo '${'ac_cv_c_cross'+set}'`\" = set"; then
958 echo $ac_n "(cached) $ac_c" 1>&4
959else
960 if test "$cross_compiling" = yes; then
961 { echo "configure: can not run test program while cross compiling" 1>&2; exit 1; }
962else
963cat > conftest.${ac_ext} <<EOF
fb589130 964#line 965 "configure"
b11fb939
KR
965#include "confdefs.h"
966main(){exit(0);}
967EOF
968eval $ac_compile
969if test -s conftest && (./conftest; exit) 2>/dev/null; then
970 ac_cv_c_cross=no
971else
972 ac_cv_c_cross=yes
973fi
974fi
975rm -fr conftest*
976fi
977cross_compiling=$ac_cv_c_cross
978echo "$ac_t""$ac_cv_c_cross" 1>&4
b11fb939
KR
979
980# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
981# for constant arguments. Useless!
982echo $ac_n "checking for working alloca.h""... $ac_c" 1>&4
983if eval "test \"`echo '${'ac_cv_header_alloca_h'+set}'`\" = set"; then
984 echo $ac_n "(cached) $ac_c" 1>&4
985else
986 cat > conftest.${ac_ext} <<EOF
fb589130 987#line 988 "configure"
b11fb939
KR
988#include "confdefs.h"
989#include <alloca.h>
990int main() { return 0; }
991int t() {
992char *p = alloca(2 * sizeof(int));
993; return 0; }
994EOF
995if eval $ac_compile; then
996 rm -rf conftest*
997 ac_cv_header_alloca_h=yes
998else
999 rm -rf conftest*
1000 ac_cv_header_alloca_h=no
1001fi
1002rm -f conftest*
1003
1004fi
1005echo "$ac_t""$ac_cv_header_alloca_h" 1>&4
1006if test $ac_cv_header_alloca_h = yes; then
1007 cat >> confdefs.h <<\EOF
1008#define HAVE_ALLOCA_H 1
1009EOF
1010
1011fi
1012
1013echo $ac_n "checking for alloca""... $ac_c" 1>&4
1014if eval "test \"`echo '${'ac_cv_func_alloca'+set}'`\" = set"; then
1015 echo $ac_n "(cached) $ac_c" 1>&4
1016else
1017 cat > conftest.${ac_ext} <<EOF
fb589130 1018#line 1019 "configure"
b11fb939
KR
1019#include "confdefs.h"
1020
1021#ifdef __GNUC__
1022# define alloca __builtin_alloca
1023#else
1024# if HAVE_ALLOCA_H
1025# include <alloca.h>
1026# else
1027# ifdef _AIX
1028 #pragma alloca
1029# else
1030# ifndef alloca /* predefined by HP cc +Olibcalls */
1031char *alloca ();
1032# endif
1033# endif
1034# endif
1035#endif
1036
1037int main() { return 0; }
1038int t() {
1039char *p = (char *) alloca(1);
1040; return 0; }
1041EOF
1042if eval $ac_compile; then
1043 rm -rf conftest*
1044 ac_cv_func_alloca=yes
1045else
1046 rm -rf conftest*
1047 ac_cv_func_alloca=no
1048fi
1049rm -f conftest*
1050
1051fi
1052echo "$ac_t""$ac_cv_func_alloca" 1>&4
1053if test $ac_cv_func_alloca = yes; then
1054 cat >> confdefs.h <<\EOF
1055#define HAVE_ALLOCA 1
1056EOF
1057
1058fi
1059
1060if test $ac_cv_func_alloca = no; then
1061 # The SVR3 libPW and SVR4 libucb both contain incompatible functions
1062 # that cause trouble. Some versions do not even contain alloca or
1063 # contain a buggy version. If you still want to use their alloca,
1064 # use ar to extract alloca.o from them instead of compiling alloca.c.
1065 ALLOCA=alloca.o
1066 cat >> confdefs.h <<\EOF
1067#define C_ALLOCA 1
1068EOF
1069
1070
1071echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&4
1072if eval "test \"`echo '${'ac_cv_os_cray'+set}'`\" = set"; then
1073 echo $ac_n "(cached) $ac_c" 1>&4
1074else
1075 cat > conftest.${ac_ext} <<EOF
fb589130 1076#line 1077 "configure"
b11fb939
KR
1077#include "confdefs.h"
1078#if defined(CRAY) && ! defined(CRAY2)
1079webecray
1080#else
1081wenotbecray
1082#endif
1083
1084EOF
fb589130
KR
1085if eval "$ac_cpp conftest.${ac_ext}" 2>&5 |
1086 egrep "webecray" >/dev/null 2>&1; then
b11fb939
KR
1087 rm -rf conftest*
1088 ac_cv_os_cray=yes
1089else
1090 rm -rf conftest*
1091 ac_cv_os_cray=no
1092fi
1093rm -f conftest*
1094
1095fi
1096echo "$ac_t""$ac_cv_os_cray" 1>&4
1097if test $ac_cv_os_cray = yes; then
1098echo $ac_n "checking for _getb67""... $ac_c" 1>&4
1099if eval "test \"`echo '${'ac_cv_func__getb67'+set}'`\" = set"; then
1100 echo $ac_n "(cached) $ac_c" 1>&4
1101else
1102 cat > conftest.${ac_ext} <<EOF
fb589130 1103#line 1104 "configure"
b11fb939
KR
1104#include "confdefs.h"
1105#include <ctype.h> /* Arbitrary system header to define __stub macros. */
1106int main() { return 0; }
1107int t() {
1108
1109/* The GNU C library defines this for functions which it implements
1110 to always fail with ENOSYS. Some functions are actually named
1111 something starting with __ and the normal name is an alias. */
1112#if defined (__stub__getb67) || defined (__stub____getb67)
1113choke me
1114#else
1115/* Override any gcc2 internal prototype to avoid an error. */
1116char _getb67(); _getb67();
1117#endif
1118
1119; return 0; }
1120EOF
1121if eval $ac_compile; then
1122 rm -rf conftest*
1123 eval "ac_cv_func__getb67=yes"
1124else
1125 rm -rf conftest*
1126 eval "ac_cv_func__getb67=no"
1127fi
1128rm -f conftest*
1129
1130fi
1131if eval "test \"`echo '$ac_cv_func_'_getb67`\" = yes"; then
1132 echo "$ac_t""yes" 1>&4
1133 cat >> confdefs.h <<\EOF
1134#define CRAY_STACKSEG_END _getb67
1135EOF
1136
1137else
1138 echo "$ac_t""no" 1>&4
1139echo $ac_n "checking for GETB67""... $ac_c" 1>&4
1140if eval "test \"`echo '${'ac_cv_func_GETB67'+set}'`\" = set"; then
1141 echo $ac_n "(cached) $ac_c" 1>&4
1142else
1143 cat > conftest.${ac_ext} <<EOF
fb589130 1144#line 1145 "configure"
b11fb939
KR
1145#include "confdefs.h"
1146#include <ctype.h> /* Arbitrary system header to define __stub macros. */
1147int main() { return 0; }
1148int t() {
1149
1150/* The GNU C library defines this for functions which it implements
1151 to always fail with ENOSYS. Some functions are actually named
1152 something starting with __ and the normal name is an alias. */
1153#if defined (__stub_GETB67) || defined (__stub___GETB67)
1154choke me
1155#else
1156/* Override any gcc2 internal prototype to avoid an error. */
1157char GETB67(); GETB67();
1158#endif
1159
1160; return 0; }
1161EOF
1162if eval $ac_compile; then
1163 rm -rf conftest*
1164 eval "ac_cv_func_GETB67=yes"
1165else
1166 rm -rf conftest*
1167 eval "ac_cv_func_GETB67=no"
1168fi
1169rm -f conftest*
1170
1171fi
1172if eval "test \"`echo '$ac_cv_func_'GETB67`\" = yes"; then
1173 echo "$ac_t""yes" 1>&4
1174 cat >> confdefs.h <<\EOF
1175#define CRAY_STACKSEG_END GETB67
1176EOF
1177
1178else
1179 echo "$ac_t""no" 1>&4
1180echo $ac_n "checking for getb67""... $ac_c" 1>&4
1181if eval "test \"`echo '${'ac_cv_func_getb67'+set}'`\" = set"; then
1182 echo $ac_n "(cached) $ac_c" 1>&4
1183else
1184 cat > conftest.${ac_ext} <<EOF
fb589130 1185#line 1186 "configure"
b11fb939
KR
1186#include "confdefs.h"
1187#include <ctype.h> /* Arbitrary system header to define __stub macros. */
1188int main() { return 0; }
1189int t() {
1190
1191/* The GNU C library defines this for functions which it implements
1192 to always fail with ENOSYS. Some functions are actually named
1193 something starting with __ and the normal name is an alias. */
1194#if defined (__stub_getb67) || defined (__stub___getb67)
1195choke me
1196#else
1197/* Override any gcc2 internal prototype to avoid an error. */
1198char getb67(); getb67();
1199#endif
1200
1201; return 0; }
1202EOF
1203if eval $ac_compile; then
1204 rm -rf conftest*
1205 eval "ac_cv_func_getb67=yes"
1206else
1207 rm -rf conftest*
1208 eval "ac_cv_func_getb67=no"
1209fi
1210rm -f conftest*
1211
1212fi
1213if eval "test \"`echo '$ac_cv_func_'getb67`\" = yes"; then
1214 echo "$ac_t""yes" 1>&4
1215 cat >> confdefs.h <<\EOF
1216#define CRAY_STACKSEG_END getb67
1217EOF
1218
1219else
1220 echo "$ac_t""no" 1>&4
1221fi
1222
1223fi
1224
1225fi
1226
1227fi
1228
1229echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&4
1230if eval "test \"`echo '${'ac_cv_c_stack_direction'+set}'`\" = set"; then
1231 echo $ac_n "(cached) $ac_c" 1>&4
1232else
1233 if test "$cross_compiling" = yes; then
1234 echo "configure: warning: using default for cross-compiling" 1>&2
1235ac_cv_c_stack_direction=0
1236
1237else
1238cat > conftest.${ac_ext} <<EOF
fb589130 1239#line 1240 "configure"
b11fb939
KR
1240#include "confdefs.h"
1241find_stack_direction ()
1242{
1243 static char *addr = 0;
1244 auto char dummy;
1245 if (addr == 0)
1246 {
1247 addr = &dummy;
1248 return find_stack_direction ();
1249 }
1250 else
1251 return (&dummy > addr) ? 1 : -1;
1252}
1253main ()
1254{
1255 exit (find_stack_direction() < 0);
1256}
1257EOF
1258eval $ac_compile
1259if test -s conftest && (./conftest; exit) 2>/dev/null; then
1260 ac_cv_c_stack_direction=1
1261else
1262 ac_cv_c_stack_direction=-1
1263fi
1264fi
1265rm -fr conftest*
1266fi
1267echo "$ac_t""$ac_cv_c_stack_direction" 1>&4
1268cat >> confdefs.h <<EOF
1269#define STACK_DIRECTION $ac_cv_c_stack_direction
1270EOF
1271
1272fi
1273
1274echo $ac_n "checking for inline""... $ac_c" 1>&4
1275if eval "test \"`echo '${'ac_cv_c_inline'+set}'`\" = set"; then
1276 echo $ac_n "(cached) $ac_c" 1>&4
1277else
1278 if test "$GCC" = yes; then
1279cat > conftest.${ac_ext} <<EOF
fb589130 1280#line 1281 "configure"
b11fb939
KR
1281#include "confdefs.h"
1282
1283int main() { return 0; }
1284int t() {
1285} inline foo() {
1286; return 0; }
1287EOF
1288if eval $ac_compile; then
1289 rm -rf conftest*
1290 ac_cv_c_inline=yes
1291else
1292 rm -rf conftest*
1293 ac_cv_c_inline=no
1294fi
1295rm -f conftest*
1296
1297else
1298 ac_cv_c_inline=no
1299fi
1300fi
1301echo "$ac_t""$ac_cv_c_inline" 1>&4
1302if test $ac_cv_c_inline = no; then
1303 cat >> confdefs.h <<\EOF
1304#define inline __inline
1305EOF
1306
1307fi
1308
1309
1310# Some non-ANSI preprocessors botch requoting inside strings. That's bad
1311# enough, but on some of those systems, the assert macro relies on requoting
1312# working properly!
fb589130
KR
1313echo $ac_n "checking for working assert macro""... $ac_c" 1>&4
1314if eval "test \"`echo '${'gas_cv_assert_ok'+set}'`\" = set"; then
1315 echo $ac_n "(cached) $ac_c" 1>&4
1316else
1317 cat > conftest.${ac_ext} <<EOF
1318#line 1319 "configure"
b11fb939
KR
1319#include "confdefs.h"
1320#include <assert.h>
1321#include <stdio.h>
1322int main() { return 0; }
1323int t() {
1324
1325/* check for requoting problems */
1326static int a, b, c, d;
1327static char *s;
1328assert (!strcmp(s, "foo bar baz quux"));
1329/* check for newline handling */
1330assert (a == b
1331 || c == d);
1332
1333; return 0; }
1334EOF
1335if eval $ac_compile; then
fb589130
KR
1336 rm -rf conftest*
1337 gas_cv_assert_ok=yes
b11fb939
KR
1338else
1339 rm -rf conftest*
fb589130 1340 gas_cv_assert_ok=no
b11fb939
KR
1341fi
1342rm -f conftest*
1343
fb589130
KR
1344fi
1345echo "$ac_t""$gas_cv_assert_ok" 1>&4
1346test $gas_cv_assert_ok = yes || cat >> confdefs.h <<\EOF
1347#define BROKEN_ASSERT 1
1348EOF
1349
b11fb939
KR
1350
1351# On some systems, the system header files may not declare malloc, realloc,
1352# and free. There are places where gas needs these functions to have been
1353# declared -- such as when taking their addresses.
fb589130
KR
1354echo $ac_n "checking whether a malloc declaration is required""... $ac_c" 1>&4
1355if eval "test \"`echo '${'gas_cv_malloc_decl_needed'+set}'`\" = set"; then
1356 echo $ac_n "(cached) $ac_c" 1>&4
1357else
1358 cat > conftest.${ac_ext} <<EOF
1359#line 1360 "configure"
b11fb939
KR
1360#include "confdefs.h"
1361
1362#ifdef HAVE_MEMORY_H
1363#include <memory.h>
1364#endif
1365#ifdef HAVE_STRING_H
1366#include <string.h>
1367#endif
1368#ifdef HAVE_STDLIB_H
1369#include <stdlib.h>
1370#endif
1371#ifdef HAVE_UNISTD_H
1372#include <unistd.h>
1373#endif
1374
1375int main() { return 0; }
1376int t() {
1377
1378char *(*f) ();
1379f = (char *(*)()) malloc;
1380
1381; return 0; }
1382EOF
1383if eval $ac_compile; then
fb589130
KR
1384 rm -rf conftest*
1385 gas_cv_malloc_decl_needed=no
b11fb939
KR
1386else
1387 rm -rf conftest*
fb589130
KR
1388 gas_cv_malloc_decl_needed=yes
1389fi
1390rm -f conftest*
1391
1392fi
1393echo "$ac_t""$gas_cv_malloc_decl_needed" 1>&4
1394test $gas_cv_malloc_decl_needed = no || cat >> confdefs.h <<\EOF
b11fb939
KR
1395#define NEED_MALLOC_DECLARATION 1
1396EOF
1397
b11fb939 1398
fb589130
KR
1399echo $ac_n "checking whether a free declaration is required""... $ac_c" 1>&4
1400if eval "test \"`echo '${'gas_cv_free_decl_needed'+set}'`\" = set"; then
1401 echo $ac_n "(cached) $ac_c" 1>&4
1402else
1403 cat > conftest.${ac_ext} <<EOF
1404#line 1405 "configure"
b11fb939
KR
1405#include "confdefs.h"
1406
1407#ifdef HAVE_MEMORY_H
1408#include <memory.h>
1409#endif
1410#ifdef HAVE_STRING_H
1411#include <string.h>
1412#endif
1413#ifdef HAVE_STDLIB_H
1414#include <stdlib.h>
1415#endif
1416#ifdef HAVE_UNISTD_H
1417#include <unistd.h>
1418#endif
1419
1420int main() { return 0; }
1421int t() {
1422
1423int (*f) ();
1424f = (int (*)()) free;
1425
1426; return 0; }
1427EOF
1428if eval $ac_compile; then
fb589130
KR
1429 rm -rf conftest*
1430 gas_cv_free_decl_needed=no
b11fb939
KR
1431else
1432 rm -rf conftest*
fb589130 1433 gas_cv_free_decl_needed=yes
b11fb939
KR
1434fi
1435rm -f conftest*
1436
fb589130
KR
1437fi
1438
1439echo "$ac_t""$gas_cv_free_decl_needed" 1>&4
1440test $gas_cv_free_decl_needed = no || cat >> confdefs.h <<\EOF
1441#define NEED_FREE_DECLARATION 1
1442EOF
1443
b11fb939
KR
1444
1445# Does errno.h declare errno, or do we have to add a separate declaration
1446# for it?
fb589130
KR
1447echo $ac_n "checking whether an errno declaration is required""... $ac_c" 1>&4
1448if eval "test \"`echo '${'gas_cv_errno_decl_needed'+set}'`\" = set"; then
1449 echo $ac_n "(cached) $ac_c" 1>&4
1450else
1451 cat > conftest.${ac_ext} <<EOF
1452#line 1453 "configure"
b11fb939
KR
1453#include "confdefs.h"
1454
1455#ifdef HAVE_ERRNO_H
1456#include <errno.h>
1457#endif
1458
1459int main() { return 0; }
1460int t() {
1461
1462int x;
1463x = errno;
1464
1465; return 0; }
1466EOF
1467if eval $ac_compile; then
fb589130
KR
1468 rm -rf conftest*
1469 gas_cv_errno_decl_needed=no
b11fb939
KR
1470else
1471 rm -rf conftest*
fb589130 1472 gas_cv_errno_decl_needed=yes
b11fb939
KR
1473fi
1474rm -f conftest*
1475
fb589130
KR
1476fi
1477
1478echo "$ac_t""$gas_cv_errno_decl_needed" 1>&4
1479test $gas_cv_errno_decl_needed = no || cat >> confdefs.h <<\EOF
1480#define NEED_ERRNO_DECLARATION 1
1481EOF
1482
b11fb939
KR
1483
1484subdirs="testsuite"
1485
1486
1487if test -w $cache_file; then
1488echo "updating cache $cache_file"
1489cat > $cache_file <<\EOF
1490# This file is a shell script that caches the results of configure
1491# tests run on this system so they can be shared between configure
1492# scripts and configure runs. It is not useful on other systems.
1493# If its contents are invalid for some reason, you may delete or edit it.
1494#
1495# By default, configure uses ./config.cache as the cache file,
1496# creating it if it does not exist already. You can give configure
1497# the --cache-file=FILE option to use a different cache file; that is
1498# what configure does when it calls configure scripts in
1499# subdirectories, so they share the cache.
1500# Giving --cache-file=/dev/null disables caching, for debugging configure.
1501# config.status only pays attention to the cache file if you give it the
1502# --recheck option to rerun configure.
1503EOF
1504# Ultrix sh set writes to stderr and can't be redirected directly.
1505(set) 2>&1 | sed -n "s/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/\1=\${\1-'\2'}/p" >> $cache_file
1506else
1507echo "not updating unwritable cache $cache_file"
1508fi
1509
1510
1511test "x$prefix" = xNONE && prefix=/usr/local
1512# Let make expand exec_prefix.
1513test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
1514
1515# Any assignment to VPATH causes Sun make to only execute
1516# the first set of double-colon rules, so remove it if not needed.
1517# If there is a colon in the path, we need to keep it.
1518if test "x$srcdir" = x.; then
1519 ac_vpsub='/^[ ]*VPATH[ ]*=[^:]*$/d'
1520fi
1521
1522trap 'rm -f $CONFIG_STATUS conftest*; exit 1' 1 2 15
1523
1524DEFS=-DHAVE_CONFIG_H
1525
1526# Without the "./", some shells look in PATH for config.status.
1527: ${CONFIG_STATUS=./config.status}
1528
1529echo creating ${CONFIG_STATUS}
1530rm -f ${CONFIG_STATUS}
1531cat > ${CONFIG_STATUS} <<EOF
1532#!/bin/sh
1533# Generated automatically by configure.
1534# Run this file to recreate the current configuration.
1535# This directory was configured as follows,
1536# on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
1537#
1538# $0 $configure_args
1539#
1540# Compiler output produced by configure, useful for debugging
1541# configure, is in ./config.log if it exists.
1542
1543ac_cs_usage="Usage: ${CONFIG_STATUS} [--recheck] [--version] [--help]"
1544for ac_option
1545do
1546 case "\$ac_option" in
1547 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
1548 echo running \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create --norecursion
1549 exec \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create --norecursion ;;
1550 -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
fb589130 1551 echo "${CONFIG_STATUS} generated by autoconf version 1.109"
b11fb939
KR
1552 exit 0 ;;
1553 -help | --help | --hel | --he | --h)
1554 echo "\$ac_cs_usage"; exit 0 ;;
1555 *) echo "\$ac_cs_usage"; exit 1 ;;
1556 esac
1557done
1558
1559ac_given_srcdir=$srcdir
1560ac_given_INSTALL="$INSTALL"
1561
1562trap 'rm -fr doc/Makefile Makefile conf conftest*; exit 1' 1 2 15
1563
1564# Protect against being on the right side of a sed subst in config.status.
1565sed 's/%@/@@/; s/@%/@@/; s/%g$/@g/; /@g$/s/[\\\\&%]/\\\\&/g;
1566 s/@@/%@/; s/@@/@%/; s/@g$/%g/' > conftest.subs <<\CEOF
1567$ac_vpsub
1568$extrasub
1569s%@LIBS@%$LIBS%g
1570s%@prefix@%$prefix%g
1571s%@exec_prefix@%$exec_prefix%g
1572s%@DEFS@%$DEFS%g
1573s%@CFLAGS@%$CFLAGS%g
1574s%@CXXFLAGS@%$CXXFLAGS%g
1575s%@CPPFLAGS@%$CPPFLAGS%g
1576s%@LDFLAGS@%$LDFLAGS%g
1577s%@host@%$host%g
1578s%@host_alias@%$host_alias%g
1579s%@host_cpu@%$host_cpu%g
1580s%@host_vendor@%$host_vendor%g
1581s%@host_os@%$host_os%g
1582s%@target@%$target%g
1583s%@target_alias@%$target_alias%g
1584s%@target_cpu@%$target_cpu%g
1585s%@target_vendor@%$target_vendor%g
1586s%@target_os@%$target_os%g
1587s%@build@%$build%g
1588s%@build_alias@%$build_alias%g
1589s%@build_cpu@%$build_cpu%g
1590s%@build_vendor@%$build_vendor%g
1591s%@build_os@%$build_os%g
1592s%@OPCODES_LIB@%$OPCODES_LIB%g
1593/@target_frag@/r $target_frag
1594s%@target_frag@%%g
1595s%@cpu_type@%$cpu_type%g
1596s%@obj_format@%$obj_format%g
1597s%@emulation@%$emulation%g
1598s%@atof@%$atof%g
1599s%@BFDLIB@%$BFDLIB%g
1600s%@ALL_OBJ_DEPS@%$ALL_OBJ_DEPS%g
1601s%@CC@%$CC%g
1602s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
1603s%@INSTALL_DATA@%$INSTALL_DATA%g
1604s%@CPP@%$CPP%g
1605s%@ALLOCA@%$ALLOCA%g
1606s%@subdirs@%$subdirs%g
1607
1608CEOF
1609EOF
1610cat >> ${CONFIG_STATUS} <<\EOF
1611
1612CONFIG_FILES=${CONFIG_FILES-"doc/Makefile Makefile"}
1613for ac_file in .. ${CONFIG_FILES}; do if test "x$ac_file" != x..; then
1614 # Support "outfile[:infile]", defaulting infile="outfile.in".
1615 case "$ac_file" in
1616 *:*) ac_file_in=`echo "$ac_file"|sed 's%.*:%%'`
1617 ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
1618 *) ac_file_in="${ac_file}.in" ;;
1619 esac
1620
1621 # Adjust relative srcdir, etc. for subdirectories.
1622
1623 # Remove last slash and all that follows it. Not all systems have dirname.
1624 ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
1625 if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
1626 # The file is in a subdirectory.
1627 test ! -d "$ac_dir" && mkdir "$ac_dir"
1628 ac_dir_suffix="/$ac_dir"
1629 # A "../" for each directory in $ac_dir_suffix.
1630 ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
1631 else
1632 ac_dir_suffix= ac_dots=
1633 fi
1634
1635 case "$ac_given_srcdir" in
1636 .) srcdir=.
1637 if test -z "$ac_dots"; then top_srcdir=.
1638 else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
1639 /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
1640 *) # Relative path.
1641 srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
1642 top_srcdir="$ac_dots$ac_given_srcdir" ;;
1643 esac
1644
1645 case "$ac_given_INSTALL" in
1646 [/$]*) INSTALL="$ac_given_INSTALL" ;;
1647 *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
1648 esac
1649 echo creating "$ac_file"
1650 rm -f "$ac_file"
1651 comment_str="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure."
1652 case "$ac_file" in
1653 *.c | *.h | *.C | *.cc | *.cpp | *.hpp | *.m )
1654 ac_comsub="1i\\
1655/* $comment_str */" ;;
1656 * ) # Add the comment on the second line of scripts, first line of others.
1657 ac_comsub="
16581{
1659s/^#!/&/
1660t script
1661i\\
1662# $comment_str
1663b done
1664: script
1665a\\
1666# $comment_str
1667: done
1668}
1669" ;;
1670 esac
1671 sed -e "$ac_comsub
1672s%@srcdir@%$srcdir%g
1673s%@top_srcdir@%$top_srcdir%g
1674s%@INSTALL@%$INSTALL%g
1675" -f conftest.subs $ac_given_srcdir/$ac_file_in > $ac_file
1676fi; done
1677rm -f conftest.subs
1678
1679# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
1680# NAME is the cpp macro being defined and VALUE is the value it is being given.
1681#
1682# ac_d sets the value in "#define NAME VALUE" lines.
1683ac_dA='s%^\([ ]*\)#\([ ]*define[ ][ ]*\)'
1684ac_dB='\([ ][ ]*\)[^ ]*%\1#\2'
1685ac_dC='\3'
1686ac_dD='%g'
1687# ac_u turns "#undef NAME" with trailing blanks into "#define NAME VALUE".
1688ac_uA='s%^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)'
1689ac_uB='\([ ]\)%\1#\2define\3'
1690ac_uC=' '
1691ac_uD='\4%g'
1692# ac_e turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
1693ac_eA='s%^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)'
1694ac_eB='$%\1#\2define\3'
1695ac_eC=' '
1696ac_eD='%g'
1697
1698CONFIG_HEADERS=${CONFIG_HEADERS-"conf"}
1699for ac_file in .. ${CONFIG_HEADERS}; do if test "x$ac_file" != x..; then
1700 # Support "outfile[:infile]", defaulting infile="outfile.in".
1701 case "$ac_file" in
1702 *:*) ac_file_in=`echo "$ac_file"|sed 's%.*:%%'`
1703 ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
1704 *) ac_file_in="${ac_file}.in" ;;
1705 esac
1706
1707 echo creating $ac_file
1708
1709 rm -f conftest.frag conftest.in conftest.out
1710 cp $ac_given_srcdir/$ac_file_in conftest.in
1711
1712EOF
1713
1714# Transform confdefs.h into a sed script conftest.vals that substitutes
fb589130
KR
1715# the proper values into config.h.in to produce config.h. And first:
1716# Protect against being on the right side of a sed subst in config.status.
1717# Protect against being in an unquoted here document in config.status.
b11fb939
KR
1718rm -f conftest.vals
1719cat > conftest.hdr <<\EOF
b11fb939 1720s/[\\&%]/\\&/g
b11fb939
KR
1721s%[\\$`]%\\&%g
1722s%#define \([A-Za-z_][A-Za-z0-9_]*\) \(.*\)%${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD}%gp
1723s%ac_d%ac_u%gp
1724s%ac_u%ac_e%gp
1725EOF
1726sed -n -f conftest.hdr confdefs.h > conftest.vals
1727rm -f conftest.hdr
1728
1729# This sed command replaces #undef with comments. This is necessary, for
1730# example, in the case of _POSIX_SOURCE, which is predefined and required
1731# on some systems where configure will not decide to define it.
1732cat >> conftest.vals <<\EOF
1733s%^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*%/* & */%
1734EOF
1735
1736# Break up conftest.vals because some shells have a limit on
1737# the size of here documents, and old seds have small limits too.
1738# Maximum number of lines to put in a single here document.
1739ac_max_here_lines=12
1740
1741rm -f conftest.tail
1742while :
1743do
1744 ac_lines=`grep -c . conftest.vals`
1745 # grep -c gives empty output for an empty file on some AIX systems.
1746 if test -z "$ac_lines" || test "$ac_lines" -eq 0; then break; fi
1747 # Write a limited-size here document to conftest.frag.
1748 echo ' cat > conftest.frag <<CEOF' >> ${CONFIG_STATUS}
1749 sed ${ac_max_here_lines}q conftest.vals >> ${CONFIG_STATUS}
1750 echo 'CEOF
1751 sed -f conftest.frag conftest.in > conftest.out
1752 rm -f conftest.in
1753 mv conftest.out conftest.in
1754' >> ${CONFIG_STATUS}
1755 sed 1,${ac_max_here_lines}d conftest.vals > conftest.tail
1756 rm -f conftest.vals
1757 mv conftest.tail conftest.vals
1758done
1759rm -f conftest.vals
1760
1761# Now back to your regularly scheduled config.status.
1762cat >> ${CONFIG_STATUS} <<\EOF
1763 rm -f conftest.frag conftest.h
1764 echo "/* $ac_file. Generated automatically by configure. */" > conftest.h
1765 cat conftest.in >> conftest.h
1766 rm -f conftest.in
1767 if cmp -s $ac_file conftest.h 2>/dev/null; then
1768 echo "$ac_file is unchanged"
1769 rm -f conftest.h
1770 else
1771 rm -f $ac_file
1772 mv conftest.h $ac_file
1773 fi
1774fi; done
1775
1776EOF
1777
1778cat >> ${CONFIG_STATUS} <<EOF
1779ac_links="targ-cpu.c targ-cpu.h obj-format.h obj-format.c targ-env.h atof-targ.c"
1780ac_files="config/tc-${cpu_type}.c config/tc-${cpu_type}.h \
1781 config/obj-${obj_format}.h config/obj-${obj_format}.c \
1782 config/te-${emulation}.h config/atof-${atof}.c"
1783EOF
1784
1785cat >> ${CONFIG_STATUS} <<\EOF
1786while test -n "${ac_files}"; do
1787 set ${ac_links}; ac_link=$1; shift; ac_links=$*
1788 set ${ac_files}; ac_file=$1; shift; ac_files=$*
1789
1790 echo "linking ${ac_link} to ${srcdir}/${ac_file}"
1791
1792 if test ! -r ${srcdir}/${ac_file}; then
1793 { echo "configure: ${srcdir}/${ac_file}: File not found" 1>&2; exit 1; }
1794 fi
1795 rm -f ${ac_link}
1796 # Make a symlink if possible; otherwise try a hard link.
1797 if ln -s ${srcdir}/${ac_file} ${ac_link} 2>/dev/null ||
1798 ln ${srcdir}/${ac_file} ${ac_link}; then :
1799 else
1800 { echo "configure: can not link ${ac_link} to ${srcdir}/${ac_file}" 1>&2; exit 1; }
1801 fi
1802done
1803
1804EOF
1805chmod +x ${CONFIG_STATUS}
1806test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} ${CONFIG_STATUS}
1807
1808if test "${norecursion}" != yes; then
1809
1810 # Remove --cache-file and --srcdir arguments so they do not pile up.
1811 ac_sub_configure_args=
1812 ac_prev=
1813 for ac_arg in $configure_args; do
1814 if test -n "$ac_prev"; then
1815 ac_prev=
1816 continue
1817 fi
1818 case "$ac_arg" in
1819 -cache-file | --cache-file | --cache-fil | --cache-fi \
1820 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
1821 ac_prev=cache_file ;;
1822 -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
1823 | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
1824 ;;
1825 -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
1826 ac_prev=srcdir ;;
1827 -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
1828 ;;
1829 *[" "]*) ac_sub_configure_args="$ac_sub_configure_args '$ac_arg'" ;;
1830 *) ac_sub_configure_args="$ac_sub_configure_args $ac_arg" ;;
1831 esac
1832 done
1833
1834 for ac_config_dir in testsuite; do
1835
1836 # Do not complain, so a configure script can configure whichever
1837 # parts of a large source tree are present.
1838 if test ! -d ${srcdir}/${ac_config_dir}; then
1839 continue
1840 fi
1841
1842 echo configuring in ${ac_config_dir}
1843
1844 case "${srcdir}" in
1845 .) ;;
1846 *)
1847 if test -d ./${ac_config_dir} || mkdir ./${ac_config_dir}; then :;
1848 else
1849 { echo "configure: can not create `pwd`/${ac_config_dir}" 1>&2; exit 1; }
1850 fi
1851 ;;
1852 esac
1853
1854 ac_popdir=`pwd`
1855 cd ${ac_config_dir}
1856
1857 case "${srcdir}" in
1858 .) # No --srcdir option. We are building in place.
1859 ac_sub_srcdir=${srcdir} ;;
1860 /*) # Absolute path.
1861 ac_sub_srcdir=${srcdir}/${ac_config_dir} ;;
1862 *) # Relative path.
1863 ac_sub_srcdir=../${srcdir}/${ac_config_dir} ;;
1864 esac
1865
1866 # Check for guested configure; otherwise get Cygnus style configure.
1867 if test -f ${ac_sub_srcdir}/configure; then
1868 ac_sub_configure=${ac_sub_srcdir}/configure
1869 elif test -f ${ac_sub_srcdir}/configure.in; then
1870 ac_sub_configure=${ac_configure}
1871 else
1872 echo "configure: warning: no configuration information is in ${ac_config_dir}" 1>&2
1873 ac_sub_configure=
1874 fi
1875
1876 # The recursion is here.
1877 if test -n "${ac_sub_configure}"; then
1878
1879 # Make the cache file name correct relative to the subdirectory.
1880 # A "../" for each directory in /${ac_config_dir}.
1881 ac_dots=`echo /${ac_config_dir}|sed 's%/[^/]*%../%g'`
1882 case "$cache_file" in
1883 /*) ac_sub_cache_file=$cache_file ;;
1884 *) # Relative path.
1885 ac_sub_cache_file="$ac_dots$cache_file" ;;
1886 esac
1887
1888 echo "running ${CONFIG_SHELL-/bin/sh} ${ac_sub_configure} ${ac_sub_configure_args} --cache-file=$ac_sub_cache_file --srcdir=${ac_sub_srcdir}"
1889 if ${CONFIG_SHELL-/bin/sh} ${ac_sub_configure} ${ac_sub_configure_args} --cache-file=$ac_sub_cache_file --srcdir=${ac_sub_srcdir}
1890 then :
1891 else
1892 { echo "configure: ${ac_sub_configure} failed for ${ac_config_dir}" 1>&2; exit 1; }
1893 fi
1894 fi
1895
1896 cd ${ac_popdir}
1897 done
1898fi
1899