correctly regenerate configure
[deliverable/binutils-gdb.git] / configure
CommitLineData
a0da8069 1#! /bin/sh
a0da8069 2# Guess values for system-dependent variables and create Makefiles.
c6b750e1 3# Generated by GNU Autoconf 2.59.
a0da8069 4#
c6b750e1 5# Copyright (C) 2003 Free Software Foundation, Inc.
a0da8069
NN
6# This configure script is free software; the Free Software Foundation
7# gives unlimited permission to copy, distribute and modify it.
c6b750e1
DJ
8## --------------------- ##
9## M4sh Initialization. ##
10## --------------------- ##
11
12# Be Bourne compatible
13if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
14 emulate sh
15 NULLCMD=:
16 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
17 # is contrary to our usage. Disable this feature.
18 alias -g '${1+"$@"}'='"$@"'
19elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
20 set -o posix
21fi
22DUALCASE=1; export DUALCASE # for MKS sh
23
24# Support unset when possible.
25if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
26 as_unset=unset
27else
28 as_unset=false
29fi
30
31
32# Work around bugs in pre-3.0 UWIN ksh.
33$as_unset ENV MAIL MAILPATH
34PS1='$ '
35PS2='> '
36PS4='+ '
37
38# NLS nuisances.
39for as_var in \
40 LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
41 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
42 LC_TELEPHONE LC_TIME
43do
44 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
45 eval $as_var=C; export $as_var
46 else
47 $as_unset $as_var
48 fi
49done
50
51# Required to use basename.
52if expr a : '\(a\)' >/dev/null 2>&1; then
53 as_expr=expr
54else
55 as_expr=false
56fi
57
58if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
59 as_basename=basename
60else
61 as_basename=false
62fi
63
64
65# Name of the executable.
66as_me=`$as_basename "$0" ||
67$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
68 X"$0" : 'X\(//\)$' \| \
69 X"$0" : 'X\(/\)$' \| \
70 . : '\(.\)' 2>/dev/null ||
71echo X/"$0" |
72 sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
73 /^X\/\(\/\/\)$/{ s//\1/; q; }
74 /^X\/\(\/\).*/{ s//\1/; q; }
75 s/.*/./; q'`
76
77
78# PATH needs CR, and LINENO needs CR and PATH.
79# Avoid depending upon Character Ranges.
80as_cr_letters='abcdefghijklmnopqrstuvwxyz'
81as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
82as_cr_Letters=$as_cr_letters$as_cr_LETTERS
83as_cr_digits='0123456789'
84as_cr_alnum=$as_cr_Letters$as_cr_digits
85
86# The user is always right.
87if test "${PATH_SEPARATOR+set}" != set; then
88 echo "#! /bin/sh" >conf$$.sh
89 echo "exit 0" >>conf$$.sh
90 chmod +x conf$$.sh
91 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
92 PATH_SEPARATOR=';'
93 else
94 PATH_SEPARATOR=:
95 fi
96 rm -f conf$$.sh
97fi
98
99
100 as_lineno_1=$LINENO
101 as_lineno_2=$LINENO
102 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
103 test "x$as_lineno_1" != "x$as_lineno_2" &&
104 test "x$as_lineno_3" = "x$as_lineno_2" || {
105 # Find who we are. Look in the path if we contain no path at all
106 # relative or not.
107 case $0 in
108 *[\\/]* ) as_myself=$0 ;;
109 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
110for as_dir in $PATH
111do
112 IFS=$as_save_IFS
113 test -z "$as_dir" && as_dir=.
114 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
115done
116
117 ;;
118 esac
119 # We did not find ourselves, most probably we were run as `sh COMMAND'
120 # in which case we are not to be found in the path.
121 if test "x$as_myself" = x; then
122 as_myself=$0
123 fi
124 if test ! -f "$as_myself"; then
125 { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2
126 { (exit 1); exit 1; }; }
127 fi
128 case $CONFIG_SHELL in
129 '')
130 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
131for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
132do
133 IFS=$as_save_IFS
134 test -z "$as_dir" && as_dir=.
135 for as_base in sh bash ksh sh5; do
136 case $as_dir in
137 /*)
138 if ("$as_dir/$as_base" -c '
139 as_lineno_1=$LINENO
140 as_lineno_2=$LINENO
141 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
142 test "x$as_lineno_1" != "x$as_lineno_2" &&
143 test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then
144 $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
145 $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
146 CONFIG_SHELL=$as_dir/$as_base
147 export CONFIG_SHELL
148 exec "$CONFIG_SHELL" "$0" ${1+"$@"}
149 fi;;
150 esac
151 done
152done
153;;
154 esac
155
156 # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
157 # uniformly replaced by the line number. The first 'sed' inserts a
158 # line-number line before each line; the second 'sed' does the real
159 # work. The second script uses 'N' to pair each line-number line
160 # with the numbered line, and appends trailing '-' during
161 # substitution so that $LINENO is not a special case at line end.
162 # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
163 # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-)
164 sed '=' <$as_myself |
165 sed '
166 N
167 s,$,-,
168 : loop
169 s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
170 t loop
171 s,-$,,
172 s,^['$as_cr_digits']*\n,,
173 ' >$as_me.lineno &&
174 chmod +x $as_me.lineno ||
175 { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
176 { (exit 1); exit 1; }; }
177
178 # Don't try to exec as it changes $[0], causing all sort of problems
179 # (the dirname of $[0] is not the place where we might find the
180 # original and so on. Autoconf is especially sensible to this).
181 . ./$as_me.lineno
182 # Exit status is that of the last command.
183 exit
184}
185
186
187case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
188 *c*,-n*) ECHO_N= ECHO_C='
189' ECHO_T=' ' ;;
190 *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;;
191 *) ECHO_N= ECHO_C='\c' ECHO_T= ;;
192esac
193
194if expr a : '\(a\)' >/dev/null 2>&1; then
195 as_expr=expr
196else
197 as_expr=false
198fi
199
200rm -f conf$$ conf$$.exe conf$$.file
201echo >conf$$.file
202if ln -s conf$$.file conf$$ 2>/dev/null; then
203 # We could just check for DJGPP; but this test a) works b) is more generic
204 # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
205 if test -f conf$$.exe; then
206 # Don't use ln at all; we don't have any links
207 as_ln_s='cp -p'
208 else
209 as_ln_s='ln -s'
210 fi
211elif ln conf$$.file conf$$ 2>/dev/null; then
212 as_ln_s=ln
213else
214 as_ln_s='cp -p'
215fi
216rm -f conf$$ conf$$.exe conf$$.file
217
218if mkdir -p . 2>/dev/null; then
219 as_mkdir_p=:
220else
221 test -d ./-p && rmdir ./-p
222 as_mkdir_p=false
223fi
224
225as_executable_p="test -f"
226
227# Sed expression to map a string onto a valid CPP name.
228as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
229
230# Sed expression to map a string onto a valid variable name.
231as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
232
233
234# IFS
235# We need space, tab and new line, in precisely that order.
236as_nl='
237'
238IFS=" $as_nl"
239
240# CDPATH.
241$as_unset CDPATH
242
a0da8069 243
c6b750e1
DJ
244# Name of the host.
245# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
246# so uname gets run too.
247ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
248
249exec 6>&1
250
251#
252# Initializations.
253#
a0da8069 254ac_default_prefix=/usr/local
c6b750e1
DJ
255ac_config_libobj_dir=.
256cross_compiling=no
257subdirs=
258MFLAGS=
259MAKEFLAGS=
260SHELL=${CONFIG_SHELL-/bin/sh}
261
262# Maximum number of lines to put in a shell here document.
263# This variable seems obsolete. It should probably be removed, and
264# only ac_max_sed_lines should be used.
265: ${ac_max_here_lines=38}
266
267# Identity of this package.
268PACKAGE_NAME=
269PACKAGE_TARNAME=
270PACKAGE_VERSION=
271PACKAGE_STRING=
272PACKAGE_BUGREPORT=
273
274ac_unique_file="move-if-change"
7f6ef0c0 275ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os build_noncanonical host_noncanonical target_noncanonical host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA LN LN_S TOPLEVEL_CONFIGURE_ARGUMENTS build_libsubdir build_subdir host_subdir target_subdir CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT CXX CXXFLAGS ac_ct_CXX GNATBIND ac_ct_GNATBIND GNATMAKE ac_ct_GNATMAKE do_compare gmplibs gmpinc stage1_languages SYSROOT_CFLAGS_FOR_TARGET DEBUG_PREFIX_CFLAGS_FOR_TARGET CFLAGS_FOR_TARGET CXXFLAGS_FOR_TARGET RPATH_ENVVAR tooldir build_tooldir CONFIGURE_GDB_TK GDB_TK INSTALL_GDB_TK build_configargs build_configdirs host_configargs configdirs target_configargs AR_FOR_BUILD AS_FOR_BUILD CC_FOR_BUILD CFLAGS_FOR_BUILD CXXFLAGS_FOR_BUILD CXX_FOR_BUILD DLLTOOL_FOR_BUILD GCJ_FOR_BUILD GFORTRAN_FOR_BUILD LDFLAGS_FOR_BUILD LD_FOR_BUILD NM_FOR_BUILD RANLIB_FOR_BUILD WINDMC_FOR_BUILD WINDRES_FOR_BUILD config_shell YACC BISON M4 LEX FLEX MAKEINFO EXPECT RUNTEST AR AS DLLTOOL LD LIPO NM RANLIB STRIP WINDRES WINDMC OBJCOPY OBJDUMP CC_FOR_TARGET CXX_FOR_TARGET GCC_FOR_TARGET GCJ_FOR_TARGET GFORTRAN_FOR_TARGET AR_FOR_TARGET AS_FOR_TARGET DLLTOOL_FOR_TARGET LD_FOR_TARGET LIPO_FOR_TARGET NM_FOR_TARGET OBJDUMP_FOR_TARGET RANLIB_FOR_TARGET STRIP_FOR_TARGET WINDRES_FOR_TARGET WINDMC_FOR_TARGET RAW_CXX_FOR_TARGET FLAGS_FOR_TARGET COMPILER_AS_FOR_TARGET COMPILER_LD_FOR_TARGET COMPILER_NM_FOR_TARGET MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT stage1_cflags stage1_checking stage2_werror_flag datarootdir docdir pdfdir htmldir LIBOBJS LTLIBOBJS'
c6b750e1 276ac_subst_files='serialization_dependencies host_makefile_frag target_makefile_frag alphaieee_frag ospace_frag'
a0da8069
NN
277
278# Initialize some variables set by options.
c6b750e1
DJ
279ac_init_help=
280ac_init_version=false
a0da8069
NN
281# The variables have the same names as the options, with
282# dashes changed to underlines.
c6b750e1 283cache_file=/dev/null
a0da8069 284exec_prefix=NONE
a0da8069 285no_create=
a0da8069
NN
286no_recursion=
287prefix=NONE
288program_prefix=NONE
289program_suffix=NONE
290program_transform_name=s,x,x,
291silent=
292site=
293srcdir=
a0da8069
NN
294verbose=
295x_includes=NONE
296x_libraries=NONE
c6b750e1
DJ
297
298# Installation directory options.
299# These are left unexpanded so users can "make install exec_prefix=/foo"
300# and all the variables that are supposed to be based on exec_prefix
301# by default will actually change.
302# Use braces instead of parens because sh, perl, etc. also accept them.
a0da8069
NN
303bindir='${exec_prefix}/bin'
304sbindir='${exec_prefix}/sbin'
305libexecdir='${exec_prefix}/libexec'
306datadir='${prefix}/share'
307sysconfdir='${prefix}/etc'
308sharedstatedir='${prefix}/com'
309localstatedir='${prefix}/var'
310libdir='${exec_prefix}/lib'
311includedir='${prefix}/include'
312oldincludedir='/usr/include'
313infodir='${prefix}/info'
314mandir='${prefix}/man'
252b5132 315
a0da8069
NN
316ac_prev=
317for ac_option
318do
a0da8069
NN
319 # If the previous option needs an argument, assign it.
320 if test -n "$ac_prev"; then
321 eval "$ac_prev=\$ac_option"
322 ac_prev=
323 continue
324 fi
252b5132 325
c6b750e1 326 ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
a0da8069
NN
327
328 # Accept the important Cygnus configure options, so we can diagnose typos.
329
c6b750e1 330 case $ac_option in
a0da8069
NN
331
332 -bindir | --bindir | --bindi | --bind | --bin | --bi)
333 ac_prev=bindir ;;
334 -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
c6b750e1 335 bindir=$ac_optarg ;;
a0da8069
NN
336
337 -build | --build | --buil | --bui | --bu)
c6b750e1 338 ac_prev=build_alias ;;
a0da8069 339 -build=* | --build=* | --buil=* | --bui=* | --bu=*)
c6b750e1 340 build_alias=$ac_optarg ;;
a0da8069
NN
341
342 -cache-file | --cache-file | --cache-fil | --cache-fi \
343 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
344 ac_prev=cache_file ;;
345 -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
346 | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
c6b750e1
DJ
347 cache_file=$ac_optarg ;;
348
349 --config-cache | -C)
350 cache_file=config.cache ;;
a0da8069
NN
351
352 -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
353 ac_prev=datadir ;;
354 -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
355 | --da=*)
c6b750e1 356 datadir=$ac_optarg ;;
a0da8069
NN
357
358 -disable-* | --disable-*)
c6b750e1 359 ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
a0da8069 360 # Reject names that are not valid shell variable names.
c6b750e1
DJ
361 expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
362 { echo "$as_me: error: invalid feature name: $ac_feature" >&2
363 { (exit 1); exit 1; }; }
364 ac_feature=`echo $ac_feature | sed 's/-/_/g'`
365 eval "enable_$ac_feature=no" ;;
a0da8069
NN
366
367 -enable-* | --enable-*)
c6b750e1 368 ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
a0da8069 369 # Reject names that are not valid shell variable names.
c6b750e1
DJ
370 expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
371 { echo "$as_me: error: invalid feature name: $ac_feature" >&2
372 { (exit 1); exit 1; }; }
373 ac_feature=`echo $ac_feature | sed 's/-/_/g'`
374 case $ac_option in
375 *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
a0da8069
NN
376 *) ac_optarg=yes ;;
377 esac
c6b750e1 378 eval "enable_$ac_feature='$ac_optarg'" ;;
a0da8069
NN
379
380 -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
381 | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
382 | --exec | --exe | --ex)
383 ac_prev=exec_prefix ;;
384 -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
385 | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
386 | --exec=* | --exe=* | --ex=*)
c6b750e1 387 exec_prefix=$ac_optarg ;;
a0da8069
NN
388
389 -gas | --gas | --ga | --g)
390 # Obsolete; use --with-gas.
391 with_gas=yes ;;
392
c6b750e1
DJ
393 -help | --help | --hel | --he | -h)
394 ac_init_help=long ;;
395 -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
396 ac_init_help=recursive ;;
397 -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
398 ac_init_help=short ;;
a0da8069
NN
399
400 -host | --host | --hos | --ho)
c6b750e1 401 ac_prev=host_alias ;;
a0da8069 402 -host=* | --host=* | --hos=* | --ho=*)
c6b750e1 403 host_alias=$ac_optarg ;;
a0da8069
NN
404
405 -includedir | --includedir | --includedi | --included | --include \
406 | --includ | --inclu | --incl | --inc)
407 ac_prev=includedir ;;
408 -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
409 | --includ=* | --inclu=* | --incl=* | --inc=*)
c6b750e1 410 includedir=$ac_optarg ;;
a0da8069
NN
411
412 -infodir | --infodir | --infodi | --infod | --info | --inf)
413 ac_prev=infodir ;;
414 -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
c6b750e1 415 infodir=$ac_optarg ;;
a0da8069
NN
416
417 -libdir | --libdir | --libdi | --libd)
418 ac_prev=libdir ;;
419 -libdir=* | --libdir=* | --libdi=* | --libd=*)
c6b750e1 420 libdir=$ac_optarg ;;
a0da8069
NN
421
422 -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
423 | --libexe | --libex | --libe)
424 ac_prev=libexecdir ;;
425 -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
426 | --libexe=* | --libex=* | --libe=*)
c6b750e1 427 libexecdir=$ac_optarg ;;
a0da8069
NN
428
429 -localstatedir | --localstatedir | --localstatedi | --localstated \
430 | --localstate | --localstat | --localsta | --localst \
431 | --locals | --local | --loca | --loc | --lo)
432 ac_prev=localstatedir ;;
433 -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
434 | --localstate=* | --localstat=* | --localsta=* | --localst=* \
435 | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
c6b750e1 436 localstatedir=$ac_optarg ;;
a0da8069
NN
437
438 -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
439 ac_prev=mandir ;;
440 -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
c6b750e1 441 mandir=$ac_optarg ;;
a0da8069
NN
442
443 -nfp | --nfp | --nf)
444 # Obsolete; use --without-fp.
445 with_fp=no ;;
446
447 -no-create | --no-create | --no-creat | --no-crea | --no-cre \
c6b750e1 448 | --no-cr | --no-c | -n)
a0da8069
NN
449 no_create=yes ;;
450
451 -no-recursion | --no-recursion | --no-recursio | --no-recursi \
452 | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
453 no_recursion=yes ;;
454
455 -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
456 | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
457 | --oldin | --oldi | --old | --ol | --o)
458 ac_prev=oldincludedir ;;
459 -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
460 | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
461 | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
c6b750e1 462 oldincludedir=$ac_optarg ;;
a0da8069
NN
463
464 -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
465 ac_prev=prefix ;;
466 -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
c6b750e1 467 prefix=$ac_optarg ;;
a0da8069
NN
468
469 -program-prefix | --program-prefix | --program-prefi | --program-pref \
470 | --program-pre | --program-pr | --program-p)
471 ac_prev=program_prefix ;;
472 -program-prefix=* | --program-prefix=* | --program-prefi=* \
473 | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
c6b750e1 474 program_prefix=$ac_optarg ;;
a0da8069
NN
475
476 -program-suffix | --program-suffix | --program-suffi | --program-suff \
477 | --program-suf | --program-su | --program-s)
478 ac_prev=program_suffix ;;
479 -program-suffix=* | --program-suffix=* | --program-suffi=* \
480 | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
c6b750e1 481 program_suffix=$ac_optarg ;;
a0da8069
NN
482
483 -program-transform-name | --program-transform-name \
484 | --program-transform-nam | --program-transform-na \
485 | --program-transform-n | --program-transform- \
486 | --program-transform | --program-transfor \
487 | --program-transfo | --program-transf \
488 | --program-trans | --program-tran \
489 | --progr-tra | --program-tr | --program-t)
490 ac_prev=program_transform_name ;;
491 -program-transform-name=* | --program-transform-name=* \
492 | --program-transform-nam=* | --program-transform-na=* \
493 | --program-transform-n=* | --program-transform-=* \
494 | --program-transform=* | --program-transfor=* \
495 | --program-transfo=* | --program-transf=* \
496 | --program-trans=* | --program-tran=* \
497 | --progr-tra=* | --program-tr=* | --program-t=*)
c6b750e1 498 program_transform_name=$ac_optarg ;;
a0da8069
NN
499
500 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
501 | -silent | --silent | --silen | --sile | --sil)
502 silent=yes ;;
503
504 -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
505 ac_prev=sbindir ;;
506 -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
507 | --sbi=* | --sb=*)
c6b750e1 508 sbindir=$ac_optarg ;;
a0da8069
NN
509
510 -sharedstatedir | --sharedstatedir | --sharedstatedi \
511 | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
512 | --sharedst | --shareds | --shared | --share | --shar \
513 | --sha | --sh)
514 ac_prev=sharedstatedir ;;
515 -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
516 | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
517 | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
518 | --sha=* | --sh=*)
c6b750e1 519 sharedstatedir=$ac_optarg ;;
a0da8069
NN
520
521 -site | --site | --sit)
522 ac_prev=site ;;
523 -site=* | --site=* | --sit=*)
c6b750e1 524 site=$ac_optarg ;;
a0da8069
NN
525
526 -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
527 ac_prev=srcdir ;;
528 -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
c6b750e1 529 srcdir=$ac_optarg ;;
a0da8069
NN
530
531 -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
532 | --syscon | --sysco | --sysc | --sys | --sy)
533 ac_prev=sysconfdir ;;
534 -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
535 | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
c6b750e1 536 sysconfdir=$ac_optarg ;;
a0da8069
NN
537
538 -target | --target | --targe | --targ | --tar | --ta | --t)
c6b750e1 539 ac_prev=target_alias ;;
a0da8069 540 -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
c6b750e1 541 target_alias=$ac_optarg ;;
a0da8069
NN
542
543 -v | -verbose | --verbose | --verbos | --verbo | --verb)
544 verbose=yes ;;
545
c6b750e1
DJ
546 -version | --version | --versio | --versi | --vers | -V)
547 ac_init_version=: ;;
a0da8069
NN
548
549 -with-* | --with-*)
c6b750e1 550 ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
a0da8069 551 # Reject names that are not valid shell variable names.
c6b750e1
DJ
552 expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
553 { echo "$as_me: error: invalid package name: $ac_package" >&2
554 { (exit 1); exit 1; }; }
a0da8069 555 ac_package=`echo $ac_package| sed 's/-/_/g'`
c6b750e1
DJ
556 case $ac_option in
557 *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
a0da8069
NN
558 *) ac_optarg=yes ;;
559 esac
c6b750e1 560 eval "with_$ac_package='$ac_optarg'" ;;
a0da8069
NN
561
562 -without-* | --without-*)
c6b750e1 563 ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
a0da8069 564 # Reject names that are not valid shell variable names.
c6b750e1
DJ
565 expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
566 { echo "$as_me: error: invalid package name: $ac_package" >&2
567 { (exit 1); exit 1; }; }
568 ac_package=`echo $ac_package | sed 's/-/_/g'`
569 eval "with_$ac_package=no" ;;
a0da8069
NN
570
571 --x)
572 # Obsolete; use --with-x.
573 with_x=yes ;;
574
575 -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
576 | --x-incl | --x-inc | --x-in | --x-i)
577 ac_prev=x_includes ;;
578 -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
579 | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
c6b750e1 580 x_includes=$ac_optarg ;;
a0da8069
NN
581
582 -x-libraries | --x-libraries | --x-librarie | --x-librari \
583 | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
584 ac_prev=x_libraries ;;
585 -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
586 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
c6b750e1 587 x_libraries=$ac_optarg ;;
a0da8069 588
c6b750e1
DJ
589 -*) { echo "$as_me: error: unrecognized option: $ac_option
590Try \`$0 --help' for more information." >&2
591 { (exit 1); exit 1; }; }
a0da8069
NN
592 ;;
593
c6b750e1
DJ
594 *=*)
595 ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
596 # Reject names that are not valid shell variable names.
597 expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
598 { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
599 { (exit 1); exit 1; }; }
600 ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`
601 eval "$ac_envvar='$ac_optarg'"
602 export $ac_envvar ;;
603
a0da8069 604 *)
c6b750e1
DJ
605 # FIXME: should be removed in autoconf 3.0.
606 echo "$as_me: WARNING: you should use --build, --host, --target" >&2
607 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
608 echo "$as_me: WARNING: invalid host type: $ac_option" >&2
609 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
a0da8069
NN
610 ;;
611
612 esac
613done
614
615if test -n "$ac_prev"; then
c6b750e1
DJ
616 ac_option=--`echo $ac_prev | sed 's/_/-/g'`
617 { echo "$as_me: error: missing argument to $ac_option" >&2
618 { (exit 1); exit 1; }; }
a0da8069 619fi
a0da8069 620
c6b750e1
DJ
621# Be sure to have absolute paths.
622for ac_var in exec_prefix prefix
623do
624 eval ac_val=$`echo $ac_var`
625 case $ac_val in
626 [\\/$]* | ?:[\\/]* | NONE | '' ) ;;
627 *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
628 { (exit 1); exit 1; }; };;
629 esac
630done
a0da8069 631
c6b750e1
DJ
632# Be sure to have absolute paths.
633for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
634 localstatedir libdir includedir oldincludedir infodir mandir
a0da8069 635do
c6b750e1
DJ
636 eval ac_val=$`echo $ac_var`
637 case $ac_val in
638 [\\/$]* | ?:[\\/]* ) ;;
639 *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
640 { (exit 1); exit 1; }; };;
a0da8069
NN
641 esac
642done
643
c6b750e1
DJ
644# There might be people who depend on the old broken behavior: `$host'
645# used to hold the argument of --host etc.
646# FIXME: To remove some day.
647build=$build_alias
648host=$host_alias
649target=$target_alias
376a0e54 650
c6b750e1
DJ
651# FIXME: To remove some day.
652if test "x$host_alias" != x; then
653 if test "x$build_alias" = x; then
654 cross_compiling=maybe
655 echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
656 If a cross compiler is detected then cross compile mode will be used." >&2
657 elif test "x$build_alias" != "x$host_alias"; then
658 cross_compiling=yes
659 fi
660fi
661
662ac_tool_prefix=
663test -n "$host_alias" && ac_tool_prefix=$host_alias-
664
665test "$silent" = yes && exec 6>/dev/null
a0da8069 666
a0da8069
NN
667
668# Find the source files, if location was not specified.
669if test -z "$srcdir"; then
670 ac_srcdir_defaulted=yes
671 # Try the directory containing this script, then its parent.
c6b750e1
DJ
672 ac_confdir=`(dirname "$0") 2>/dev/null ||
673$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
674 X"$0" : 'X\(//\)[^/]' \| \
675 X"$0" : 'X\(//\)$' \| \
676 X"$0" : 'X\(/\)' \| \
677 . : '\(.\)' 2>/dev/null ||
678echo X"$0" |
679 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
680 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
681 /^X\(\/\/\)$/{ s//\1/; q; }
682 /^X\(\/\).*/{ s//\1/; q; }
683 s/.*/./; q'`
a0da8069
NN
684 srcdir=$ac_confdir
685 if test ! -r $srcdir/$ac_unique_file; then
686 srcdir=..
687 fi
688else
689 ac_srcdir_defaulted=no
690fi
691if test ! -r $srcdir/$ac_unique_file; then
692 if test "$ac_srcdir_defaulted" = yes; then
c6b750e1
DJ
693 { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2
694 { (exit 1); exit 1; }; }
a0da8069 695 else
c6b750e1
DJ
696 { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
697 { (exit 1); exit 1; }; }
698 fi
699fi
700(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null ||
701 { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2
702 { (exit 1); exit 1; }; }
703srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
704ac_env_build_alias_set=${build_alias+set}
705ac_env_build_alias_value=$build_alias
706ac_cv_env_build_alias_set=${build_alias+set}
707ac_cv_env_build_alias_value=$build_alias
708ac_env_host_alias_set=${host_alias+set}
709ac_env_host_alias_value=$host_alias
710ac_cv_env_host_alias_set=${host_alias+set}
711ac_cv_env_host_alias_value=$host_alias
712ac_env_target_alias_set=${target_alias+set}
713ac_env_target_alias_value=$target_alias
714ac_cv_env_target_alias_set=${target_alias+set}
715ac_cv_env_target_alias_value=$target_alias
9cc8ae67
PB
716ac_subdirs_all=`cd $srcdir && echo */configure | sed 's,/configure,,g'`
717
c6b750e1
DJ
718ac_env_CC_set=${CC+set}
719ac_env_CC_value=$CC
720ac_cv_env_CC_set=${CC+set}
721ac_cv_env_CC_value=$CC
722ac_env_CFLAGS_set=${CFLAGS+set}
723ac_env_CFLAGS_value=$CFLAGS
724ac_cv_env_CFLAGS_set=${CFLAGS+set}
725ac_cv_env_CFLAGS_value=$CFLAGS
726ac_env_LDFLAGS_set=${LDFLAGS+set}
727ac_env_LDFLAGS_value=$LDFLAGS
728ac_cv_env_LDFLAGS_set=${LDFLAGS+set}
729ac_cv_env_LDFLAGS_value=$LDFLAGS
730ac_env_CPPFLAGS_set=${CPPFLAGS+set}
731ac_env_CPPFLAGS_value=$CPPFLAGS
732ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set}
733ac_cv_env_CPPFLAGS_value=$CPPFLAGS
18f6b6ee
PB
734ac_env_CXX_set=${CXX+set}
735ac_env_CXX_value=$CXX
736ac_cv_env_CXX_set=${CXX+set}
737ac_cv_env_CXX_value=$CXX
738ac_env_CXXFLAGS_set=${CXXFLAGS+set}
739ac_env_CXXFLAGS_value=$CXXFLAGS
740ac_cv_env_CXXFLAGS_set=${CXXFLAGS+set}
741ac_cv_env_CXXFLAGS_value=$CXXFLAGS
9a819804
AO
742ac_env_AR_set=${AR+set}
743ac_env_AR_value=$AR
744ac_cv_env_AR_set=${AR+set}
745ac_cv_env_AR_value=$AR
746ac_env_AS_set=${AS+set}
747ac_env_AS_value=$AS
748ac_cv_env_AS_set=${AS+set}
749ac_cv_env_AS_value=$AS
750ac_env_DLLTOOL_set=${DLLTOOL+set}
751ac_env_DLLTOOL_value=$DLLTOOL
752ac_cv_env_DLLTOOL_set=${DLLTOOL+set}
753ac_cv_env_DLLTOOL_value=$DLLTOOL
754ac_env_LD_set=${LD+set}
755ac_env_LD_value=$LD
756ac_cv_env_LD_set=${LD+set}
757ac_cv_env_LD_value=$LD
758ac_env_LIPO_set=${LIPO+set}
759ac_env_LIPO_value=$LIPO
760ac_cv_env_LIPO_set=${LIPO+set}
761ac_cv_env_LIPO_value=$LIPO
762ac_env_NM_set=${NM+set}
763ac_env_NM_value=$NM
764ac_cv_env_NM_set=${NM+set}
765ac_cv_env_NM_value=$NM
766ac_env_RANLIB_set=${RANLIB+set}
767ac_env_RANLIB_value=$RANLIB
768ac_cv_env_RANLIB_set=${RANLIB+set}
769ac_cv_env_RANLIB_value=$RANLIB
770ac_env_STRIP_set=${STRIP+set}
771ac_env_STRIP_value=$STRIP
772ac_cv_env_STRIP_set=${STRIP+set}
773ac_cv_env_STRIP_value=$STRIP
774ac_env_WINDRES_set=${WINDRES+set}
775ac_env_WINDRES_value=$WINDRES
776ac_cv_env_WINDRES_set=${WINDRES+set}
777ac_cv_env_WINDRES_value=$WINDRES
0c24b341
NC
778ac_env_WINDMC_set=${WINDMC+set}
779ac_env_WINDMC_value=$WINDMC
780ac_cv_env_WINDMC_set=${WINDMC+set}
781ac_cv_env_WINDMC_value=$WINDMC
9a819804
AO
782ac_env_OBJCOPY_set=${OBJCOPY+set}
783ac_env_OBJCOPY_value=$OBJCOPY
784ac_cv_env_OBJCOPY_set=${OBJCOPY+set}
785ac_cv_env_OBJCOPY_value=$OBJCOPY
786ac_env_OBJDUMP_set=${OBJDUMP+set}
787ac_env_OBJDUMP_value=$OBJDUMP
788ac_cv_env_OBJDUMP_set=${OBJDUMP+set}
789ac_cv_env_OBJDUMP_value=$OBJDUMP
790ac_env_CC_FOR_TARGET_set=${CC_FOR_TARGET+set}
791ac_env_CC_FOR_TARGET_value=$CC_FOR_TARGET
792ac_cv_env_CC_FOR_TARGET_set=${CC_FOR_TARGET+set}
793ac_cv_env_CC_FOR_TARGET_value=$CC_FOR_TARGET
794ac_env_CXX_FOR_TARGET_set=${CXX_FOR_TARGET+set}
795ac_env_CXX_FOR_TARGET_value=$CXX_FOR_TARGET
796ac_cv_env_CXX_FOR_TARGET_set=${CXX_FOR_TARGET+set}
797ac_cv_env_CXX_FOR_TARGET_value=$CXX_FOR_TARGET
798ac_env_GCC_FOR_TARGET_set=${GCC_FOR_TARGET+set}
799ac_env_GCC_FOR_TARGET_value=$GCC_FOR_TARGET
800ac_cv_env_GCC_FOR_TARGET_set=${GCC_FOR_TARGET+set}
801ac_cv_env_GCC_FOR_TARGET_value=$GCC_FOR_TARGET
802ac_env_GCJ_FOR_TARGET_set=${GCJ_FOR_TARGET+set}
803ac_env_GCJ_FOR_TARGET_value=$GCJ_FOR_TARGET
804ac_cv_env_GCJ_FOR_TARGET_set=${GCJ_FOR_TARGET+set}
805ac_cv_env_GCJ_FOR_TARGET_value=$GCJ_FOR_TARGET
806ac_env_GFORTRAN_FOR_TARGET_set=${GFORTRAN_FOR_TARGET+set}
807ac_env_GFORTRAN_FOR_TARGET_value=$GFORTRAN_FOR_TARGET
808ac_cv_env_GFORTRAN_FOR_TARGET_set=${GFORTRAN_FOR_TARGET+set}
809ac_cv_env_GFORTRAN_FOR_TARGET_value=$GFORTRAN_FOR_TARGET
810ac_env_AR_FOR_TARGET_set=${AR_FOR_TARGET+set}
811ac_env_AR_FOR_TARGET_value=$AR_FOR_TARGET
812ac_cv_env_AR_FOR_TARGET_set=${AR_FOR_TARGET+set}
813ac_cv_env_AR_FOR_TARGET_value=$AR_FOR_TARGET
814ac_env_AS_FOR_TARGET_set=${AS_FOR_TARGET+set}
815ac_env_AS_FOR_TARGET_value=$AS_FOR_TARGET
816ac_cv_env_AS_FOR_TARGET_set=${AS_FOR_TARGET+set}
817ac_cv_env_AS_FOR_TARGET_value=$AS_FOR_TARGET
818ac_env_DLLTOOL_FOR_TARGET_set=${DLLTOOL_FOR_TARGET+set}
819ac_env_DLLTOOL_FOR_TARGET_value=$DLLTOOL_FOR_TARGET
820ac_cv_env_DLLTOOL_FOR_TARGET_set=${DLLTOOL_FOR_TARGET+set}
821ac_cv_env_DLLTOOL_FOR_TARGET_value=$DLLTOOL_FOR_TARGET
822ac_env_LD_FOR_TARGET_set=${LD_FOR_TARGET+set}
823ac_env_LD_FOR_TARGET_value=$LD_FOR_TARGET
824ac_cv_env_LD_FOR_TARGET_set=${LD_FOR_TARGET+set}
825ac_cv_env_LD_FOR_TARGET_value=$LD_FOR_TARGET
826ac_env_LIPO_FOR_TARGET_set=${LIPO_FOR_TARGET+set}
827ac_env_LIPO_FOR_TARGET_value=$LIPO_FOR_TARGET
828ac_cv_env_LIPO_FOR_TARGET_set=${LIPO_FOR_TARGET+set}
829ac_cv_env_LIPO_FOR_TARGET_value=$LIPO_FOR_TARGET
830ac_env_NM_FOR_TARGET_set=${NM_FOR_TARGET+set}
831ac_env_NM_FOR_TARGET_value=$NM_FOR_TARGET
832ac_cv_env_NM_FOR_TARGET_set=${NM_FOR_TARGET+set}
833ac_cv_env_NM_FOR_TARGET_value=$NM_FOR_TARGET
834ac_env_OBJDUMP_FOR_TARGET_set=${OBJDUMP_FOR_TARGET+set}
835ac_env_OBJDUMP_FOR_TARGET_value=$OBJDUMP_FOR_TARGET
836ac_cv_env_OBJDUMP_FOR_TARGET_set=${OBJDUMP_FOR_TARGET+set}
837ac_cv_env_OBJDUMP_FOR_TARGET_value=$OBJDUMP_FOR_TARGET
838ac_env_RANLIB_FOR_TARGET_set=${RANLIB_FOR_TARGET+set}
839ac_env_RANLIB_FOR_TARGET_value=$RANLIB_FOR_TARGET
840ac_cv_env_RANLIB_FOR_TARGET_set=${RANLIB_FOR_TARGET+set}
841ac_cv_env_RANLIB_FOR_TARGET_value=$RANLIB_FOR_TARGET
842ac_env_STRIP_FOR_TARGET_set=${STRIP_FOR_TARGET+set}
843ac_env_STRIP_FOR_TARGET_value=$STRIP_FOR_TARGET
844ac_cv_env_STRIP_FOR_TARGET_set=${STRIP_FOR_TARGET+set}
845ac_cv_env_STRIP_FOR_TARGET_value=$STRIP_FOR_TARGET
846ac_env_WINDRES_FOR_TARGET_set=${WINDRES_FOR_TARGET+set}
847ac_env_WINDRES_FOR_TARGET_value=$WINDRES_FOR_TARGET
848ac_cv_env_WINDRES_FOR_TARGET_set=${WINDRES_FOR_TARGET+set}
849ac_cv_env_WINDRES_FOR_TARGET_value=$WINDRES_FOR_TARGET
0c24b341
NC
850ac_env_WINDMC_FOR_TARGET_set=${WINDMC_FOR_TARGET+set}
851ac_env_WINDMC_FOR_TARGET_value=$WINDMC_FOR_TARGET
852ac_cv_env_WINDMC_FOR_TARGET_set=${WINDMC_FOR_TARGET+set}
853ac_cv_env_WINDMC_FOR_TARGET_value=$WINDMC_FOR_TARGET
c6b750e1
DJ
854
855#
856# Report the --help message.
857#
858if test "$ac_init_help" = "long"; then
859 # Omit some internal or obsolete options to make the list less imposing.
860 # This message is too long to be a string in the A/UX 3.1 sh.
861 cat <<_ACEOF
862\`configure' configures this package to adapt to many kinds of systems.
863
864Usage: $0 [OPTION]... [VAR=VALUE]...
865
866To assign environment variables (e.g., CC, CFLAGS...), specify them as
867VAR=VALUE. See below for descriptions of some of the useful variables.
868
869Defaults for the options are specified in brackets.
870
871Configuration:
872 -h, --help display this help and exit
873 --help=short display options specific to this package
874 --help=recursive display the short help of all the included packages
875 -V, --version display version information and exit
876 -q, --quiet, --silent do not print \`checking...' messages
877 --cache-file=FILE cache test results in FILE [disabled]
878 -C, --config-cache alias for \`--cache-file=config.cache'
879 -n, --no-create do not create output files
880 --srcdir=DIR find the sources in DIR [configure dir or \`..']
881
882_ACEOF
883
884 cat <<_ACEOF
885Installation directories:
886 --prefix=PREFIX install architecture-independent files in PREFIX
887 [$ac_default_prefix]
888 --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
889 [PREFIX]
890
891By default, \`make install' will install all the files in
892\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
893an installation prefix other than \`$ac_default_prefix' using \`--prefix',
894for instance \`--prefix=\$HOME'.
895
896For better control, use the options below.
897
898Fine tuning of the installation directories:
899 --bindir=DIR user executables [EPREFIX/bin]
900 --sbindir=DIR system admin executables [EPREFIX/sbin]
901 --libexecdir=DIR program executables [EPREFIX/libexec]
902 --datadir=DIR read-only architecture-independent data [PREFIX/share]
903 --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
904 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
905 --localstatedir=DIR modifiable single-machine data [PREFIX/var]
906 --libdir=DIR object code libraries [EPREFIX/lib]
907 --includedir=DIR C header files [PREFIX/include]
908 --oldincludedir=DIR C header files for non-gcc [/usr/include]
909 --infodir=DIR info documentation [PREFIX/info]
910 --mandir=DIR man documentation [PREFIX/man]
911_ACEOF
912
913 cat <<\_ACEOF
914
915Program names:
916 --program-prefix=PREFIX prepend PREFIX to installed program names
917 --program-suffix=SUFFIX append SUFFIX to installed program names
918 --program-transform-name=PROGRAM run sed PROGRAM on installed program names
919
920System types:
921 --build=BUILD configure for building on BUILD [guessed]
922 --host=HOST cross-compile to build programs to run on HOST [BUILD]
923 --target=TARGET configure for building compilers for TARGET [HOST]
924_ACEOF
a0da8069 925fi
a0da8069 926
c6b750e1
DJ
927if test -n "$ac_init_help"; then
928
929 cat <<\_ACEOF
930
931Optional Features:
932 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
933 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
93f9b408 934 --enable-gold use gold instead of ld
521ec477
DD
935 --enable-libada build libada directory
936 --enable-libssp build libssp directory
937 --enable-stage1-languages[=all] choose additional languages to build during
c6b750e1 938 stage1. Mostly useful for compiler development.
521ec477
DD
939 --enable-objc-gc enable use of Boehm's garbage collector with the
940 GNU Objective-C runtime
941 --enable-bootstrap enable bootstrapping [yes if native build]
942 --enable-serial-[{host,target,build}-]configure
943 force sequential configuration of
c6b750e1 944 sub-packages for the host, target or build
521ec477 945 machine, or all sub-packages
c6b750e1
DJ
946 --enable-maintainer-mode enable make rules and dependencies not useful
947 (and sometimes confusing) to the casual installer
521ec477
DD
948 --enable-stage1-checking[=all] choose additional checking for stage1
949 of the compiler
c6b750e1
DJ
950 --enable-werror enable -Werror in bootstrap stage2 and later
951
952Optional Packages:
953 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
954 --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
955 --with-build-libsubdir=DIR Directory where to find libraries for build system
521ec477
DD
956 --with-mpfr-dir=PATH this option has been REMOVED
957 --with-mpfr=PATH specify prefix directory for installed MPFR package.
c6b750e1
DJ
958 Equivalent to --with-mpfr-include=PATH/include
959 plus --with-mpfr-lib=PATH/lib
960 --with-mpfr-include=PATH
521ec477
DD
961 specify directory for installed MPFR include files
962 --with-mpfr-lib=PATH specify directory for the installed MPFR library
963 --with-gmp-dir=PATH this option has been REMOVED
964 --with-gmp=PATH specify prefix directory for the installed GMP package.
c6b750e1
DJ
965 Equivalent to --with-gmp-include=PATH/include
966 plus --with-gmp-lib=PATH/lib
521ec477
DD
967 --with-gmp-include=PATH specify directory for installed GMP include files
968 --with-gmp-lib=PATH specify directory for the installed GMP library
969 --with-build-sysroot=SYSROOT
c6b750e1 970 use sysroot as the system root during the build
8a6ee3ab
JM
971 --with-debug-prefix-map='A=B C=D ...'
972 map A to B, C to D ... in debug information
521ec477 973 --with-build-time-tools=PATH
c6b750e1 974 use given path to find target tools during the build
521ec477
DD
975 --with-datarootdir use datarootdir as the data root directory.
976 --with-docdir install documentation in this directory.
977 --with-pdfdir install pdf in this directory.
978 --with-htmldir install html in this directory.
c6b750e1
DJ
979
980Some influential environment variables:
981 CC C compiler command
982 CFLAGS C compiler flags
983 LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
984 nonstandard directory <lib dir>
985 CPPFLAGS C/C++ preprocessor flags, e.g. -I<include dir> if you have
986 headers in a nonstandard directory <include dir>
18f6b6ee
PB
987 CXX C++ compiler command
988 CXXFLAGS C++ compiler flags
9a819804
AO
989 AR AR for the host
990 AS AS for the host
991 DLLTOOL DLLTOOL for the host
992 LD LD for the host
993 LIPO LIPO for the host
994 NM NM for the host
995 RANLIB RANLIB for the host
996 STRIP STRIP for the host
997 WINDRES WINDRES for the host
0c24b341 998 WINDMC WINDMC for the host
9a819804
AO
999 OBJCOPY OBJCOPY for the host
1000 OBJDUMP OBJDUMP for the host
1001 CC_FOR_TARGET
1002 CC for the target
1003 CXX_FOR_TARGET
1004 CXX for the target
1005 GCC_FOR_TARGET
1006 GCC for the target
1007 GCJ_FOR_TARGET
1008 GCJ for the target
1009 GFORTRAN_FOR_TARGET
1010 GFORTRAN for the target
1011 AR_FOR_TARGET
1012 AR for the target
1013 AS_FOR_TARGET
1014 AS for the target
1015 DLLTOOL_FOR_TARGET
1016 DLLTOOL for the target
1017 LD_FOR_TARGET
1018 LD for the target
1019 LIPO_FOR_TARGET
1020 LIPO for the target
1021 NM_FOR_TARGET
1022 NM for the target
1023 OBJDUMP_FOR_TARGET
1024 OBJDUMP for the target
1025 RANLIB_FOR_TARGET
1026 RANLIB for the target
1027 STRIP_FOR_TARGET
1028 STRIP for the target
1029 WINDRES_FOR_TARGET
1030 WINDRES for the target
0c24b341
NC
1031 WINDMC_FOR_TARGET
1032 WINDMC for the target
c6b750e1
DJ
1033
1034Use these variables to override the choices made by `configure' or to help
1035it to find libraries and programs with nonstandard names/locations.
1036
1037_ACEOF
1038fi
1039
1040if test "$ac_init_help" = "recursive"; then
1041 # If there are subdirs, report their specific --help.
1042 ac_popdir=`pwd`
1043 for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
1044 test -d $ac_dir || continue
1045 ac_builddir=.
1046
1047if test "$ac_dir" != .; then
1048 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
1049 # A "../" for each directory in $ac_dir_suffix.
1050 ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
1051else
1052 ac_dir_suffix= ac_top_builddir=
1053fi
1054
1055case $srcdir in
1056 .) # No --srcdir option. We are building in place.
1057 ac_srcdir=.
1058 if test -z "$ac_top_builddir"; then
1059 ac_top_srcdir=.
1060 else
1061 ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
1062 fi ;;
1063 [\\/]* | ?:[\\/]* ) # Absolute path.
1064 ac_srcdir=$srcdir$ac_dir_suffix;
1065 ac_top_srcdir=$srcdir ;;
1066 *) # Relative path.
1067 ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
1068 ac_top_srcdir=$ac_top_builddir$srcdir ;;
1069esac
1070
1071# Do not use `cd foo && pwd` to compute absolute paths, because
1072# the directories may not exist.
1073case `pwd` in
1074.) ac_abs_builddir="$ac_dir";;
1075*)
1076 case "$ac_dir" in
1077 .) ac_abs_builddir=`pwd`;;
1078 [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
1079 *) ac_abs_builddir=`pwd`/"$ac_dir";;
1080 esac;;
1081esac
1082case $ac_abs_builddir in
1083.) ac_abs_top_builddir=${ac_top_builddir}.;;
1084*)
1085 case ${ac_top_builddir}. in
1086 .) ac_abs_top_builddir=$ac_abs_builddir;;
1087 [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
1088 *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
1089 esac;;
1090esac
1091case $ac_abs_builddir in
1092.) ac_abs_srcdir=$ac_srcdir;;
1093*)
1094 case $ac_srcdir in
1095 .) ac_abs_srcdir=$ac_abs_builddir;;
1096 [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
1097 *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
1098 esac;;
1099esac
1100case $ac_abs_builddir in
1101.) ac_abs_top_srcdir=$ac_top_srcdir;;
1102*)
1103 case $ac_top_srcdir in
1104 .) ac_abs_top_srcdir=$ac_abs_builddir;;
1105 [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
1106 *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
1107 esac;;
1108esac
1109
1110 cd $ac_dir
1111 # Check for guested configure; otherwise get Cygnus style configure.
1112 if test -f $ac_srcdir/configure.gnu; then
1113 echo
1114 $SHELL $ac_srcdir/configure.gnu --help=recursive
1115 elif test -f $ac_srcdir/configure; then
1116 echo
1117 $SHELL $ac_srcdir/configure --help=recursive
1118 elif test -f $ac_srcdir/configure.ac ||
1119 test -f $ac_srcdir/configure.in; then
1120 echo
1121 $ac_configure --help
1122 else
1123 echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
1124 fi
1125 cd $ac_popdir
1126 done
1127fi
1128
1129test -n "$ac_init_help" && exit 0
1130if $ac_init_version; then
1131 cat <<\_ACEOF
1132
1133Copyright (C) 2003 Free Software Foundation, Inc.
1134This configure script is free software; the Free Software Foundation
1135gives unlimited permission to copy, distribute and modify it.
1136_ACEOF
1137 exit 0
1138fi
1139exec 5>config.log
1140cat >&5 <<_ACEOF
1141This file contains any messages produced by compilers while
1142running configure, to aid debugging if configure makes a mistake.
1143
1144It was created by $as_me, which was
1145generated by GNU Autoconf 2.59. Invocation command line was
1146
1147 $ $0 $@
1148
1149_ACEOF
1150{
1151cat <<_ASUNAME
1152## --------- ##
1153## Platform. ##
1154## --------- ##
1155
1156hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
1157uname -m = `(uname -m) 2>/dev/null || echo unknown`
1158uname -r = `(uname -r) 2>/dev/null || echo unknown`
1159uname -s = `(uname -s) 2>/dev/null || echo unknown`
1160uname -v = `(uname -v) 2>/dev/null || echo unknown`
1161
1162/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
1163/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
1164
1165/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
1166/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
1167/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
1168hostinfo = `(hostinfo) 2>/dev/null || echo unknown`
1169/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
1170/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
1171/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
1172
1173_ASUNAME
1174
1175as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1176for as_dir in $PATH
1177do
1178 IFS=$as_save_IFS
1179 test -z "$as_dir" && as_dir=.
1180 echo "PATH: $as_dir"
1181done
1182
1183} >&5
1184
1185cat >&5 <<_ACEOF
1186
1187
1188## ----------- ##
1189## Core tests. ##
1190## ----------- ##
1191
1192_ACEOF
1193
1194
1195# Keep a trace of the command line.
1196# Strip out --no-create and --no-recursion so they do not pile up.
1197# Strip out --silent because we don't want to record it for future runs.
1198# Also quote any args containing shell meta-characters.
1199# Make two passes to allow for proper duplicate-argument suppression.
1200ac_configure_args=
1201ac_configure_args0=
1202ac_configure_args1=
1203ac_sep=
1204ac_must_keep_next=false
1205for ac_pass in 1 2
1206do
1207 for ac_arg
1208 do
1209 case $ac_arg in
1210 -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
1211 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1212 | -silent | --silent | --silen | --sile | --sil)
1213 continue ;;
1214 *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
1215 ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1216 esac
1217 case $ac_pass in
1218 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
1219 2)
1220 ac_configure_args1="$ac_configure_args1 '$ac_arg'"
1221 if test $ac_must_keep_next = true; then
1222 ac_must_keep_next=false # Got value, back to normal.
1223 else
1224 case $ac_arg in
1225 *=* | --config-cache | -C | -disable-* | --disable-* \
1226 | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
1227 | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
1228 | -with-* | --with-* | -without-* | --without-* | --x)
1229 case "$ac_configure_args0 " in
1230 "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
1231 esac
1232 ;;
1233 -* ) ac_must_keep_next=true ;;
1234 esac
1235 fi
1236 ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
1237 # Get rid of the leading space.
1238 ac_sep=" "
1239 ;;
1240 esac
1241 done
1242done
1243$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; }
1244$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; }
1245
1246# When interrupted or exit'd, cleanup temporary files, and complete
1247# config.log. We remove comments because anyway the quotes in there
1248# would cause problems or look ugly.
1249# WARNING: Be sure not to use single quotes in there, as some shells,
1250# such as our DU 5.0 friend, will then `close' the trap.
1251trap 'exit_status=$?
1252 # Save into config.log some information that might help in debugging.
1253 {
1254 echo
1255
1256 cat <<\_ASBOX
1257## ---------------- ##
1258## Cache variables. ##
1259## ---------------- ##
1260_ASBOX
1261 echo
1262 # The following way of writing the cache mishandles newlines in values,
1263{
1264 (set) 2>&1 |
1265 case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
1266 *ac_space=\ *)
1267 sed -n \
1268 "s/'"'"'/'"'"'\\\\'"'"''"'"'/g;
1269 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p"
1270 ;;
1271 *)
1272 sed -n \
1273 "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
1274 ;;
1275 esac;
1276}
1277 echo
1278
1279 cat <<\_ASBOX
1280## ----------------- ##
1281## Output variables. ##
1282## ----------------- ##
1283_ASBOX
1284 echo
1285 for ac_var in $ac_subst_vars
1286 do
1287 eval ac_val=$`echo $ac_var`
1288 echo "$ac_var='"'"'$ac_val'"'"'"
1289 done | sort
1290 echo
1291
1292 if test -n "$ac_subst_files"; then
1293 cat <<\_ASBOX
1294## ------------- ##
1295## Output files. ##
1296## ------------- ##
1297_ASBOX
1298 echo
1299 for ac_var in $ac_subst_files
1300 do
1301 eval ac_val=$`echo $ac_var`
1302 echo "$ac_var='"'"'$ac_val'"'"'"
1303 done | sort
1304 echo
1305 fi
1306
1307 if test -s confdefs.h; then
1308 cat <<\_ASBOX
1309## ----------- ##
1310## confdefs.h. ##
1311## ----------- ##
1312_ASBOX
1313 echo
1314 sed "/^$/d" confdefs.h | sort
1315 echo
1316 fi
1317 test "$ac_signal" != 0 &&
1318 echo "$as_me: caught signal $ac_signal"
1319 echo "$as_me: exit $exit_status"
1320 } >&5
1321 rm -f core *.core &&
1322 rm -rf conftest* confdefs* conf$$* $ac_clean_files &&
1323 exit $exit_status
1324 ' 0
1325for ac_signal in 1 2 13 15; do
1326 trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
1327done
1328ac_signal=0
1329
1330# confdefs.h avoids OS command line length limits that DEFS can exceed.
1331rm -rf conftest* confdefs.h
1332# AIX cpp loses on an empty file, so make sure it contains at least a newline.
1333echo >confdefs.h
1334
1335# Predefined preprocessor variables.
1336
1337cat >>confdefs.h <<_ACEOF
1338#define PACKAGE_NAME "$PACKAGE_NAME"
1339_ACEOF
1340
1341
1342cat >>confdefs.h <<_ACEOF
1343#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
1344_ACEOF
1345
1346
1347cat >>confdefs.h <<_ACEOF
1348#define PACKAGE_VERSION "$PACKAGE_VERSION"
1349_ACEOF
1350
1351
1352cat >>confdefs.h <<_ACEOF
1353#define PACKAGE_STRING "$PACKAGE_STRING"
1354_ACEOF
1355
1356
1357cat >>confdefs.h <<_ACEOF
1358#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
1359_ACEOF
1360
1361
1362# Let the site file select an alternate cache file if it wants to.
a0da8069 1363# Prefer explicitly selected file to automatically selected ones.
e3c770b1
EB
1364if test -z "$CONFIG_SITE"; then
1365 if test "x$prefix" != xNONE; then
1366 CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
1367 else
1368 CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
a0da8069
NN
1369 fi
1370fi
1371for ac_site_file in $CONFIG_SITE; do
1372 if test -r "$ac_site_file"; then
c6b750e1
DJ
1373 { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
1374echo "$as_me: loading site script $ac_site_file" >&6;}
1375 sed 's/^/| /' "$ac_site_file" >&5
a0da8069
NN
1376 . "$ac_site_file"
1377 fi
1378done
1379
1380if test -r "$cache_file"; then
c6b750e1
DJ
1381 # Some versions of bash will fail to source /dev/null (special
1382 # files actually), so we avoid doing that.
1383 if test -f "$cache_file"; then
1384 { echo "$as_me:$LINENO: loading cache $cache_file" >&5
1385echo "$as_me: loading cache $cache_file" >&6;}
1386 case $cache_file in
1387 [\\/]* | ?:[\\/]* ) . $cache_file;;
1388 *) . ./$cache_file;;
1389 esac
1390 fi
a0da8069 1391else
c6b750e1
DJ
1392 { echo "$as_me:$LINENO: creating cache $cache_file" >&5
1393echo "$as_me: creating cache $cache_file" >&6;}
1394 >$cache_file
1395fi
1396
1397# Check that the precious variables saved in the cache have kept the same
1398# value.
1399ac_cache_corrupted=false
1400for ac_var in `(set) 2>&1 |
1401 sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
1402 eval ac_old_set=\$ac_cv_env_${ac_var}_set
1403 eval ac_new_set=\$ac_env_${ac_var}_set
1404 eval ac_old_val="\$ac_cv_env_${ac_var}_value"
1405 eval ac_new_val="\$ac_env_${ac_var}_value"
1406 case $ac_old_set,$ac_new_set in
1407 set,)
1408 { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
1409echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
1410 ac_cache_corrupted=: ;;
1411 ,set)
1412 { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
1413echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
1414 ac_cache_corrupted=: ;;
1415 ,);;
1416 *)
1417 if test "x$ac_old_val" != "x$ac_new_val"; then
1418 { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
1419echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
1420 { echo "$as_me:$LINENO: former value: $ac_old_val" >&5
1421echo "$as_me: former value: $ac_old_val" >&2;}
1422 { echo "$as_me:$LINENO: current value: $ac_new_val" >&5
1423echo "$as_me: current value: $ac_new_val" >&2;}
1424 ac_cache_corrupted=:
1425 fi;;
1426 esac
1427 # Pass precious variables to config.status.
1428 if test "$ac_new_set" = set; then
1429 case $ac_new_val in
1430 *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
1431 ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
1432 *) ac_arg=$ac_var=$ac_new_val ;;
1433 esac
1434 case " $ac_configure_args " in
1435 *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
1436 *) ac_configure_args="$ac_configure_args '$ac_arg'" ;;
1437 esac
1438 fi
1439done
1440if $ac_cache_corrupted; then
1441 { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
1442echo "$as_me: error: changes in the environment can compromise the build" >&2;}
1443 { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
1444echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
1445 { (exit 1); exit 1; }; }
a0da8069
NN
1446fi
1447
1448ac_ext=c
a0da8069 1449ac_cpp='$CPP $CPPFLAGS'
c6b750e1
DJ
1450ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1451ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1452ac_compiler_gnu=$ac_cv_c_compiler_gnu
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
a0da8069
NN
1466
1467
75778ec4 1468
c6b750e1
DJ
1469
1470
1471
1472
1473
1474# Find the build, host, and target systems.
a0da8069 1475ac_aux_dir=
315b3b02 1476for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
a0da8069
NN
1477 if test -f $ac_dir/install-sh; then
1478 ac_aux_dir=$ac_dir
1479 ac_install_sh="$ac_aux_dir/install-sh -c"
1480 break
1481 elif test -f $ac_dir/install.sh; then
1482 ac_aux_dir=$ac_dir
1483 ac_install_sh="$ac_aux_dir/install.sh -c"
1484 break
c6b750e1
DJ
1485 elif test -f $ac_dir/shtool; then
1486 ac_aux_dir=$ac_dir
1487 ac_install_sh="$ac_aux_dir/shtool install -c"
1488 break
a0da8069
NN
1489 fi
1490done
1491if test -z "$ac_aux_dir"; then
c6b750e1
DJ
1492 { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
1493echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
1494 { (exit 1); exit 1; }; }
a0da8069 1495fi
c6b750e1
DJ
1496ac_config_guess="$SHELL $ac_aux_dir/config.guess"
1497ac_config_sub="$SHELL $ac_aux_dir/config.sub"
1498ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
a0da8069 1499
c6b750e1
DJ
1500# Make sure we can run config.sub.
1501$ac_config_sub sun4 >/dev/null 2>&1 ||
1502 { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5
1503echo "$as_me: error: cannot run $ac_config_sub" >&2;}
1504 { (exit 1); exit 1; }; }
1505
1506echo "$as_me:$LINENO: checking build system type" >&5
1507echo $ECHO_N "checking build system type... $ECHO_C" >&6
1508if test "${ac_cv_build+set}" = set; then
1509 echo $ECHO_N "(cached) $ECHO_C" >&6
1510else
1511 ac_cv_build_alias=$build_alias
1512test -z "$ac_cv_build_alias" &&
1513 ac_cv_build_alias=`$ac_config_guess`
1514test -z "$ac_cv_build_alias" &&
1515 { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
1516echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
1517 { (exit 1); exit 1; }; }
1518ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
1519 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5
1520echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;}
1521 { (exit 1); exit 1; }; }
1522
1523fi
1524echo "$as_me:$LINENO: result: $ac_cv_build" >&5
1525echo "${ECHO_T}$ac_cv_build" >&6
1526build=$ac_cv_build
1527build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
1528build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
1529build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
a0da8069 1530
a0da8069 1531
c6b750e1
DJ
1532 case ${build_alias} in
1533 "") build_noncanonical=${build} ;;
1534 *) build_noncanonical=${build_alias} ;;
cac3d6c4
CM
1535esac
1536
1537
cac3d6c4 1538
c6b750e1
DJ
1539 case ${host_alias} in
1540 "") host_noncanonical=${build_noncanonical} ;;
1541 *) host_noncanonical=${host_alias} ;;
cac3d6c4
CM
1542esac
1543
cac3d6c4 1544
c6b750e1
DJ
1545
1546 case ${target_alias} in
1547 "") target_noncanonical=${host_noncanonical} ;;
1548 *) target_noncanonical=${target_alias} ;;
cac3d6c4
CM
1549esac
1550
cac3d6c4 1551
c6b750e1
DJ
1552
1553
1554test "$host_noncanonical" = "$target_noncanonical" &&
a0da8069
NN
1555 test "$program_prefix$program_suffix$program_transform_name" = \
1556 NONENONEs,x,x, &&
c6b750e1 1557 program_transform_name=s,y,y,
cac3d6c4 1558
c6b750e1
DJ
1559echo "$as_me:$LINENO: checking host system type" >&5
1560echo $ECHO_N "checking host system type... $ECHO_C" >&6
1561if test "${ac_cv_host+set}" = set; then
1562 echo $ECHO_N "(cached) $ECHO_C" >&6
cac3d6c4 1563else
c6b750e1
DJ
1564 ac_cv_host_alias=$host_alias
1565test -z "$ac_cv_host_alias" &&
1566 ac_cv_host_alias=$ac_cv_build_alias
1567ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
1568 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5
1569echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
1570 { (exit 1); exit 1; }; }
1571
1572fi
1573echo "$as_me:$LINENO: result: $ac_cv_host" >&5
1574echo "${ECHO_T}$ac_cv_host" >&6
1575host=$ac_cv_host
1576host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
1577host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
1578host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
1579
1580
1581echo "$as_me:$LINENO: checking target system type" >&5
1582echo $ECHO_N "checking target system type... $ECHO_C" >&6
1583if test "${ac_cv_target+set}" = set; then
1584 echo $ECHO_N "(cached) $ECHO_C" >&6
1585else
1586 ac_cv_target_alias=$target_alias
1587test "x$ac_cv_target_alias" = "x" &&
1588 ac_cv_target_alias=$ac_cv_host_alias
1589ac_cv_target=`$ac_config_sub $ac_cv_target_alias` ||
1590 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_target_alias failed" >&5
1591echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;}
1592 { (exit 1); exit 1; }; }
1593
cac3d6c4 1594fi
c6b750e1
DJ
1595echo "$as_me:$LINENO: result: $ac_cv_target" >&5
1596echo "${ECHO_T}$ac_cv_target" >&6
1597target=$ac_cv_target
1598target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
1599target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
1600target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
1601
1602
1603# The aliases save the names the user supplied, while $host etc.
1604# will get canonicalized.
1605test -n "$target_alias" &&
1606 test "$program_prefix$program_suffix$program_transform_name" = \
1607 NONENONEs,x,x, &&
1608 program_prefix=${target_alias}-
a0da8069 1609test "$program_prefix" != NONE &&
c6b750e1 1610 program_transform_name="s,^,$program_prefix,;$program_transform_name"
a0da8069
NN
1611# Use a double $ so make ignores it.
1612test "$program_suffix" != NONE &&
c6b750e1
DJ
1613 program_transform_name="s,\$,$program_suffix,;$program_transform_name"
1614# Double any \ or $. echo might interpret backslashes.
1615# By default was `s,x,x', remove it if useless.
1616cat <<\_ACEOF >conftest.sed
1617s/[\\$]/&&/g;s/;s,x,x,$//
1618_ACEOF
1619program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
1620rm conftest.sed
cac3d6c4 1621
a0da8069
NN
1622
1623
e5c3f801
NN
1624# Get 'install' or 'install-sh' and its variants.
1625# Find a good install program. We prefer a C program (faster),
1626# so one script is as good as another. But avoid the broken or
1627# incompatible versions:
1628# SysV /etc/install, /usr/sbin/install
1629# SunOS /usr/etc/install
1630# IRIX /sbin/install
1631# AIX /bin/install
c6b750e1 1632# AmigaOS /C/install, which installs bootblocks on floppy discs
e5c3f801
NN
1633# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
1634# AFS /usr/afsws/bin/install, which mishandles nonexistent args
1635# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
c6b750e1 1636# OS/2's system install, which has a completely different semantic
e5c3f801 1637# ./install, which can be erroneously created by make from ./install.sh.
58c85be7 1638# Reject install programs that cannot install multiple files.
c6b750e1
DJ
1639echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
1640echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
e5c3f801 1641if test -z "$INSTALL"; then
c6b750e1
DJ
1642if test "${ac_cv_path_install+set}" = set; then
1643 echo $ECHO_N "(cached) $ECHO_C" >&6
1644else
1645 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1646for as_dir in $PATH
1647do
1648 IFS=$as_save_IFS
1649 test -z "$as_dir" && as_dir=.
1650 # Account for people who put trailing slashes in PATH elements.
1651case $as_dir/ in
1652 ./ | .// | /cC/* | \
1653 /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
1654 ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \
1655 /usr/ucb/* ) ;;
1656 *)
1657 # OSF1 and SCO ODT 3.0 have their own names for install.
1658 # Don't use installbsd from OSF since it installs stuff as root
1659 # by default.
1660 for ac_prog in ginstall scoinst install; do
1661 for ac_exec_ext in '' $ac_executable_extensions; do
1662 if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
e5c3f801 1663 if test $ac_prog = install &&
c6b750e1 1664 grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
e5c3f801
NN
1665 # AIX install. It has an incompatible calling convention.
1666 :
c6b750e1
DJ
1667 elif test $ac_prog = install &&
1668 grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
1669 # program-specific install script used by HP pwplus--don't use.
1670 :
e5c3f801 1671 else
58c85be7
RW
1672 rm -rf conftest.one conftest.two conftest.dir
1673 echo one > conftest.one
1674 echo two > conftest.two
1675 mkdir conftest.dir
1676 if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
1677 test -s conftest.one && test -s conftest.two &&
1678 test -s conftest.dir/conftest.one &&
1679 test -s conftest.dir/conftest.two
1680 then
1681 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
1682 break 3
1683 fi
e5c3f801
NN
1684 fi
1685 fi
1686 done
c6b750e1
DJ
1687 done
1688 ;;
1689esac
1690done
1691
58c85be7 1692rm -rf conftest.one conftest.two conftest.dir
e5c3f801
NN
1693
1694fi
1695 if test "${ac_cv_path_install+set}" = set; then
c6b750e1 1696 INSTALL=$ac_cv_path_install
e5c3f801 1697 else
58c85be7
RW
1698 # As a last resort, use the slow shell script. Don't cache a
1699 # value for INSTALL within a source directory, because that will
e5c3f801 1700 # break other packages using the cache if that directory is
58c85be7 1701 # removed, or if the value is a relative name.
c6b750e1 1702 INSTALL=$ac_install_sh
e5c3f801
NN
1703 fi
1704fi
c6b750e1
DJ
1705echo "$as_me:$LINENO: result: $INSTALL" >&5
1706echo "${ECHO_T}$INSTALL" >&6
e5c3f801
NN
1707
1708# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
1709# It thinks the first close brace ends the variable substitution.
1710test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
1711
c6b750e1 1712test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
e5c3f801
NN
1713
1714test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
1715
c6b750e1
DJ
1716echo "$as_me:$LINENO: checking whether ln works" >&5
1717echo $ECHO_N "checking whether ln works... $ECHO_C" >&6
1718if test "${acx_cv_prog_LN+set}" = set; then
1719 echo $ECHO_N "(cached) $ECHO_C" >&6
656fdd47
PB
1720else
1721 rm -f conftestdata_t
1722echo >conftestdata_f
1723if ln conftestdata_f conftestdata_t 2>/dev/null
1724then
1725 acx_cv_prog_LN=ln
1726else
1727 acx_cv_prog_LN=no
1728fi
1729rm -f conftestdata_f conftestdata_t
1730
1731fi
1732if test $acx_cv_prog_LN = no; then
1733 LN="cp"
c6b750e1
DJ
1734 echo "$as_me:$LINENO: result: no, using $LN" >&5
1735echo "${ECHO_T}no, using $LN" >&6
656fdd47
PB
1736else
1737 LN="$acx_cv_prog_LN"
c6b750e1
DJ
1738 echo "$as_me:$LINENO: result: yes" >&5
1739echo "${ECHO_T}yes" >&6
656fdd47
PB
1740fi
1741
c6b750e1
DJ
1742echo "$as_me:$LINENO: checking whether ln -s works" >&5
1743echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6
1744LN_S=$as_ln_s
1745if test "$LN_S" = "ln -s"; then
1746 echo "$as_me:$LINENO: result: yes" >&5
1747echo "${ECHO_T}yes" >&6
cac3d6c4 1748else
c6b750e1
DJ
1749 echo "$as_me:$LINENO: result: no, using $LN_S" >&5
1750echo "${ECHO_T}no, using $LN_S" >&6
dfdffa2c
PB
1751fi
1752
e5c3f801 1753
252b5132 1754### we might need to use some other shell than /bin/sh for running subshells
252b5132
RH
1755### If we are on Windows, search for the shell. This will permit people
1756### to not have /bin/sh, but to be able to see /SOME/PATH/sh configure
1757### without also having to set CONFIG_SHELL. This code will work when
1758### using bash, which sets OSTYPE.
1759case "${OSTYPE}" in
1760*win32*)
a0da8069
NN
1761 if test x${CONFIG_SHELL} = x ; then
1762 if test ! -f /bin/sh ; then
1763 if test x${SHELL} != x && test -f ${SHELL} ; then
252b5132
RH
1764 CONFIG_SHELL=${SHELL}
1765 export CONFIG_SHELL
1766 else
1767 for prog in sh sh.exe bash bash.exe; do
1768 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${IFS}:"
1769 for dir in $PATH; do
1770 test -z "$dir" && dir=.
1771 if test -f $dir/$prog; then
1772 CONFIG_SHELL=$dir/$prog
1773 export CONFIG_SHELL
1774 break
1775 fi
1776 done
1777 IFS="$save_ifs"
1778 test -n "${CONFIG_SHELL}" && break
1779 done
1780 fi
1781 fi
1782 fi
1783 ;;
1784esac
1785
1786config_shell=${CONFIG_SHELL-/bin/sh}
1787
252b5132
RH
1788progname=$0
1789# if PWD already has a value, it is probably wrong.
a0da8069 1790if test -n "$PWD" ; then PWD=`${PWDCMD-pwd}`; fi
252b5132 1791
92f01d61
JM
1792# Export original configure arguments for use by sub-configures.
1793# Quote arguments with shell meta charatcers.
1794TOPLEVEL_CONFIGURE_ARGUMENTS=
1795set -- "$progname" "$@"
a4708fba
JM
1796for ac_arg
1797do
92f01d61 1798 case "$ac_arg" in
ffa8bd48 1799 *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\']*)
92f01d61
JM
1800 ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"`
1801 # if the argument is of the form -foo=baz, quote the baz part only
1802 ac_arg=`echo "'$ac_arg'" | sed "s/^'\([-a-zA-Z0-9]*=\)/\\1'/"` ;;
1803 *) ;;
1804 esac
1805 # Add the quoted argument to the list.
1806 TOPLEVEL_CONFIGURE_ARGUMENTS="$TOPLEVEL_CONFIGURE_ARGUMENTS $ac_arg"
1807done
2444379b
BE
1808if test "$silent" = yes; then
1809 TOPLEVEL_CONFIGURE_ARGUMENTS="$TOPLEVEL_CONFIGURE_ARGUMENTS --silent"
1810fi
92f01d61
JM
1811# Remove the initial space we just introduced and, as these will be
1812# expanded by make, quote '$'.
1813TOPLEVEL_CONFIGURE_ARGUMENTS=`echo "x$TOPLEVEL_CONFIGURE_ARGUMENTS" | sed -e 's/^x *//' -e 's,\\$,$$,g'`
586c0873 1814
75205f78 1815
a0da8069 1816moveifchange=${srcdir}/move-if-change
252b5132 1817
0fdbe983
DJ
1818srcpwd=`cd ${srcdir} ; ${PWDCMD-pwd}`
1819
1820# We pass INSTALL explicitly to sub-makes. Make sure that it is not
1821# a relative path.
1822if test "$INSTALL" = "${srcdir}/install-sh -c"; then
1823 INSTALL="${srcpwd}/install-sh -c"
1824fi
1825
a0da8069
NN
1826# Set srcdir to "." if that's what it is.
1827# This is important for multilib support.
1828pwd=`${PWDCMD-pwd}`
a0da8069
NN
1829if test "${pwd}" = "${srcpwd}" ; then
1830 srcdir=.
252b5132
RH
1831fi
1832
a0da8069 1833topsrcdir=$srcpwd
252b5132 1834
a0da8069 1835extra_host_args=
afefada0 1836
a0da8069
NN
1837### To add a new directory to the tree, first choose whether it is a target
1838### or a host dependent tool. Then put it into the appropriate list
1839### (library or tools, host or target), doing a dependency sort.
252b5132 1840
c6b750e1 1841# Subdirs will be configured in the order listed in build_configdirs,
a0da8069 1842# configdirs, or target_configdirs; see the serialization section below.
252b5132 1843
c6b750e1
DJ
1844# Dependency sorting is only needed when *configuration* must be done in
1845# a particular order. In all cases a dependency should be specified in
a0da8069 1846# the Makefile, whether or not it's implicitly specified here.
252b5132 1847
a0da8069
NN
1848# Double entries in build_configdirs, configdirs, or target_configdirs may
1849# cause circular dependencies and break everything horribly.
252b5132 1850
6a9cf61e
PB
1851# these library is used by various programs built for the build
1852# environment
1853#
1854build_libs="build-libiberty"
1855
1856# these tools are built for the build environment
ee025550 1857build_tools="build-texinfo build-byacc build-flex build-bison build-m4 build-fixincludes"
6a9cf61e 1858
a0da8069
NN
1859# these libraries are used by various programs built for the host environment
1860#
4b900473 1861host_libs="intl mmalloc libiberty opcodes bfd readline tcl tk itcl libgui zlib libcpp libdecnumber gmp mpfr"
a0da8069 1862
a0da8069
NN
1863# these tools are built for the host environment
1864# Note, the powerpc-eabi build depends on sim occurring before gdb in order to
1865# know that we are building the simulator.
1866# binutils, gas and ld appear in that order because it makes sense to run
1867# "make check" in that particular order.
93f9b408 1868# If --enable-gold is used, "gold" will replace "ld".
b00612cc 1869host_tools="texinfo byacc flex bison binutils gas ld fixincludes gcc sid sim gdb make patch prms send-pr gprof etc expect dejagnu ash bash bzip2 m4 autoconf automake libtool diff rcs fileutils shellutils time textutils wdiff find uudecode hello tar gzip indent recode release sed utils guile perl gawk findutils gettext zip fastjar gnattools"
a0da8069
NN
1870
1871# libgcj represents the runtime libraries only used by gcj.
1872libgcj="target-libffi \
a0da8069
NN
1873 target-zlib \
1874 target-qthreads \
1875 target-libjava"
1876
1877# these libraries are built for the target environment, and are built after
1878# the host libraries and the host tools (which may be a cross compiler)
1879#
b1299c4e
DJ
1880target_libraries="target-libgcc \
1881 target-libiberty \
a0da8069
NN
1882 target-libgloss \
1883 target-newlib \
cff87f51 1884 target-libgomp \
b9459e83 1885 target-libstdc++-v3 \
4b1cb4fe 1886 target-libmudflap \
bb780410 1887 target-libssp \
4b1cb4fe 1888 target-libgfortran \
4f0ef2d8 1889 target-boehm-gc \
83326456 1890 ${libgcj} \
a2592b1b 1891 target-libobjc \
cff87f51 1892 target-libada"
a0da8069 1893
9c14acb8
NN
1894# these tools are built using the target libraries, and are intended to
1895# run only in the target environment
a0da8069 1896#
9c14acb8 1897# note: any program that *uses* libraries that are in the "target_libraries"
a0da8069
NN
1898# list belongs in this list. those programs are also very likely
1899# candidates for the "native_only" list which follows
1900#
a3dd767d 1901target_tools="target-examples target-groff target-gperf target-rda"
252b5132 1902
a0da8069 1903################################################################################
252b5132 1904
a0da8069
NN
1905## All tools belong in one of the four categories, and are assigned above
1906## We assign ${configdirs} this way to remove all embedded newlines. This
1907## is important because configure will choke if they ever get through.
1908## ${configdirs} is directories we build using the host tools.
1909## ${target_configdirs} is directories we build using the target tools.
a0da8069 1910configdirs=`echo ${host_libs} ${host_tools}`
9c14acb8 1911target_configdirs=`echo ${target_libraries} ${target_tools}`
ee025550 1912build_configdirs=`echo ${build_libs} ${build_tools}`
dd12c3a8 1913
9cc8ae67
PB
1914
1915
a0da8069 1916################################################################################
252b5132 1917
a0da8069 1918srcname="gnu development package"
252b5132 1919
a0da8069
NN
1920# This gets set non-empty for some net releases of packages.
1921appdirs=""
252b5132 1922
a0da8069
NN
1923# Define is_cross_compiler to save on calls to 'test'.
1924is_cross_compiler=
1925if test x"${host}" = x"${target}" ; then
1926 is_cross_compiler=no
252b5132 1927else
a0da8069 1928 is_cross_compiler=yes
c6b750e1 1929fi
252b5132 1930
9175bfc0 1931# Find the build and target subdir names.
dd12c3a8 1932
66a79c16
DJ
1933# post-stage1 host modules use a different CC_FOR_BUILD so, in order to
1934# have matching libraries, they should use host libraries: Makefile.tpl
1935# arranges to pass --with-build-libsubdir=$(HOST_SUBDIR).
1936# However, they still use the build modules, because the corresponding
1937# host modules (e.g. bison) are only built for the host when bootstrap
1938# finishes. So:
1939# - build_subdir is where we find build modules, and never changes.
1940# - build_libsubdir is where we find build libraries, and can be overridden.
1941
1942# Prefix 'build-' so this never conflicts with target_subdir.
dd12c3a8 1943build_subdir="build-${build_noncanonical}"
c6b750e1 1944
66a79c16
DJ
1945# Check whether --with-build-libsubdir or --without-build-libsubdir was given.
1946if test "${with_build_libsubdir+set}" = set; then
1947 withval="$with_build_libsubdir"
1948 build_libsubdir="$withval"
1949else
1950 build_libsubdir="$build_subdir"
c6b750e1 1951fi;
b00612cc
PB
1952# --srcdir=. covers the toplevel, while "test -d" covers the subdirectories
1953if ( test $srcdir = . && test -d gcc ) \
1954 || test -d $srcdir/../host-${host_noncanonical}; then
1955 host_subdir="host-${host_noncanonical}"
1956else
1957 host_subdir=.
1958fi
dd12c3a8
NN
1959# No prefix.
1960target_subdir=${target_noncanonical}
c6b750e1 1961
252b5132 1962
a0da8069
NN
1963# Skipdirs are removed silently.
1964skipdirs=
1965# Noconfigdirs are removed loudly.
1966noconfigdirs=""
252b5132 1967
a0da8069
NN
1968use_gnu_ld=
1969# Make sure we don't let GNU ld be added if we didn't want it.
1970if test x$with_gnu_ld = xno ; then
1971 use_gnu_ld=no
93f9b408 1972 noconfigdirs="$noconfigdirs ld gold"
252b5132
RH
1973fi
1974
a0da8069
NN
1975use_gnu_as=
1976# Make sure we don't let GNU as be added if we didn't want it.
1977if test x$with_gnu_as = xno ; then
1978 use_gnu_as=no
1979 noconfigdirs="$noconfigdirs gas"
252b5132
RH
1980fi
1981
c6b750e1 1982# some tools are so dependent upon X11 that if we're not building with X,
a0da8069 1983# it's not even worth trying to configure, much less build, that tool.
252b5132 1984
a0da8069
NN
1985case ${with_x} in
1986 yes | "") ;; # the default value for this tree is that X11 is available
1987 no)
675c6968 1988 skipdirs="${skipdirs} tk itcl libgui"
a0da8069 1989 # We won't be able to build gdbtk without X.
c6b750e1 1990 enable_gdbtk=no
a0da8069
NN
1991 ;;
1992 *) echo "*** bad value \"${with_x}\" for -with-x flag; ignored" 1>&2 ;;
1993esac
252b5132 1994
a0da8069 1995# Some tools are only suitable for building in a "native" situation.
c6b750e1 1996# Remove these if host!=target.
701628f5 1997native_only="autoconf automake libtool fileutils find gawk gettext gzip hello indent m4 rcs recode sed shellutils tar textutils uudecode wdiff target-groff guile perl time ash bash bzip2 prms gnuserv target-gperf"
252b5132 1998
a0da8069
NN
1999# Similarly, some are only suitable for cross toolchains.
2000# Remove these if host=target.
2001cross_only="target-libgloss target-newlib target-opcodes"
2002
2003case $is_cross_compiler in
2004 no) skipdirs="${skipdirs} ${cross_only}" ;;
2005 yes) skipdirs="${skipdirs} ${native_only}" ;;
2006esac
252b5132 2007
a0da8069
NN
2008# If both --with-headers and --with-libs are specified, default to
2009# --without-newlib.
32be62b5
RS
2010if test x"${with_headers}" != x && test x"${with_headers}" != xno \
2011 && test x"${with_libs}" != x && test x"${with_libs}" != xno ; then
a0da8069
NN
2012 if test x"${with_newlib}" = x ; then
2013 with_newlib=no
2014 fi
252b5132
RH
2015fi
2016
a0da8069
NN
2017# Recognize --with-newlib/--without-newlib.
2018case ${with_newlib} in
2019 no) skipdirs="${skipdirs} target-newlib" ;;
2020 yes) skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'` ;;
2021esac
252b5132 2022
93f9b408
ILT
2023# Handle --enable-gold.
2024
2025# Check whether --enable-gold or --disable-gold was given.
2026if test "${enable_gold+set}" = set; then
2027 enableval="$enable_gold"
2028 ENABLE_GOLD=$enableval
2029else
2030 ENABLE_GOLD=no
2031fi;
2032if test "${ENABLE_GOLD}" = "yes"; then
2033 # Check for ELF target.
2034 is_elf=no
2035 case "${target}" in
2036 *-*-elf* | *-*-sysv4* | *-*-unixware* | *-*-eabi* | hppa*64*-*-hpux* \
2037 | *-*-linux* | frv-*-uclinux* | *-*-irix5* | *-*-irix6* \
2038 | *-*-netbsd* | *-*-openbsd* | *-*-freebsd* | *-*-solaris2*)
2039 case "${target}" in
2040 *-*-linux*aout* | *-*-linux*oldld*)
2041 ;;
2042 *)
2043 is_elf=yes
2044 ;;
2045 esac
2046 esac
2047
2048 if test "$is_elf" = "yes"; then
2049 # Check for target supported by gold.
2050 case "${target}" in
2051 i?86-*-* | x86_64-*-*)
2052 configdirs="`echo " ${configdirs} " | sed -e 's/ ld / gold /'`"
2053 ;;
2054 esac
2055 fi
2056fi
2057
a0da8069 2058# Configure extra directories which are host specific
252b5132 2059
a0da8069
NN
2060case "${host}" in
2061 *-cygwin*)
2062 configdirs="$configdirs libtermcap" ;;
2063esac
252b5132 2064
59f7ec45
HPN
2065# A target can indicate whether a language isn't supported for some reason.
2066# Only spaces may be used in this macro; not newlines or tabs.
2067unsupported_languages=
2068
c6b750e1 2069# Remove more programs from consideration, based on the host or
a0da8069
NN
2070# target this usually means that a port of the program doesn't
2071# exist yet.
252b5132 2072
a0da8069
NN
2073case "${host}" in
2074 hppa*64*-*-*)
2075 noconfigdirs="$noconfigdirs byacc"
2076 ;;
ec11bdc6 2077 i[3456789]86-*-vsta)
675c6968 2078 noconfigdirs="$noconfigdirs tcl expect dejagnu make texinfo bison patch flex byacc send-pr gprof uudecode dejagnu diff guile perl itcl gnuserv gettext"
a0da8069 2079 ;;
ec11bdc6 2080 i[3456789]86-*-go32* | i[3456789]86-*-msdosdjgpp*)
675c6968 2081 noconfigdirs="$noconfigdirs tcl tk expect dejagnu send-pr uudecode guile itcl gnuserv libffi"
bba45b8b 2082 ;;
2d1e8239
NC
2083 x86_64-*-mingw*)
2084 noconfigdirs="$noconfigdirs expect dejagnu autoconf automake send-pr rcs guile perl texinfo libtool newlib"
2085 ;;
ec11bdc6 2086 i[3456789]86-*-mingw32*)
675c6968 2087 # noconfigdirs="tcl tk expect dejagnu make texinfo bison patch flex byacc send-pr uudecode dejagnu diff guile perl itcl gnuserv"
45055374 2088 noconfigdirs="$noconfigdirs expect dejagnu autoconf automake send-pr rcs guile perl texinfo libtool newlib"
bba45b8b 2089 ;;
ec11bdc6 2090 i[3456789]86-*-beos*)
675c6968 2091 noconfigdirs="$noconfigdirs tk itcl libgui gdb"
bba45b8b 2092 ;;
a0da8069 2093 *-*-cygwin*)
a92834c8 2094 noconfigdirs="$noconfigdirs autoconf automake send-pr rcs guile perl"
a0da8069
NN
2095 ;;
2096 *-*-netbsd*)
a92834c8 2097 noconfigdirs="$noconfigdirs rcs"
a0da8069
NN
2098 ;;
2099 ppc*-*-pe)
675c6968 2100 noconfigdirs="$noconfigdirs patch diff make tk tcl expect dejagnu autoconf automake texinfo bison send-pr gprof rcs guile perl itcl gnuserv"
a0da8069
NN
2101 ;;
2102 powerpc-*-beos*)
675c6968 2103 noconfigdirs="$noconfigdirs tk itcl libgui gdb dejagnu readline"
a0da8069 2104 ;;
a0da8069 2105esac
252b5132 2106
4b1cb4fe 2107
a2592b1b
DD
2108# Check whether --enable-libada or --disable-libada was given.
2109if test "${enable_libada+set}" = set; then
2110 enableval="$enable_libada"
2111 ENABLE_LIBADA=$enableval
2112else
2113 ENABLE_LIBADA=yes
c6b750e1 2114fi;
a2592b1b 2115if test "${ENABLE_LIBADA}" != "yes" ; then
b00612cc 2116 noconfigdirs="$noconfigdirs gnattools"
a2592b1b
DD
2117fi
2118
5f128533
KH
2119# Check whether --enable-libssp or --disable-libssp was given.
2120if test "${enable_libssp+set}" = set; then
2121 enableval="$enable_libssp"
2122 ENABLE_LIBSSP=$enableval
2123else
2124 ENABLE_LIBSSP=yes
c6b750e1 2125fi;
5f128533 2126
a0da8069
NN
2127# Save it here so that, even in case of --enable-libgcj, if the Java
2128# front-end isn't enabled, we still get libgcj disabled.
2129libgcj_saved=$libgcj
2130case $enable_libgcj in
2131yes)
2132 # If we reset it here, it won't get added to noconfigdirs in the
2133 # target-specific build rules, so it will be forcibly enabled
2134 # (unless the Java language itself isn't enabled).
2135 libgcj=
2136 ;;
2137no)
2138 # Make sure we get it printed in the list of not supported target libs.
2139 noconfigdirs="$noconfigdirs ${libgcj}"
2140 ;;
2141esac
252b5132 2142
4b1cb4fe 2143
a6df5a19
PB
2144# Disable libmudflap on some systems.
2145if test x$enable_libmudflap = x ; then
3e707e94 2146 case "${target}" in
0ebe98fb 2147 *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu | bfin*-*-uclinux*)
3d6dfe0f 2148 # Enable libmudflap by default in GNU and friends.
3e707e94
PB
2149 ;;
2150 *-*-freebsd*)
2151 # Enable libmudflap by default in FreeBSD.
2152 ;;
2153 *)
2154 # Disable it by default everywhere else.
2155 noconfigdirs="$noconfigdirs target-libmudflap"
2156 ;;
2157 esac
a6df5a19 2158fi
4b1cb4fe 2159
a6df5a19
PB
2160# Disable libgomp on non POSIX hosted systems.
2161if test x$enable_libgomp = x ; then
b3ded179
PB
2162 # Enable libgomp by default on hosted POSIX systems.
2163 case "${target}" in
2164 *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu)
2165 ;;
2166 *-*-netbsd* | *-*-freebsd* | *-*-openbsd*)
2167 ;;
64ce424c 2168 *-*-solaris2* | *-*-sysv4* | *-*-irix6* | *-*-osf* | *-*-hpux11*)
b3ded179
PB
2169 ;;
2170 *-*-darwin* | *-*-aix*)
2171 ;;
2172 *)
2173 noconfigdirs="$noconfigdirs target-libgomp"
2174 ;;
2175 esac
a6df5a19 2176fi
b3ded179 2177
691bb5a1
DD
2178# Default libgloss CPU subdirectory.
2179libgloss_dir="$target_cpu"
4b1cb4fe 2180
a0da8069
NN
2181case "${target}" in
2182 *-*-chorusos)
54d1c879 2183 noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
a0da8069 2184 ;;
c9b68031 2185 powerpc-*-darwin* | i[3456789]86-*-darwin* | x86_64-*-darwin9*)
b3f16a9b 2186 noconfigdirs="$noconfigdirs bfd binutils ld gas opcodes gdb gprof"
4e3fc8e5 2187 noconfigdirs="$noconfigdirs sim target-rda"
b3f16a9b 2188 ;;
04d1ab34 2189 *-*-darwin*)
d320aacb 2190 noconfigdirs="$noconfigdirs ld gas gdb gprof"
4e3fc8e5 2191 noconfigdirs="$noconfigdirs sim target-rda"
54d1c879 2192 noconfigdirs="$noconfigdirs ${libgcj}"
04d1ab34 2193 ;;
a0da8069 2194 *-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
54d1c879 2195 noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
a0da8069 2196 ;;
de0b4a87 2197 *-*-freebsd*)
4b1cb4fe
DD
2198 noconfigdirs="$noconfigdirs target-newlib target-libgloss"
2199 if test "x$with_gmp" = x && test "x$with_gmp_dir" = x \
2200 && test -f /usr/local/include/gmp.h; then
2201 with_gmp=/usr/local
2202 fi
2203
2204 # Skip some stuff that's unsupported on some FreeBSD configurations.
2205 case "${target}" in
2206 i*86-*-*) ;;
2207 alpha*-*-*) ;;
2208 *)
54d1c879 2209 noconfigdirs="$noconfigdirs ${libgcj}"
4b1cb4fe
DD
2210 ;;
2211 esac
2212 ;;
f8a495c8
NC
2213 *-*-kaos*)
2214 # Remove unsupported stuff on all kaOS configurations.
54d1c879 2215 skipdirs="target-libiberty ${libgcj} target-libstdc++-v3 target-librx"
f8a495c8
NC
2216 skipdirs="$skipdirs target-libobjc target-examples target-groff target-gperf"
2217 skipdirs="$skipdirs zlib fastjar target-libjava target-boehm-gc target-zlib"
2218 noconfigdirs="$noconfigdirs target-libgloss"
2219 ;;
a0da8069
NN
2220 *-*-netbsd*)
2221 # Skip some stuff on all NetBSD configurations.
2222 noconfigdirs="$noconfigdirs target-newlib target-libiberty target-libgloss"
2223
2224 # Skip some stuff that's unsupported on some NetBSD configurations.
2225 case "${target}" in
2226 i*86-*-netbsdelf*) ;;
5b474aa8 2227 arm*-*-netbsdelf*) ;;
a0da8069 2228 *)
54d1c879 2229 noconfigdirs="$noconfigdirs ${libgcj}"
a0da8069
NN
2230 ;;
2231 esac
2232 ;;
2a3124ca 2233 *-*-netware*)
54d1c879 2234 noconfigdirs="$noconfigdirs target-newlib target-libiberty target-libgloss ${libgcj} target-libmudflap"
a0da8069
NN
2235 ;;
2236 *-*-rtems*)
54d1c879 2237 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
a0da8069 2238 ;;
1587117a
EC
2239 # The tpf target doesn't support gdb yet.
2240 *-*-tpf*)
54d1c879 2241 noconfigdirs="$noconfigdirs target-newlib target-libgloss target-libiberty ${libgcj} target-libmudflap gdb tcl tk libgui itcl"
1587117a 2242 ;;
c1968181 2243 *-*-uclinux*)
54d1c879 2244 noconfigdirs="$noconfigdirs target-newlib target-libgloss target-rda ${libgcj}"
c1968181 2245 ;;
a0da8069 2246 *-*-vxworks*)
54d1c879 2247 noconfigdirs="$noconfigdirs target-newlib target-libgloss target-libiberty target-libstdc++-v3 ${libgcj}"
a0da8069
NN
2248 ;;
2249 alpha*-dec-osf*)
2250 # ld works, but does not support shared libraries.
2251 # newlib is not 64 bit ready. I'm not sure about fileutils.
2252 # gas doesn't generate exception information.
2253 noconfigdirs="$noconfigdirs gas ld fileutils target-newlib target-libgloss"
2254 ;;
2255 alpha*-*-*vms*)
54d1c879 2256 noconfigdirs="$noconfigdirs gdb ld target-newlib target-libgloss ${libgcj}"
a0da8069
NN
2257 ;;
2258 alpha*-*-linux*)
2259 # newlib is not 64 bit ready
2260 noconfigdirs="$noconfigdirs target-newlib target-libgloss"
2261 ;;
a0da8069
NN
2262 alpha*-*-*)
2263 # newlib is not 64 bit ready
54d1c879 2264 noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
a0da8069 2265 ;;
4a18bd6b 2266 am33_2.0-*-linux*)
54d1c879 2267 noconfigdirs="$noconfigdirs ${libgcj} target-newlib target-libgloss"
4a18bd6b 2268 ;;
a0da8069 2269 sh-*-linux*)
54d1c879 2270 noconfigdirs="$noconfigdirs ${libgcj} target-newlib target-libgloss"
c6b750e1 2271 ;;
a0da8069 2272 sh*-*-pe|mips*-*-pe|*arm-wince-pe)
54d1c879 2273 noconfigdirs="$noconfigdirs ${libgcj}"
a0da8069
NN
2274 noconfigdirs="$noconfigdirs target-examples"
2275 noconfigdirs="$noconfigdirs target-libiberty texinfo send-pr"
675c6968 2276 noconfigdirs="$noconfigdirs tcl tk itcl libgui sim"
a0da8069
NN
2277 noconfigdirs="$noconfigdirs expect dejagnu"
2278 # the C++ libraries don't build on top of CE's C libraries
b9459e83 2279 noconfigdirs="$noconfigdirs target-libstdc++-v3"
a0da8069
NN
2280 noconfigdirs="$noconfigdirs target-newlib"
2281 case "${host}" in
2282 *-*-cygwin*) ;; # keep gdb and readline
b9459e83 2283 *) noconfigdirs="$noconfigdirs gdb readline"
a0da8069
NN
2284 ;;
2285 esac
691bb5a1 2286 libgloss_dir=wince
a0da8069
NN
2287 ;;
2288 arc-*-*)
54d1c879 2289 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
a0da8069 2290 ;;
caeba88f 2291 arm-semi-aof )
caeba88f 2292 ;;
a0da8069 2293 arm-*-coff | strongarm-*-coff | xscale-*-coff)
54d1c879 2294 noconfigdirs="$noconfigdirs ${libgcj}"
691bb5a1 2295 libgloss_dir=arm
a0da8069 2296 ;;
11b04d1f 2297 arm-*-elf* | strongarm-*-elf* | xscale-*-elf* | arm*-*-eabi* )
a0da8069 2298 noconfigdirs="$noconfigdirs target-libffi target-qthreads"
691bb5a1 2299 libgloss_dir=arm
a0da8069 2300 ;;
bd70a46f 2301 arm*-*-linux-gnueabi)
6d18b86b
AH
2302 noconfigdirs="$noconfigdirs target-qthreads"
2303 noconfigdirs="$noconfigdirs target-libobjc"
a5b3b4dd
DD
2304 case ${with_newlib} in
2305 no) noconfigdirs="$noconfigdirs target-newlib target-libgloss"
2306 esac
691bb5a1 2307 libgloss_dir=arm
bd70a46f 2308 ;;
df4a6958 2309 arm*-*-symbianelf*)
54d1c879 2310 noconfigdirs="$noconfigdirs ${libgcj} target-libiberty"
691bb5a1 2311 libgloss_dir=arm
df4a6958 2312 ;;
a0da8069 2313 arm-*-pe*)
54d1c879 2314 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
a0da8069 2315 ;;
a0da8069 2316 thumb-*-coff)
54d1c879 2317 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
a0da8069
NN
2318 ;;
2319 thumb-*-elf)
54d1c879 2320 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
a0da8069 2321 ;;
a0da8069 2322 thumb-*-pe)
54d1c879 2323 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
a0da8069
NN
2324 ;;
2325 arm-*-riscix*)
54d1c879 2326 noconfigdirs="$noconfigdirs ld target-libgloss ${libgcj}"
a0da8069
NN
2327 ;;
2328 avr-*-*)
54d1c879 2329 noconfigdirs="$noconfigdirs target-libiberty target-libstdc++-v3 ${libgcj}"
a0da8069 2330 ;;
376a0e54 2331 bfin-*-*)
00d89675 2332 noconfigdirs="$noconfigdirs gdb"
3cf3372e 2333 if test x${is_cross_compiler} != xno ; then
376a0e54
CM
2334 target_configdirs="${target_configdirs} target-bsp target-cygmon"
2335 fi
2336 ;;
a0da8069 2337 c4x-*-* | tic4x-*-*)
54d1c879 2338 noconfigdirs="$noconfigdirs target-libstdc++-v3 target-libgloss ${libgcj}"
a0da8069
NN
2339 ;;
2340 c54x*-*-* | tic54x-*-*)
54d1c879 2341 noconfigdirs="$noconfigdirs target-libstdc++-v3 target-libgloss ${libgcj} gcc gdb newlib"
a0da8069 2342 ;;
c7e66c6d 2343 cris-*-* | crisv32-*-*)
59f7ec45 2344 unsupported_languages="$unsupported_languages java"
c7e66c6d 2345 case "${target}" in
2faa2958 2346 *-*-aout)
096f7d00 2347 unsupported_languages="$unsupported_languages fortran"
59f7ec45 2348 noconfigdirs="$noconfigdirs target-libffi target-boehm-gc";;
2faa2958 2349 *-*-elf)
5e818318 2350 noconfigdirs="$noconfigdirs target-boehm-gc";;
2faa2958 2351 *-*-linux*)
5e818318 2352 noconfigdirs="$noconfigdirs target-newlib target-libgloss";;
c7e66c6d 2353 *)
096f7d00 2354 unsupported_languages="$unsupported_languages fortran"
54d1c879 2355 noconfigdirs="$noconfigdirs ${libgcj} target-newlib target-libgloss";;
c7e66c6d 2356 esac
691bb5a1 2357 libgloss_dir=cris
a0da8069 2358 ;;
3e707e94 2359 crx-*-*)
54d1c879 2360 noconfigdirs="$noconfigdirs target-libstdc++-v3 target-mudflap ${libgcj}"
3e707e94 2361 ;;
a0da8069 2362 d10v-*-*)
54d1c879 2363 noconfigdirs="$noconfigdirs target-libstdc++-v3 target-libgloss ${libgcj}"
a0da8069
NN
2364 ;;
2365 d30v-*-*)
54d1c879 2366 noconfigdirs="$noconfigdirs ${libgcj} gdb"
a0da8069 2367 ;;
691bb5a1
DD
2368 ep9312-*-elf | ep9312-*-coff)
2369 libgloss_dir=arm
2370 ;;
a0da8069 2371 fr30-*-elf*)
54d1c879 2372 noconfigdirs="$noconfigdirs ${libgcj} gdb"
a0da8069
NN
2373 ;;
2374 frv-*-*)
54d1c879 2375 noconfigdirs="$noconfigdirs ${libgcj}"
a0da8069
NN
2376 ;;
2377 h8300*-*-*)
54d1c879 2378 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
a0da8069
NN
2379 ;;
2380 h8500-*-*)
54d1c879 2381 noconfigdirs="$noconfigdirs target-libstdc++-v3 target-libgloss ${libgcj}"
a0da8069 2382 ;;
caeba88f 2383 hppa1.1-*-osf* | hppa1.1-*-bsd* )
caeba88f 2384 ;;
a0da8069
NN
2385 hppa*64*-*-linux* | parisc*64*-*-linux*)
2386 # In this case, it's because the hppa64-linux target is for
2387 # the kernel only at this point and has no libc, and thus no
2388 # headers, crt*.o, etc., all of which are needed by these.
2389 noconfigdirs="$noconfigdirs target-zlib"
2390 ;;
5dcac624
DA
2391 parisc*-*-linux* | hppa*-*-linux*)
2392 ;;
a0da8069 2393 hppa*-*-*elf* | \
a0da8069
NN
2394 hppa*-*-lites* | \
2395 hppa*-*-openbsd* | \
2396 hppa*64*-*-*)
54d1c879 2397 noconfigdirs="$noconfigdirs ${libgcj}"
4f0ef2d8
CD
2398 ;;
2399 hppa*-hp-hpux11*)
2400 noconfigdirs="$noconfigdirs ld shellutils"
a0da8069 2401 ;;
691bb5a1
DD
2402 hppa*-*-pro*)
2403 libgloss_dir=pa
2404 ;;
a0da8069
NN
2405 hppa*-*-*)
2406 # According to Alexandre Oliva <aoliva@redhat.com>, libjava won't
2407 # build on HP-UX 10.20.
54d1c879 2408 noconfigdirs="$noconfigdirs ld shellutils ${libgcj}"
a0da8069 2409 ;;
b07c2aad 2410 i960-*-*)
54d1c879 2411 noconfigdirs="$noconfigdirs ${libgcj} gdb"
b07c2aad 2412 ;;
a0da8069
NN
2413 ia64*-*-elf*)
2414 # No gdb support yet.
675c6968 2415 noconfigdirs="$noconfigdirs readline mmalloc libgui itcl gdb"
a0da8069
NN
2416 ;;
2417 ia64*-**-hpux*)
2418 # No gdb or ld support yet.
54d1c879 2419 noconfigdirs="$noconfigdirs ${libgcj} readline mmalloc libgui itcl gdb ld"
a0da8069 2420 ;;
caeba88f 2421 i370-*-opened*)
caeba88f 2422 ;;
ec11bdc6 2423 i[3456789]86-*-coff | i[3456789]86-*-elf)
54d1c879 2424 noconfigdirs="$noconfigdirs ${libgcj}"
691bb5a1 2425 libgloss_dir=i386
a0da8069 2426 ;;
ec11bdc6 2427 i[3456789]86-*-linux*)
a0da8069
NN
2428 # The GCC port for glibc1 has no MD_FALLBACK_FRAME_STATE_FOR, so let's
2429 # not build java stuff by default.
2430 case "${target}" in
2431 *-*-*libc1*)
54d1c879 2432 noconfigdirs="$noconfigdirs ${libgcj}";;
a0da8069
NN
2433 esac
2434
2435 # This section makes it possible to build newlib natively on linux.
2436 # If we are using a cross compiler then don't configure newlib.
2437 if test x${is_cross_compiler} != xno ; then
bba45b8b 2438 noconfigdirs="$noconfigdirs target-newlib"
a0da8069
NN
2439 fi
2440 noconfigdirs="$noconfigdirs target-libgloss"
2441 # If we are not using a cross compiler, do configure newlib.
2442 # Note however, that newlib will only be configured in this situation
2443 # if the --with-newlib option has been given, because otherwise
2444 # 'target-newlib' will appear in skipdirs.
2445 ;;
ec11bdc6 2446 i[3456789]86-*-mingw32*)
45055374
CV
2447 target_configdirs="$target_configdirs target-winsup"
2448 noconfigdirs="$noconfigdirs expect target-libgloss target-newlib ${libgcj}"
c6b750e1 2449 ;;
2d1e8239
NC
2450 x86_64-*-mingw*)
2451 target_configdirs="$target_configdirs target-winsup"
2452 noconfigdirs="$noconfigdirs expect target-libgloss target-newlib ${libgcj}"
c6b750e1 2453 ;;
a0da8069
NN
2454 *-*-cygwin*)
2455 target_configdirs="$target_configdirs target-libtermcap target-winsup"
54d1c879 2456 noconfigdirs="$noconfigdirs target-gperf target-libgloss ${libgcj}"
b76d7de0 2457 # always build newlib if winsup directory is present.
45055374 2458 if test -d "$srcdir/winsup/cygwin"; then
b76d7de0 2459 skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
ac0fa625 2460 elif test -d "$srcdir/newlib"; then
45055374 2461 echo "Warning: winsup/cygwin is missing so newlib can't be built."
b76d7de0 2462 fi
c6b750e1 2463 ;;
caeba88f
AL
2464 i[3456789]86-moss-msdos | i[3456789]86-*-moss* | \
2465 i[3456789]86-*-uwin* | i[3456789]86-*-interix* )
caeba88f 2466 ;;
ec11bdc6 2467 i[3456789]86-*-pe)
54d1c879 2468 noconfigdirs="$noconfigdirs target-libstdc++-v3 target-libgloss ${libgcj}"
a0da8069 2469 ;;
ec11bdc6 2470 i[3456789]86-*-sco3.2v5*)
a0da8069
NN
2471 # The linker does not yet know about weak symbols in COFF,
2472 # and is not configured to handle mixed ELF and COFF.
54d1c879 2473 noconfigdirs="$noconfigdirs ld target-libgloss ${libgcj}"
a0da8069 2474 ;;
ec11bdc6 2475 i[3456789]86-*-sco*)
54d1c879 2476 noconfigdirs="$noconfigdirs gprof target-libgloss ${libgcj}"
a0da8069 2477 ;;
ec11bdc6 2478 i[3456789]86-*-solaris2*)
a0da8069
NN
2479 noconfigdirs="$noconfigdirs target-libgloss"
2480 ;;
ec11bdc6 2481 i[3456789]86-*-sysv4*)
54d1c879 2482 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
a0da8069 2483 ;;
ec11bdc6 2484 i[3456789]86-*-beos*)
54d1c879 2485 noconfigdirs="$noconfigdirs gdb target-newlib target-libgloss ${libgcj}"
bba45b8b 2486 ;;
b59bea8a 2487 i[3456789]86-*-rdos*)
2429c060
PB
2488 noconfigdirs="$noconfigdirs gdb target-newlib target-libgloss"
2489 ;;
b07c2aad 2490 m32r-*-*)
54d1c879 2491 noconfigdirs="$noconfigdirs ${libgcj}"
b07c2aad 2492 ;;
a0da8069 2493 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*)
54d1c879 2494 noconfigdirs="$noconfigdirs target-libiberty target-libstdc++-v3 ${libgcj}"
691bb5a1 2495 libgloss_dir=m68hc11
a0da8069
NN
2496 ;;
2497 m68k-*-elf*)
54d1c879 2498 noconfigdirs="$noconfigdirs ${libgcj}"
a0da8069
NN
2499 ;;
2500 m68k-*-coff*)
54d1c879 2501 noconfigdirs="$noconfigdirs ${libgcj}"
a0da8069 2502 ;;
691bb5a1
DD
2503 m68*-*-* | fido-*-*)
2504 libgloss_dir=m68k
2505 ;;
a0da8069
NN
2506 mcore-*-pe*)
2507 # The EPOC C++ environment does not support exceptions or rtti,
2508 # and so building libstdc++-v3 tends not to always work.
2509 noconfigdirs="$noconfigdirs target-libstdc++-v3"
2510 ;;
2511 mmix-*-*)
59f7ec45 2512 noconfigdirs="$noconfigdirs target-libffi target-boehm-gc gdb libgloss"
096f7d00 2513 unsupported_languages="$unsupported_languages fortran java"
a0da8069
NN
2514 ;;
2515 mn10200-*-*)
54d1c879 2516 noconfigdirs="$noconfigdirs ${libgcj}"
a0da8069
NN
2517 ;;
2518 mn10300-*-*)
54d1c879 2519 noconfigdirs="$noconfigdirs ${libgcj}"
a0da8069 2520 ;;
4970f871 2521 mt-*-*)
cdb9b172
AH
2522 noconfigdirs="$noconfigdirs sim"
2523 ;;
a0da8069
NN
2524 powerpc-*-aix*)
2525 # copied from rs6000-*-* entry
54d1c879 2526 noconfigdirs="$noconfigdirs gprof target-libgloss target-libssp ${libgcj}"
a0da8069
NN
2527 ;;
2528 powerpc*-*-winnt* | powerpc*-*-pe* | ppc*-*-pe)
2529 target_configdirs="$target_configdirs target-winsup"
54d1c879 2530 noconfigdirs="$noconfigdirs gdb tcl tk make expect target-libgloss itcl gnuserv ${libgcj}"
a0da8069
NN
2531 # always build newlib.
2532 skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
2533 ;;
2534 # This is temporary until we can link against shared libraries
2535 powerpcle-*-solaris*)
54d1c879 2536 noconfigdirs="$noconfigdirs gdb sim make tcl tk expect itcl gnuserv ${libgcj}"
691bb5a1 2537 libgloss_dir=rs6000
a0da8069
NN
2538 ;;
2539 powerpc-*-beos*)
54d1c879 2540 noconfigdirs="$noconfigdirs gdb target-newlib target-libgloss ${libgcj}"
a0da8069 2541 ;;
a0da8069 2542 powerpc-*-eabi)
54d1c879 2543 noconfigdirs="$noconfigdirs ${libgcj}"
691bb5a1 2544 libgloss_dir=rs6000
caeba88f
AL
2545 ;;
2546 powerpc-*-eabi* | powerpcle-*-eabi* | powerpc-*-rtems* )
691bb5a1 2547 libgloss_dir=rs6000
a0da8069 2548 ;;
a0da8069 2549 rs6000-*-lynxos*)
54d1c879 2550 noconfigdirs="$noconfigdirs target-newlib gprof ${libgcj}"
a0da8069
NN
2551 ;;
2552 rs6000-*-aix*)
54d1c879 2553 noconfigdirs="$noconfigdirs gprof target-libgloss target-libssp ${libgcj}"
a0da8069
NN
2554 ;;
2555 rs6000-*-*)
54d1c879 2556 noconfigdirs="$noconfigdirs gprof ${libgcj}"
a0da8069
NN
2557 ;;
2558 m68k-apollo-*)
54d1c879 2559 noconfigdirs="$noconfigdirs ld binutils gprof target-libgloss ${libgcj}"
a0da8069 2560 ;;
5bd8be13
RS
2561 mips*-sde-elf*)
2562 skipdirs="$skipdirs target-libiberty"
2563 noconfigdirs="$noconfigdirs ${libgcj}"
2564 if test x$with_newlib = xyes; then
2565 noconfigdirs="$noconfigdirs gprof"
2566 fi
2567 libgloss_dir=mips
2568 ;;
a0da8069 2569 mips*-*-irix5*)
54d1c879 2570 noconfigdirs="$noconfigdirs gprof target-libgloss ${libgcj}"
a0da8069
NN
2571 ;;
2572 mips*-*-irix6*)
a0da8069
NN
2573 # Linking libjava exceeds command-line length limits on at least
2574 # IRIX 6.2, but not on IRIX 6.5.
2575 # Also, boehm-gc won't build on IRIX 6.5, according to Jeffrey Oldham
2576 # <oldham@codesourcery.com>
54d1c879 2577 noconfigdirs="$noconfigdirs gprof target-libgloss ${libgcj}"
a0da8069 2578 ;;
a0da8069 2579 mips*-*-bsd*)
54d1c879 2580 noconfigdirs="$noconfigdirs gprof target-libgloss ${libgcj}"
a0da8069 2581 ;;
a0da8069
NN
2582 mips*-*-linux*)
2583 noconfigdirs="$noconfigdirs target-newlib target-libgloss"
2584 ;;
2585 mips*-*-*)
54d1c879 2586 noconfigdirs="$noconfigdirs gprof ${libgcj}"
691bb5a1 2587 libgloss_dir=mips
a0da8069
NN
2588 ;;
2589 romp-*-*)
54d1c879 2590 noconfigdirs="$noconfigdirs bfd binutils ld gas opcodes target-libgloss ${libgcj}"
a0da8069 2591 ;;
dbf85af7 2592 sh-*-* | sh64-*-*)
a0da8069 2593 case "${host}" in
ec11bdc6
DD
2594 i[3456789]86-*-vsta) ;; # don't add gprof back in
2595 i[3456789]86-*-go32*) ;; # don't add gprof back in
2596 i[3456789]86-*-msdosdjgpp*) ;; # don't add gprof back in
a0da8069
NN
2597 *) skipdirs=`echo " ${skipdirs} " | sed -e 's/ gprof / /'` ;;
2598 esac
54d1c879 2599 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
a0da8069 2600 ;;
691bb5a1
DD
2601 sparclet-*-aout* | sparc86x-*-*)
2602 libgloss_dir=sparc
2603 ;;
a0da8069 2604 sparc-*-elf*)
54d1c879 2605 noconfigdirs="$noconfigdirs ${libgcj}"
a0da8069
NN
2606 ;;
2607 sparc64-*-elf*)
54d1c879 2608 noconfigdirs="$noconfigdirs ${libgcj}"
691bb5a1 2609 libgloss_dir=sparc
a0da8069
NN
2610 ;;
2611 sparclite-*-*)
54d1c879 2612 noconfigdirs="$noconfigdirs ${libgcj}"
691bb5a1 2613 libgloss_dir=sparc
a0da8069
NN
2614 ;;
2615 sparc-*-sunos4*)
54d1c879 2616 noconfigdirs="$noconfigdirs ${libgcj}"
a0da8069
NN
2617 if test x${is_cross_compiler} != xno ; then
2618 noconfigdirs="$noconfigdirs gdb target-newlib target-libgloss"
2619 else
2620 use_gnu_ld=no
2621 fi
2622 ;;
e3c770b1 2623 sparc-*-solaris2.[0-6] | sparc-*-solaris2.[0-6].*)
54d1c879 2624 noconfigdirs="$noconfigdirs ${libgcj}"
e3c770b1 2625 ;;
a0da8069
NN
2626 sparc-*-solaris* | sparc64-*-solaris* | sparcv9-*-solaris*)
2627 ;;
2839fe5d
BE
2628 spu-*-*)
2629 skipdirs="target-libssp"
2630 ;;
a0da8069 2631 v810-*-*)
54d1c879 2632 noconfigdirs="$noconfigdirs bfd binutils gas gcc gdb ld target-libstdc++-v3 opcodes target-libgloss ${libgcj}"
a0da8069
NN
2633 ;;
2634 v850-*-*)
54d1c879 2635 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
a0da8069
NN
2636 ;;
2637 v850e-*-*)
54d1c879 2638 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
a0da8069
NN
2639 ;;
2640 v850ea-*-*)
54d1c879 2641 noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
a0da8069
NN
2642 ;;
2643 vax-*-vms)
54d1c879 2644 noconfigdirs="$noconfigdirs bfd binutils gdb ld target-newlib opcodes target-libgloss ${libgcj}"
a0da8069
NN
2645 ;;
2646 vax-*-*)
54d1c879 2647 noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
a0da8069 2648 ;;
8b66833e 2649 xtensa*-*-*)
54d1c879 2650 noconfigdirs="$noconfigdirs ${libgcj}"
fbd1054d 2651 ;;
a0da8069 2652 ip2k-*-*)
54d1c879 2653 noconfigdirs="$noconfigdirs target-libiberty target-libstdc++-v3 ${libgcj}"
a0da8069 2654 ;;
de0b4a87 2655 *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu)
a0da8069
NN
2656 noconfigdirs="$noconfigdirs target-newlib target-libgloss"
2657 ;;
2658 *-*-lynxos*)
54d1c879 2659 noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
c6b750e1 2660 ;;
a0da8069 2661 *-*-*)
54d1c879 2662 noconfigdirs="$noconfigdirs ${libgcj}"
a0da8069
NN
2663 ;;
2664esac
252b5132 2665
a0da8069
NN
2666# If we aren't building newlib, then don't build libgloss, since libgloss
2667# depends upon some newlib header files.
2668case "${noconfigdirs}" in
2669 *target-libgloss*) ;;
2670 *target-newlib*) noconfigdirs="$noconfigdirs target-libgloss" ;;
2671esac
2672
a0da8069
NN
2673# Work in distributions that contain no compiler tools, like Autoconf.
2674tentative_cc=""
2675host_makefile_frag=/dev/null
2676if test -d ${srcdir}/config ; then
2677case "${host}" in
2678 m68k-hp-hpux*)
2679 # Avoid "too much defining" errors from HPUX compiler.
2680 tentative_cc="cc -Wp,-H256000"
2681 # If "ar" in $PATH is GNU ar, the symbol table may need rebuilding.
2682 # If it's HP/UX ar, this should be harmless.
2683 RANLIB="ar ts"
2684 ;;
2685 m68k-apollo-sysv*)
2686 tentative_cc="cc -A ansi -A runtype,any -A systype,any -U__STDC__ -DUSG"
2687 ;;
2688 m68k-apollo-bsd*)
2689 #None of the Apollo compilers can compile gas or binutils. The preprocessor
2690 # chokes on bfd, the compiler won't let you assign integers to enums, and
2691 # other problems. Defining CC to gcc is a questionable way to say "don't use
2692 # the apollo compiler" (the preferred version of GCC could be called cc,
2693 # or whatever), but I'm not sure leaving CC as cc is any better...
2694 #CC=cc -A ansi -A runtype,any -A systype,any -U__STDC__ -DNO_STDARG
2695 # Used to have BISON=yacc.
2696 tentative_cc=gcc
2697 ;;
2698 m88k-dg-dgux*)
2699 tentative_cc="gcc -Wall -ansi -D__using_DGUX"
a0da8069
NN
2700 ;;
2701 m88k-harris-cxux*)
2702 # Under CX/UX, we want to tell the compiler to use ANSI mode.
2703 tentative_cc="cc -Xa"
2704 host_makefile_frag="config/mh-cxux"
2705 ;;
2706 m88k-motorola-sysv*)
2707 ;;
2708 mips*-dec-ultrix*)
2709 tentative_cc="cc -Wf,-XNg1000"
2710 host_makefile_frag="config/mh-decstation"
2711 ;;
2712 mips*-nec-sysv4*)
2713 # The C compiler on NEC MIPS SVR4 needs bigger tables.
2714 tentative_cc="cc -ZXNd=5000 -ZXNg=1000"
2715 host_makefile_frag="config/mh-necv4"
2716 ;;
2717 mips*-sgi-irix4*)
2718 # Tell compiler to use K&R C. We can't compile under the SGI Ansi
2719 # environment. Also bump switch table size so that cp-parse will
2720 # compile. Bump string length limit so linker builds.
2721 tentative_cc="cc -cckr -Wf,-XNg1500 -Wf,-XNk1000 -Wf,-XNh2000 -Wf,-XNl8192"
2722 ;;
2723 mips*-*-sysv4*)
2724 host_makefile_frag="config/mh-sysv4"
2725 ;;
2726 mips*-*-sysv*)
2727 # This is for a MIPS running RISC/os 4.52C.
2728
2729 # This is needed for GDB, but needs to be in the top-level make because
2730 # if a library is compiled with the bsd headers and gets linked with the
2731 # sysv system libraries all hell can break loose (e.g. a jmp_buf might be
2732 # a different size).
2733 # ptrace(2) apparently has problems in the BSD environment. No workaround is
2734 # known except to select the sysv environment. Could we use /proc instead?
2735 # These "sysv environments" and "bsd environments" often end up being a pain.
2736 #
2737 # This is not part of CFLAGS because perhaps not all C compilers have this
2738 # option.
2739 tentative_cc="cc -systype sysv"
2740 ;;
2741 i370-ibm-opened*)
2742 tentative_cc="c89"
2743 ;;
ec11bdc6 2744 i[3456789]86-*-sysv5*)
a0da8069
NN
2745 host_makefile_frag="config/mh-sysv5"
2746 ;;
ec11bdc6 2747 i[3456789]86-*-dgux*)
a0da8069
NN
2748 tentative_cc="gcc -Wall -ansi -D__using_DGUX"
2749 host_makefile_frag="config/mh-dgux386"
2750 ;;
ec11bdc6 2751 i[3456789]86-ncr-sysv4.3*)
a0da8069
NN
2752 # The MetaWare compiler will generate a copyright message unless you
2753 # turn it off by adding the -Hnocopyr flag.
2754 tentative_cc="cc -Hnocopyr"
2755 ;;
ec11bdc6 2756 i[3456789]86-ncr-sysv4*)
a0da8069
NN
2757 # for an NCR 3000 (i486/SVR4) system.
2758 # The NCR 3000 ships with a MetaWare compiler installed as /bin/cc.
2759 # This compiler not only emits obnoxious copyright messages every time
2760 # you run it, but it chokes and dies on a whole bunch of GNU source
2761 # files. Default to using the AT&T compiler installed in /usr/ccs/ATT/cc.
2762 tentative_cc="/usr/ccs/ATT/cc"
2763 host_makefile_frag="config/mh-ncr3000"
2764 ;;
ec11bdc6 2765 i[3456789]86-*-sco3.2v5*)
a0da8069 2766 ;;
ec11bdc6 2767 i[3456789]86-*-sco*)
a0da8069
NN
2768 # The native C compiler botches some simple uses of const. Unfortunately,
2769 # it doesn't defined anything like "__sco__" for us to test for in ansidecl.h.
2770 tentative_cc="cc -Dconst="
2771 host_makefile_frag="config/mh-sco"
2772 ;;
ec11bdc6 2773 i[3456789]86-*-udk*)
a0da8069
NN
2774 host_makefile_frag="config/mh-sysv5"
2775 ;;
ec11bdc6 2776 i[3456789]86-*-solaris2*)
a0da8069
NN
2777 host_makefile_frag="config/mh-sysv4"
2778 ;;
ec11bdc6 2779 i[3456789]86-*-msdosdjgpp*)
a0da8069
NN
2780 host_makefile_frag="config/mh-djgpp"
2781 ;;
2782 *-cygwin*)
e33b51a6
NC
2783
2784echo "$as_me:$LINENO: checking to see if cat works as expected" >&5
2785echo $ECHO_N "checking to see if cat works as expected... $ECHO_C" >&6
2786echo a >cygwin-cat-check
2787if test `cat cygwin-cat-check` == a ; then
8ade07e9 2788 rm cygwin-cat-check
e33b51a6
NC
2789 echo "$as_me:$LINENO: result: yes" >&5
2790echo "${ECHO_T}yes" >&6
2791else
8ade07e9 2792 rm cygwin-cat-check
e33b51a6
NC
2793 echo "$as_me:$LINENO: result: no" >&5
2794echo "${ECHO_T}no" >&6
2795 { { echo "$as_me:$LINENO: error: The cat command does not ignore carriage return characters.
2796 Please either mount the build directory in binary mode or run the following
2797 commands before running any configure script:
2798set -o igncr
2799export SHELLOPTS
2800 " >&5
2801echo "$as_me: error: The cat command does not ignore carriage return characters.
2802 Please either mount the build directory in binary mode or run the following
2803 commands before running any configure script:
2804set -o igncr
2805export SHELLOPTS
2806 " >&2;}
2807 { (exit 1); exit 1; }; }
2808fi
e33b51a6 2809
a0da8069
NN
2810 host_makefile_frag="config/mh-cygwin"
2811 ;;
8a1599ab 2812 *-mingw*)
84e7906e 2813 host_makefile_frag="config/mh-mingw"
2d1e8239 2814 ;;
a0da8069
NN
2815 *-interix*)
2816 host_makefile_frag="config/mh-interix"
2817 ;;
2818 vax-*-ultrix2*)
2819 # The old BSD pcc isn't up to compiling parts of gdb so use gcc
2820 tentative_cc=gcc
2821 ;;
2822 *-*-solaris2*)
2823 host_makefile_frag="config/mh-solaris"
2824 ;;
2825 m68k-sun-sunos*)
2826 # Sun's C compiler needs the -J flag to be able to compile cp-parse.c
2827 # without overflowing the jump tables (-J says to use a 32 bit table)
2828 tentative_cc="cc -J"
2829 ;;
2830 *-hp-hpux*)
2831 tentative_cc="cc -Wp,-H256000"
2832 ;;
2833 *-*-hiux*)
2834 tentative_cc="cc -Wp,-H256000"
2835 ;;
2836 rs6000-*-lynxos*)
2837 # /bin/cc is less than useful for our purposes. Always use GCC
2838 tentative_cc="/usr/cygnus/progressive/bin/gcc"
2839 host_makefile_frag="config/mh-lynxrs6k"
2840 ;;
0df3d27f
PB
2841 powerpc-*-darwin*)
2842 host_makefile_frag="config/mh-ppc-darwin"
2843 ;;
f6d183c0
PB
2844 powerpc-*-aix*)
2845 host_makefile_frag="config/mh-ppc-aix"
2846 ;;
2847 rs6000-*-aix*)
2848 host_makefile_frag="config/mh-ppc-aix"
2849 ;;
a0da8069
NN
2850 *-*-lynxos*)
2851 # /bin/cc is less than useful for our purposes. Always use GCC
2852 tentative_cc="/bin/gcc"
2853 ;;
2854 *-*-sysv4*)
2855 host_makefile_frag="config/mh-sysv4"
2856 ;;
fe69863c
DD
2857 # This is placed last to prevent interfering with the cases above.
2858 i[3456789]86-*-*)
2859 # Build the stage2 and stage3 compilers with -fomit-frame-pointer.
2860 host_makefile_frag="config/mh-x86omitfp"
2861 ;;
a0da8069
NN
2862esac
2863fi
2864
9e07f89d
NN
2865# If we aren't going to be using gcc, see if we can extract a definition
2866# of CC from the fragment.
2867# Actually, use the 'pre-extracted' version above.
2868if test -z "${CC}" && test "${build}" = "${host}" ; then
2869 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${IFS}:"
2870 found=
2871 for dir in $PATH; do
2872 test -z "$dir" && dir=.
2873 if test -f $dir/gcc; then
2874 found=yes
2875 break
2876 fi
2877 done
2878 IFS="$save_ifs"
2879 if test -z "${found}" && test -n "${tentative_cc}" ; then
2880 CC=$tentative_cc
2881 fi
2882fi
2883
2884if test "${build}" != "${host}" ; then
1576798e
PB
2885 AR_FOR_BUILD=${AR_FOR_BUILD-ar}
2886 AS_FOR_BUILD=${AS_FOR_BUILD-as}
9e07f89d 2887 CC_FOR_BUILD=${CC_FOR_BUILD-gcc}
1576798e
PB
2888 CXX_FOR_BUILD=${CXX_FOR_BUILD-g++}
2889 GCJ_FOR_BUILD=${GCJ_FOR_BUILD-gcj}
2890 GFORTRAN_FOR_BUILD=${GFORTRAN_FOR_BUILD-gfortran}
2891 DLLTOOL_FOR_BUILD=${DLLTOOL_FOR_BUILD-dlltool}
2892 LD_FOR_BUILD=${LD_FOR_BUILD-ld}
2893 NM_FOR_BUILD=${NM_FOR_BUILD-nm}
2894 RANLIB_FOR_BUILD=${RANLIB_FOR_BUILD-ranlib}
2895 WINDRES_FOR_BUILD=${WINDRES_FOR_BUILD-windres}
2896 WINDMC_FOR_BUILD=${WINDMC_FOR_BUILD-windmc}
2897else
2898 AR_FOR_BUILD="\$(AR)"
2899 AS_FOR_BUILD="\$(AS)"
512b7dfb 2900 CC_FOR_BUILD="\$(CC)"
1576798e
PB
2901 CXX_FOR_BUILD="\$(CXX)"
2902 GCJ_FOR_BUILD="\$(GCJ)"
2903 GFORTRAN_FOR_BUILD="\$(GFORTRAN)"
2904 DLLTOOL_FOR_BUILD="\$(DLLTOOL)"
2905 LD_FOR_BUILD="\$(LD)"
2906 NM_FOR_BUILD="\$(NM)"
2907 RANLIB_FOR_BUILD="\$(RANLIB)"
2908 WINDRES_FOR_BUILD="\$(WINDRES)"
2909 WINDMC_FOR_BUILD="\$(WINDMC)"
18f6b6ee
PB
2910fi
2911
2912ac_ext=c
c6b750e1
DJ
2913ac_cpp='$CPP $CPPFLAGS'
2914ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
2915ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2916ac_compiler_gnu=$ac_cv_c_compiler_gnu
2917if test -n "$ac_tool_prefix"; then
2918 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
2919set dummy ${ac_tool_prefix}gcc; ac_word=$2
2920echo "$as_me:$LINENO: checking for $ac_word" >&5
2921echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
2922if test "${ac_cv_prog_CC+set}" = set; then
2923 echo $ECHO_N "(cached) $ECHO_C" >&6
2924else
2925 if test -n "$CC"; then
2926 ac_cv_prog_CC="$CC" # Let the user override the test.
2927else
2928as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2929for as_dir in $PATH
2930do
2931 IFS=$as_save_IFS
2932 test -z "$as_dir" && as_dir=.
2933 for ac_exec_ext in '' $ac_executable_extensions; do
2934 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2935 ac_cv_prog_CC="${ac_tool_prefix}gcc"
2936 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2937 break 2
2938 fi
2939done
2940done
2941
2942fi
2943fi
2944CC=$ac_cv_prog_CC
2945if test -n "$CC"; then
2946 echo "$as_me:$LINENO: result: $CC" >&5
2947echo "${ECHO_T}$CC" >&6
2948else
2949 echo "$as_me:$LINENO: result: no" >&5
2950echo "${ECHO_T}no" >&6
2951fi
2952
2953fi
2954if test -z "$ac_cv_prog_CC"; then
2955 ac_ct_CC=$CC
6a9cf61e 2956 # Extract the first word of "gcc", so it can be a program name with args.
9e07f89d 2957set dummy gcc; ac_word=$2
c6b750e1
DJ
2958echo "$as_me:$LINENO: checking for $ac_word" >&5
2959echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
2960if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
2961 echo $ECHO_N "(cached) $ECHO_C" >&6
2962else
2963 if test -n "$ac_ct_CC"; then
2964 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
2965else
2966as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2967for as_dir in $PATH
2968do
2969 IFS=$as_save_IFS
2970 test -z "$as_dir" && as_dir=.
2971 for ac_exec_ext in '' $ac_executable_extensions; do
2972 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2973 ac_cv_prog_ac_ct_CC="gcc"
2974 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2975 break 2
2976 fi
2977done
2978done
2979
2980fi
2981fi
2982ac_ct_CC=$ac_cv_prog_ac_ct_CC
2983if test -n "$ac_ct_CC"; then
2984 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
2985echo "${ECHO_T}$ac_ct_CC" >&6
2986else
2987 echo "$as_me:$LINENO: result: no" >&5
2988echo "${ECHO_T}no" >&6
2989fi
2990
2991 CC=$ac_ct_CC
2992else
2993 CC="$ac_cv_prog_CC"
2994fi
2995
2996if test -z "$CC"; then
2997 if test -n "$ac_tool_prefix"; then
2998 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
2999set dummy ${ac_tool_prefix}cc; ac_word=$2
3000echo "$as_me:$LINENO: checking for $ac_word" >&5
3001echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3002if test "${ac_cv_prog_CC+set}" = set; then
3003 echo $ECHO_N "(cached) $ECHO_C" >&6
9e07f89d
NN
3004else
3005 if test -n "$CC"; then
3006 ac_cv_prog_CC="$CC" # Let the user override the test.
3007else
c6b750e1
DJ
3008as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3009for as_dir in $PATH
3010do
3011 IFS=$as_save_IFS
3012 test -z "$as_dir" && as_dir=.
3013 for ac_exec_ext in '' $ac_executable_extensions; do
3014 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3015 ac_cv_prog_CC="${ac_tool_prefix}cc"
3016 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3017 break 2
3018 fi
3019done
3020done
3021
9e07f89d
NN
3022fi
3023fi
c6b750e1 3024CC=$ac_cv_prog_CC
9e07f89d 3025if test -n "$CC"; then
c6b750e1
DJ
3026 echo "$as_me:$LINENO: result: $CC" >&5
3027echo "${ECHO_T}$CC" >&6
9e07f89d 3028else
c6b750e1
DJ
3029 echo "$as_me:$LINENO: result: no" >&5
3030echo "${ECHO_T}no" >&6
9e07f89d
NN
3031fi
3032
c6b750e1
DJ
3033fi
3034if test -z "$ac_cv_prog_CC"; then
3035 ac_ct_CC=$CC
3036 # Extract the first word of "cc", so it can be a program name with args.
3037set dummy cc; ac_word=$2
3038echo "$as_me:$LINENO: checking for $ac_word" >&5
3039echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3040if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
3041 echo $ECHO_N "(cached) $ECHO_C" >&6
3042else
3043 if test -n "$ac_ct_CC"; then
3044 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
3045else
3046as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3047for as_dir in $PATH
3048do
3049 IFS=$as_save_IFS
3050 test -z "$as_dir" && as_dir=.
3051 for ac_exec_ext in '' $ac_executable_extensions; do
3052 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3053 ac_cv_prog_ac_ct_CC="cc"
3054 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3055 break 2
3056 fi
3057done
3058done
3059
3060fi
3061fi
3062ac_ct_CC=$ac_cv_prog_ac_ct_CC
3063if test -n "$ac_ct_CC"; then
3064 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
3065echo "${ECHO_T}$ac_ct_CC" >&6
3066else
3067 echo "$as_me:$LINENO: result: no" >&5
3068echo "${ECHO_T}no" >&6
3069fi
3070
3071 CC=$ac_ct_CC
3072else
3073 CC="$ac_cv_prog_CC"
3074fi
3075
3076fi
9e07f89d
NN
3077if test -z "$CC"; then
3078 # Extract the first word of "cc", so it can be a program name with args.
3079set dummy cc; ac_word=$2
c6b750e1
DJ
3080echo "$as_me:$LINENO: checking for $ac_word" >&5
3081echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3082if test "${ac_cv_prog_CC+set}" = set; then
3083 echo $ECHO_N "(cached) $ECHO_C" >&6
9e07f89d
NN
3084else
3085 if test -n "$CC"; then
3086 ac_cv_prog_CC="$CC" # Let the user override the test.
3087else
9e07f89d 3088 ac_prog_rejected=no
c6b750e1
DJ
3089as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3090for as_dir in $PATH
3091do
3092 IFS=$as_save_IFS
3093 test -z "$as_dir" && as_dir=.
3094 for ac_exec_ext in '' $ac_executable_extensions; do
3095 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3096 if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
3097 ac_prog_rejected=yes
3098 continue
3099 fi
3100 ac_cv_prog_CC="cc"
3101 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3102 break 2
3103 fi
3104done
3105done
3106
9e07f89d
NN
3107if test $ac_prog_rejected = yes; then
3108 # We found a bogon in the path, so make sure we never use it.
3109 set dummy $ac_cv_prog_CC
3110 shift
c6b750e1 3111 if test $# != 0; then
9e07f89d
NN
3112 # We chose a different compiler from the bogus one.
3113 # However, it has the same basename, so the bogon will be chosen
3114 # first if we set CC to just the basename; use the full file name.
3115 shift
c6b750e1 3116 ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
9e07f89d
NN
3117 fi
3118fi
3119fi
3120fi
c6b750e1 3121CC=$ac_cv_prog_CC
9e07f89d 3122if test -n "$CC"; then
c6b750e1
DJ
3123 echo "$as_me:$LINENO: result: $CC" >&5
3124echo "${ECHO_T}$CC" >&6
9e07f89d 3125else
c6b750e1
DJ
3126 echo "$as_me:$LINENO: result: no" >&5
3127echo "${ECHO_T}no" >&6
9e07f89d
NN
3128fi
3129
c6b750e1
DJ
3130fi
3131if test -z "$CC"; then
3132 if test -n "$ac_tool_prefix"; then
3133 for ac_prog in cl
3134 do
3135 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
3136set dummy $ac_tool_prefix$ac_prog; ac_word=$2
3137echo "$as_me:$LINENO: checking for $ac_word" >&5
3138echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3139if test "${ac_cv_prog_CC+set}" = set; then
3140 echo $ECHO_N "(cached) $ECHO_C" >&6
9e07f89d
NN
3141else
3142 if test -n "$CC"; then
3143 ac_cv_prog_CC="$CC" # Let the user override the test.
3144else
c6b750e1
DJ
3145as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3146for as_dir in $PATH
3147do
3148 IFS=$as_save_IFS
3149 test -z "$as_dir" && as_dir=.
3150 for ac_exec_ext in '' $ac_executable_extensions; do
3151 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3152 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
3153 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3154 break 2
376a0e54 3155 fi
c6b750e1
DJ
3156done
3157done
cac3d6c4 3158
c6b750e1
DJ
3159fi
3160fi
3161CC=$ac_cv_prog_CC
3162if test -n "$CC"; then
3163 echo "$as_me:$LINENO: result: $CC" >&5
3164echo "${ECHO_T}$CC" >&6
cac3d6c4 3165else
c6b750e1
DJ
3166 echo "$as_me:$LINENO: result: no" >&5
3167echo "${ECHO_T}no" >&6
9e07f89d 3168fi
cac3d6c4 3169
c6b750e1
DJ
3170 test -n "$CC" && break
3171 done
cac3d6c4 3172fi
c6b750e1
DJ
3173if test -z "$CC"; then
3174 ac_ct_CC=$CC
3175 for ac_prog in cl
3176do
3177 # Extract the first word of "$ac_prog", so it can be a program name with args.
3178set dummy $ac_prog; ac_word=$2
3179echo "$as_me:$LINENO: checking for $ac_word" >&5
3180echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3181if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
3182 echo $ECHO_N "(cached) $ECHO_C" >&6
cac3d6c4 3183else
c6b750e1
DJ
3184 if test -n "$ac_ct_CC"; then
3185 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
376a0e54 3186else
c6b750e1
DJ
3187as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3188for as_dir in $PATH
3189do
3190 IFS=$as_save_IFS
3191 test -z "$as_dir" && as_dir=.
3192 for ac_exec_ext in '' $ac_executable_extensions; do
3193 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3194 ac_cv_prog_ac_ct_CC="$ac_prog"
3195 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3196 break 2
3197 fi
3198done
3199done
3200
cac3d6c4
CM
3201fi
3202fi
c6b750e1
DJ
3203ac_ct_CC=$ac_cv_prog_ac_ct_CC
3204if test -n "$ac_ct_CC"; then
3205 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
3206echo "${ECHO_T}$ac_ct_CC" >&6
9e07f89d 3207else
c6b750e1
DJ
3208 echo "$as_me:$LINENO: result: no" >&5
3209echo "${ECHO_T}no" >&6
cac3d6c4 3210fi
376a0e54 3211
c6b750e1
DJ
3212 test -n "$ac_ct_CC" && break
3213done
3214
3215 CC=$ac_ct_CC
3216fi
3217
3218fi
3219
3220
3221test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
3222See \`config.log' for more details." >&5
3223echo "$as_me: error: no acceptable C compiler found in \$PATH
3224See \`config.log' for more details." >&2;}
3225 { (exit 1); exit 1; }; }
3226
3227# Provide some information about the compiler.
3228echo "$as_me:$LINENO:" \
3229 "checking for C compiler version" >&5
3230ac_compiler=`set X $ac_compile; echo $2`
3231{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
3232 (eval $ac_compiler --version </dev/null >&5) 2>&5
3233 ac_status=$?
3234 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3235 (exit $ac_status); }
3236{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
3237 (eval $ac_compiler -v </dev/null >&5) 2>&5
3238 ac_status=$?
3239 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3240 (exit $ac_status); }
3241{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
3242 (eval $ac_compiler -V </dev/null >&5) 2>&5
3243 ac_status=$?
3244 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3245 (exit $ac_status); }
3246
3247cat >conftest.$ac_ext <<_ACEOF
3248/* confdefs.h. */
3249_ACEOF
3250cat confdefs.h >>conftest.$ac_ext
3251cat >>conftest.$ac_ext <<_ACEOF
3252/* end confdefs.h. */
3253
3254int
3255main ()
3256{
3257
3258 ;
3259 return 0;
3260}
3261_ACEOF
3262ac_clean_files_save=$ac_clean_files
3263ac_clean_files="$ac_clean_files a.out a.exe b.out"
3264# Try to create an executable without -o first, disregard a.out.
3265# It will help us diagnose broken compilers, and finding out an intuition
3266# of exeext.
3267echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
3268echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6
3269ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
3270if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5
3271 (eval $ac_link_default) 2>&5
3272 ac_status=$?
3273 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3274 (exit $ac_status); }; then
3275 # Find the output, starting from the most likely. This scheme is
3276# not robust to junk in `.', hence go to wildcards (a.*) only as a last
3277# resort.
3278
3279# Be careful to initialize this variable, since it used to be cached.
3280# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile.
3281ac_cv_exeext=
3282# b.out is created by i960 compilers.
3283for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out
3284do
3285 test -f "$ac_file" || continue
3286 case $ac_file in
3287 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj )
3288 ;;
3289 conftest.$ac_ext )
3290 # This is the source file.
3291 ;;
3292 [ab].out )
3293 # We found the default executable, but exeext='' is most
3294 # certainly right.
3295 break;;
3296 *.* )
3297 ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
3298 # FIXME: I believe we export ac_cv_exeext for Libtool,
3299 # but it would be cool to find out if it's true. Does anybody
3300 # maintain Libtool? --akim.
3301 export ac_cv_exeext
3302 break;;
3303 * )
3304 break;;
3305 esac
3306done
3307else
3308 echo "$as_me: failed program was:" >&5
3309sed 's/^/| /' conftest.$ac_ext >&5
3310
3311{ { echo "$as_me:$LINENO: error: C compiler cannot create executables
3312See \`config.log' for more details." >&5
3313echo "$as_me: error: C compiler cannot create executables
3314See \`config.log' for more details." >&2;}
3315 { (exit 77); exit 77; }; }
3316fi
3317
3318ac_exeext=$ac_cv_exeext
3319echo "$as_me:$LINENO: result: $ac_file" >&5
3320echo "${ECHO_T}$ac_file" >&6
3321
3322# Check the compiler produces executables we can run. If not, either
3323# the compiler is broken, or we cross compile.
3324echo "$as_me:$LINENO: checking whether the C compiler works" >&5
3325echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
3326# FIXME: These cross compiler hacks should be removed for Autoconf 3.0
3327# If not cross compiling, check that we can run a simple program.
3328if test "$cross_compiling" != yes; then
3329 if { ac_try='./$ac_file'
3330 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3331 (eval $ac_try) 2>&5
3332 ac_status=$?
3333 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3334 (exit $ac_status); }; }; then
3335 cross_compiling=no
3336 else
3337 if test "$cross_compiling" = maybe; then
3338 cross_compiling=yes
3339 else
3340 { { echo "$as_me:$LINENO: error: cannot run C compiled programs.
3341If you meant to cross compile, use \`--host'.
3342See \`config.log' for more details." >&5
3343echo "$as_me: error: cannot run C compiled programs.
3344If you meant to cross compile, use \`--host'.
3345See \`config.log' for more details." >&2;}
3346 { (exit 1); exit 1; }; }
3347 fi
3348 fi
3349fi
3350echo "$as_me:$LINENO: result: yes" >&5
3351echo "${ECHO_T}yes" >&6
3352
3353rm -f a.out a.exe conftest$ac_cv_exeext b.out
3354ac_clean_files=$ac_clean_files_save
3355# Check the compiler produces executables we can run. If not, either
3356# the compiler is broken, or we cross compile.
3357echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
3358echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
3359echo "$as_me:$LINENO: result: $cross_compiling" >&5
3360echo "${ECHO_T}$cross_compiling" >&6
3361
3362echo "$as_me:$LINENO: checking for suffix of executables" >&5
3363echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6
3364if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3365 (eval $ac_link) 2>&5
3366 ac_status=$?
3367 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3368 (exit $ac_status); }; then
3369 # If both `conftest.exe' and `conftest' are `present' (well, observable)
3370# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
3371# work properly (i.e., refer to `conftest.exe'), while it won't with
3372# `rm'.
3373for ac_file in conftest.exe conftest conftest.*; do
3374 test -f "$ac_file" || continue
3375 case $ac_file in
3376 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;;
3377 *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
3378 export ac_cv_exeext
3379 break;;
3380 * ) break;;
3381 esac
3382done
3383else
3384 { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
3385See \`config.log' for more details." >&5
3386echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
3387See \`config.log' for more details." >&2;}
3388 { (exit 1); exit 1; }; }
3389fi
3390
3391rm -f conftest$ac_cv_exeext
3392echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
3393echo "${ECHO_T}$ac_cv_exeext" >&6
3394
3395rm -f conftest.$ac_ext
3396EXEEXT=$ac_cv_exeext
3397ac_exeext=$EXEEXT
3398echo "$as_me:$LINENO: checking for suffix of object files" >&5
3399echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6
3400if test "${ac_cv_objext+set}" = set; then
3401 echo $ECHO_N "(cached) $ECHO_C" >&6
3402else
3403 cat >conftest.$ac_ext <<_ACEOF
3404/* confdefs.h. */
3405_ACEOF
3406cat confdefs.h >>conftest.$ac_ext
3407cat >>conftest.$ac_ext <<_ACEOF
3408/* end confdefs.h. */
3409
3410int
3411main ()
3412{
3413
3414 ;
3415 return 0;
3416}
3417_ACEOF
3418rm -f conftest.o conftest.obj
3419if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3420 (eval $ac_compile) 2>&5
3421 ac_status=$?
3422 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3423 (exit $ac_status); }; then
3424 for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
3425 case $ac_file in
3426 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;;
3427 *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
3428 break;;
3429 esac
3430done
cac3d6c4 3431else
c6b750e1
DJ
3432 echo "$as_me: failed program was:" >&5
3433sed 's/^/| /' conftest.$ac_ext >&5
3434
3435{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
3436See \`config.log' for more details." >&5
3437echo "$as_me: error: cannot compute suffix of object files: cannot compile
3438See \`config.log' for more details." >&2;}
3439 { (exit 1); exit 1; }; }
3440fi
3441
3442rm -f conftest.$ac_cv_objext conftest.$ac_ext
3443fi
3444echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
3445echo "${ECHO_T}$ac_cv_objext" >&6
3446OBJEXT=$ac_cv_objext
3447ac_objext=$OBJEXT
3448echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
3449echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
3450if test "${ac_cv_c_compiler_gnu+set}" = set; then
3451 echo $ECHO_N "(cached) $ECHO_C" >&6
3452else
3453 cat >conftest.$ac_ext <<_ACEOF
3454/* confdefs.h. */
3455_ACEOF
3456cat confdefs.h >>conftest.$ac_ext
3457cat >>conftest.$ac_ext <<_ACEOF
3458/* end confdefs.h. */
3459
3460int
3461main ()
3462{
3463#ifndef __GNUC__
3464 choke me
3465#endif
3466
3467 ;
3468 return 0;
3469}
3470_ACEOF
3471rm -f conftest.$ac_objext
3472if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3473 (eval $ac_compile) 2>conftest.er1
3474 ac_status=$?
3475 grep -v '^ *+' conftest.er1 >conftest.err
3476 rm -f conftest.er1
3477 cat conftest.err >&5
3478 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3479 (exit $ac_status); } &&
3480 { ac_try='test -z "$ac_c_werror_flag"
3481 || test ! -s conftest.err'
3482 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3483 (eval $ac_try) 2>&5
3484 ac_status=$?
3485 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3486 (exit $ac_status); }; } &&
3487 { ac_try='test -s conftest.$ac_objext'
3488 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3489 (eval $ac_try) 2>&5
3490 ac_status=$?
3491 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3492 (exit $ac_status); }; }; then
3493 ac_compiler_gnu=yes
3494else
3495 echo "$as_me: failed program was:" >&5
3496sed 's/^/| /' conftest.$ac_ext >&5
3497
3498ac_compiler_gnu=no
3499fi
3500rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
3501ac_cv_c_compiler_gnu=$ac_compiler_gnu
3502
3503fi
3504echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
3505echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
3506GCC=`test $ac_compiler_gnu = yes && echo yes`
3507ac_test_CFLAGS=${CFLAGS+set}
3508ac_save_CFLAGS=$CFLAGS
3509CFLAGS="-g"
3510echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
3511echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
3512if test "${ac_cv_prog_cc_g+set}" = set; then
3513 echo $ECHO_N "(cached) $ECHO_C" >&6
3514else
3515 cat >conftest.$ac_ext <<_ACEOF
3516/* confdefs.h. */
3517_ACEOF
3518cat confdefs.h >>conftest.$ac_ext
3519cat >>conftest.$ac_ext <<_ACEOF
3520/* end confdefs.h. */
3521
3522int
3523main ()
3524{
3525
3526 ;
3527 return 0;
3528}
3529_ACEOF
3530rm -f conftest.$ac_objext
3531if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3532 (eval $ac_compile) 2>conftest.er1
3533 ac_status=$?
3534 grep -v '^ *+' conftest.er1 >conftest.err
3535 rm -f conftest.er1
3536 cat conftest.err >&5
3537 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3538 (exit $ac_status); } &&
3539 { ac_try='test -z "$ac_c_werror_flag"
3540 || test ! -s conftest.err'
3541 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3542 (eval $ac_try) 2>&5
3543 ac_status=$?
3544 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3545 (exit $ac_status); }; } &&
3546 { ac_try='test -s conftest.$ac_objext'
3547 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3548 (eval $ac_try) 2>&5
3549 ac_status=$?
3550 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3551 (exit $ac_status); }; }; then
9e07f89d
NN
3552 ac_cv_prog_cc_g=yes
3553else
c6b750e1
DJ
3554 echo "$as_me: failed program was:" >&5
3555sed 's/^/| /' conftest.$ac_ext >&5
cac3d6c4 3556
c6b750e1 3557ac_cv_prog_cc_g=no
376a0e54 3558fi
c6b750e1
DJ
3559rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
3560fi
3561echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
3562echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
9e07f89d 3563if test "$ac_test_CFLAGS" = set; then
c6b750e1 3564 CFLAGS=$ac_save_CFLAGS
9e07f89d
NN
3565elif test $ac_cv_prog_cc_g = yes; then
3566 if test "$GCC" = yes; then
3567 CFLAGS="-g -O2"
3568 else
3569 CFLAGS="-g"
3570 fi
3571else
3572 if test "$GCC" = yes; then
3573 CFLAGS="-O2"
3574 else
3575 CFLAGS=
3576 fi
3577fi
c6b750e1
DJ
3578echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
3579echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
3580if test "${ac_cv_prog_cc_stdc+set}" = set; then
3581 echo $ECHO_N "(cached) $ECHO_C" >&6
3582else
3583 ac_cv_prog_cc_stdc=no
3584ac_save_CC=$CC
3585cat >conftest.$ac_ext <<_ACEOF
3586/* confdefs.h. */
3587_ACEOF
3588cat confdefs.h >>conftest.$ac_ext
3589cat >>conftest.$ac_ext <<_ACEOF
3590/* end confdefs.h. */
3591#include <stdarg.h>
3592#include <stdio.h>
3593#include <sys/types.h>
3594#include <sys/stat.h>
3595/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
3596struct buf { int x; };
3597FILE * (*rcsopen) (struct buf *, struct stat *, int);
3598static char *e (p, i)
3599 char **p;
3600 int i;
3601{
3602 return p[i];
3603}
3604static char *f (char * (*g) (char **, int), char **p, ...)
3605{
3606 char *s;
3607 va_list v;
3608 va_start (v,p);
3609 s = g (p, va_arg (v,int));
3610 va_end (v);
3611 return s;
3612}
3613
3614/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
3615 function prototypes and stuff, but not '\xHH' hex character constants.
3616 These don't provoke an error unfortunately, instead are silently treated
3617 as 'x'. The following induces an error, until -std1 is added to get
3618 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
3619 array size at least. It's necessary to write '\x00'==0 to get something
3620 that's true only with -std1. */
3621int osf4_cc_array ['\x00' == 0 ? 1 : -1];
3622
3623int test (int i, double x);
3624struct s1 {int (*f) (int a);};
3625struct s2 {int (*f) (double a);};
3626int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
3627int argc;
3628char **argv;
3629int
3630main ()
3631{
3632return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
3633 ;
3634 return 0;
3635}
3636_ACEOF
3637# Don't try gcc -ansi; that turns off useful extensions and
3638# breaks some systems' header files.
3639# AIX -qlanglvl=ansi
3640# Ultrix and OSF/1 -std1
3641# HP-UX 10.20 and later -Ae
3642# HP-UX older versions -Aa -D_HPUX_SOURCE
3643# SVR4 -Xc -D__EXTENSIONS__
3644for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
3645do
3646 CC="$ac_save_CC $ac_arg"
3647 rm -f conftest.$ac_objext
3648if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3649 (eval $ac_compile) 2>conftest.er1
3650 ac_status=$?
3651 grep -v '^ *+' conftest.er1 >conftest.err
3652 rm -f conftest.er1
3653 cat conftest.err >&5
3654 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3655 (exit $ac_status); } &&
3656 { ac_try='test -z "$ac_c_werror_flag"
3657 || test ! -s conftest.err'
3658 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3659 (eval $ac_try) 2>&5
3660 ac_status=$?
3661 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3662 (exit $ac_status); }; } &&
3663 { ac_try='test -s conftest.$ac_objext'
3664 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3665 (eval $ac_try) 2>&5
3666 ac_status=$?
3667 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3668 (exit $ac_status); }; }; then
3669 ac_cv_prog_cc_stdc=$ac_arg
3670break
3671else
3672 echo "$as_me: failed program was:" >&5
3673sed 's/^/| /' conftest.$ac_ext >&5
3674
3675fi
3676rm -f conftest.err conftest.$ac_objext
3677done
3678rm -f conftest.$ac_ext conftest.$ac_objext
3679CC=$ac_save_CC
3680
3681fi
3682
3683case "x$ac_cv_prog_cc_stdc" in
3684 x|xno)
3685 echo "$as_me:$LINENO: result: none needed" >&5
3686echo "${ECHO_T}none needed" >&6 ;;
3687 *)
3688 echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
3689echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
3690 CC="$CC $ac_cv_prog_cc_stdc" ;;
3691esac
3692
3693# Some people use a C++ compiler to compile C. Since we use `exit',
3694# in C++ we need to declare it. In case someone uses the same compiler
3695# for both compiling C and C++ we need to have the C++ compiler decide
3696# the declaration of exit, since it's the most demanding environment.
3697cat >conftest.$ac_ext <<_ACEOF
3698#ifndef __cplusplus
3699 choke me
3700#endif
3701_ACEOF
3702rm -f conftest.$ac_objext
3703if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3704 (eval $ac_compile) 2>conftest.er1
3705 ac_status=$?
3706 grep -v '^ *+' conftest.er1 >conftest.err
3707 rm -f conftest.er1
3708 cat conftest.err >&5
3709 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3710 (exit $ac_status); } &&
3711 { ac_try='test -z "$ac_c_werror_flag"
3712 || test ! -s conftest.err'
3713 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3714 (eval $ac_try) 2>&5
3715 ac_status=$?
3716 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3717 (exit $ac_status); }; } &&
3718 { ac_try='test -s conftest.$ac_objext'
3719 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3720 (eval $ac_try) 2>&5
3721 ac_status=$?
3722 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3723 (exit $ac_status); }; }; then
3724 for ac_declaration in \
3725 '' \
3726 'extern "C" void std::exit (int) throw (); using std::exit;' \
3727 'extern "C" void std::exit (int); using std::exit;' \
3728 'extern "C" void exit (int) throw ();' \
3729 'extern "C" void exit (int);' \
3730 'void exit (int);'
3731do
3732 cat >conftest.$ac_ext <<_ACEOF
3733/* confdefs.h. */
3734_ACEOF
3735cat confdefs.h >>conftest.$ac_ext
3736cat >>conftest.$ac_ext <<_ACEOF
3737/* end confdefs.h. */
3738$ac_declaration
3739#include <stdlib.h>
3740int
3741main ()
3742{
3743exit (42);
3744 ;
3745 return 0;
3746}
3747_ACEOF
3748rm -f conftest.$ac_objext
3749if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3750 (eval $ac_compile) 2>conftest.er1
3751 ac_status=$?
3752 grep -v '^ *+' conftest.er1 >conftest.err
3753 rm -f conftest.er1
3754 cat conftest.err >&5
3755 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3756 (exit $ac_status); } &&
3757 { ac_try='test -z "$ac_c_werror_flag"
3758 || test ! -s conftest.err'
3759 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3760 (eval $ac_try) 2>&5
3761 ac_status=$?
3762 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3763 (exit $ac_status); }; } &&
3764 { ac_try='test -s conftest.$ac_objext'
3765 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3766 (eval $ac_try) 2>&5
3767 ac_status=$?
3768 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3769 (exit $ac_status); }; }; then
3770 :
3771else
3772 echo "$as_me: failed program was:" >&5
3773sed 's/^/| /' conftest.$ac_ext >&5
3774
3775continue
3776fi
3777rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
3778 cat >conftest.$ac_ext <<_ACEOF
3779/* confdefs.h. */
3780_ACEOF
3781cat confdefs.h >>conftest.$ac_ext
3782cat >>conftest.$ac_ext <<_ACEOF
3783/* end confdefs.h. */
3784$ac_declaration
3785int
3786main ()
3787{
3788exit (42);
3789 ;
3790 return 0;
3791}
3792_ACEOF
3793rm -f conftest.$ac_objext
3794if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3795 (eval $ac_compile) 2>conftest.er1
3796 ac_status=$?
3797 grep -v '^ *+' conftest.er1 >conftest.err
3798 rm -f conftest.er1
3799 cat conftest.err >&5
3800 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3801 (exit $ac_status); } &&
3802 { ac_try='test -z "$ac_c_werror_flag"
3803 || test ! -s conftest.err'
3804 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3805 (eval $ac_try) 2>&5
3806 ac_status=$?
3807 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3808 (exit $ac_status); }; } &&
3809 { ac_try='test -s conftest.$ac_objext'
3810 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3811 (eval $ac_try) 2>&5
3812 ac_status=$?
3813 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3814 (exit $ac_status); }; }; then
3815 break
3816else
3817 echo "$as_me: failed program was:" >&5
3818sed 's/^/| /' conftest.$ac_ext >&5
3819
3820fi
3821rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
3822done
3823rm -f conftest*
3824if test -n "$ac_declaration"; then
3825 echo '#ifdef __cplusplus' >>confdefs.h
3826 echo $ac_declaration >>confdefs.h
3827 echo '#endif' >>confdefs.h
3828fi
3829
3830else
3831 echo "$as_me: failed program was:" >&5
3832sed 's/^/| /' conftest.$ac_ext >&5
3833
3834fi
3835rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
3836ac_ext=c
3837ac_cpp='$CPP $CPPFLAGS'
3838ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
3839ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
3840ac_compiler_gnu=$ac_cv_c_compiler_gnu
9e07f89d 3841
18f6b6ee
PB
3842ac_ext=cc
3843ac_cpp='$CXXCPP $CPPFLAGS'
3844ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
3845ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
3846ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
3847if test -n "$ac_tool_prefix"; then
3848 for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC
3849 do
3850 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
3851set dummy $ac_tool_prefix$ac_prog; ac_word=$2
3852echo "$as_me:$LINENO: checking for $ac_word" >&5
3853echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3854if test "${ac_cv_prog_CXX+set}" = set; then
3855 echo $ECHO_N "(cached) $ECHO_C" >&6
3856else
3857 if test -n "$CXX"; then
3858 ac_cv_prog_CXX="$CXX" # Let the user override the test.
3859else
3860as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3861for as_dir in $PATH
3862do
3863 IFS=$as_save_IFS
3864 test -z "$as_dir" && as_dir=.
3865 for ac_exec_ext in '' $ac_executable_extensions; do
3866 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3867 ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
3868 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3869 break 2
3870 fi
3871done
3872done
512b7dfb 3873
18f6b6ee
PB
3874fi
3875fi
3876CXX=$ac_cv_prog_CXX
3877if test -n "$CXX"; then
3878 echo "$as_me:$LINENO: result: $CXX" >&5
3879echo "${ECHO_T}$CXX" >&6
3880else
3881 echo "$as_me:$LINENO: result: no" >&5
3882echo "${ECHO_T}no" >&6
3883fi
3884
3885 test -n "$CXX" && break
3886 done
3887fi
3888if test -z "$CXX"; then
3889 ac_ct_CXX=$CXX
3890 for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC
3891do
3892 # Extract the first word of "$ac_prog", so it can be a program name with args.
3893set dummy $ac_prog; ac_word=$2
3894echo "$as_me:$LINENO: checking for $ac_word" >&5
3895echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3896if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then
3897 echo $ECHO_N "(cached) $ECHO_C" >&6
3898else
3899 if test -n "$ac_ct_CXX"; then
3900 ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test.
3901else
3902as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3903for as_dir in $PATH
3904do
3905 IFS=$as_save_IFS
3906 test -z "$as_dir" && as_dir=.
3907 for ac_exec_ext in '' $ac_executable_extensions; do
3908 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3909 ac_cv_prog_ac_ct_CXX="$ac_prog"
3910 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3911 break 2
512b7dfb 3912 fi
18f6b6ee
PB
3913done
3914done
512b7dfb 3915
18f6b6ee
PB
3916fi
3917fi
3918ac_ct_CXX=$ac_cv_prog_ac_ct_CXX
3919if test -n "$ac_ct_CXX"; then
3920 echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5
3921echo "${ECHO_T}$ac_ct_CXX" >&6
3922else
3923 echo "$as_me:$LINENO: result: no" >&5
3924echo "${ECHO_T}no" >&6
3925fi
3926
3927 test -n "$ac_ct_CXX" && break
3928done
3929test -n "$ac_ct_CXX" || ac_ct_CXX="g++"
3930
3931 CXX=$ac_ct_CXX
3932fi
3933
3934
3935# Provide some information about the compiler.
3936echo "$as_me:$LINENO:" \
3937 "checking for C++ compiler version" >&5
3938ac_compiler=`set X $ac_compile; echo $2`
3939{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
3940 (eval $ac_compiler --version </dev/null >&5) 2>&5
3941 ac_status=$?
3942 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3943 (exit $ac_status); }
3944{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
3945 (eval $ac_compiler -v </dev/null >&5) 2>&5
3946 ac_status=$?
3947 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3948 (exit $ac_status); }
3949{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
3950 (eval $ac_compiler -V </dev/null >&5) 2>&5
3951 ac_status=$?
3952 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3953 (exit $ac_status); }
3954
3955echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5
3956echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6
3957if test "${ac_cv_cxx_compiler_gnu+set}" = set; then
3958 echo $ECHO_N "(cached) $ECHO_C" >&6
3959else
3960 cat >conftest.$ac_ext <<_ACEOF
3961/* confdefs.h. */
3962_ACEOF
3963cat confdefs.h >>conftest.$ac_ext
3964cat >>conftest.$ac_ext <<_ACEOF
3965/* end confdefs.h. */
3966
3967int
3968main ()
3969{
3970#ifndef __GNUC__
3971 choke me
3972#endif
3973
3974 ;
3975 return 0;
3976}
3977_ACEOF
3978rm -f conftest.$ac_objext
3979if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3980 (eval $ac_compile) 2>conftest.er1
3981 ac_status=$?
3982 grep -v '^ *+' conftest.er1 >conftest.err
3983 rm -f conftest.er1
3984 cat conftest.err >&5
3985 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3986 (exit $ac_status); } &&
3987 { ac_try='test -z "$ac_cxx_werror_flag"
3988 || test ! -s conftest.err'
3989 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3990 (eval $ac_try) 2>&5
3991 ac_status=$?
3992 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3993 (exit $ac_status); }; } &&
3994 { ac_try='test -s conftest.$ac_objext'
3995 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3996 (eval $ac_try) 2>&5
3997 ac_status=$?
3998 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3999 (exit $ac_status); }; }; then
4000 ac_compiler_gnu=yes
4001else
4002 echo "$as_me: failed program was:" >&5
4003sed 's/^/| /' conftest.$ac_ext >&5
4004
4005ac_compiler_gnu=no
4006fi
4007rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4008ac_cv_cxx_compiler_gnu=$ac_compiler_gnu
4009
4010fi
4011echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5
4012echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6
4013GXX=`test $ac_compiler_gnu = yes && echo yes`
4014ac_test_CXXFLAGS=${CXXFLAGS+set}
4015ac_save_CXXFLAGS=$CXXFLAGS
4016CXXFLAGS="-g"
4017echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5
4018echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6
4019if test "${ac_cv_prog_cxx_g+set}" = set; then
4020 echo $ECHO_N "(cached) $ECHO_C" >&6
4021else
4022 cat >conftest.$ac_ext <<_ACEOF
4023/* confdefs.h. */
4024_ACEOF
4025cat confdefs.h >>conftest.$ac_ext
4026cat >>conftest.$ac_ext <<_ACEOF
4027/* end confdefs.h. */
4028
4029int
4030main ()
4031{
4032
4033 ;
4034 return 0;
4035}
4036_ACEOF
4037rm -f conftest.$ac_objext
4038if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4039 (eval $ac_compile) 2>conftest.er1
4040 ac_status=$?
4041 grep -v '^ *+' conftest.er1 >conftest.err
4042 rm -f conftest.er1
4043 cat conftest.err >&5
4044 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4045 (exit $ac_status); } &&
4046 { ac_try='test -z "$ac_cxx_werror_flag"
4047 || test ! -s conftest.err'
4048 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4049 (eval $ac_try) 2>&5
4050 ac_status=$?
4051 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4052 (exit $ac_status); }; } &&
4053 { ac_try='test -s conftest.$ac_objext'
4054 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4055 (eval $ac_try) 2>&5
4056 ac_status=$?
4057 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4058 (exit $ac_status); }; }; then
4059 ac_cv_prog_cxx_g=yes
4060else
4061 echo "$as_me: failed program was:" >&5
4062sed 's/^/| /' conftest.$ac_ext >&5
4063
4064ac_cv_prog_cxx_g=no
4065fi
4066rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4067fi
4068echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5
4069echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6
4070if test "$ac_test_CXXFLAGS" = set; then
4071 CXXFLAGS=$ac_save_CXXFLAGS
4072elif test $ac_cv_prog_cxx_g = yes; then
4073 if test "$GXX" = yes; then
4074 CXXFLAGS="-g -O2"
4075 else
4076 CXXFLAGS="-g"
4077 fi
4078else
4079 if test "$GXX" = yes; then
4080 CXXFLAGS="-O2"
4081 else
4082 CXXFLAGS=
4083 fi
4084fi
4085for ac_declaration in \
4086 '' \
4087 'extern "C" void std::exit (int) throw (); using std::exit;' \
4088 'extern "C" void std::exit (int); using std::exit;' \
4089 'extern "C" void exit (int) throw ();' \
4090 'extern "C" void exit (int);' \
4091 'void exit (int);'
4092do
4093 cat >conftest.$ac_ext <<_ACEOF
4094/* confdefs.h. */
4095_ACEOF
4096cat confdefs.h >>conftest.$ac_ext
4097cat >>conftest.$ac_ext <<_ACEOF
4098/* end confdefs.h. */
4099$ac_declaration
4100#include <stdlib.h>
4101int
4102main ()
4103{
4104exit (42);
4105 ;
4106 return 0;
4107}
4108_ACEOF
4109rm -f conftest.$ac_objext
4110if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4111 (eval $ac_compile) 2>conftest.er1
4112 ac_status=$?
4113 grep -v '^ *+' conftest.er1 >conftest.err
4114 rm -f conftest.er1
4115 cat conftest.err >&5
4116 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4117 (exit $ac_status); } &&
4118 { ac_try='test -z "$ac_cxx_werror_flag"
4119 || test ! -s conftest.err'
4120 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4121 (eval $ac_try) 2>&5
4122 ac_status=$?
4123 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4124 (exit $ac_status); }; } &&
4125 { ac_try='test -s conftest.$ac_objext'
4126 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4127 (eval $ac_try) 2>&5
4128 ac_status=$?
4129 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4130 (exit $ac_status); }; }; then
4131 :
4132else
4133 echo "$as_me: failed program was:" >&5
4134sed 's/^/| /' conftest.$ac_ext >&5
4135
4136continue
4137fi
4138rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4139 cat >conftest.$ac_ext <<_ACEOF
4140/* confdefs.h. */
4141_ACEOF
4142cat confdefs.h >>conftest.$ac_ext
4143cat >>conftest.$ac_ext <<_ACEOF
4144/* end confdefs.h. */
4145$ac_declaration
4146int
4147main ()
4148{
4149exit (42);
4150 ;
4151 return 0;
4152}
4153_ACEOF
4154rm -f conftest.$ac_objext
4155if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4156 (eval $ac_compile) 2>conftest.er1
4157 ac_status=$?
4158 grep -v '^ *+' conftest.er1 >conftest.err
4159 rm -f conftest.er1
4160 cat conftest.err >&5
4161 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4162 (exit $ac_status); } &&
4163 { ac_try='test -z "$ac_cxx_werror_flag"
4164 || test ! -s conftest.err'
4165 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4166 (eval $ac_try) 2>&5
4167 ac_status=$?
4168 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4169 (exit $ac_status); }; } &&
4170 { ac_try='test -s conftest.$ac_objext'
4171 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4172 (eval $ac_try) 2>&5
4173 ac_status=$?
4174 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4175 (exit $ac_status); }; }; then
4176 break
4177else
4178 echo "$as_me: failed program was:" >&5
4179sed 's/^/| /' conftest.$ac_ext >&5
4180
4181fi
4182rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4183done
4184rm -f conftest*
4185if test -n "$ac_declaration"; then
4186 echo '#ifdef __cplusplus' >>confdefs.h
4187 echo $ac_declaration >>confdefs.h
4188 echo '#endif' >>confdefs.h
4189fi
4190
4191ac_ext=c
4192ac_cpp='$CPP $CPPFLAGS'
4193ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
4194ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
4195ac_compiler_gnu=$ac_cv_c_compiler_gnu
4196
4197
4198# We must set the default linker to the linker used by gcc for the correct
4199# operation of libtool. If LD is not defined and we are using gcc, try to
4200# set the LD default to the ld used by gcc.
4201if test -z "$LD"; then
4202 if test "$GCC" = yes; then
4203 case $build in
4204 *-*-mingw*)
4205 gcc_prog_ld=`$CC -print-prog-name=ld 2>&1 | tr -d '\015'` ;;
4206 *)
4207 gcc_prog_ld=`$CC -print-prog-name=ld 2>&1` ;;
4208 esac
4209 case $gcc_prog_ld in
4210 # Accept absolute paths.
4211 [\\/]* | [A-Za-z]:[\\/]*)
4212 LD="$gcc_prog_ld" ;;
4213 esac
4214 fi
512b7dfb
PB
4215fi
4216
4217
4218
4219
c6b750e1 4220if test -n "$ac_tool_prefix"; then
512b7dfb
PB
4221 # Extract the first word of "${ac_tool_prefix}gnatbind", so it can be a program name with args.
4222set dummy ${ac_tool_prefix}gnatbind; ac_word=$2
c6b750e1
DJ
4223echo "$as_me:$LINENO: checking for $ac_word" >&5
4224echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
512b7dfb 4225if test "${ac_cv_prog_GNATBIND+set}" = set; then
c6b750e1 4226 echo $ECHO_N "(cached) $ECHO_C" >&6
9e07f89d 4227else
512b7dfb
PB
4228 if test -n "$GNATBIND"; then
4229 ac_cv_prog_GNATBIND="$GNATBIND" # Let the user override the test.
9e07f89d 4230else
c6b750e1
DJ
4231as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4232for as_dir in $PATH
4233do
4234 IFS=$as_save_IFS
4235 test -z "$as_dir" && as_dir=.
4236 for ac_exec_ext in '' $ac_executable_extensions; do
4237 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
512b7dfb 4238 ac_cv_prog_GNATBIND="${ac_tool_prefix}gnatbind"
c6b750e1
DJ
4239 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4240 break 2
4241 fi
4242done
4243done
4244
9e07f89d
NN
4245fi
4246fi
512b7dfb
PB
4247GNATBIND=$ac_cv_prog_GNATBIND
4248if test -n "$GNATBIND"; then
4249 echo "$as_me:$LINENO: result: $GNATBIND" >&5
4250echo "${ECHO_T}$GNATBIND" >&6
9e07f89d 4251else
c6b750e1
DJ
4252 echo "$as_me:$LINENO: result: no" >&5
4253echo "${ECHO_T}no" >&6
9e07f89d
NN
4254fi
4255
c6b750e1 4256fi
512b7dfb
PB
4257if test -z "$ac_cv_prog_GNATBIND"; then
4258 ac_ct_GNATBIND=$GNATBIND
4259 # Extract the first word of "gnatbind", so it can be a program name with args.
4260set dummy gnatbind; ac_word=$2
c6b750e1
DJ
4261echo "$as_me:$LINENO: checking for $ac_word" >&5
4262echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
512b7dfb 4263if test "${ac_cv_prog_ac_ct_GNATBIND+set}" = set; then
c6b750e1 4264 echo $ECHO_N "(cached) $ECHO_C" >&6
9e07f89d 4265else
512b7dfb
PB
4266 if test -n "$ac_ct_GNATBIND"; then
4267 ac_cv_prog_ac_ct_GNATBIND="$ac_ct_GNATBIND" # Let the user override the test.
9e07f89d 4268else
c6b750e1
DJ
4269as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4270for as_dir in $PATH
4271do
4272 IFS=$as_save_IFS
4273 test -z "$as_dir" && as_dir=.
4274 for ac_exec_ext in '' $ac_executable_extensions; do
4275 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
512b7dfb 4276 ac_cv_prog_ac_ct_GNATBIND="gnatbind"
c6b750e1
DJ
4277 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4278 break 2
4279 fi
4280done
4281done
4282
512b7dfb 4283 test -z "$ac_cv_prog_ac_ct_GNATBIND" && ac_cv_prog_ac_ct_GNATBIND="no"
9e07f89d
NN
4284fi
4285fi
512b7dfb
PB
4286ac_ct_GNATBIND=$ac_cv_prog_ac_ct_GNATBIND
4287if test -n "$ac_ct_GNATBIND"; then
4288 echo "$as_me:$LINENO: result: $ac_ct_GNATBIND" >&5
4289echo "${ECHO_T}$ac_ct_GNATBIND" >&6
9e07f89d 4290else
c6b750e1
DJ
4291 echo "$as_me:$LINENO: result: no" >&5
4292echo "${ECHO_T}no" >&6
9e07f89d
NN
4293fi
4294
512b7dfb 4295 GNATBIND=$ac_ct_GNATBIND
24ff9987 4296else
512b7dfb 4297 GNATBIND="$ac_cv_prog_GNATBIND"
9e07f89d
NN
4298fi
4299
7df2cd5d 4300if test -n "$ac_tool_prefix"; then
512b7dfb
PB
4301 # Extract the first word of "${ac_tool_prefix}gnatmake", so it can be a program name with args.
4302set dummy ${ac_tool_prefix}gnatmake; ac_word=$2
7df2cd5d
PB
4303echo "$as_me:$LINENO: checking for $ac_word" >&5
4304echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
512b7dfb 4305if test "${ac_cv_prog_GNATMAKE+set}" = set; then
7df2cd5d
PB
4306 echo $ECHO_N "(cached) $ECHO_C" >&6
4307else
512b7dfb
PB
4308 if test -n "$GNATMAKE"; then
4309 ac_cv_prog_GNATMAKE="$GNATMAKE" # Let the user override the test.
7df2cd5d
PB
4310else
4311as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4312for as_dir in $PATH
4313do
4314 IFS=$as_save_IFS
4315 test -z "$as_dir" && as_dir=.
4316 for ac_exec_ext in '' $ac_executable_extensions; do
4317 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
512b7dfb 4318 ac_cv_prog_GNATMAKE="${ac_tool_prefix}gnatmake"
7df2cd5d
PB
4319 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4320 break 2
4321 fi
4322done
4323done
4324
4325fi
4326fi
512b7dfb
PB
4327GNATMAKE=$ac_cv_prog_GNATMAKE
4328if test -n "$GNATMAKE"; then
4329 echo "$as_me:$LINENO: result: $GNATMAKE" >&5
4330echo "${ECHO_T}$GNATMAKE" >&6
7df2cd5d
PB
4331else
4332 echo "$as_me:$LINENO: result: no" >&5
4333echo "${ECHO_T}no" >&6
4334fi
4335
4336fi
512b7dfb
PB
4337if test -z "$ac_cv_prog_GNATMAKE"; then
4338 ac_ct_GNATMAKE=$GNATMAKE
4339 # Extract the first word of "gnatmake", so it can be a program name with args.
4340set dummy gnatmake; ac_word=$2
7df2cd5d
PB
4341echo "$as_me:$LINENO: checking for $ac_word" >&5
4342echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
512b7dfb 4343if test "${ac_cv_prog_ac_ct_GNATMAKE+set}" = set; then
7df2cd5d
PB
4344 echo $ECHO_N "(cached) $ECHO_C" >&6
4345else
512b7dfb
PB
4346 if test -n "$ac_ct_GNATMAKE"; then
4347 ac_cv_prog_ac_ct_GNATMAKE="$ac_ct_GNATMAKE" # Let the user override the test.
7df2cd5d
PB
4348else
4349as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4350for as_dir in $PATH
4351do
4352 IFS=$as_save_IFS
4353 test -z "$as_dir" && as_dir=.
4354 for ac_exec_ext in '' $ac_executable_extensions; do
4355 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
512b7dfb 4356 ac_cv_prog_ac_ct_GNATMAKE="gnatmake"
7df2cd5d
PB
4357 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4358 break 2
4359 fi
4360done
4361done
4362
512b7dfb 4363 test -z "$ac_cv_prog_ac_ct_GNATMAKE" && ac_cv_prog_ac_ct_GNATMAKE="no"
7df2cd5d
PB
4364fi
4365fi
512b7dfb
PB
4366ac_ct_GNATMAKE=$ac_cv_prog_ac_ct_GNATMAKE
4367if test -n "$ac_ct_GNATMAKE"; then
4368 echo "$as_me:$LINENO: result: $ac_ct_GNATMAKE" >&5
4369echo "${ECHO_T}$ac_ct_GNATMAKE" >&6
7df2cd5d
PB
4370else
4371 echo "$as_me:$LINENO: result: no" >&5
4372echo "${ECHO_T}no" >&6
4373fi
4374
512b7dfb 4375 GNATMAKE=$ac_ct_GNATMAKE
7df2cd5d 4376else
512b7dfb 4377 GNATMAKE="$ac_cv_prog_GNATMAKE"
7df2cd5d
PB
4378fi
4379
c6b750e1
DJ
4380echo "$as_me:$LINENO: checking whether compiler driver understands Ada" >&5
4381echo $ECHO_N "checking whether compiler driver understands Ada... $ECHO_C" >&6
4382if test "${acx_cv_cc_gcc_supports_ada+set}" = set; then
4383 echo $ECHO_N "(cached) $ECHO_C" >&6
9e07f89d
NN
4384else
4385 cat >conftest.adb <<EOF
4386procedure conftest is begin null; end conftest;
4387EOF
4388acx_cv_cc_gcc_supports_ada=no
4389# There is a bug in old released versions of GCC which causes the
4390# driver to exit successfully when the appropriate language module
4391# has not been installed. This is fixed in 2.95.4, 3.0.2, and 3.1.
4392# Therefore we must check for the error message as well as an
4393# unsuccessful exit.
b8908782
DD
4394# Other compilers, like HP Tru64 UNIX cc, exit successfully when
4395# given a .adb file, but produce no object file. So we must check
4396# if an object file was really produced to guard against this.
9e07f89d 4397errors=`(${CC} -c conftest.adb) 2>&1 || echo failure`
b8908782 4398if test x"$errors" = x && test -f conftest.$ac_objext; then
9e07f89d 4399 acx_cv_cc_gcc_supports_ada=yes
9e07f89d
NN
4400fi
4401rm -f conftest.*
4402fi
c6b750e1
DJ
4403echo "$as_me:$LINENO: result: $acx_cv_cc_gcc_supports_ada" >&5
4404echo "${ECHO_T}$acx_cv_cc_gcc_supports_ada" >&6
9e07f89d 4405
512b7dfb 4406if test x$GNATBIND != xno && test x$GNATMAKE != xno && test x$acx_cv_cc_gcc_supports_ada != xno; then
9e07f89d
NN
4407 have_gnat=yes
4408else
4409 have_gnat=no
4410fi
4411
c6b750e1
DJ
4412echo "$as_me:$LINENO: checking how to compare bootstrapped objects" >&5
4413echo $ECHO_N "checking how to compare bootstrapped objects... $ECHO_C" >&6
4414if test "${gcc_cv_prog_cmp_skip+set}" = set; then
4415 echo $ECHO_N "(cached) $ECHO_C" >&6
b8908782
DD
4416else
4417 echo abfoo >t1
4418 echo cdfoo >t2
4419 gcc_cv_prog_cmp_skip='tail +16c $$f1 > tmp-foo1; tail +16c $$f2 > tmp-foo2; cmp tmp-foo1 tmp-foo2'
4b1cb4fe
DD
4420 if cmp t1 t2 2 2 > /dev/null 2>&1; then
4421 if cmp t1 t2 1 1 > /dev/null 2>&1; then
4422 :
4423 else
4424 gcc_cv_prog_cmp_skip='cmp $$f1 $$f2 16 16'
4425 fi
4426 fi
b8908782
DD
4427 if cmp --ignore-initial=2 t1 t2 > /dev/null 2>&1; then
4428 if cmp --ignore-initial=1 t1 t2 > /dev/null 2>&1; then
4b1cb4fe 4429 :
b8908782
DD
4430 else
4431 gcc_cv_prog_cmp_skip='cmp --ignore-initial=16 $$f1 $$f2'
4432 fi
4433 fi
4434 rm t1 t2
4435
4436fi
c6b750e1
DJ
4437echo "$as_me:$LINENO: result: $gcc_cv_prog_cmp_skip" >&5
4438echo "${ECHO_T}$gcc_cv_prog_cmp_skip" >&6
b8908782
DD
4439do_compare="$gcc_cv_prog_cmp_skip"
4440
4441
9e07f89d 4442
11b04d1f 4443# Check for GMP and MPFR
4b900473 4444gmplibs="-lmpfr -lgmp"
4b1cb4fe 4445gmpinc=
4b900473
PB
4446have_gmp=no
4447
11b04d1f
DD
4448# Specify a location for mpfr
4449# check for this first so it ends up on the link line before gmp.
c6b750e1 4450
11b04d1f
DD
4451# Check whether --with-mpfr-dir or --without-mpfr-dir was given.
4452if test "${with_mpfr_dir+set}" = set; then
4453 withval="$with_mpfr_dir"
c6b750e1
DJ
4454 { { echo "$as_me:$LINENO: error: The --with-mpfr-dir=PATH option has been removed.
4455Use --with-mpfr=PATH or --with-mpfr-include=PATH plus --with-mpfr-lib=PATH" >&5
4456echo "$as_me: error: The --with-mpfr-dir=PATH option has been removed.
4457Use --with-mpfr=PATH or --with-mpfr-include=PATH plus --with-mpfr-lib=PATH" >&2;}
4458 { (exit 1); exit 1; }; }
4459fi;
11b04d1f
DD
4460
4461
11b04d1f
DD
4462# Check whether --with-mpfr or --without-mpfr was given.
4463if test "${with_mpfr+set}" = set; then
4464 withval="$with_mpfr"
c6b750e1
DJ
4465
4466fi;
11b04d1f 4467
8a0d8a5c
PB
4468# Check whether --with-mpfr_include or --without-mpfr_include was given.
4469if test "${with_mpfr_include+set}" = set; then
4470 withval="$with_mpfr_include"
c6b750e1
DJ
4471
4472fi;
8a0d8a5c
PB
4473
4474# Check whether --with-mpfr_lib or --without-mpfr_lib was given.
4475if test "${with_mpfr_lib+set}" = set; then
4476 withval="$with_mpfr_lib"
8a0d8a5c 4477
c6b750e1 4478fi;
11b04d1f
DD
4479
4480if test "x$with_mpfr" != x; then
4481 gmplibs="-L$with_mpfr/lib $gmplibs"
4482 gmpinc="-I$with_mpfr/include"
4483fi
8a0d8a5c
PB
4484if test "x$with_mpfr_include" != x; then
4485 gmpinc="-I$with_mpfr_include"
4486fi
4487if test "x$with_mpfr_lib" != x; then
4488 gmplibs="-L$with_mpfr_lib $gmplibs"
4489fi
4b900473
PB
4490if test "x$with_mpfr$with_mpfr_include$with_mpfr_lib" = x && test -d ${srcdir}/mpfr; then
4491 gmplibs='-L$$r/$(HOST_SUBDIR)/mpfr/.libs -L$$r/$(HOST_SUBDIR)/mpfr/_libs '"$gmplibs"
4492 gmpinc='-I$$r/$(HOST_SUBDIR)/mpfr -I$$s/mpfr '"$gmpinc"
4493 # Do not test the mpfr version. Assume that it is sufficient, since
4494 # it is in the source tree, and the library has not been built yet
4495 # but it would be included on the link line in the version check below
4496 # hence making the test fail.
4497 have_gmp=yes
4498fi
11b04d1f 4499
4b1cb4fe 4500# Specify a location for gmp
c6b750e1 4501
4b1cb4fe
DD
4502# Check whether --with-gmp-dir or --without-gmp-dir was given.
4503if test "${with_gmp_dir+set}" = set; then
4504 withval="$with_gmp_dir"
c6b750e1
DJ
4505 { { echo "$as_me:$LINENO: error: The --with-gmp-dir=PATH option has been removed.
4506Use --with-gmp=PATH or --with-gmp-include=PATH plus --with-gmp-lib=PATH" >&5
4507echo "$as_me: error: The --with-gmp-dir=PATH option has been removed.
4508Use --with-gmp=PATH or --with-gmp-include=PATH plus --with-gmp-lib=PATH" >&2;}
4509 { (exit 1); exit 1; }; }
4510fi;
4b1cb4fe
DD
4511
4512
4b1cb4fe
DD
4513# Check whether --with-gmp or --without-gmp was given.
4514if test "${with_gmp+set}" = set; then
4515 withval="$with_gmp"
c6b750e1
DJ
4516
4517fi;
4b1cb4fe 4518
8a0d8a5c
PB
4519# Check whether --with-gmp_include or --without-gmp_include was given.
4520if test "${with_gmp_include+set}" = set; then
4521 withval="$with_gmp_include"
c6b750e1
DJ
4522
4523fi;
8a0d8a5c
PB
4524
4525# Check whether --with-gmp_lib or --without-gmp_lib was given.
4526if test "${with_gmp_lib+set}" = set; then
4527 withval="$with_gmp_lib"
8a0d8a5c 4528
c6b750e1 4529fi;
8a0d8a5c 4530
4b1cb4fe 4531
11b04d1f
DD
4532if test "x$with_gmp" != x; then
4533 gmplibs="-L$with_gmp/lib $gmplibs"
4534 gmpinc="-I$with_gmp/include $gmpinc"
4b1cb4fe 4535fi
8a0d8a5c
PB
4536if test "x$with_gmp_include" != x; then
4537 gmpinc="-I$with_gmp_include $gmpinc"
4538fi
4539if test "x$with_gmp_lib" != x; then
4540 gmplibs="-L$with_gmp_lib $gmplibs"
4541fi
4b900473
PB
4542if test "x$with_gmp$with_gmp_include$with_gmp_lib" = x && test -d ${srcdir}/gmp; then
4543 gmplibs='-L$$r/$(HOST_SUBDIR)/gmp/.libs -L$$r/$(HOST_SUBDIR)/gmp/_libs '"$gmplibs"
4544 gmpinc='-I$$r/$(HOST_SUBDIR)/gmp -I$$s/gmp '"$gmpinc"
4545 # Do not test the gmp version. Assume that it is sufficient, since
4546 # it is in the source tree, and the library has not been built yet
4547 # but it would be included on the link line in the version check below
4548 # hence making the test fail.
4549 have_gmp=yes
4550fi
4b1cb4fe 4551
ceb92e78 4552if test -d ${srcdir}/gcc && test "x$have_gmp" = xno; then
4b900473
PB
4553 have_gmp=yes
4554 saved_CFLAGS="$CFLAGS"
4555 CFLAGS="$CFLAGS $gmpinc"
4556 # Check GMP actually works
c6b750e1
DJ
4557 echo "$as_me:$LINENO: checking for correct version of gmp.h" >&5
4558echo $ECHO_N "checking for correct version of gmp.h... $ECHO_C" >&6
4559
4560cat >conftest.$ac_ext <<_ACEOF
4561/* confdefs.h. */
4562_ACEOF
4563cat confdefs.h >>conftest.$ac_ext
4564cat >>conftest.$ac_ext <<_ACEOF
4565/* end confdefs.h. */
4b1cb4fe 4566#include "gmp.h"
c6b750e1
DJ
4567int
4568main ()
4569{
4b1cb4fe 4570
4b900473
PB
4571 #if __GNU_MP_VERSION < 4 || (__GNU_MP_VERSION == 4 && __GNU_MP_VERSION_MINOR < 1)
4572 choke me
4573 #endif
c6b750e1
DJ
4574
4575 ;
4576 return 0;
4577}
4578_ACEOF
4579rm -f conftest.$ac_objext
4580if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4581 (eval $ac_compile) 2>conftest.er1
4582 ac_status=$?
4583 grep -v '^ *+' conftest.er1 >conftest.err
4584 rm -f conftest.er1
4585 cat conftest.err >&5
4586 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4587 (exit $ac_status); } &&
4588 { ac_try='test -z "$ac_c_werror_flag"
4589 || test ! -s conftest.err'
4590 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4591 (eval $ac_try) 2>&5
4592 ac_status=$?
4593 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4594 (exit $ac_status); }; } &&
4595 { ac_try='test -s conftest.$ac_objext'
4596 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4597 (eval $ac_try) 2>&5
4598 ac_status=$?
4599 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4600 (exit $ac_status); }; }; then
4601 echo "$as_me:$LINENO: result: yes" >&5
4602echo "${ECHO_T}yes" >&6
4603else
4604 echo "$as_me: failed program was:" >&5
4605sed 's/^/| /' conftest.$ac_ext >&5
4606
4607echo "$as_me:$LINENO: result: no" >&5
4608echo "${ECHO_T}no" >&6; have_gmp=no
4609fi
4610rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4b1cb4fe 4611
4b900473
PB
4612 if test x"$have_gmp" = xyes; then
4613 saved_LIBS="$LIBS"
4614 LIBS="$LIBS $gmplibs"
c6b750e1
DJ
4615 echo "$as_me:$LINENO: checking for correct version of mpfr.h" >&5
4616echo $ECHO_N "checking for correct version of mpfr.h... $ECHO_C" >&6
4617 cat >conftest.$ac_ext <<_ACEOF
4618/* confdefs.h. */
4619_ACEOF
4620cat confdefs.h >>conftest.$ac_ext
4621cat >>conftest.$ac_ext <<_ACEOF
4622/* end confdefs.h. */
9b134994 4623#include <gmp.h>
4b900473 4624 #include <mpfr.h>
c6b750e1
DJ
4625int
4626main ()
4627{
9b134994 4628
57c53b2b 4629 #if MPFR_VERSION < MPFR_VERSION_NUM(2,2,1)
4b900473
PB
4630 choke me
4631 #endif
a3ca38d2
DD
4632 mpfr_t n;
4633 mpfr_t x;
4b900473 4634 int t;
a3ca38d2
DD
4635 mpfr_init (n);
4636 mpfr_init (x);
4b900473
PB
4637 mpfr_atan2 (n, n, x, GMP_RNDN);
4638 mpfr_erfc (n, x, GMP_RNDN);
4639 mpfr_subnormalize (x, t, GMP_RNDN);
c6b750e1
DJ
4640
4641 ;
4642 return 0;
4643}
4644_ACEOF
4645rm -f conftest.$ac_objext conftest$ac_exeext
4646if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4647 (eval $ac_link) 2>conftest.er1
4648 ac_status=$?
4649 grep -v '^ *+' conftest.er1 >conftest.err
4650 rm -f conftest.er1
4651 cat conftest.err >&5
4652 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4653 (exit $ac_status); } &&
4654 { ac_try='test -z "$ac_c_werror_flag"
4655 || test ! -s conftest.err'
4656 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4657 (eval $ac_try) 2>&5
4658 ac_status=$?
4659 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4660 (exit $ac_status); }; } &&
4661 { ac_try='test -s conftest$ac_exeext'
4662 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4663 (eval $ac_try) 2>&5
4664 ac_status=$?
4665 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4666 (exit $ac_status); }; }; then
4667 cat >conftest.$ac_ext <<_ACEOF
4668/* confdefs.h. */
4669_ACEOF
4670cat confdefs.h >>conftest.$ac_ext
4671cat >>conftest.$ac_ext <<_ACEOF
4672/* end confdefs.h. */
4b1cb4fe 4673#include <gmp.h>
4b900473 4674 #include <mpfr.h>
c6b750e1
DJ
4675int
4676main ()
4677{
9dbaa842 4678
57c53b2b 4679 #if MPFR_VERSION < MPFR_VERSION_NUM(2,3,0)
4b900473
PB
4680 choke me
4681 #endif
4682 mpfr_t n; mpfr_init(n);
c6b750e1
DJ
4683
4684 ;
4685 return 0;
4686}
4687_ACEOF
4688rm -f conftest.$ac_objext conftest$ac_exeext
4689if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4690 (eval $ac_link) 2>conftest.er1
4691 ac_status=$?
4692 grep -v '^ *+' conftest.er1 >conftest.err
4693 rm -f conftest.er1
4694 cat conftest.err >&5
4695 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4696 (exit $ac_status); } &&
4697 { ac_try='test -z "$ac_c_werror_flag"
4698 || test ! -s conftest.err'
4699 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4700 (eval $ac_try) 2>&5
4701 ac_status=$?
4702 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4703 (exit $ac_status); }; } &&
4704 { ac_try='test -s conftest$ac_exeext'
4705 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4706 (eval $ac_try) 2>&5
4707 ac_status=$?
4708 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4709 (exit $ac_status); }; }; then
4710 echo "$as_me:$LINENO: result: yes" >&5
4711echo "${ECHO_T}yes" >&6
4712else
4713 echo "$as_me: failed program was:" >&5
4714sed 's/^/| /' conftest.$ac_ext >&5
4715
4716echo "$as_me:$LINENO: result: buggy but acceptable" >&5
4717echo "${ECHO_T}buggy but acceptable" >&6
4718fi
4719rm -f conftest.err conftest.$ac_objext \
4720 conftest$ac_exeext conftest.$ac_ext
4721else
4722 echo "$as_me: failed program was:" >&5
4723sed 's/^/| /' conftest.$ac_ext >&5
4724
4725echo "$as_me:$LINENO: result: no" >&5
4726echo "${ECHO_T}no" >&6; have_gmp=no
4727fi
4728rm -f conftest.err conftest.$ac_objext \
4729 conftest$ac_exeext conftest.$ac_ext
4b900473
PB
4730 LIBS="$saved_LIBS"
4731 fi
4732 CFLAGS="$saved_CFLAGS"
4b1cb4fe 4733
4b900473 4734 if test x$have_gmp != xyes; then
57c53b2b 4735 { { echo "$as_me:$LINENO: error: Building GCC requires GMP 4.1+ and MPFR 2.3.0+.
c6b750e1
DJ
4736Try the --with-gmp and/or --with-mpfr options to specify their locations.
4737Copies of these libraries' source code can be found at their respective
4738hosting sites as well as at ftp://gcc.gnu.org/pub/gcc/infrastructure/.
4739See also http://gcc.gnu.org/install/prerequisites.html for additional info.
4740If you obtained GMP and/or MPFR from a vendor distribution package, make
4741sure that you have installed both the libraries and the header files.
4742They may be located in separate packages." >&5
57c53b2b 4743echo "$as_me: error: Building GCC requires GMP 4.1+ and MPFR 2.3.0+.
9dbaa842
DD
4744Try the --with-gmp and/or --with-mpfr options to specify their locations.
4745Copies of these libraries' source code can be found at their respective
4746hosting sites as well as at ftp://gcc.gnu.org/pub/gcc/infrastructure/.
8a0d8a5c
PB
4747See also http://gcc.gnu.org/install/prerequisites.html for additional info.
4748If you obtained GMP and/or MPFR from a vendor distribution package, make
4749sure that you have installed both the libraries and the header files.
c6b750e1
DJ
4750They may be located in separate packages." >&2;}
4751 { (exit 1); exit 1; }; }
4b900473 4752 fi
9dbaa842
DD
4753fi
4754
11b04d1f 4755# Flags needed for both GMP and/or MPFR
4b1cb4fe
DD
4756
4757
4758
947f426e 4759# By default, C is the only stage 1 language.
9b134994 4760stage1_languages=,c,
1d39f329 4761
9e07f89d
NN
4762# Figure out what language subdirectories are present.
4763# Look if the user specified --enable-languages="..."; if not, use
4764# the environment variable $LANGUAGES if defined. $LANGUAGES might
4765# go away some day.
4766# NB: embedded tabs in this IF block -- do not untabify
4767if test -d ${srcdir}/gcc; then
4768 if test x"${enable_languages+set}" != xset; then
4769 if test x"${LANGUAGES+set}" = xset; then
4770 enable_languages="${LANGUAGES}"
4771 echo configure.in: warning: setting LANGUAGES is deprecated, use --enable-languages instead 1>&2
4772 else
4773 enable_languages=all
4774 fi
4775 else
4776 if test x"${enable_languages}" = x ||
4777 test x"${enable_languages}" = xyes;
4778 then
4779 echo configure.in: --enable-languages needs at least one language argument 1>&2
4780 exit 1
4781 fi
4782 fi
4783 enable_languages=`echo "${enable_languages}" | sed -e 's/[ ,][ ,]*/,/g' -e 's/,$//'`
4784
096f7d00
DE
4785 # 'f95' is the old name for the 'fortran' language. We issue a warning
4786 # and make the substitution.
4787 case ,${enable_languages}, in
4788 *,f95,*)
4789 echo configure.in: warning: 'f95' as language name is deprecated, use 'fortran' instead 1>&2
4790 enable_languages=`echo "${enable_languages}" | sed -e 's/f95/fortran/g'`
4791 ;;
4792 esac
4793
9e07f89d
NN
4794 # First scan to see if an enabled language requires some other language.
4795 # We assume that a given config-lang.in will list all the language
4796 # front ends it requires, even if some are required indirectly.
4797 for lang_frag in ${srcdir}/gcc/*/config-lang.in .. ; do
4798 case ${lang_frag} in
4799 ..) ;;
4800 # The odd quoting in the next line works around
4801 # an apparent bug in bash 1.12 on linux.
4802 ${srcdir}/gcc/[*]/config-lang.in) ;;
4803 *)
4804 # From the config-lang.in, get $language, $lang_requires
4805 language=
4806 lang_requires=
4807 . ${lang_frag}
4808 for other in ${lang_requires} ; do
4809 case ,${enable_languages}, in
4810 *,$other,*) ;;
4811 *,all,*) ;;
4812 *,$language,*)
4813 echo " \`$other' language required by \`$language'; enabling" 1>&2
4814 enable_languages="${enable_languages},${other}"
4815 ;;
4816 esac
4817 done
4818 ;;
4819 esac
4820 done
4821
9b134994 4822 new_enable_languages=,c,
9e07f89d 4823 missing_languages=`echo ",$enable_languages," | sed -e s/,all,/,/ -e s/,c,/,/ `
9b134994 4824 potential_languages=,c,
9e07f89d
NN
4825
4826 for lang_frag in ${srcdir}/gcc/*/config-lang.in .. ; do
4827 case ${lang_frag} in
4828 ..) ;;
4829 # The odd quoting in the next line works around
4830 # an apparent bug in bash 1.12 on linux.
4831 ${srcdir}/gcc/[*]/config-lang.in) ;;
4832 *)
c6b750e1 4833 # From the config-lang.in, get $language, $target_libs,
1d39f329 4834 # $lang_dirs, $boot_language, and $build_by_default
9e07f89d
NN
4835 language=
4836 target_libs=
4837 lang_dirs=
64ce424c 4838 subdir_requires=
9b134994
PB
4839 boot_language=no
4840 build_by_default=yes
9e07f89d 4841 . ${lang_frag}
9b134994
PB
4842 if test x${language} = x; then
4843 echo "${lang_frag} doesn't set \$language." 1>&2
4844 exit 1
4845 fi
4846
4847 case ,${enable_languages}, in
4848 *,${language},*)
9e07f89d
NN
4849 # Language was explicitly selected; include it.
4850 add_this_lang=yes
4851 ;;
9b134994
PB
4852 *,all,*)
4853 # 'all' was selected, select it if it is a default language
4854 add_this_lang=${build_by_default}
9e07f89d
NN
4855 ;;
4856 *)
4857 add_this_lang=no
4858 ;;
4859 esac
4b1cb4fe 4860
64ce424c 4861 # Disable languages that need other directories if these aren't available.
1f3f1bbf 4862 for i in $subdir_requires; do
3d3adb43 4863 test -f "$srcdir/gcc/$i/config-lang.in" && continue
64ce424c
PB
4864 case ,${enable_languages}, in
4865 *,${language},*)
4866 # Specifically requested language; tell them.
c6b750e1
DJ
4867 { { echo "$as_me:$LINENO: error: The gcc/$i directory contains parts of $language but is missing" >&5
4868echo "$as_me: error: The gcc/$i directory contains parts of $language but is missing" >&2;}
4869 { (exit 1); exit 1; }; }
64ce424c
PB
4870 ;;
4871 *)
4872 # Silently disable.
9b134994 4873 add_this_lang=unsupported
64ce424c
PB
4874 ;;
4875 esac
4876 done
4877
9b134994
PB
4878 # Disable Ada if no preexisting GNAT is available.
4879 case ,${enable_languages},:${language}:${have_gnat} in
4880 *,${language},*:ada:no)
4881 # Specifically requested language; tell them.
c6b750e1
DJ
4882 { { echo "$as_me:$LINENO: error: GNAT is required to build $language" >&5
4883echo "$as_me: error: GNAT is required to build $language" >&2;}
4884 { (exit 1); exit 1; }; }
9b134994
PB
4885 ;;
4886 *:ada:no)
4887 # Silently disable.
4888 add_this_lang=unsupported
4889 ;;
4890 esac
4891
59f7ec45
HPN
4892 # Disable a language that is unsupported by the target.
4893 case " $unsupported_languages " in
4894 *" $language "*)
9b134994 4895 add_this_lang=unsupported
59f7ec45
HPN
4896 ;;
4897 esac
4898
4b1cb4fe 4899 case $add_this_lang in
9b134994 4900 unsupported)
9e07f89d 4901 # Remove language-dependent dirs.
1d39f329
NN
4902 eval noconfigdirs='"$noconfigdirs "'\"$target_libs $lang_dirs\"
4903 ;;
9b134994
PB
4904 no)
4905 # Remove language-dependent dirs; still show language as supported.
4906 eval noconfigdirs='"$noconfigdirs "'\"$target_libs $lang_dirs\"
4907 potential_languages="${potential_languages}${language},"
4908 ;;
4909 yes)
4910 new_enable_languages="${new_enable_languages}${language},"
4911 potential_languages="${potential_languages}${language},"
1d39f329
NN
4912 missing_languages=`echo "$missing_languages" | sed "s/,$language,/,/"`
4913 case ${boot_language} in
4914 yes)
4fa63067 4915 # Add to (comma-separated) list of stage 1 languages.
9b134994 4916 stage1_languages="${stage1_languages}${language},"
1d39f329
NN
4917 ;;
4918 esac
4919 ;;
9e07f89d
NN
4920 esac
4921 ;;
4922 esac
4923 done
4924
9b134994
PB
4925 # Check whether --enable-stage1-languages or --disable-stage1-languages was given.
4926if test "${enable_stage1_languages+set}" = set; then
4927 enableval="$enable_stage1_languages"
4928 case ,${enable_stage1_languages}, in
4929 ,no,|,,)
4930 # Set it to something that will have no effect in the loop below
4931 enable_stage1_languages=c ;;
4932 ,yes,)
4933 enable_stage1_languages=`echo $new_enable_languages | \
4934 sed -e "s/^,//" -e "s/,$//" ` ;;
4935 *,all,*)
4936 enable_stage1_languages=`echo ,$enable_stage1_languages, | \
4937 sed -e "s/,all,/$new_enable_languages/" -e "s/^,//" -e "s/,$//" ` ;;
4938 esac
4939
4940 # Add "good" languages from enable_stage1_languages to stage1_languages,
4941 # while "bad" languages go in missing_languages. Leave no duplicates.
4942 for i in `echo $enable_stage1_languages | sed 's/,/ /g' `; do
4943 case $potential_languages in
4944 *,$i,*)
4945 case $stage1_languages in
4946 *,$i,*) ;;
4947 *) stage1_languages="$stage1_languages$i," ;;
4948 esac ;;
4949 *)
4950 case $missing_languages in
4951 *,$i,*) ;;
4952 *) missing_languages="$missing_languages$i," ;;
4953 esac ;;
4954 esac
4955 done
c6b750e1 4956fi;
9b134994
PB
4957
4958 # Remove leading/trailing commas that were added for simplicity
4959 potential_languages=`echo "$potential_languages" | sed -e "s/^,//" -e "s/,$//"`
4b0ac75d 4960 missing_languages=`echo "$missing_languages" | sed -e "s/^,//" -e "s/,$//"`
9b134994
PB
4961 stage1_languages=`echo "$stage1_languages" | sed -e "s/^,//" -e "s/,$//"`
4962 new_enable_languages=`echo "$new_enable_languages" | sed -e "s/^,//" -e "s/,$//"`
4963
9e07f89d 4964 if test "x$missing_languages" != x; then
c6b750e1 4965 { { echo "$as_me:$LINENO: error:
27258dd4 4966The following requested languages could not be built: ${missing_languages}
c6b750e1
DJ
4967Supported languages are: ${potential_languages}" >&5
4968echo "$as_me: error:
4969The following requested languages could not be built: ${missing_languages}
4970Supported languages are: ${potential_languages}" >&2;}
4971 { (exit 1); exit 1; }; }
9e07f89d 4972 fi
9e07f89d
NN
4973 if test "x$new_enable_languages" != "x$enable_languages"; then
4974 echo The following languages will be built: ${new_enable_languages}
9b134994 4975 enable_languages="$new_enable_languages"
9e07f89d 4976 fi
9b134994 4977
c6b750e1 4978
81ec575a 4979 ac_configure_args=`echo " $ac_configure_args" | sed -e "s/ '--enable-languages=[^ ]*'//g" -e "s/$/ '--enable-languages="$enable_languages"'/" `
9e07f89d
NN
4980fi
4981
a6df5a19
PB
4982# Handle --disable-<component> generically.
4983for dir in $configdirs $build_configdirs $target_configdirs ; do
4984 dirname=`echo $dir | sed -e s/target-//g -e s/build-//g -e s/-/_/g`
9cc8ae67
PB
4985 varname=`echo $dirname | sed -e s/+/_/g`
4986 if eval test x\${enable_${varname}} "=" xno ; then
a6df5a19
PB
4987 noconfigdirs="$noconfigdirs $dir"
4988 fi
4989done
4990
4f0ef2d8
CD
4991# Check for Boehm's garbage collector
4992# Check whether --enable-objc-gc or --disable-objc-gc was given.
4993if test "${enable_objc_gc+set}" = set; then
4994 enableval="$enable_objc_gc"
4995 case ,${enable_languages},:${enable_objc_gc}:${noconfigdirs} in
4996 *,objc,*:*:yes:*target-boehm-gc*)
c6b750e1
DJ
4997 { { echo "$as_me:$LINENO: error: Boehm's garbage collector was requested yet not supported in this configuration" >&5
4998echo "$as_me: error: Boehm's garbage collector was requested yet not supported in this configuration" >&2;}
4999 { (exit 1); exit 1; }; }
4f0ef2d8
CD
5000 ;;
5001esac
c6b750e1 5002fi;
4f0ef2d8
CD
5003
5004# Make sure we only build Boehm's garbage collector if required.
d42c4017
DA
5005case ,${enable_languages},:${enable_objc_gc} in
5006 *,objc,*:yes)
4f0ef2d8
CD
5007 # Keep target-boehm-gc if requested for Objective-C.
5008 ;;
4f0ef2d8 5009 *)
d42c4017
DA
5010 # Otherwise remove target-boehm-gc depending on target-libjava.
5011 if echo " ${noconfigdirs} " | grep "target-libjava" >/dev/null 2>&1; then
5012 noconfigdirs="$noconfigdirs target-boehm-gc"
5013 fi
4f0ef2d8
CD
5014 ;;
5015esac
5016
caeba88f
AL
5017# Remove the entries in $skipdirs and $noconfigdirs from $configdirs,
5018# $build_configdirs and $target_configdirs.
9e07f89d
NN
5019# If we have the source for $noconfigdirs entries, add them to $notsupp.
5020
5021notsupp=""
5022for dir in . $skipdirs $noconfigdirs ; do
caeba88f 5023 dirname=`echo $dir | sed -e s/target-//g -e s/build-//g`
9e07f89d
NN
5024 if test $dir != . && echo " ${configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
5025 configdirs=`echo " ${configdirs} " | sed -e "s/ ${dir} / /"`
5026 if test -r $srcdir/$dirname/configure ; then
5027 if echo " ${skipdirs} " | grep " ${dir} " >/dev/null 2>&1; then
5028 true
5029 else
5030 notsupp="$notsupp $dir"
5031 fi
5032 fi
5033 fi
caeba88f
AL
5034 if test $dir != . && echo " ${build_configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
5035 build_configdirs=`echo " ${build_configdirs} " | sed -e "s/ ${dir} / /"`
5036 if test -r $srcdir/$dirname/configure ; then
5037 if echo " ${skipdirs} " | grep " ${dir} " >/dev/null 2>&1; then
5038 true
5039 else
5040 notsupp="$notsupp $dir"
5041 fi
5042 fi
5043 fi
9e07f89d
NN
5044 if test $dir != . && echo " ${target_configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
5045 target_configdirs=`echo " ${target_configdirs} " | sed -e "s/ ${dir} / /"`
5046 if test -r $srcdir/$dirname/configure ; then
5047 if echo " ${skipdirs} " | grep " ${dir} " >/dev/null 2>&1; then
5048 true
5049 else
5050 notsupp="$notsupp $dir"
5051 fi
5052 fi
5053 fi
5054done
5055
5056# Sometimes the tools are distributed with libiberty but with no other
5057# libraries. In that case, we don't want to build target-libiberty.
f86e35b8 5058# Don't let libgcc imply libiberty either.
9e07f89d 5059if test -n "${target_configdirs}" ; then
f86e35b8 5060 libgcc=
9e07f89d
NN
5061 others=
5062 for i in `echo ${target_configdirs} | sed -e s/target-//g` ; do
f86e35b8
NC
5063 if test "$i" = "libgcc"; then
5064 libgcc=target-libgcc
5065 elif test "$i" != "libiberty" ; then
9e07f89d
NN
5066 if test -r $srcdir/$i/configure ; then
5067 others=yes;
5068 break;
5069 fi
5070 fi
5071 done
5072 if test -z "${others}" ; then
f86e35b8 5073 target_configdirs=$libgcc
9e07f89d
NN
5074 fi
5075fi
5076
5077# Quietly strip out all directories which aren't configurable in this tree.
5078# This relies on all configurable subdirectories being autoconfiscated, which
5079# is now the case.
6a9cf61e
PB
5080build_configdirs_all="$build_configdirs"
5081build_configdirs=
5082for i in ${build_configdirs_all} ; do
c6b750e1 5083 j=`echo $i | sed -e s/build-//g`
6a9cf61e
PB
5084 if test -f ${srcdir}/$j/configure ; then
5085 build_configdirs="${build_configdirs} $i"
5086 fi
5087done
5088
9e07f89d
NN
5089configdirs_all="$configdirs"
5090configdirs=
5091for i in ${configdirs_all} ; do
5092 if test -f ${srcdir}/$i/configure ; then
5093 configdirs="${configdirs} $i"
5094 fi
5095done
6a9cf61e 5096
9e07f89d
NN
5097target_configdirs_all="$target_configdirs"
5098target_configdirs=
5099for i in ${target_configdirs_all} ; do
c6b750e1 5100 j=`echo $i | sed -e s/target-//g`
9e07f89d
NN
5101 if test -f ${srcdir}/$j/configure ; then
5102 target_configdirs="${target_configdirs} $i"
5103 fi
5104done
5105
5106# Produce a warning message for the subdirs we can't configure.
5107# This isn't especially interesting in the Cygnus tree, but in the individual
5108# FSF releases, it's important to let people know when their machine isn't
5109# supported by the one or two programs in a package.
5110
5111if test -n "${notsupp}" && test -z "${norecursion}" ; then
5112 # If $appdirs is non-empty, at least one of those directories must still
5113 # be configured, or we error out. (E.g., if the gas release supports a
5114 # specified target in some subdirs but not the gas subdir, we shouldn't
5115 # pretend that all is well.)
5116 if test -n "$appdirs" ; then
5117 for dir in $appdirs ; do
5118 if test -r $dir/Makefile.in ; then
5119 if echo " ${configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
5120 appdirs=""
5121 break
5122 fi
6a9cf61e 5123 if echo " ${target_configdirs} " | grep " target-${dir} " >/dev/null 2>&1; then
9e07f89d
NN
5124 appdirs=""
5125 break
5126 fi
5127 fi
5128 done
5129 if test -n "$appdirs" ; then
5130 echo "*** This configuration is not supported by this package." 1>&2
5131 exit 1
5132 fi
5133 fi
5134 # Okay, some application will build, or we don't care to check. Still
5135 # notify of subdirs not getting built.
5136 echo "*** This configuration is not supported in the following subdirectories:" 1>&2
5137 echo " ${notsupp}" 1>&2
5138 echo " (Any other directories should still work fine.)" 1>&2
5139fi
5140
5141case "$host" in
5142 *msdosdjgpp*)
5143 enable_gdbtk=no ;;
5144esac
5145
18f6b6ee
PB
5146# To find our prefix, in gcc_cv_tool_prefix.
5147
5148# The user is always right.
5149if test "${PATH_SEPARATOR+set}" != set; then
5150 echo "#! /bin/sh" >conf$$.sh
5151 echo "exit 0" >>conf$$.sh
5152 chmod +x conf$$.sh
5153 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
5154 PATH_SEPARATOR=';'
5155 else
5156 PATH_SEPARATOR=:
5157 fi
5158 rm -f conf$$.sh
5159fi
5160
5161
5162
5163if test "x$exec_prefix" = xNONE; then
5164 if test "x$prefix" = xNONE; then
5165 gcc_cv_tool_prefix=$ac_default_prefix
5166 else
5167 gcc_cv_tool_prefix=$prefix
5168 fi
5169else
5170 gcc_cv_tool_prefix=$exec_prefix
5171fi
5172
5173# If there is no compiler in the tree, use the PATH only. In any
5174# case, if there is no compiler in the tree nobody should use
5175# AS_FOR_TARGET and LD_FOR_TARGET.
5176if test x$host = x$build && test -f $srcdir/gcc/BASE-VER; then
5177 gcc_version=`cat $srcdir/gcc/BASE-VER`
5178 gcc_cv_tool_dirs="$gcc_cv_tool_prefix/libexec/gcc/$target_noncanonical/$gcc_version$PATH_SEPARATOR"
5179 gcc_cv_tool_dirs="$gcc_cv_tool_dirs$gcc_cv_tool_prefix/libexec/gcc/$target_noncanonical$PATH_SEPARATOR"
5180 gcc_cv_tool_dirs="$gcc_cv_tool_dirs/usr/lib/gcc/$target_noncanonical/$gcc_version$PATH_SEPARATOR"
5181 gcc_cv_tool_dirs="$gcc_cv_tool_dirs/usr/lib/gcc/$target_noncanonical$PATH_SEPARATOR"
5182 gcc_cv_tool_dirs="$gcc_cv_tool_dirs$gcc_cv_tool_prefix/$target_noncanonical/bin/$target_noncanonical/$gcc_version$PATH_SEPARATOR"
5183 gcc_cv_tool_dirs="$gcc_cv_tool_dirs$gcc_cv_tool_prefix/$target_noncanonical/bin$PATH_SEPARATOR"
5184else
5185 gcc_cv_tool_dirs=
5186fi
5187
5188if test x$build = x$target && test -n "$md_exec_prefix"; then
5189 gcc_cv_tool_dirs="$gcc_cv_tool_dirs$md_exec_prefix$PATH_SEPARATOR"
5190fi
5191
5192
5193
9e07f89d
NN
5194copy_dirs=
5195
c6b750e1 5196
a19b6204
MM
5197# Check whether --with-build-sysroot or --without-build-sysroot was given.
5198if test "${with_build_sysroot+set}" = set; then
5199 withval="$with_build_sysroot"
5200 if test x"$withval" != x ; then
5201 SYSROOT_CFLAGS_FOR_TARGET="--sysroot=$withval"
5202 fi
5203else
5204 SYSROOT_CFLAGS_FOR_TARGET=
c6b750e1 5205fi;
a19b6204
MM
5206
5207
8a6ee3ab
JM
5208
5209# Check whether --with-debug-prefix-map or --without-debug-prefix-map was given.
5210if test "${with_debug_prefix_map+set}" = set; then
5211 withval="$with_debug_prefix_map"
5212 if test x"$withval" != x; then
5213 DEBUG_PREFIX_CFLAGS_FOR_TARGET=
5214 for debug_map in $withval; do
5215 DEBUG_PREFIX_CFLAGS_FOR_TARGET="$DEBUG_PREFIX_CFLAGS_FOR_TARGET -fdebug-prefix-map=$debug_map"
5216 done
5217 fi
5218else
5219 DEBUG_PREFIX_CFLAGS_FOR_TARGET=
5220fi;
5221
5222
7f6ef0c0
PB
5223# During gcc bootstrap, if we use some random cc for stage1 then CFLAGS
5224# might be empty or "-g". We don't require a C++ compiler, so CXXFLAGS
5225# might also be empty (or "-g", if a non-GCC C++ compiler is in the path).
5226# We want to ensure that TARGET libraries (which we know are built with
5227# gcc) are built with "-O2 -g", so include those options when setting
5228# CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
5229if test "x$CFLAGS_FOR_TARGET" = x; then
5230 CFLAGS_FOR_TARGET=$CFLAGS
5231 case " $CFLAGS " in
5232 *" -O2 "*) ;;
5233 *) CFLAGS_FOR_TARGET="-O2 $CFLAGS" ;;
5234 esac
5235 case " $CFLAGS " in
5236 *" -g "* | *" -g3 "*) ;;
5237 *) CFLAGS_FOR_TARGET="-g $CFLAGS" ;;
5238 esac
5239fi
5240
5241
5242if test "x$CXXFLAGS_FOR_TARGET" = x; then
5243 CXXFLAGS_FOR_TARGET=$CXXFLAGS
5244 case " $CXXFLAGS " in
5245 *" -O2 "*) ;;
5246 *) CXXFLAGS_FOR_TARGET="-O2 $CXXFLAGS" ;;
5247 esac
5248 case " $CXXFLAGS " in
5249 *" -g "* | *" -g3 "*) ;;
5250 *) CXXFLAGS_FOR_TARGET="-g $CXXFLAGS" ;;
5251 esac
5252fi
5253
5254
9e07f89d
NN
5255# Handle --with-headers=XXX. If the value is not "yes", the contents of
5256# the named directory are copied to $(tooldir)/sys-include.
5257if test x"${with_headers}" != x && test x"${with_headers}" != xno ; then
5258 if test x${is_cross_compiler} = xno ; then
5259 echo 1>&2 '***' --with-headers is only supported when cross compiling
5260 exit 1
5261 fi
5262 if test x"${with_headers}" != xyes ; then
18f6b6ee 5263 x=${gcc_cv_tool_prefix}
c6b750e1 5264 copy_dirs="${copy_dirs} ${with_headers} $x/${target_noncanonical}/sys-include"
9e07f89d
NN
5265 fi
5266fi
5267
5268# Handle --with-libs=XXX. If the value is not "yes", the contents of
5269# the name directories are copied to $(tooldir)/lib. Multiple directories
5270# are permitted.
5271if test x"${with_libs}" != x && test x"${with_libs}" != xno ; then
5272 if test x${is_cross_compiler} = xno ; then
5273 echo 1>&2 '***' --with-libs is only supported when cross compiling
5274 exit 1
5275 fi
5276 if test x"${with_libs}" != xyes ; then
5277 # Copy the libraries in reverse order, so that files in the first named
5278 # library override files in subsequent libraries.
18f6b6ee 5279 x=${gcc_cv_tool_prefix}
9e07f89d 5280 for l in ${with_libs}; do
c6b750e1 5281 copy_dirs="$l $x/${target_noncanonical}/lib ${copy_dirs}"
9e07f89d
NN
5282 done
5283 fi
5284fi
5285
2429c060
PB
5286# Set with_gnu_as and with_gnu_ld as appropriate.
5287#
5288# This is done by determining whether or not the appropriate directory
5289# is available, and by checking whether or not specific configurations
5290# have requested that this magic not happen.
c6b750e1
DJ
5291#
5292# The command line options always override the explicit settings in
2429c060
PB
5293# configure.in, and the settings in configure.in override this magic.
5294#
c6b750e1 5295# If the default for a toolchain is to use GNU as and ld, and you don't
2429c060
PB
5296# want to do that, then you should use the --without-gnu-as and
5297# --without-gnu-ld options for the configure script.
5298
5299if test x${use_gnu_as} = x &&
5300 echo " ${configdirs} " | grep " gas " > /dev/null 2>&1 ; then
5301 with_gnu_as=yes
5302 extra_host_args="$extra_host_args --with-gnu-as"
5303fi
5304
5305if test x${use_gnu_ld} = x &&
93f9b408 5306 echo " ${configdirs} " | egrep " (go)?ld " > /dev/null 2>&1 ; then
2429c060
PB
5307 with_gnu_ld=yes
5308 extra_host_args="$extra_host_args --with-gnu-ld"
5309fi
5310
5311# If using newlib, add --with-newlib to the extra_host_args so that gcc/configure
5312# can detect this case.
5313
5314if test x${with_newlib} != xno && echo " ${target_configdirs} " | grep " target-newlib " > /dev/null 2>&1 ; then
5315 with_newlib=yes
5316 extra_host_args="$extra_host_args --with-newlib"
5317fi
5318
9e07f89d
NN
5319# Handle ${copy_dirs}
5320set fnord ${copy_dirs}
5321shift
5322while test $# != 0 ; do
5323 if test -f $2/COPIED && test x"`cat $2/COPIED`" = x"$1" ; then
5324 :
5325 else
5326 echo Copying $1 to $2
5327
5328 # Use the install script to create the directory and all required
5329 # parent directories.
5330 if test -d $2 ; then
5331 :
5332 else
5333 echo >config.temp
5334 ${srcdir}/install-sh -c -m 644 config.temp $2/COPIED
5335 fi
5336
5337 # Copy the directory, assuming we have tar.
5338 # FIXME: Should we use B in the second tar? Not all systems support it.
5339 (cd $1; tar -cf - .) | (cd $2; tar -xpf -)
5340
5341 # It is the responsibility of the user to correctly adjust all
5342 # symlinks. If somebody can figure out how to handle them correctly
5343 # here, feel free to add the code.
5344
5345 echo $1 > $2/COPIED
5346 fi
5347 shift; shift
5348done
5349
2429c060
PB
5350# Determine a target-dependent exec_prefix that the installed
5351# gcc will search in. Keep this list sorted by triplet, with
5352# the *-*-osname triplets last.
5353md_exec_prefix=
5354case "${target}" in
5355 alpha*-*-*vms*)
5356 md_exec_prefix=/gnu/lib/gcc-lib
5357 ;;
521ec477 5358 i[34567]86-pc-msdosdjgpp*)
2429c060
PB
5359 md_exec_prefix=/dev/env/DJDIR/bin
5360 ;;
521ec477 5361 i[34567]86-*-sco3.2v5*)
2429c060
PB
5362 if test $with_gnu_as = yes; then
5363 md_exec_prefix=/usr/gnu/bin
5364 else
5365 md_exec_prefix=/usr/ccs/bin/elf
5366 fi
5367 ;;
5368
5369 mn10300-*-* | \
5370 powerpc-*-chorusos* | \
5371 powerpc*-*-eabi* | \
5372 powerpc*-*-sysv* | \
5373 powerpc*-*-kaos* | \
5374 s390x-ibm-tpf*)
5375 md_exec_prefix=/usr/ccs/bin
5376 ;;
5377 sparc64-*-elf*)
5378 ;;
5379 v850*-*-*)
5380 md_exec_prefix=/usr/ccs/bin
5381 ;;
8b66833e 5382 xtensa*-*-elf*)
2429c060
PB
5383 ;;
5384
5385 *-*-beos* | \
5386 *-*-elf* | \
5387 *-*-hpux* | \
5388 *-*-netware* | \
5389 *-*-nto-qnx* | \
5390 *-*-rtems* | \
5391 *-*-solaris2* | \
521ec477 5392 *-*-sysv[45]* | \
2429c060
PB
5393 *-*-vxworks* | \
5394 *-wrs-windiss)
5395 md_exec_prefix=/usr/ccs/bin
5396 ;;
5397esac
5398
a0da8069
NN
5399extra_arflags_for_target=
5400extra_nmflags_for_target=
5401extra_ranlibflags_for_target=
5402target_makefile_frag=/dev/null
5403case "${target}" in
4e206d7e
DB
5404 mep*-*-*)
5405 target_makefile_frag="config/mt-mep"
5406 ;;
77d7106f
AM
5407 spu-*-*)
5408 target_makefile_frag="config/mt-spu"
5409 ;;
429acdec
RS
5410 mips*-sde-elf*)
5411 target_makefile_frag="config/mt-sde"
5412 ;;
f3b1e08e
RS
5413 mipsisa*-*-elfoabi*)
5414 target_makefile_frag="config/mt-mips-elfoabi"
5415 ;;
2a3124ca 5416 *-*-netware*)
a0da8069
NN
5417 target_makefile_frag="config/mt-netware"
5418 ;;
3d6dfe0f
NN
5419 *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu)
5420 target_makefile_frag="config/mt-gnu"
a0da8069
NN
5421 ;;
5422 *-*-aix4.[3456789]* | *-*-aix[56789].*)
c6b750e1 5423 # nm and ar from AIX 4.3 and above require -X32_64 flag to all ar and nm
a0da8069
NN
5424 # commands to handle both 32-bit and 64-bit objects. These flags are
5425 # harmless if we're using GNU nm or ar.
5426 extra_arflags_for_target=" -X32_64"
5427 extra_nmflags_for_target=" -B -X32_64"
5428 ;;
5429 *-*-darwin*)
5430 # ranlib from Darwin requires the -c flag to look at common symbols.
5431 extra_ranlibflags_for_target=" -c"
5432 ;;
5433 mips*-*-pe | sh*-*-pe | *arm-wince-pe)
5434 target_makefile_frag="config/mt-wince"
5435 ;;
5436esac
5437
5438alphaieee_frag=/dev/null
5439case $target in
5440 alpha*-*-*)
5441 # This just makes sure to use the -mieee option to build target libs.
5442 # This should probably be set individually by each library.
5443 alphaieee_frag="config/mt-alphaieee"
5444 ;;
5445esac
5446
5447# If --enable-target-optspace always use -Os instead of -O2 to build
5448# the target libraries, similarly if it is not specified, use -Os
5449# on selected platforms.
5450ospace_frag=/dev/null
5451case "${enable_target_optspace}:${target}" in
5452 yes:*)
5453 ospace_frag="config/mt-ospace"
5454 ;;
5455 :d30v-*)
5456 ospace_frag="config/mt-d30v"
5457 ;;
5458 :m32r-* | :d10v-* | :fr30-*)
5459 ospace_frag="config/mt-ospace"
5460 ;;
5461 no:* | :*)
5462 ;;
5463 *)
5464 echo "*** bad value \"${enable_target_optspace}\" for --enable-target-optspace flag; ignored" 1>&2
5465 ;;
5466esac
5467
a0da8069
NN
5468# Default to using --with-stabs for certain targets.
5469if test x${with_stabs} = x ; then
5470 case "${target}" in
e31d1ea3 5471 mips*-*-irix[56]*)
a0da8069
NN
5472 ;;
5473 mips*-*-* | alpha*-*-osf*)
5474 with_stabs=yes;
5475 extra_host_args="${extra_host_args} --with-stabs"
5476 ;;
5477 esac
5478fi
5479
5480# hpux11 in 64bit mode has libraries in a weird place. Arrange to find
5481# them automatically.
5482case "${host}" in
c6b750e1 5483 hppa*64*-*-hpux11*)
a0da8069
NN
5484 extra_host_args="$extra_host_args -x-libraries=/usr/lib/pa20_64 -x-includes=/usr/X11R6/include"
5485 ;;
5486esac
5487
a0da8069
NN
5488# Some systems (e.g., one of the i386-aix systems the gas testers are
5489# using) don't handle "\$" correctly, so don't use it here.
c6b750e1 5490tooldir='${exec_prefix}'/${target_noncanonical}
a0da8069
NN
5491build_tooldir=${tooldir}
5492
a0da8069
NN
5493# Create a .gdbinit file which runs the one in srcdir
5494# and tells GDB to look there for source files.
5495
5496if test -r ${srcdir}/.gdbinit ; then
5497 case ${srcdir} in
5498 .) ;;
5499 *) cat > ./.gdbinit <<EOF
5500# ${NO_EDIT}
5501dir ${srcdir}
5502dir .
5503source ${srcdir}/.gdbinit
5504EOF
5505 ;;
5506 esac
5507fi
5508
a0da8069
NN
5509# Make sure that the compiler is able to generate an executable. If it
5510# can't, we are probably in trouble. We don't care whether we can run the
5511# executable--we might be using a cross compiler--we only care whether it
5512# can be created. At this point the main configure script has set CC.
5513we_are_ok=no
5514echo "int main () { return 0; }" > conftest.c
5515${CC} -o conftest ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} conftest.c
5516if test $? = 0 ; then
5517 if test -s conftest || test -s conftest.exe ; then
5518 we_are_ok=yes
5519 fi
c6b750e1 5520fi
a0da8069
NN
5521case $we_are_ok in
5522 no)
5523 echo 1>&2 "*** The command '${CC} -o conftest ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} conftest.c' failed."
5524 echo 1>&2 "*** You must set the environment variable CC to a working compiler."
5525 rm -f conftest*
5526 exit 1
5527 ;;
5528esac
5529rm -f conftest*
5530
5531# The Solaris /usr/ucb/cc compiler does not appear to work.
5532case "${host}" in
5533 sparc-sun-solaris2*)
5534 CCBASE="`echo ${CC-cc} | sed 's/ .*$//'`"
5535 if test "`type $CCBASE | sed 's/^[^/]*//'`" = "/usr/ucb/cc" ; then
5536 could_use=
5537 test -d /opt/SUNWspro/bin && could_use="/opt/SUNWspro/bin"
5538 if test -d /opt/cygnus/bin ; then
5539 if test "$could_use" = "" ; then
5540 could_use="/opt/cygnus/bin"
5541 else
5542 could_use="$could_use or /opt/cygnus/bin"
5543 fi
5544 fi
5545 if test "$could_use" = "" ; then
5546 echo "Warning: compilation may fail because you're using"
5547 echo "/usr/ucb/cc. You should change your PATH or CC "
5548 echo "variable and rerun configure."
5549 else
5550 echo "Warning: compilation may fail because you're using"
5551 echo "/usr/ucb/cc, when you should use the C compiler from"
5552 echo "$could_use. You should change your"
5553 echo "PATH or CC variable and rerun configure."
5554 fi
5555 fi
5556 ;;
5557esac
5558
a0da8069
NN
5559case "${host}" in
5560 *-*-hpux*) RPATH_ENVVAR=SHLIB_PATH ;;
9a237d9e 5561 *-*-darwin* | *-*-rhapsody* ) RPATH_ENVVAR=DYLD_LIBRARY_PATH ;;
a0da8069
NN
5562 *) RPATH_ENVVAR=LD_LIBRARY_PATH ;;
5563esac
5564
5565# Record target_configdirs and the configure arguments for target and
5566# build configuration in Makefile.
5567target_configdirs=`echo "${target_configdirs}" | sed -e 's/target-//g'`
6a9cf61e 5568build_configdirs=`echo "${build_configdirs}" | sed -e 's/build-//g'`
a0da8069 5569
a0da8069
NN
5570# Determine whether gdb needs tk/tcl or not.
5571# Use 'maybe' since enable_gdbtk might be true even if tk isn't available
5572# and in that case we want gdb to be built without tk. Ugh!
5573# In fact I believe gdb is the *only* package directly dependent on tk,
5574# so we should be able to put the 'maybe's in unconditionally and
5575# leave out the maybe dependencies when enable_gdbtk is false. I'm not
5576# 100% sure that that's safe though.
c180f501 5577
675c6968 5578gdb_tk="maybe-all-tcl maybe-all-tk maybe-all-itcl maybe-all-libgui"
a0da8069
NN
5579case "$enable_gdbtk" in
5580 no)
5581 GDB_TK="" ;;
c180f501
AC
5582 yes)
5583 GDB_TK="${gdb_tk}" ;;
a0da8069 5584 *)
c180f501
AC
5585 # Only add the dependency on gdbtk when GDBtk is part of the gdb
5586 # distro. Eventually someone will fix this and move Insight, nee
5587 # gdbtk to a separate directory.
5588 if test -d ${srcdir}/gdb/gdbtk ; then
5589 GDB_TK="${gdb_tk}"
5590 else
5591 GDB_TK=""
5592 fi
5593 ;;
a0da8069 5594esac
907be67c
DJ
5595CONFIGURE_GDB_TK=`echo ${GDB_TK} | sed s/-all-/-configure-/g`
5596INSTALL_GDB_TK=`echo ${GDB_TK} | sed s/-all-/-install-/g`
a0da8069 5597
6bd3dfaa 5598# Strip out unwanted targets.
dd12c3a8
NN
5599
5600# While at that, we remove Makefiles if we were started for recursive
5601# configuration, so that the top-level Makefile reconfigures them,
5602# like we used to do when configure itself was recursive.
dd12c3a8 5603
6bd3dfaa
PB
5604# Loop over modules. $extrasub must be used with care, limiting as
5605# much as possible the usage of range addresses. That's because autoconf
5606# splits the sed script to overcome limits in the number of commands,
5607# and relying on carefully-timed sed passes may turn out to be very hard
5608# to maintain later. In this particular case, you just have to be careful
5609# not to nest @if/@endif pairs, because configure will not warn you at all.
dd12c3a8 5610
319cab08
PB
5611# Check whether --enable-bootstrap or --disable-bootstrap was given.
5612if test "${enable_bootstrap+set}" = set; then
5613 enableval="$enable_bootstrap"
c6b750e1 5614
319cab08 5615else
9cb3fa6f 5616 enable_bootstrap=default
c6b750e1 5617fi;
319cab08 5618
9cb3fa6f
PB
5619# Issue errors and warnings for invalid/strange bootstrap combinations.
5620case "$configdirs" in
5621 *gcc*) have_compiler=yes ;;
5622 *) have_compiler=no ;;
5623esac
5624
5625case "$have_compiler:$host:$target:$enable_bootstrap" in
5626 *:*:*:no) ;;
5627
0aed8855 5628 # Default behavior. Enable bootstrap if we have a compiler
9cb3fa6f
PB
5629 # and we are in a native configuration.
5630 yes:$build:$build:default)
0aed8855 5631 enable_bootstrap=yes ;;
9cb3fa6f
PB
5632
5633 *:*:*:default)
5634 enable_bootstrap=no ;;
5635
5636 # We have a compiler and we are in a native configuration, bootstrap is ok
80911fe1 5637 yes:$build:$build:yes)
9cb3fa6f
PB
5638 ;;
5639
5640 # Other configurations, but we have a compiler. Assume the user knows
5641 # what he's doing.
80911fe1 5642 yes:*:*:yes)
c6b750e1
DJ
5643 { echo "$as_me:$LINENO: WARNING: trying to bootstrap a cross compiler" >&5
5644echo "$as_me: WARNING: trying to bootstrap a cross compiler" >&2;}
9cb3fa6f
PB
5645 ;;
5646
5647 # No compiler: if they passed --enable-bootstrap explicitly, fail
80911fe1 5648 no:*:*:yes)
c6b750e1
DJ
5649 { { echo "$as_me:$LINENO: error: cannot bootstrap without a compiler" >&5
5650echo "$as_me: error: cannot bootstrap without a compiler" >&2;}
5651 { (exit 1); exit 1; }; } ;;
9cb3fa6f
PB
5652
5653 # Fail if wrong command line
5654 *)
c6b750e1
DJ
5655 { { echo "$as_me:$LINENO: error: invalid option for --enable-bootstrap" >&5
5656echo "$as_me: error: invalid option for --enable-bootstrap" >&2;}
5657 { (exit 1); exit 1; }; }
9cb3fa6f
PB
5658 ;;
5659esac
5660
5661# Adjust the toplevel makefile according to whether bootstrap was selected.
319cab08
PB
5662case "$enable_bootstrap" in
5663 yes)
498d4a71 5664 bootstrap_suffix=bootstrap ;;
319cab08 5665 no)
498d4a71 5666 bootstrap_suffix=no-bootstrap ;;
319cab08
PB
5667esac
5668
6a9cf61e 5669for module in ${build_configdirs} ; do
498d4a71
CF
5670 if test -z "${no_recursion}" \
5671 && test -f ${build_subdir}/${module}/Makefile; then
5672 echo 1>&2 "*** removing ${build_subdir}/${module}/Makefile to force reconfigure"
5673 rm -f ${build_subdir}/${module}/Makefile
5674 fi
5675 extrasub="$extrasub
5676/^@if build-$module\$/d
5677/^@endif build-$module\$/d
5678/^@if build-$module-$bootstrap_suffix\$/d
5679/^@endif build-$module-$bootstrap_suffix\$/d"
5680done
5681for module in ${configdirs} ; do
80911fe1 5682 if test -z "${no_recursion}"; then
8cf39b1b 5683 for file in stage*-${module}/Makefile prev-${module}/Makefile ${module}/Makefile; do
80911fe1
PB
5684 if test -f ${file}; then
5685 echo 1>&2 "*** removing ${file} to force reconfigure"
5686 rm -f ${file}
5687 fi
5688 done
498d4a71
CF
5689 fi
5690 extrasub="$extrasub
5691/^@if $module\$/d
5692/^@endif $module\$/d
5693/^@if $module-$bootstrap_suffix\$/d
5694/^@endif $module-$bootstrap_suffix\$/d"
5695done
5696for module in ${target_configdirs} ; do
5697 if test -z "${no_recursion}" \
5698 && test -f ${target_subdir}/${module}/Makefile; then
5699 echo 1>&2 "*** removing ${target_subdir}/${module}/Makefile to force reconfigure"
5700 rm -f ${target_subdir}/${module}/Makefile
5701 fi
5702 extrasub="$extrasub
5703/^@if target-$module\$/d
5704/^@endif target-$module\$/d
5705/^@if target-$module-$bootstrap_suffix\$/d
5706/^@endif target-$module-$bootstrap_suffix\$/d"
5707done
5708
6bd3dfaa
PB
5709extrasub="$extrasub
5710/^@if /,/^@endif /d"
a0da8069
NN
5711
5712# Create the serialization dependencies. This uses a temporary file.
5713
e6bfb94a
AO
5714# Check whether --enable-serial-configure or --disable-serial-configure was given.
5715if test "${enable_serial_configure+set}" = set; then
5716 enableval="$enable_serial_configure"
e6bfb94a 5717
c6b750e1 5718fi;
e6bfb94a 5719
1047cb91
DD
5720case ${enable_serial_configure} in
5721 yes)
5722 enable_serial_build_configure=yes
5723 enable_serial_host_configure=yes
5724 enable_serial_target_configure=yes
5725 ;;
5726esac
5727
a0da8069
NN
5728# These force 'configure's to be done one at a time, to avoid problems
5729# with contention over a shared config.cache.
5730rm -f serdep.tmp
e6bfb94a 5731echo '# serdep.tmp' > serdep.tmp
a0da8069 5732olditem=
1047cb91 5733test "x${enable_serial_build_configure}" = xyes &&
a0da8069
NN
5734for item in ${build_configdirs} ; do
5735 case ${olditem} in
5736 "") ;;
e6bfb94a 5737 *) echo "configure-build-${item}: configure-build-${olditem}" >> serdep.tmp ;;
a0da8069
NN
5738 esac
5739 olditem=${item}
5740done
5741olditem=
1047cb91 5742test "x${enable_serial_host_configure}" = xyes &&
a0da8069
NN
5743for item in ${configdirs} ; do
5744 case ${olditem} in
5745 "") ;;
e6bfb94a 5746 *) echo "configure-${item}: configure-${olditem}" >> serdep.tmp ;;
a0da8069
NN
5747 esac
5748 olditem=${item}
5749done
5750olditem=
1047cb91 5751test "x${enable_serial_target_configure}" = xyes &&
a0da8069
NN
5752for item in ${target_configdirs} ; do
5753 case ${olditem} in
5754 "") ;;
e6bfb94a 5755 *) echo "configure-target-${item}: configure-target-${olditem}" >> serdep.tmp ;;
a0da8069
NN
5756 esac
5757 olditem=${item}
5758done
5759serialization_dependencies=serdep.tmp
5760
5761
e6bfb94a 5762# Base args. Strip norecursion, cache-file, srcdir, host, build,
c6b750e1
DJ
5763# target, nonopt, and variable assignments. These are the ones we
5764# might not want to pass down to subconfigures. Also strip
5765# program-prefix, program-suffix, and program-transform-name, so that
5766# we can pass down a consistent program-transform-name.
5767baseargs=
5768keep_next=no
5769skip_next=no
5770eval "set -- $ac_configure_args"
18f6b6ee
PB
5771for ac_arg
5772do
c6b750e1
DJ
5773 if test X"$skip_next" = X"yes"; then
5774 skip_next=no
5775 continue
5776 fi
5777 if test X"$keep_next" = X"yes"; then
5778 case $ac_arg in
5779 *\'*)
5780 ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
5781 esac
5782 baseargs="$baseargs '$ac_arg'"
5783 keep_next=no
5784 continue
5785 fi
5786
5787 # Handle separated arguments. Based on the logic generated by
5788 # autoconf 2.59.
5789 case $ac_arg in
5790 *=* | --config-cache | -C | -disable-* | --disable-* \
5791 | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
5792 | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
5793 | -with-* | --with-* | -without-* | --without-* | --x)
5794 separate_arg=no
5795 ;;
5796 -*)
5797 separate_arg=yes
5798 ;;
5799 *)
5800 separate_arg=no
5801 ;;
5802 esac
5803
5804 case "$ac_arg" in
5805 --no*)
5806 continue
5807 ;;
5808 --c* | \
5809 --sr* | \
5810 --ho* | \
5811 --bu* | \
5812 --t* | \
5813 --program-* | \
5814 -cache_file* | \
5815 -srcdir* | \
5816 -host* | \
5817 -build* | \
5818 -target* | \
5819 -program-prefix* | \
5820 -program-suffix* | \
5821 -program-transform-name* )
5822 skip_next=$separate_arg
5823 continue
5824 ;;
5825 -*)
5826 # An option. Add it.
5827 case $ac_arg in
5828 *\'*)
5829 ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
5830 esac
5831 baseargs="$baseargs '$ac_arg'"
5832 keep_next=$separate_arg
5833 ;;
5834 *)
5835 # Either a variable assignment, or a nonopt (triplet). Don't
5836 # pass it down; let the Makefile handle this.
5837 continue
5838 ;;
5839 esac
5840done
5841# Remove the initial space we just introduced and, as these will be
5842# expanded by make, quote '$'.
5843baseargs=`echo "x$baseargs" | sed -e 's/^x *//' -e 's,\\$,$$,g'`
a0da8069 5844
f27d4f92
DJ
5845# Add in --program-transform-name, after --program-prefix and
5846# --program-suffix have been applied to it. Autoconf has already
5847# doubled dollar signs and backslashes in program_transform_name; we want
5848# the backslashes un-doubled, and then the entire thing wrapped in single
c6b750e1 5849# quotes, because this will be expanded first by make and then by the shell.
f27d4f92
DJ
5850# Also, because we want to override the logic in subdir configure scripts to
5851# choose program_transform_name, replace any s,x,x, with s,y,y,.
5852sed -e "s,\\\\\\\\,\\\\,g; s,','\\\\'',g; s/s,x,x,/s,y,y,/" <<EOF_SED > conftestsed.out
5853${program_transform_name}
5854EOF_SED
5855gcc_transform_name=`cat conftestsed.out`
5856rm -f conftestsed.out
5857baseargs="$baseargs --program-transform-name='${gcc_transform_name}'"
2444379b
BE
5858if test "$silent" = yes; then
5859 baseargs="$baseargs --silent"
5860fi
f27d4f92 5861
a0da8069
NN
5862# For the build-side libraries, we just need to pretend we're native,
5863# and not use the same cache file. Multilibs are neither needed nor
5864# desired.
4b900473 5865build_configargs="--cache-file=../config.cache ${baseargs}"
a0da8069
NN
5866
5867# For host modules, accept cache file option, or specification as blank.
5868case "${cache_file}" in
5869"") # empty
5870 cache_file_option="" ;;
5871/* | [A-Za-z]:[\\/]* ) # absolute path
5872 cache_file_option="--cache-file=${cache_file}" ;;
5873*) # relative path
5874 cache_file_option="--cache-file=../${cache_file}" ;;
5875esac
5876
82252c06
NN
5877# Host dirs don't like to share a cache file either, horribly enough.
5878# This seems to be due to autoconf 2.5x stupidity.
4b900473 5879host_configargs="--cache-file=./config.cache ${extra_host_args} ${baseargs}"
a0da8069
NN
5880
5881target_configargs=${baseargs}
5882
5883# Passing a --with-cross-host argument lets the target libraries know
5884# whether they are being built with a cross-compiler or being built
5885# native. However, it would be better to use other mechanisms to make the
5886# sorts of decisions they want to make on this basis. Please consider
5887# this option to be deprecated. FIXME.
5888if test x${is_cross_compiler} = xyes ; then
c6b750e1 5889 target_configargs="--with-cross-host=${host_noncanonical} ${target_configargs}"
a0da8069
NN
5890fi
5891
5892# Default to --enable-multilib.
5893if test x${enable_multilib} = x ; then
5894 target_configargs="--enable-multilib ${target_configargs}"
5895fi
5896
5897# Pass --with-newlib if appropriate. Note that target_configdirs has
5898# changed from the earlier setting of with_newlib.
5899if test x${with_newlib} != xno && echo " ${target_configdirs} " | grep " newlib " > /dev/null 2>&1 && test -d ${srcdir}/newlib ; then
5900 target_configargs="--with-newlib ${target_configargs}"
5901fi
5902
95036d20
NN
5903# Different target subdirs use different values of certain variables
5904# (notably CXX). Worse, multilibs use *lots* of different values.
5905# Worse yet, autoconf 2.5x makes some of these 'precious', meaning that
5906# it doesn't automatically accept command-line overrides of them.
5907# This means it's not safe for target subdirs to share a cache file,
5908# which is disgusting, but there you have it. Hopefully this can be
5909# fixed in future. It's still worthwhile to use a cache file for each
5910# directory. I think.
5911
ae380b45
MS
5912# Pass the appropriate --build, --host, --target and --cache-file arguments.
5913# We need to pass --target, as newer autoconf's requires consistency
5914# for target_alias and gcc doesn't manage it consistently.
4b900473 5915target_configargs="--cache-file=./config.cache ${target_configargs}"
a0da8069 5916
a0da8069
NN
5917FLAGS_FOR_TARGET=
5918case " $target_configdirs " in
5919 *" newlib "*)
5920 case " $target_configargs " in
5921 *" --with-newlib "*)
5922 case "$target" in
5923 *-cygwin*)
564b43e5 5924 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(TARGET_SUBDIR)/winsup -L$$r/$(TARGET_SUBDIR)/winsup/cygwin -L$$r/$(TARGET_SUBDIR)/winsup/w32api/lib -isystem $$s/winsup/include -isystem $$s/winsup/cygwin/include -isystem $$s/winsup/w32api/include' ;;
a0da8069
NN
5925 esac
5926
5927 # If we're not building GCC, don't discard standard headers.
5928 if test -d ${srcdir}/gcc; then
5929 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -nostdinc'
5930
5931 if test "${build}" != "${host}"; then
5932 # On Canadian crosses, CC_FOR_TARGET will have already been set
5933 # by `configure', so we won't have an opportunity to add -Bgcc/
5934 # to it. This is right: we don't want to search that directory
5935 # for binaries, but we want the header files in there, so add
5936 # them explicitly.
b00612cc 5937 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -isystem $$r/$(HOST_SUBDIR)/gcc/include'
a0da8069
NN
5938
5939 # Someone might think of using the pre-installed headers on
5940 # Canadian crosses, in case the installed compiler is not fully
5941 # compatible with the compiler being built. In this case, it
5942 # would be better to flag an error than risking having
5943 # incompatible object files being constructed. We can't
5944 # guarantee that an error will be flagged, but let's hope the
5945 # compiler will do it, when presented with incompatible header
5946 # files.
5947 fi
5948 fi
5949
5950 case "${target}-${is_cross_compiler}" in
ec11bdc6 5951 i[3456789]86-*-linux*-no)
a0da8069
NN
5952 # Here host == target, so we don't need to build gcc,
5953 # so we don't want to discard standard headers.
5954 FLAGS_FOR_TARGET=`echo " $FLAGS_FOR_TARGET " | sed -e 's/ -nostdinc / /'`
5955 ;;
5956 *)
5957 # If we're building newlib, use its generic headers last, but search
5958 # for any libc-related directories first (so make it the last -B
5959 # switch).
5960 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -B$$r/$(TARGET_SUBDIR)/newlib/ -isystem $$r/$(TARGET_SUBDIR)/newlib/targ-include -isystem $$s/newlib/libc/include'
691bb5a1
DD
5961
5962 # If we're building libgloss, find the startup file, simulator library
5963 # and linker script.
5964 case " $target_configdirs " in
5965 *" libgloss "*)
5966 # Look for startup file, simulator library and maybe linker script.
5967 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -B$$r/$(TARGET_SUBDIR)/libgloss/'"$libgloss_dir"
5968 # Look for libnosys.a in case the target needs it.
5969 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(TARGET_SUBDIR)/libgloss/libnosys'
5970 # Most targets have the linker script in the source directory.
5971 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$s/libgloss/'"$libgloss_dir"
5972 ;;
5973 esac
a0da8069
NN
5974 ;;
5975 esac
5976 ;;
5977 esac
5978 ;;
5979esac
45055374
CV
5980case "$target" in
5981*-mingw*)
5982 # Can't be handled as Cygwin above since Mingw does not use newlib.
5983 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(TARGET_SUBDIR)/winsup/mingw -L$$r/$(TARGET_SUBDIR)/winsup/w32api/lib -isystem $$s/winsup/mingw/include -isystem $$s/winsup/w32api/include' ;;
5984esac
a0da8069 5985
5fbad20a
DD
5986# Allow the user to override the flags for
5987# our build compiler if desired.
c66487f8
NC
5988if test x"${build}" = x"${host}" ; then
5989 CFLAGS_FOR_BUILD=${CFLAGS_FOR_BUILD-${CFLAGS}}
5990 CXXFLAGS_FOR_BUILD=${CXXFLAGS_FOR_BUILD-${CXXFLAGS}}
5991 LDFLAGS_FOR_BUILD=${LDFLAGS_FOR_BUILD-${LDFLAGS}}
5992fi
5fbad20a 5993
a0da8069
NN
5994# On Canadian crosses, we'll be searching the right directories for
5995# the previously-installed cross compiler, so don't bother to add
5996# flags for directories within the install tree of the compiler
5997# being built; programs in there won't even run.
5998if test "${build}" = "${host}" && test -d ${srcdir}/gcc; then
5999 # Search for pre-installed headers if nothing else fits.
bba45b8b 6000 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -B$(build_tooldir)/bin/ -B$(build_tooldir)/lib/ -isystem $(build_tooldir)/include -isystem $(build_tooldir)/sys-include'
a0da8069
NN
6001fi
6002
6003if test "x${use_gnu_ld}" = x &&
6004 echo " ${configdirs} " | grep " ld " > /dev/null ; then
6005 # Arrange for us to find uninstalled linker scripts.
b00612cc 6006 FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(HOST_SUBDIR)/ld'
a0da8069
NN
6007fi
6008
a481dbb7
DD
6009# Search for other target-specific linker scripts and such.
6010case "${target}" in
4e206d7e
DB
6011 mep*)
6012 FLAGS_FOR_TARGET="$FLAGS_FOR_TARGET -mlibrary"
6013 ;;
6014esac
6015
a0da8069 6016# Makefile fragments.
3e707e94
PB
6017for frag in host_makefile_frag target_makefile_frag alphaieee_frag ospace_frag;
6018do
6019 eval fragval=\$$frag
6020 if test $fragval != /dev/null; then
6021 eval $frag=${srcdir}/$fragval
6022 fi
6023done
a0da8069
NN
6024
6025
6026
6027
6028
6029# Miscellanea: directories, flags, etc.
6030
6031
6032
6033
6034
6035
6036
6a9cf61e 6037# Build module lists & subconfigure args.
a0da8069
NN
6038
6039
6040
be01d343
PB
6041# Host module lists & subconfigure args.
6042
6043
6044
6045# Target module lists & subconfigure args.
6046
6047
6048
6049# Build tools.
6050
6051
6052
1576798e
PB
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
be01d343
PB
6067# Generate default definitions for YACC, M4, LEX and other programs that run
6068# on the build machine. These are used if the Makefile can't locate these
6069# programs in objdir.
6070MISSING=`cd $ac_aux_dir && ${PWDCMD-pwd}`/missing
6071
6072for ac_prog in 'bison -y' byacc yacc
6073do
c6b750e1 6074 # Extract the first word of "$ac_prog", so it can be a program name with args.
be01d343 6075set dummy $ac_prog; ac_word=$2
c6b750e1
DJ
6076echo "$as_me:$LINENO: checking for $ac_word" >&5
6077echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
6078if test "${ac_cv_prog_YACC+set}" = set; then
6079 echo $ECHO_N "(cached) $ECHO_C" >&6
be01d343
PB
6080else
6081 if test -n "$YACC"; then
6082 ac_cv_prog_YACC="$YACC" # Let the user override the test.
6083else
c6b750e1
DJ
6084as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6085for as_dir in $PATH
6086do
6087 IFS=$as_save_IFS
6088 test -z "$as_dir" && as_dir=.
6089 for ac_exec_ext in '' $ac_executable_extensions; do
6090 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6091 ac_cv_prog_YACC="$ac_prog"
6092 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6093 break 2
6094 fi
6095done
6096done
6097
be01d343
PB
6098fi
6099fi
c6b750e1 6100YACC=$ac_cv_prog_YACC
be01d343 6101if test -n "$YACC"; then
c6b750e1
DJ
6102 echo "$as_me:$LINENO: result: $YACC" >&5
6103echo "${ECHO_T}$YACC" >&6
be01d343 6104else
c6b750e1
DJ
6105 echo "$as_me:$LINENO: result: no" >&5
6106echo "${ECHO_T}no" >&6
be01d343
PB
6107fi
6108
c6b750e1 6109 test -n "$YACC" && break
be01d343
PB
6110done
6111test -n "$YACC" || YACC="$MISSING bison -y"
6112
6113case " $build_configdirs " in
6114 *" bison "*) YACC='$$r/$(BUILD_SUBDIR)/bison/tests/bison -y' ;;
6115 *" byacc "*) YACC='$$r/$(BUILD_SUBDIR)/byacc/byacc' ;;
6116esac
6117
6118for ac_prog in bison
6119do
c6b750e1 6120 # Extract the first word of "$ac_prog", so it can be a program name with args.
be01d343 6121set dummy $ac_prog; ac_word=$2
c6b750e1
DJ
6122echo "$as_me:$LINENO: checking for $ac_word" >&5
6123echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
6124if test "${ac_cv_prog_BISON+set}" = set; then
6125 echo $ECHO_N "(cached) $ECHO_C" >&6
be01d343
PB
6126else
6127 if test -n "$BISON"; then
6128 ac_cv_prog_BISON="$BISON" # Let the user override the test.
6129else
c6b750e1
DJ
6130as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6131for as_dir in $PATH
6132do
6133 IFS=$as_save_IFS
6134 test -z "$as_dir" && as_dir=.
6135 for ac_exec_ext in '' $ac_executable_extensions; do
6136 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6137 ac_cv_prog_BISON="$ac_prog"
6138 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6139 break 2
6140 fi
6141done
6142done
6143
be01d343
PB
6144fi
6145fi
c6b750e1 6146BISON=$ac_cv_prog_BISON
be01d343 6147if test -n "$BISON"; then
c6b750e1
DJ
6148 echo "$as_me:$LINENO: result: $BISON" >&5
6149echo "${ECHO_T}$BISON" >&6
be01d343 6150else
c6b750e1
DJ
6151 echo "$as_me:$LINENO: result: no" >&5
6152echo "${ECHO_T}no" >&6
be01d343
PB
6153fi
6154
c6b750e1 6155 test -n "$BISON" && break
be01d343
PB
6156done
6157test -n "$BISON" || BISON="$MISSING bison"
6158
6159case " $build_configdirs " in
6160 *" bison "*) BISON='$$r/$(BUILD_SUBDIR)/bison/tests/bison' ;;
6161esac
6162
6163for ac_prog in gm4 gnum4 m4
6164do
c6b750e1 6165 # Extract the first word of "$ac_prog", so it can be a program name with args.
be01d343 6166set dummy $ac_prog; ac_word=$2
c6b750e1
DJ
6167echo "$as_me:$LINENO: checking for $ac_word" >&5
6168echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
6169if test "${ac_cv_prog_M4+set}" = set; then
6170 echo $ECHO_N "(cached) $ECHO_C" >&6
be01d343
PB
6171else
6172 if test -n "$M4"; then
6173 ac_cv_prog_M4="$M4" # Let the user override the test.
6174else
c6b750e1
DJ
6175as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6176for as_dir in $PATH
6177do
6178 IFS=$as_save_IFS
6179 test -z "$as_dir" && as_dir=.
6180 for ac_exec_ext in '' $ac_executable_extensions; do
6181 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6182 ac_cv_prog_M4="$ac_prog"
6183 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6184 break 2
6185 fi
6186done
6187done
6188
be01d343
PB
6189fi
6190fi
c6b750e1 6191M4=$ac_cv_prog_M4
be01d343 6192if test -n "$M4"; then
c6b750e1
DJ
6193 echo "$as_me:$LINENO: result: $M4" >&5
6194echo "${ECHO_T}$M4" >&6
be01d343 6195else
c6b750e1
DJ
6196 echo "$as_me:$LINENO: result: no" >&5
6197echo "${ECHO_T}no" >&6
be01d343
PB
6198fi
6199
c6b750e1 6200 test -n "$M4" && break
be01d343
PB
6201done
6202test -n "$M4" || M4="$MISSING m4"
6203
6204case " $build_configdirs " in
6205 *" m4 "*) M4='$$r/$(BUILD_SUBDIR)/m4/m4' ;;
6206esac
6207
6208for ac_prog in flex lex
6209do
c6b750e1 6210 # Extract the first word of "$ac_prog", so it can be a program name with args.
be01d343 6211set dummy $ac_prog; ac_word=$2
c6b750e1
DJ
6212echo "$as_me:$LINENO: checking for $ac_word" >&5
6213echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
6214if test "${ac_cv_prog_LEX+set}" = set; then
6215 echo $ECHO_N "(cached) $ECHO_C" >&6
be01d343
PB
6216else
6217 if test -n "$LEX"; then
6218 ac_cv_prog_LEX="$LEX" # Let the user override the test.
6219else
c6b750e1
DJ
6220as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6221for as_dir in $PATH
6222do
6223 IFS=$as_save_IFS
6224 test -z "$as_dir" && as_dir=.
6225 for ac_exec_ext in '' $ac_executable_extensions; do
6226 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6227 ac_cv_prog_LEX="$ac_prog"
6228 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6229 break 2
6230 fi
6231done
6232done
6233
be01d343
PB
6234fi
6235fi
c6b750e1 6236LEX=$ac_cv_prog_LEX
be01d343 6237if test -n "$LEX"; then
c6b750e1
DJ
6238 echo "$as_me:$LINENO: result: $LEX" >&5
6239echo "${ECHO_T}$LEX" >&6
be01d343 6240else
c6b750e1
DJ
6241 echo "$as_me:$LINENO: result: no" >&5
6242echo "${ECHO_T}no" >&6
be01d343
PB
6243fi
6244
c6b750e1 6245 test -n "$LEX" && break
be01d343
PB
6246done
6247test -n "$LEX" || LEX="$MISSING flex"
6248
6249case " $build_configdirs " in
6250 *" flex "*) LEX='$$r/$(BUILD_SUBDIR)/flex/flex' ;;
6251 *" lex "*) LEX='$$r/$(BUILD_SUBDIR)/lex/lex' ;;
6252esac
6253
6254for ac_prog in flex
6255do
c6b750e1 6256 # Extract the first word of "$ac_prog", so it can be a program name with args.
be01d343 6257set dummy $ac_prog; ac_word=$2
c6b750e1
DJ
6258echo "$as_me:$LINENO: checking for $ac_word" >&5
6259echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
6260if test "${ac_cv_prog_FLEX+set}" = set; then
6261 echo $ECHO_N "(cached) $ECHO_C" >&6
be01d343
PB
6262else
6263 if test -n "$FLEX"; then
6264 ac_cv_prog_FLEX="$FLEX" # Let the user override the test.
6265else
c6b750e1
DJ
6266as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6267for as_dir in $PATH
6268do
6269 IFS=$as_save_IFS
6270 test -z "$as_dir" && as_dir=.
6271 for ac_exec_ext in '' $ac_executable_extensions; do
6272 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6273 ac_cv_prog_FLEX="$ac_prog"
6274 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6275 break 2
6276 fi
6277done
6278done
6279
be01d343
PB
6280fi
6281fi
c6b750e1 6282FLEX=$ac_cv_prog_FLEX
be01d343 6283if test -n "$FLEX"; then
c6b750e1
DJ
6284 echo "$as_me:$LINENO: result: $FLEX" >&5
6285echo "${ECHO_T}$FLEX" >&6
be01d343 6286else
c6b750e1
DJ
6287 echo "$as_me:$LINENO: result: no" >&5
6288echo "${ECHO_T}no" >&6
be01d343
PB
6289fi
6290
c6b750e1 6291 test -n "$FLEX" && break
be01d343
PB
6292done
6293test -n "$FLEX" || FLEX="$MISSING flex"
6294
6295case " $build_configdirs " in
6296 *" flex "*) FLEX='$$r/$(BUILD_SUBDIR)/flex/flex' ;;
6297esac
6298
6299for ac_prog in makeinfo
6300do
c6b750e1 6301 # Extract the first word of "$ac_prog", so it can be a program name with args.
be01d343 6302set dummy $ac_prog; ac_word=$2
c6b750e1
DJ
6303echo "$as_me:$LINENO: checking for $ac_word" >&5
6304echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
6305if test "${ac_cv_prog_MAKEINFO+set}" = set; then
6306 echo $ECHO_N "(cached) $ECHO_C" >&6
be01d343
PB
6307else
6308 if test -n "$MAKEINFO"; then
6309 ac_cv_prog_MAKEINFO="$MAKEINFO" # Let the user override the test.
6310else
c6b750e1
DJ
6311as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6312for as_dir in $PATH
6313do
6314 IFS=$as_save_IFS
6315 test -z "$as_dir" && as_dir=.
6316 for ac_exec_ext in '' $ac_executable_extensions; do
6317 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6318 ac_cv_prog_MAKEINFO="$ac_prog"
6319 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6320 break 2
6321 fi
6322done
6323done
6324
be01d343
PB
6325fi
6326fi
c6b750e1 6327MAKEINFO=$ac_cv_prog_MAKEINFO
be01d343 6328if test -n "$MAKEINFO"; then
c6b750e1
DJ
6329 echo "$as_me:$LINENO: result: $MAKEINFO" >&5
6330echo "${ECHO_T}$MAKEINFO" >&6
be01d343 6331else
c6b750e1
DJ
6332 echo "$as_me:$LINENO: result: no" >&5
6333echo "${ECHO_T}no" >&6
be01d343
PB
6334fi
6335
c6b750e1 6336 test -n "$MAKEINFO" && break
be01d343
PB
6337done
6338test -n "$MAKEINFO" || MAKEINFO="$MISSING makeinfo"
6339
6340case " $build_configdirs " in
6341 *" texinfo "*) MAKEINFO='$$r/$(BUILD_SUBDIR)/texinfo/makeinfo/makeinfo' ;;
6342 *)
6343
625a61cd 6344 # For an installed makeinfo, we require it to be from texinfo 4.6 or
be01d343
PB
6345 # higher, else we use the "missing" dummy.
6346 if ${MAKEINFO} --version \
625a61cd 6347 | egrep 'texinfo[^0-9]*(4\.([6-9]|[1-9][0-9])|[5-9]|[1-9][0-9])' >/dev/null 2>&1; then
be01d343
PB
6348 :
6349 else
6350 MAKEINFO="$MISSING makeinfo"
6351 fi
6352 ;;
6353
6354esac
a0da8069 6355
be01d343 6356# FIXME: expect and dejagnu may become build tools?
a0da8069 6357
be01d343
PB
6358for ac_prog in expect
6359do
c6b750e1 6360 # Extract the first word of "$ac_prog", so it can be a program name with args.
be01d343 6361set dummy $ac_prog; ac_word=$2
c6b750e1
DJ
6362echo "$as_me:$LINENO: checking for $ac_word" >&5
6363echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
6364if test "${ac_cv_prog_EXPECT+set}" = set; then
6365 echo $ECHO_N "(cached) $ECHO_C" >&6
be01d343
PB
6366else
6367 if test -n "$EXPECT"; then
6368 ac_cv_prog_EXPECT="$EXPECT" # Let the user override the test.
6369else
c6b750e1
DJ
6370as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6371for as_dir in $PATH
6372do
6373 IFS=$as_save_IFS
6374 test -z "$as_dir" && as_dir=.
6375 for ac_exec_ext in '' $ac_executable_extensions; do
6376 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6377 ac_cv_prog_EXPECT="$ac_prog"
6378 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6379 break 2
6380 fi
6381done
6382done
6383
be01d343
PB
6384fi
6385fi
c6b750e1 6386EXPECT=$ac_cv_prog_EXPECT
be01d343 6387if test -n "$EXPECT"; then
c6b750e1
DJ
6388 echo "$as_me:$LINENO: result: $EXPECT" >&5
6389echo "${ECHO_T}$EXPECT" >&6
be01d343 6390else
c6b750e1
DJ
6391 echo "$as_me:$LINENO: result: no" >&5
6392echo "${ECHO_T}no" >&6
be01d343 6393fi
a0da8069 6394
c6b750e1 6395 test -n "$EXPECT" && break
be01d343
PB
6396done
6397test -n "$EXPECT" || EXPECT="expect"
a0da8069 6398
be01d343
PB
6399case " $configdirs " in
6400 *" expect "*)
6401 test $host = $build && EXPECT='$$r/$(HOST_SUBDIR)/expect/expect'
6402 ;;
6403esac
a0da8069 6404
be01d343
PB
6405for ac_prog in runtest
6406do
c6b750e1 6407 # Extract the first word of "$ac_prog", so it can be a program name with args.
be01d343 6408set dummy $ac_prog; ac_word=$2
c6b750e1
DJ
6409echo "$as_me:$LINENO: checking for $ac_word" >&5
6410echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
6411if test "${ac_cv_prog_RUNTEST+set}" = set; then
6412 echo $ECHO_N "(cached) $ECHO_C" >&6
be01d343
PB
6413else
6414 if test -n "$RUNTEST"; then
6415 ac_cv_prog_RUNTEST="$RUNTEST" # Let the user override the test.
6416else
c6b750e1
DJ
6417as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6418for as_dir in $PATH
6419do
6420 IFS=$as_save_IFS
6421 test -z "$as_dir" && as_dir=.
6422 for ac_exec_ext in '' $ac_executable_extensions; do
6423 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6424 ac_cv_prog_RUNTEST="$ac_prog"
6425 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6426 break 2
6427 fi
6428done
6429done
6430
be01d343
PB
6431fi
6432fi
c6b750e1 6433RUNTEST=$ac_cv_prog_RUNTEST
be01d343 6434if test -n "$RUNTEST"; then
c6b750e1
DJ
6435 echo "$as_me:$LINENO: result: $RUNTEST" >&5
6436echo "${ECHO_T}$RUNTEST" >&6
be01d343 6437else
c6b750e1
DJ
6438 echo "$as_me:$LINENO: result: no" >&5
6439echo "${ECHO_T}no" >&6
be01d343 6440fi
a0da8069 6441
c6b750e1 6442 test -n "$RUNTEST" && break
be01d343
PB
6443done
6444test -n "$RUNTEST" || RUNTEST="runtest"
a0da8069 6445
be01d343
PB
6446case " $configdirs " in
6447 *" dejagnu "*)
6b89cc21 6448 test $host = $build && RUNTEST='$$s/$(HOST_SUBDIR)/dejagnu/runtest'
be01d343
PB
6449 ;;
6450esac
a0da8069
NN
6451
6452
a0da8069 6453# Host tools.
859789af
AC
6454ncn_tool_prefix=
6455test -n "$host_alias" && ncn_tool_prefix=$host_alias-
6456ncn_target_tool_prefix=
6457test -n "$target_alias" && ncn_target_tool_prefix=$target_alias-
6458
9a819804
AO
6459
6460
6461if test -n "$AR"; then
6462 ac_cv_prog_AR=$AR
6463elif test -n "$ac_cv_prog_AR"; then
6464 AR=$ac_cv_prog_AR
6465fi
6466
6467if test -n "$ac_cv_prog_AR"; then
6468 for ncn_progname in ar; do
6469 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
6470set dummy ${ncn_progname}; ac_word=$2
6471echo "$as_me:$LINENO: checking for $ac_word" >&5
6472echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
6473if test "${ac_cv_prog_AR+set}" = set; then
6474 echo $ECHO_N "(cached) $ECHO_C" >&6
6475else
6476 if test -n "$AR"; then
6477 ac_cv_prog_AR="$AR" # Let the user override the test.
6478else
6479as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6480for as_dir in $PATH
6481do
6482 IFS=$as_save_IFS
6483 test -z "$as_dir" && as_dir=.
6484 for ac_exec_ext in '' $ac_executable_extensions; do
6485 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6486 ac_cv_prog_AR="${ncn_progname}"
6487 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6488 break 2
6489 fi
6490done
6491done
6492
6493fi
6494fi
6495AR=$ac_cv_prog_AR
6496if test -n "$AR"; then
6497 echo "$as_me:$LINENO: result: $AR" >&5
6498echo "${ECHO_T}$AR" >&6
6499else
6500 echo "$as_me:$LINENO: result: no" >&5
6501echo "${ECHO_T}no" >&6
6502fi
6503
6504 done
6505fi
6506
6507for ncn_progname in ar; do
05cbd757
PB
6508 if test -n "$ncn_tool_prefix"; then
6509 # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
6510set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
6511echo "$as_me:$LINENO: checking for $ac_word" >&5
6512echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
6513if test "${ac_cv_prog_AR+set}" = set; then
6514 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af
AC
6515else
6516 if test -n "$AR"; then
6517 ac_cv_prog_AR="$AR" # Let the user override the test.
6518else
c6b750e1
DJ
6519as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6520for as_dir in $PATH
6521do
6522 IFS=$as_save_IFS
6523 test -z "$as_dir" && as_dir=.
6524 for ac_exec_ext in '' $ac_executable_extensions; do
6525 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6526 ac_cv_prog_AR="${ncn_tool_prefix}${ncn_progname}"
6527 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6528 break 2
6529 fi
6530done
6531done
6532
859789af
AC
6533fi
6534fi
c6b750e1 6535AR=$ac_cv_prog_AR
859789af 6536if test -n "$AR"; then
c6b750e1
DJ
6537 echo "$as_me:$LINENO: result: $AR" >&5
6538echo "${ECHO_T}$AR" >&6
859789af 6539else
c6b750e1
DJ
6540 echo "$as_me:$LINENO: result: no" >&5
6541echo "${ECHO_T}no" >&6
859789af
AC
6542fi
6543
05cbd757
PB
6544 fi
6545 if test -z "$ac_cv_prog_AR" && test $build = $host ; then
6546 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
6547set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
6548echo "$as_me:$LINENO: checking for $ac_word" >&5
6549echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
6550if test "${ac_cv_prog_AR+set}" = set; then
6551 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af 6552else
05cbd757
PB
6553 if test -n "$AR"; then
6554 ac_cv_prog_AR="$AR" # Let the user override the test.
859789af 6555else
c6b750e1
DJ
6556as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6557for as_dir in $PATH
6558do
6559 IFS=$as_save_IFS
6560 test -z "$as_dir" && as_dir=.
6561 for ac_exec_ext in '' $ac_executable_extensions; do
6562 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6563 ac_cv_prog_AR="${ncn_progname}"
6564 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6565 break 2
6566 fi
6567done
6568done
6569
859789af
AC
6570fi
6571fi
c6b750e1 6572AR=$ac_cv_prog_AR
05cbd757 6573if test -n "$AR"; then
c6b750e1
DJ
6574 echo "$as_me:$LINENO: result: $AR" >&5
6575echo "${ECHO_T}$AR" >&6
859789af 6576else
c6b750e1
DJ
6577 echo "$as_me:$LINENO: result: no" >&5
6578echo "${ECHO_T}no" >&6
859789af 6579fi
c6b750e1 6580
05cbd757
PB
6581 fi
6582 test -n "$ac_cv_prog_AR" && break
6583done
6584
6585if test -z "$ac_cv_prog_AR" ; then
6586 set dummy ar
6587 if test $build = $host ; then
6588 AR="$2"
859789af 6589 else
05cbd757 6590 AR="${ncn_tool_prefix}$2"
859789af 6591 fi
859789af
AC
6592fi
6593
9a819804
AO
6594
6595
6596if test -n "$AS"; then
6597 ac_cv_prog_AS=$AS
6598elif test -n "$ac_cv_prog_AS"; then
6599 AS=$ac_cv_prog_AS
6600fi
6601
6602if test -n "$ac_cv_prog_AS"; then
6603 for ncn_progname in as; do
6604 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
6605set dummy ${ncn_progname}; ac_word=$2
6606echo "$as_me:$LINENO: checking for $ac_word" >&5
6607echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
6608if test "${ac_cv_prog_AS+set}" = set; then
6609 echo $ECHO_N "(cached) $ECHO_C" >&6
6610else
6611 if test -n "$AS"; then
6612 ac_cv_prog_AS="$AS" # Let the user override the test.
6613else
6614as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6615for as_dir in $PATH
6616do
6617 IFS=$as_save_IFS
6618 test -z "$as_dir" && as_dir=.
6619 for ac_exec_ext in '' $ac_executable_extensions; do
6620 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6621 ac_cv_prog_AS="${ncn_progname}"
6622 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6623 break 2
6624 fi
6625done
6626done
6627
6628fi
6629fi
6630AS=$ac_cv_prog_AS
6631if test -n "$AS"; then
6632 echo "$as_me:$LINENO: result: $AS" >&5
6633echo "${ECHO_T}$AS" >&6
6634else
6635 echo "$as_me:$LINENO: result: no" >&5
6636echo "${ECHO_T}no" >&6
6637fi
6638
6639 done
6640fi
6641
6642for ncn_progname in as; do
05cbd757
PB
6643 if test -n "$ncn_tool_prefix"; then
6644 # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
6645set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
6646echo "$as_me:$LINENO: checking for $ac_word" >&5
6647echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
6648if test "${ac_cv_prog_AS+set}" = set; then
6649 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af
AC
6650else
6651 if test -n "$AS"; then
6652 ac_cv_prog_AS="$AS" # Let the user override the test.
c6b750e1
DJ
6653else
6654as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6655for as_dir in $PATH
6656do
6657 IFS=$as_save_IFS
6658 test -z "$as_dir" && as_dir=.
6659 for ac_exec_ext in '' $ac_executable_extensions; do
6660 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6661 ac_cv_prog_AS="${ncn_tool_prefix}${ncn_progname}"
6662 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6663 break 2
6664 fi
6665done
6666done
6667
859789af
AC
6668fi
6669fi
c6b750e1 6670AS=$ac_cv_prog_AS
859789af 6671if test -n "$AS"; then
c6b750e1
DJ
6672 echo "$as_me:$LINENO: result: $AS" >&5
6673echo "${ECHO_T}$AS" >&6
859789af 6674else
c6b750e1
DJ
6675 echo "$as_me:$LINENO: result: no" >&5
6676echo "${ECHO_T}no" >&6
859789af
AC
6677fi
6678
05cbd757
PB
6679 fi
6680 if test -z "$ac_cv_prog_AS" && test $build = $host ; then
6681 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
6682set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
6683echo "$as_me:$LINENO: checking for $ac_word" >&5
6684echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
6685if test "${ac_cv_prog_AS+set}" = set; then
6686 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af 6687else
05cbd757
PB
6688 if test -n "$AS"; then
6689 ac_cv_prog_AS="$AS" # Let the user override the test.
859789af 6690else
c6b750e1
DJ
6691as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6692for as_dir in $PATH
6693do
6694 IFS=$as_save_IFS
6695 test -z "$as_dir" && as_dir=.
6696 for ac_exec_ext in '' $ac_executable_extensions; do
6697 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6698 ac_cv_prog_AS="${ncn_progname}"
6699 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6700 break 2
6701 fi
6702done
6703done
6704
859789af
AC
6705fi
6706fi
c6b750e1 6707AS=$ac_cv_prog_AS
05cbd757 6708if test -n "$AS"; then
c6b750e1
DJ
6709 echo "$as_me:$LINENO: result: $AS" >&5
6710echo "${ECHO_T}$AS" >&6
859789af 6711else
c6b750e1
DJ
6712 echo "$as_me:$LINENO: result: no" >&5
6713echo "${ECHO_T}no" >&6
859789af 6714fi
c6b750e1 6715
05cbd757
PB
6716 fi
6717 test -n "$ac_cv_prog_AS" && break
6718done
6719
6720if test -z "$ac_cv_prog_AS" ; then
6721 set dummy as
6722 if test $build = $host ; then
6723 AS="$2"
859789af 6724 else
05cbd757 6725 AS="${ncn_tool_prefix}$2"
859789af 6726 fi
859789af
AC
6727fi
6728
9a819804
AO
6729
6730
6731if test -n "$DLLTOOL"; then
6732 ac_cv_prog_DLLTOOL=$DLLTOOL
6733elif test -n "$ac_cv_prog_DLLTOOL"; then
6734 DLLTOOL=$ac_cv_prog_DLLTOOL
6735fi
6736
6737if test -n "$ac_cv_prog_DLLTOOL"; then
6738 for ncn_progname in dlltool; do
6739 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
6740set dummy ${ncn_progname}; ac_word=$2
6741echo "$as_me:$LINENO: checking for $ac_word" >&5
6742echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
6743if test "${ac_cv_prog_DLLTOOL+set}" = set; then
6744 echo $ECHO_N "(cached) $ECHO_C" >&6
6745else
6746 if test -n "$DLLTOOL"; then
6747 ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test.
6748else
6749as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6750for as_dir in $PATH
6751do
6752 IFS=$as_save_IFS
6753 test -z "$as_dir" && as_dir=.
6754 for ac_exec_ext in '' $ac_executable_extensions; do
6755 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6756 ac_cv_prog_DLLTOOL="${ncn_progname}"
6757 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6758 break 2
6759 fi
6760done
6761done
6762
6763fi
6764fi
6765DLLTOOL=$ac_cv_prog_DLLTOOL
6766if test -n "$DLLTOOL"; then
6767 echo "$as_me:$LINENO: result: $DLLTOOL" >&5
6768echo "${ECHO_T}$DLLTOOL" >&6
6769else
6770 echo "$as_me:$LINENO: result: no" >&5
6771echo "${ECHO_T}no" >&6
6772fi
6773
6774 done
6775fi
6776
6777for ncn_progname in dlltool; do
05cbd757
PB
6778 if test -n "$ncn_tool_prefix"; then
6779 # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
6780set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
6781echo "$as_me:$LINENO: checking for $ac_word" >&5
6782echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
6783if test "${ac_cv_prog_DLLTOOL+set}" = set; then
6784 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af
AC
6785else
6786 if test -n "$DLLTOOL"; then
6787 ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test.
6788else
c6b750e1
DJ
6789as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6790for as_dir in $PATH
6791do
6792 IFS=$as_save_IFS
6793 test -z "$as_dir" && as_dir=.
6794 for ac_exec_ext in '' $ac_executable_extensions; do
6795 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6796 ac_cv_prog_DLLTOOL="${ncn_tool_prefix}${ncn_progname}"
6797 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6798 break 2
6799 fi
6800done
6801done
6802
859789af
AC
6803fi
6804fi
c6b750e1 6805DLLTOOL=$ac_cv_prog_DLLTOOL
859789af 6806if test -n "$DLLTOOL"; then
c6b750e1
DJ
6807 echo "$as_me:$LINENO: result: $DLLTOOL" >&5
6808echo "${ECHO_T}$DLLTOOL" >&6
859789af 6809else
c6b750e1
DJ
6810 echo "$as_me:$LINENO: result: no" >&5
6811echo "${ECHO_T}no" >&6
859789af
AC
6812fi
6813
05cbd757
PB
6814 fi
6815 if test -z "$ac_cv_prog_DLLTOOL" && test $build = $host ; then
6816 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
6817set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
6818echo "$as_me:$LINENO: checking for $ac_word" >&5
6819echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
6820if test "${ac_cv_prog_DLLTOOL+set}" = set; then
6821 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af 6822else
05cbd757
PB
6823 if test -n "$DLLTOOL"; then
6824 ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test.
859789af 6825else
c6b750e1
DJ
6826as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6827for as_dir in $PATH
6828do
6829 IFS=$as_save_IFS
6830 test -z "$as_dir" && as_dir=.
6831 for ac_exec_ext in '' $ac_executable_extensions; do
6832 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6833 ac_cv_prog_DLLTOOL="${ncn_progname}"
6834 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6835 break 2
6836 fi
6837done
6838done
6839
859789af
AC
6840fi
6841fi
c6b750e1 6842DLLTOOL=$ac_cv_prog_DLLTOOL
05cbd757 6843if test -n "$DLLTOOL"; then
c6b750e1
DJ
6844 echo "$as_me:$LINENO: result: $DLLTOOL" >&5
6845echo "${ECHO_T}$DLLTOOL" >&6
859789af 6846else
c6b750e1
DJ
6847 echo "$as_me:$LINENO: result: no" >&5
6848echo "${ECHO_T}no" >&6
859789af 6849fi
c6b750e1 6850
05cbd757
PB
6851 fi
6852 test -n "$ac_cv_prog_DLLTOOL" && break
6853done
6854
6855if test -z "$ac_cv_prog_DLLTOOL" ; then
6856 set dummy dlltool
6857 if test $build = $host ; then
6858 DLLTOOL="$2"
859789af 6859 else
05cbd757 6860 DLLTOOL="${ncn_tool_prefix}$2"
859789af 6861 fi
859789af
AC
6862fi
6863
9a819804
AO
6864
6865
6866if test -n "$LD"; then
6867 ac_cv_prog_LD=$LD
6868elif test -n "$ac_cv_prog_LD"; then
6869 LD=$ac_cv_prog_LD
6870fi
6871
6872if test -n "$ac_cv_prog_LD"; then
6873 for ncn_progname in ld; do
6874 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
6875set dummy ${ncn_progname}; ac_word=$2
6876echo "$as_me:$LINENO: checking for $ac_word" >&5
6877echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
6878if test "${ac_cv_prog_LD+set}" = set; then
6879 echo $ECHO_N "(cached) $ECHO_C" >&6
6880else
6881 if test -n "$LD"; then
6882 ac_cv_prog_LD="$LD" # Let the user override the test.
6883else
6884as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6885for as_dir in $PATH
6886do
6887 IFS=$as_save_IFS
6888 test -z "$as_dir" && as_dir=.
6889 for ac_exec_ext in '' $ac_executable_extensions; do
6890 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6891 ac_cv_prog_LD="${ncn_progname}"
6892 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6893 break 2
6894 fi
6895done
6896done
6897
6898fi
6899fi
6900LD=$ac_cv_prog_LD
6901if test -n "$LD"; then
6902 echo "$as_me:$LINENO: result: $LD" >&5
6903echo "${ECHO_T}$LD" >&6
6904else
6905 echo "$as_me:$LINENO: result: no" >&5
6906echo "${ECHO_T}no" >&6
6907fi
6908
6909 done
6910fi
6911
6912for ncn_progname in ld; do
05cbd757
PB
6913 if test -n "$ncn_tool_prefix"; then
6914 # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
6915set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
6916echo "$as_me:$LINENO: checking for $ac_word" >&5
6917echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
6918if test "${ac_cv_prog_LD+set}" = set; then
6919 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af
AC
6920else
6921 if test -n "$LD"; then
6922 ac_cv_prog_LD="$LD" # Let the user override the test.
6923else
c6b750e1
DJ
6924as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6925for as_dir in $PATH
6926do
6927 IFS=$as_save_IFS
6928 test -z "$as_dir" && as_dir=.
6929 for ac_exec_ext in '' $ac_executable_extensions; do
6930 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6931 ac_cv_prog_LD="${ncn_tool_prefix}${ncn_progname}"
6932 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6933 break 2
6934 fi
6935done
6936done
6937
859789af
AC
6938fi
6939fi
c6b750e1 6940LD=$ac_cv_prog_LD
859789af 6941if test -n "$LD"; then
c6b750e1
DJ
6942 echo "$as_me:$LINENO: result: $LD" >&5
6943echo "${ECHO_T}$LD" >&6
859789af 6944else
c6b750e1
DJ
6945 echo "$as_me:$LINENO: result: no" >&5
6946echo "${ECHO_T}no" >&6
859789af
AC
6947fi
6948
05cbd757
PB
6949 fi
6950 if test -z "$ac_cv_prog_LD" && test $build = $host ; then
6951 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
6952set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
6953echo "$as_me:$LINENO: checking for $ac_word" >&5
6954echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
6955if test "${ac_cv_prog_LD+set}" = set; then
6956 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af 6957else
05cbd757
PB
6958 if test -n "$LD"; then
6959 ac_cv_prog_LD="$LD" # Let the user override the test.
376a0e54 6960else
c6b750e1
DJ
6961as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6962for as_dir in $PATH
6963do
6964 IFS=$as_save_IFS
6965 test -z "$as_dir" && as_dir=.
6966 for ac_exec_ext in '' $ac_executable_extensions; do
6967 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6968 ac_cv_prog_LD="${ncn_progname}"
6969 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
6970 break 2
6971 fi
6972done
6973done
6974
859789af
AC
6975fi
6976fi
c6b750e1 6977LD=$ac_cv_prog_LD
05cbd757 6978if test -n "$LD"; then
c6b750e1
DJ
6979 echo "$as_me:$LINENO: result: $LD" >&5
6980echo "${ECHO_T}$LD" >&6
859789af 6981else
c6b750e1
DJ
6982 echo "$as_me:$LINENO: result: no" >&5
6983echo "${ECHO_T}no" >&6
859789af 6984fi
c6b750e1 6985
05cbd757
PB
6986 fi
6987 test -n "$ac_cv_prog_LD" && break
6988done
6989
6990if test -z "$ac_cv_prog_LD" ; then
6991 set dummy ld
6992 if test $build = $host ; then
6993 LD="$2"
859789af 6994 else
05cbd757 6995 LD="${ncn_tool_prefix}$2"
859789af 6996 fi
859789af
AC
6997fi
6998
9a819804
AO
6999
7000
7001if test -n "$LIPO"; then
7002 ac_cv_prog_LIPO=$LIPO
7003elif test -n "$ac_cv_prog_LIPO"; then
7004 LIPO=$ac_cv_prog_LIPO
7005fi
7006
7007if test -n "$ac_cv_prog_LIPO"; then
7008 for ncn_progname in lipo; do
7009 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
7010set dummy ${ncn_progname}; ac_word=$2
7011echo "$as_me:$LINENO: checking for $ac_word" >&5
7012echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7013if test "${ac_cv_prog_LIPO+set}" = set; then
7014 echo $ECHO_N "(cached) $ECHO_C" >&6
7015else
7016 if test -n "$LIPO"; then
7017 ac_cv_prog_LIPO="$LIPO" # Let the user override the test.
7018else
7019as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7020for as_dir in $PATH
7021do
7022 IFS=$as_save_IFS
7023 test -z "$as_dir" && as_dir=.
7024 for ac_exec_ext in '' $ac_executable_extensions; do
7025 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7026 ac_cv_prog_LIPO="${ncn_progname}"
7027 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7028 break 2
7029 fi
7030done
7031done
7032
7033fi
7034fi
7035LIPO=$ac_cv_prog_LIPO
7036if test -n "$LIPO"; then
7037 echo "$as_me:$LINENO: result: $LIPO" >&5
7038echo "${ECHO_T}$LIPO" >&6
7039else
7040 echo "$as_me:$LINENO: result: no" >&5
7041echo "${ECHO_T}no" >&6
7042fi
7043
7044 done
7045fi
7046
7047for ncn_progname in lipo; do
be01d343
PB
7048 if test -n "$ncn_tool_prefix"; then
7049 # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
7050set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
7051echo "$as_me:$LINENO: checking for $ac_word" >&5
7052echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7053if test "${ac_cv_prog_LIPO+set}" = set; then
7054 echo $ECHO_N "(cached) $ECHO_C" >&6
be01d343
PB
7055else
7056 if test -n "$LIPO"; then
7057 ac_cv_prog_LIPO="$LIPO" # Let the user override the test.
7058else
c6b750e1
DJ
7059as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7060for as_dir in $PATH
7061do
7062 IFS=$as_save_IFS
7063 test -z "$as_dir" && as_dir=.
7064 for ac_exec_ext in '' $ac_executable_extensions; do
7065 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7066 ac_cv_prog_LIPO="${ncn_tool_prefix}${ncn_progname}"
7067 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7068 break 2
7069 fi
7070done
7071done
7072
be01d343
PB
7073fi
7074fi
c6b750e1 7075LIPO=$ac_cv_prog_LIPO
be01d343 7076if test -n "$LIPO"; then
c6b750e1
DJ
7077 echo "$as_me:$LINENO: result: $LIPO" >&5
7078echo "${ECHO_T}$LIPO" >&6
be01d343 7079else
c6b750e1
DJ
7080 echo "$as_me:$LINENO: result: no" >&5
7081echo "${ECHO_T}no" >&6
be01d343
PB
7082fi
7083
7084 fi
7085 if test -z "$ac_cv_prog_LIPO" && test $build = $host ; then
7086 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
7087set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
7088echo "$as_me:$LINENO: checking for $ac_word" >&5
7089echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7090if test "${ac_cv_prog_LIPO+set}" = set; then
7091 echo $ECHO_N "(cached) $ECHO_C" >&6
be01d343
PB
7092else
7093 if test -n "$LIPO"; then
7094 ac_cv_prog_LIPO="$LIPO" # Let the user override the test.
7095else
c6b750e1
DJ
7096as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7097for as_dir in $PATH
7098do
7099 IFS=$as_save_IFS
7100 test -z "$as_dir" && as_dir=.
7101 for ac_exec_ext in '' $ac_executable_extensions; do
7102 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7103 ac_cv_prog_LIPO="${ncn_progname}"
7104 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7105 break 2
7106 fi
7107done
7108done
7109
be01d343
PB
7110fi
7111fi
c6b750e1 7112LIPO=$ac_cv_prog_LIPO
be01d343 7113if test -n "$LIPO"; then
c6b750e1
DJ
7114 echo "$as_me:$LINENO: result: $LIPO" >&5
7115echo "${ECHO_T}$LIPO" >&6
be01d343 7116else
c6b750e1
DJ
7117 echo "$as_me:$LINENO: result: no" >&5
7118echo "${ECHO_T}no" >&6
be01d343 7119fi
c6b750e1 7120
be01d343
PB
7121 fi
7122 test -n "$ac_cv_prog_LIPO" && break
7123done
7124
7125if test -z "$ac_cv_prog_LIPO" ; then
7126 set dummy lipo
7127 if test $build = $host ; then
7128 LIPO="$2"
7129 else
7130 LIPO="${ncn_tool_prefix}$2"
7131 fi
7132fi
7133
9a819804
AO
7134
7135
7136if test -n "$NM"; then
7137 ac_cv_prog_NM=$NM
7138elif test -n "$ac_cv_prog_NM"; then
7139 NM=$ac_cv_prog_NM
7140fi
7141
7142if test -n "$ac_cv_prog_NM"; then
7143 for ncn_progname in nm; do
7144 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
7145set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
7146echo "$as_me:$LINENO: checking for $ac_word" >&5
7147echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7148if test "${ac_cv_prog_NM+set}" = set; then
7149 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af
AC
7150else
7151 if test -n "$NM"; then
7152 ac_cv_prog_NM="$NM" # Let the user override the test.
7153else
c6b750e1
DJ
7154as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7155for as_dir in $PATH
7156do
7157 IFS=$as_save_IFS
7158 test -z "$as_dir" && as_dir=.
7159 for ac_exec_ext in '' $ac_executable_extensions; do
7160 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9a819804 7161 ac_cv_prog_NM="${ncn_progname}"
c6b750e1
DJ
7162 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7163 break 2
7164 fi
7165done
7166done
7167
859789af
AC
7168fi
7169fi
c6b750e1 7170NM=$ac_cv_prog_NM
859789af 7171if test -n "$NM"; then
c6b750e1
DJ
7172 echo "$as_me:$LINENO: result: $NM" >&5
7173echo "${ECHO_T}$NM" >&6
859789af 7174else
c6b750e1
DJ
7175 echo "$as_me:$LINENO: result: no" >&5
7176echo "${ECHO_T}no" >&6
859789af
AC
7177fi
7178
9a819804
AO
7179 done
7180fi
7181
7182for ncn_progname in nm; do
7183 if test -n "$ncn_tool_prefix"; then
7184 # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
7185set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
7186echo "$as_me:$LINENO: checking for $ac_word" >&5
7187echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7188if test "${ac_cv_prog_NM+set}" = set; then
7189 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af 7190else
05cbd757
PB
7191 if test -n "$NM"; then
7192 ac_cv_prog_NM="$NM" # Let the user override the test.
859789af 7193else
c6b750e1
DJ
7194as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7195for as_dir in $PATH
7196do
7197 IFS=$as_save_IFS
7198 test -z "$as_dir" && as_dir=.
7199 for ac_exec_ext in '' $ac_executable_extensions; do
7200 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9a819804 7201 ac_cv_prog_NM="${ncn_tool_prefix}${ncn_progname}"
c6b750e1
DJ
7202 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7203 break 2
7204 fi
7205done
7206done
7207
859789af
AC
7208fi
7209fi
c6b750e1 7210NM=$ac_cv_prog_NM
05cbd757 7211if test -n "$NM"; then
c6b750e1
DJ
7212 echo "$as_me:$LINENO: result: $NM" >&5
7213echo "${ECHO_T}$NM" >&6
859789af 7214else
c6b750e1
DJ
7215 echo "$as_me:$LINENO: result: no" >&5
7216echo "${ECHO_T}no" >&6
859789af 7217fi
c6b750e1 7218
05cbd757 7219 fi
9a819804
AO
7220 if test -z "$ac_cv_prog_NM" && test $build = $host ; then
7221 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
7222set dummy ${ncn_progname}; ac_word=$2
7223echo "$as_me:$LINENO: checking for $ac_word" >&5
7224echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7225if test "${ac_cv_prog_NM+set}" = set; then
7226 echo $ECHO_N "(cached) $ECHO_C" >&6
7227else
7228 if test -n "$NM"; then
7229 ac_cv_prog_NM="$NM" # Let the user override the test.
7230else
7231as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7232for as_dir in $PATH
7233do
7234 IFS=$as_save_IFS
7235 test -z "$as_dir" && as_dir=.
7236 for ac_exec_ext in '' $ac_executable_extensions; do
7237 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7238 ac_cv_prog_NM="${ncn_progname}"
7239 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7240 break 2
7241 fi
7242done
7243done
7244
7245fi
7246fi
7247NM=$ac_cv_prog_NM
7248if test -n "$NM"; then
7249 echo "$as_me:$LINENO: result: $NM" >&5
7250echo "${ECHO_T}$NM" >&6
7251else
7252 echo "$as_me:$LINENO: result: no" >&5
7253echo "${ECHO_T}no" >&6
7254fi
7255
7256 fi
7257 test -n "$ac_cv_prog_NM" && break
7258done
7259
7260if test -z "$ac_cv_prog_NM" ; then
7261 set dummy nm
7262 if test $build = $host ; then
7263 NM="$2"
7264 else
7265 NM="${ncn_tool_prefix}$2"
7266 fi
7267fi
7268
7269
7270
7271if test -n "$RANLIB"; then
7272 ac_cv_prog_RANLIB=$RANLIB
7273elif test -n "$ac_cv_prog_RANLIB"; then
7274 RANLIB=$ac_cv_prog_RANLIB
7275fi
7276
7277if test -n "$ac_cv_prog_RANLIB"; then
7278 for ncn_progname in ranlib; do
7279 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
7280set dummy ${ncn_progname}; ac_word=$2
7281echo "$as_me:$LINENO: checking for $ac_word" >&5
7282echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7283if test "${ac_cv_prog_RANLIB+set}" = set; then
7284 echo $ECHO_N "(cached) $ECHO_C" >&6
7285else
7286 if test -n "$RANLIB"; then
7287 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
7288else
7289as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7290for as_dir in $PATH
7291do
7292 IFS=$as_save_IFS
7293 test -z "$as_dir" && as_dir=.
7294 for ac_exec_ext in '' $ac_executable_extensions; do
7295 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7296 ac_cv_prog_RANLIB="${ncn_progname}"
7297 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7298 break 2
7299 fi
7300done
7301done
7302
7303fi
7304fi
7305RANLIB=$ac_cv_prog_RANLIB
7306if test -n "$RANLIB"; then
7307 echo "$as_me:$LINENO: result: $RANLIB" >&5
7308echo "${ECHO_T}$RANLIB" >&6
7309else
7310 echo "$as_me:$LINENO: result: no" >&5
7311echo "${ECHO_T}no" >&6
7312fi
7313
7314 done
7315fi
859789af 7316
9a819804 7317for ncn_progname in ranlib; do
05cbd757
PB
7318 if test -n "$ncn_tool_prefix"; then
7319 # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
7320set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
7321echo "$as_me:$LINENO: checking for $ac_word" >&5
7322echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7323if test "${ac_cv_prog_RANLIB+set}" = set; then
7324 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af
AC
7325else
7326 if test -n "$RANLIB"; then
7327 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
7328else
c6b750e1
DJ
7329as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7330for as_dir in $PATH
7331do
7332 IFS=$as_save_IFS
7333 test -z "$as_dir" && as_dir=.
7334 for ac_exec_ext in '' $ac_executable_extensions; do
7335 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7336 ac_cv_prog_RANLIB="${ncn_tool_prefix}${ncn_progname}"
7337 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7338 break 2
7339 fi
7340done
7341done
7342
859789af
AC
7343fi
7344fi
c6b750e1 7345RANLIB=$ac_cv_prog_RANLIB
859789af 7346if test -n "$RANLIB"; then
c6b750e1
DJ
7347 echo "$as_me:$LINENO: result: $RANLIB" >&5
7348echo "${ECHO_T}$RANLIB" >&6
859789af 7349else
c6b750e1
DJ
7350 echo "$as_me:$LINENO: result: no" >&5
7351echo "${ECHO_T}no" >&6
859789af
AC
7352fi
7353
05cbd757
PB
7354 fi
7355 if test -z "$ac_cv_prog_RANLIB" && test $build = $host ; then
7356 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
7357set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
7358echo "$as_me:$LINENO: checking for $ac_word" >&5
7359echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7360if test "${ac_cv_prog_RANLIB+set}" = set; then
7361 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af 7362else
05cbd757
PB
7363 if test -n "$RANLIB"; then
7364 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
859789af 7365else
c6b750e1
DJ
7366as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7367for as_dir in $PATH
7368do
7369 IFS=$as_save_IFS
7370 test -z "$as_dir" && as_dir=.
7371 for ac_exec_ext in '' $ac_executable_extensions; do
7372 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7373 ac_cv_prog_RANLIB="${ncn_progname}"
7374 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7375 break 2
7376 fi
7377done
7378done
7379
859789af
AC
7380fi
7381fi
c6b750e1 7382RANLIB=$ac_cv_prog_RANLIB
05cbd757 7383if test -n "$RANLIB"; then
c6b750e1
DJ
7384 echo "$as_me:$LINENO: result: $RANLIB" >&5
7385echo "${ECHO_T}$RANLIB" >&6
859789af 7386else
c6b750e1
DJ
7387 echo "$as_me:$LINENO: result: no" >&5
7388echo "${ECHO_T}no" >&6
859789af 7389fi
c6b750e1 7390
859789af 7391 fi
05cbd757
PB
7392 test -n "$ac_cv_prog_RANLIB" && break
7393done
7394
7395if test -z "$ac_cv_prog_RANLIB" ; then
7396 RANLIB=":"
859789af
AC
7397fi
7398
9a819804
AO
7399
7400
7401if test -n "$STRIP"; then
7402 ac_cv_prog_STRIP=$STRIP
7403elif test -n "$ac_cv_prog_STRIP"; then
7404 STRIP=$ac_cv_prog_STRIP
7405fi
7406
7407if test -n "$ac_cv_prog_STRIP"; then
7408 for ncn_progname in strip; do
7409 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
7410set dummy ${ncn_progname}; ac_word=$2
7411echo "$as_me:$LINENO: checking for $ac_word" >&5
7412echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7413if test "${ac_cv_prog_STRIP+set}" = set; then
7414 echo $ECHO_N "(cached) $ECHO_C" >&6
7415else
7416 if test -n "$STRIP"; then
7417 ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
7418else
7419as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7420for as_dir in $PATH
7421do
7422 IFS=$as_save_IFS
7423 test -z "$as_dir" && as_dir=.
7424 for ac_exec_ext in '' $ac_executable_extensions; do
7425 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7426 ac_cv_prog_STRIP="${ncn_progname}"
7427 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7428 break 2
7429 fi
7430done
7431done
7432
7433fi
7434fi
7435STRIP=$ac_cv_prog_STRIP
7436if test -n "$STRIP"; then
7437 echo "$as_me:$LINENO: result: $STRIP" >&5
7438echo "${ECHO_T}$STRIP" >&6
7439else
7440 echo "$as_me:$LINENO: result: no" >&5
7441echo "${ECHO_T}no" >&6
7442fi
7443
7444 done
7445fi
7446
7447for ncn_progname in strip; do
be01d343
PB
7448 if test -n "$ncn_tool_prefix"; then
7449 # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
7450set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
7451echo "$as_me:$LINENO: checking for $ac_word" >&5
7452echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7453if test "${ac_cv_prog_STRIP+set}" = set; then
7454 echo $ECHO_N "(cached) $ECHO_C" >&6
be01d343
PB
7455else
7456 if test -n "$STRIP"; then
7457 ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
7458else
c6b750e1
DJ
7459as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7460for as_dir in $PATH
7461do
7462 IFS=$as_save_IFS
7463 test -z "$as_dir" && as_dir=.
7464 for ac_exec_ext in '' $ac_executable_extensions; do
7465 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7466 ac_cv_prog_STRIP="${ncn_tool_prefix}${ncn_progname}"
7467 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7468 break 2
7469 fi
7470done
7471done
7472
be01d343
PB
7473fi
7474fi
c6b750e1 7475STRIP=$ac_cv_prog_STRIP
be01d343 7476if test -n "$STRIP"; then
c6b750e1
DJ
7477 echo "$as_me:$LINENO: result: $STRIP" >&5
7478echo "${ECHO_T}$STRIP" >&6
be01d343 7479else
c6b750e1
DJ
7480 echo "$as_me:$LINENO: result: no" >&5
7481echo "${ECHO_T}no" >&6
be01d343
PB
7482fi
7483
7484 fi
7485 if test -z "$ac_cv_prog_STRIP" && test $build = $host ; then
7486 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
7487set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
7488echo "$as_me:$LINENO: checking for $ac_word" >&5
7489echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7490if test "${ac_cv_prog_STRIP+set}" = set; then
7491 echo $ECHO_N "(cached) $ECHO_C" >&6
be01d343
PB
7492else
7493 if test -n "$STRIP"; then
7494 ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
7495else
c6b750e1
DJ
7496as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7497for as_dir in $PATH
7498do
7499 IFS=$as_save_IFS
7500 test -z "$as_dir" && as_dir=.
7501 for ac_exec_ext in '' $ac_executable_extensions; do
7502 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7503 ac_cv_prog_STRIP="${ncn_progname}"
7504 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7505 break 2
7506 fi
7507done
7508done
7509
be01d343
PB
7510fi
7511fi
c6b750e1 7512STRIP=$ac_cv_prog_STRIP
be01d343 7513if test -n "$STRIP"; then
c6b750e1
DJ
7514 echo "$as_me:$LINENO: result: $STRIP" >&5
7515echo "${ECHO_T}$STRIP" >&6
be01d343 7516else
c6b750e1
DJ
7517 echo "$as_me:$LINENO: result: no" >&5
7518echo "${ECHO_T}no" >&6
be01d343 7519fi
c6b750e1 7520
be01d343
PB
7521 fi
7522 test -n "$ac_cv_prog_STRIP" && break
7523done
7524
7525if test -z "$ac_cv_prog_STRIP" ; then
7526 STRIP=":"
7527fi
7528
9a819804
AO
7529
7530
7531if test -n "$WINDRES"; then
7532 ac_cv_prog_WINDRES=$WINDRES
7533elif test -n "$ac_cv_prog_WINDRES"; then
7534 WINDRES=$ac_cv_prog_WINDRES
7535fi
7536
7537if test -n "$ac_cv_prog_WINDRES"; then
7538 for ncn_progname in windres; do
7539 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
7540set dummy ${ncn_progname}; ac_word=$2
7541echo "$as_me:$LINENO: checking for $ac_word" >&5
7542echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7543if test "${ac_cv_prog_WINDRES+set}" = set; then
7544 echo $ECHO_N "(cached) $ECHO_C" >&6
7545else
7546 if test -n "$WINDRES"; then
7547 ac_cv_prog_WINDRES="$WINDRES" # Let the user override the test.
7548else
7549as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7550for as_dir in $PATH
7551do
7552 IFS=$as_save_IFS
7553 test -z "$as_dir" && as_dir=.
7554 for ac_exec_ext in '' $ac_executable_extensions; do
7555 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7556 ac_cv_prog_WINDRES="${ncn_progname}"
7557 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7558 break 2
7559 fi
7560done
7561done
7562
7563fi
7564fi
7565WINDRES=$ac_cv_prog_WINDRES
7566if test -n "$WINDRES"; then
7567 echo "$as_me:$LINENO: result: $WINDRES" >&5
7568echo "${ECHO_T}$WINDRES" >&6
7569else
7570 echo "$as_me:$LINENO: result: no" >&5
7571echo "${ECHO_T}no" >&6
7572fi
7573
7574 done
7575fi
7576
7577for ncn_progname in windres; do
05cbd757
PB
7578 if test -n "$ncn_tool_prefix"; then
7579 # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
7580set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
7581echo "$as_me:$LINENO: checking for $ac_word" >&5
7582echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7583if test "${ac_cv_prog_WINDRES+set}" = set; then
7584 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af
AC
7585else
7586 if test -n "$WINDRES"; then
7587 ac_cv_prog_WINDRES="$WINDRES" # Let the user override the test.
7588else
c6b750e1
DJ
7589as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7590for as_dir in $PATH
7591do
7592 IFS=$as_save_IFS
7593 test -z "$as_dir" && as_dir=.
7594 for ac_exec_ext in '' $ac_executable_extensions; do
7595 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7596 ac_cv_prog_WINDRES="${ncn_tool_prefix}${ncn_progname}"
7597 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7598 break 2
7599 fi
7600done
7601done
7602
859789af
AC
7603fi
7604fi
c6b750e1 7605WINDRES=$ac_cv_prog_WINDRES
859789af 7606if test -n "$WINDRES"; then
c6b750e1
DJ
7607 echo "$as_me:$LINENO: result: $WINDRES" >&5
7608echo "${ECHO_T}$WINDRES" >&6
859789af 7609else
c6b750e1
DJ
7610 echo "$as_me:$LINENO: result: no" >&5
7611echo "${ECHO_T}no" >&6
859789af
AC
7612fi
7613
05cbd757
PB
7614 fi
7615 if test -z "$ac_cv_prog_WINDRES" && test $build = $host ; then
7616 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
7617set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
7618echo "$as_me:$LINENO: checking for $ac_word" >&5
7619echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7620if test "${ac_cv_prog_WINDRES+set}" = set; then
7621 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af 7622else
05cbd757
PB
7623 if test -n "$WINDRES"; then
7624 ac_cv_prog_WINDRES="$WINDRES" # Let the user override the test.
859789af 7625else
c6b750e1
DJ
7626as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7627for as_dir in $PATH
7628do
7629 IFS=$as_save_IFS
7630 test -z "$as_dir" && as_dir=.
7631 for ac_exec_ext in '' $ac_executable_extensions; do
7632 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7633 ac_cv_prog_WINDRES="${ncn_progname}"
7634 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7635 break 2
7636 fi
7637done
7638done
7639
859789af
AC
7640fi
7641fi
c6b750e1 7642WINDRES=$ac_cv_prog_WINDRES
05cbd757 7643if test -n "$WINDRES"; then
c6b750e1
DJ
7644 echo "$as_me:$LINENO: result: $WINDRES" >&5
7645echo "${ECHO_T}$WINDRES" >&6
859789af 7646else
c6b750e1
DJ
7647 echo "$as_me:$LINENO: result: no" >&5
7648echo "${ECHO_T}no" >&6
859789af 7649fi
c6b750e1 7650
05cbd757
PB
7651 fi
7652 test -n "$ac_cv_prog_WINDRES" && break
7653done
7654
7655if test -z "$ac_cv_prog_WINDRES" ; then
7656 set dummy windres
7657 if test $build = $host ; then
7658 WINDRES="$2"
859789af 7659 else
05cbd757 7660 WINDRES="${ncn_tool_prefix}$2"
859789af 7661 fi
859789af
AC
7662fi
7663
9a819804
AO
7664
7665
0c24b341
NC
7666if test -n "$WINDMC"; then
7667 ac_cv_prog_WINDMC=$WINDMC
7668elif test -n "$ac_cv_prog_WINDMC"; then
7669 WINDMC=$ac_cv_prog_WINDMC
7670fi
7671
7672if test -n "$ac_cv_prog_WINDMC"; then
7673 for ncn_progname in windmc; do
7674 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
7675set dummy ${ncn_progname}; ac_word=$2
7676echo "$as_me:$LINENO: checking for $ac_word" >&5
7677echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7678if test "${ac_cv_prog_WINDMC+set}" = set; then
7679 echo $ECHO_N "(cached) $ECHO_C" >&6
7680else
7681 if test -n "$WINDMC"; then
7682 ac_cv_prog_WINDMC="$WINDMC" # Let the user override the test.
7683else
7684as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7685for as_dir in $PATH
7686do
7687 IFS=$as_save_IFS
7688 test -z "$as_dir" && as_dir=.
7689 for ac_exec_ext in '' $ac_executable_extensions; do
7690 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7691 ac_cv_prog_WINDMC="${ncn_progname}"
7692 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7693 break 2
7694 fi
7695done
7696done
7697
7698fi
7699fi
7700WINDMC=$ac_cv_prog_WINDMC
7701if test -n "$WINDMC"; then
7702 echo "$as_me:$LINENO: result: $WINDMC" >&5
7703echo "${ECHO_T}$WINDMC" >&6
7704else
7705 echo "$as_me:$LINENO: result: no" >&5
7706echo "${ECHO_T}no" >&6
7707fi
7708
7709 done
7710fi
7711
7712for ncn_progname in windmc; do
7713 if test -n "$ncn_tool_prefix"; then
7714 # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
7715set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
7716echo "$as_me:$LINENO: checking for $ac_word" >&5
7717echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7718if test "${ac_cv_prog_WINDMC+set}" = set; then
7719 echo $ECHO_N "(cached) $ECHO_C" >&6
7720else
7721 if test -n "$WINDMC"; then
7722 ac_cv_prog_WINDMC="$WINDMC" # Let the user override the test.
7723else
7724as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7725for as_dir in $PATH
7726do
7727 IFS=$as_save_IFS
7728 test -z "$as_dir" && as_dir=.
7729 for ac_exec_ext in '' $ac_executable_extensions; do
7730 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7731 ac_cv_prog_WINDMC="${ncn_tool_prefix}${ncn_progname}"
7732 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7733 break 2
7734 fi
7735done
7736done
7737
7738fi
7739fi
7740WINDMC=$ac_cv_prog_WINDMC
7741if test -n "$WINDMC"; then
7742 echo "$as_me:$LINENO: result: $WINDMC" >&5
7743echo "${ECHO_T}$WINDMC" >&6
7744else
7745 echo "$as_me:$LINENO: result: no" >&5
7746echo "${ECHO_T}no" >&6
7747fi
7748
7749 fi
7750 if test -z "$ac_cv_prog_WINDMC" && test $build = $host ; then
7751 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
7752set dummy ${ncn_progname}; ac_word=$2
7753echo "$as_me:$LINENO: checking for $ac_word" >&5
7754echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7755if test "${ac_cv_prog_WINDMC+set}" = set; then
7756 echo $ECHO_N "(cached) $ECHO_C" >&6
7757else
7758 if test -n "$WINDMC"; then
7759 ac_cv_prog_WINDMC="$WINDMC" # Let the user override the test.
7760else
7761as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7762for as_dir in $PATH
7763do
7764 IFS=$as_save_IFS
7765 test -z "$as_dir" && as_dir=.
7766 for ac_exec_ext in '' $ac_executable_extensions; do
7767 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7768 ac_cv_prog_WINDMC="${ncn_progname}"
7769 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7770 break 2
7771 fi
7772done
7773done
7774
7775fi
7776fi
7777WINDMC=$ac_cv_prog_WINDMC
7778if test -n "$WINDMC"; then
7779 echo "$as_me:$LINENO: result: $WINDMC" >&5
7780echo "${ECHO_T}$WINDMC" >&6
7781else
7782 echo "$as_me:$LINENO: result: no" >&5
7783echo "${ECHO_T}no" >&6
7784fi
7785
7786 fi
7787 test -n "$ac_cv_prog_WINDMC" && break
7788done
7789
7790if test -z "$ac_cv_prog_WINDMC" ; then
7791 set dummy windmc
7792 if test $build = $host ; then
7793 WINDMC="$2"
7794 else
7795 WINDMC="${ncn_tool_prefix}$2"
7796 fi
7797fi
7798
7799
7800
9a819804
AO
7801if test -n "$OBJCOPY"; then
7802 ac_cv_prog_OBJCOPY=$OBJCOPY
7803elif test -n "$ac_cv_prog_OBJCOPY"; then
7804 OBJCOPY=$ac_cv_prog_OBJCOPY
7805fi
7806
7807if test -n "$ac_cv_prog_OBJCOPY"; then
7808 for ncn_progname in objcopy; do
7809 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
7810set dummy ${ncn_progname}; ac_word=$2
7811echo "$as_me:$LINENO: checking for $ac_word" >&5
7812echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7813if test "${ac_cv_prog_OBJCOPY+set}" = set; then
7814 echo $ECHO_N "(cached) $ECHO_C" >&6
7815else
7816 if test -n "$OBJCOPY"; then
7817 ac_cv_prog_OBJCOPY="$OBJCOPY" # Let the user override the test.
7818else
7819as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7820for as_dir in $PATH
7821do
7822 IFS=$as_save_IFS
7823 test -z "$as_dir" && as_dir=.
7824 for ac_exec_ext in '' $ac_executable_extensions; do
7825 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7826 ac_cv_prog_OBJCOPY="${ncn_progname}"
7827 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7828 break 2
7829 fi
7830done
7831done
7832
7833fi
7834fi
7835OBJCOPY=$ac_cv_prog_OBJCOPY
7836if test -n "$OBJCOPY"; then
7837 echo "$as_me:$LINENO: result: $OBJCOPY" >&5
7838echo "${ECHO_T}$OBJCOPY" >&6
7839else
7840 echo "$as_me:$LINENO: result: no" >&5
7841echo "${ECHO_T}no" >&6
7842fi
7843
7844 done
7845fi
7846
7847for ncn_progname in objcopy; do
05cbd757
PB
7848 if test -n "$ncn_tool_prefix"; then
7849 # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
7850set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
7851echo "$as_me:$LINENO: checking for $ac_word" >&5
7852echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7853if test "${ac_cv_prog_OBJCOPY+set}" = set; then
7854 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af
AC
7855else
7856 if test -n "$OBJCOPY"; then
7857 ac_cv_prog_OBJCOPY="$OBJCOPY" # Let the user override the test.
7858else
c6b750e1
DJ
7859as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7860for as_dir in $PATH
7861do
7862 IFS=$as_save_IFS
7863 test -z "$as_dir" && as_dir=.
7864 for ac_exec_ext in '' $ac_executable_extensions; do
7865 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7866 ac_cv_prog_OBJCOPY="${ncn_tool_prefix}${ncn_progname}"
7867 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7868 break 2
7869 fi
7870done
7871done
7872
859789af
AC
7873fi
7874fi
c6b750e1 7875OBJCOPY=$ac_cv_prog_OBJCOPY
859789af 7876if test -n "$OBJCOPY"; then
c6b750e1
DJ
7877 echo "$as_me:$LINENO: result: $OBJCOPY" >&5
7878echo "${ECHO_T}$OBJCOPY" >&6
859789af 7879else
c6b750e1
DJ
7880 echo "$as_me:$LINENO: result: no" >&5
7881echo "${ECHO_T}no" >&6
859789af
AC
7882fi
7883
05cbd757
PB
7884 fi
7885 if test -z "$ac_cv_prog_OBJCOPY" && test $build = $host ; then
7886 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
7887set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
7888echo "$as_me:$LINENO: checking for $ac_word" >&5
7889echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7890if test "${ac_cv_prog_OBJCOPY+set}" = set; then
7891 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af 7892else
05cbd757
PB
7893 if test -n "$OBJCOPY"; then
7894 ac_cv_prog_OBJCOPY="$OBJCOPY" # Let the user override the test.
859789af 7895else
c6b750e1
DJ
7896as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7897for as_dir in $PATH
7898do
7899 IFS=$as_save_IFS
7900 test -z "$as_dir" && as_dir=.
7901 for ac_exec_ext in '' $ac_executable_extensions; do
7902 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7903 ac_cv_prog_OBJCOPY="${ncn_progname}"
7904 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7905 break 2
7906 fi
7907done
7908done
7909
859789af
AC
7910fi
7911fi
c6b750e1 7912OBJCOPY=$ac_cv_prog_OBJCOPY
05cbd757 7913if test -n "$OBJCOPY"; then
c6b750e1
DJ
7914 echo "$as_me:$LINENO: result: $OBJCOPY" >&5
7915echo "${ECHO_T}$OBJCOPY" >&6
859789af 7916else
c6b750e1
DJ
7917 echo "$as_me:$LINENO: result: no" >&5
7918echo "${ECHO_T}no" >&6
859789af 7919fi
c6b750e1 7920
05cbd757
PB
7921 fi
7922 test -n "$ac_cv_prog_OBJCOPY" && break
7923done
7924
7925if test -z "$ac_cv_prog_OBJCOPY" ; then
7926 set dummy objcopy
7927 if test $build = $host ; then
7928 OBJCOPY="$2"
859789af 7929 else
05cbd757 7930 OBJCOPY="${ncn_tool_prefix}$2"
859789af 7931 fi
859789af
AC
7932fi
7933
9a819804
AO
7934
7935
7936if test -n "$OBJDUMP"; then
7937 ac_cv_prog_OBJDUMP=$OBJDUMP
7938elif test -n "$ac_cv_prog_OBJDUMP"; then
7939 OBJDUMP=$ac_cv_prog_OBJDUMP
7940fi
7941
7942if test -n "$ac_cv_prog_OBJDUMP"; then
7943 for ncn_progname in objdump; do
7944 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
7945set dummy ${ncn_progname}; ac_word=$2
7946echo "$as_me:$LINENO: checking for $ac_word" >&5
7947echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7948if test "${ac_cv_prog_OBJDUMP+set}" = set; then
7949 echo $ECHO_N "(cached) $ECHO_C" >&6
7950else
7951 if test -n "$OBJDUMP"; then
7952 ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test.
7953else
7954as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7955for as_dir in $PATH
7956do
7957 IFS=$as_save_IFS
7958 test -z "$as_dir" && as_dir=.
7959 for ac_exec_ext in '' $ac_executable_extensions; do
7960 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7961 ac_cv_prog_OBJDUMP="${ncn_progname}"
7962 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7963 break 2
7964 fi
7965done
7966done
7967
7968fi
7969fi
7970OBJDUMP=$ac_cv_prog_OBJDUMP
7971if test -n "$OBJDUMP"; then
7972 echo "$as_me:$LINENO: result: $OBJDUMP" >&5
7973echo "${ECHO_T}$OBJDUMP" >&6
7974else
7975 echo "$as_me:$LINENO: result: no" >&5
7976echo "${ECHO_T}no" >&6
7977fi
7978
7979 done
7980fi
7981
7982for ncn_progname in objdump; do
05cbd757
PB
7983 if test -n "$ncn_tool_prefix"; then
7984 # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
7985set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
7986echo "$as_me:$LINENO: checking for $ac_word" >&5
7987echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7988if test "${ac_cv_prog_OBJDUMP+set}" = set; then
7989 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af
AC
7990else
7991 if test -n "$OBJDUMP"; then
7992 ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test.
7993else
c6b750e1
DJ
7994as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7995for as_dir in $PATH
7996do
7997 IFS=$as_save_IFS
7998 test -z "$as_dir" && as_dir=.
7999 for ac_exec_ext in '' $ac_executable_extensions; do
8000 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
8001 ac_cv_prog_OBJDUMP="${ncn_tool_prefix}${ncn_progname}"
8002 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8003 break 2
8004 fi
8005done
8006done
8007
859789af
AC
8008fi
8009fi
c6b750e1 8010OBJDUMP=$ac_cv_prog_OBJDUMP
859789af 8011if test -n "$OBJDUMP"; then
c6b750e1
DJ
8012 echo "$as_me:$LINENO: result: $OBJDUMP" >&5
8013echo "${ECHO_T}$OBJDUMP" >&6
859789af 8014else
c6b750e1
DJ
8015 echo "$as_me:$LINENO: result: no" >&5
8016echo "${ECHO_T}no" >&6
859789af
AC
8017fi
8018
05cbd757
PB
8019 fi
8020 if test -z "$ac_cv_prog_OBJDUMP" && test $build = $host ; then
8021 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
8022set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
8023echo "$as_me:$LINENO: checking for $ac_word" >&5
8024echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8025if test "${ac_cv_prog_OBJDUMP+set}" = set; then
8026 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af 8027else
05cbd757
PB
8028 if test -n "$OBJDUMP"; then
8029 ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test.
859789af 8030else
c6b750e1
DJ
8031as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8032for as_dir in $PATH
8033do
8034 IFS=$as_save_IFS
8035 test -z "$as_dir" && as_dir=.
8036 for ac_exec_ext in '' $ac_executable_extensions; do
8037 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
8038 ac_cv_prog_OBJDUMP="${ncn_progname}"
8039 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8040 break 2
8041 fi
8042done
8043done
8044
859789af
AC
8045fi
8046fi
c6b750e1 8047OBJDUMP=$ac_cv_prog_OBJDUMP
05cbd757 8048if test -n "$OBJDUMP"; then
c6b750e1
DJ
8049 echo "$as_me:$LINENO: result: $OBJDUMP" >&5
8050echo "${ECHO_T}$OBJDUMP" >&6
859789af 8051else
c6b750e1
DJ
8052 echo "$as_me:$LINENO: result: no" >&5
8053echo "${ECHO_T}no" >&6
859789af 8054fi
c6b750e1 8055
05cbd757
PB
8056 fi
8057 test -n "$ac_cv_prog_OBJDUMP" && break
8058done
8059
8060if test -z "$ac_cv_prog_OBJDUMP" ; then
8061 set dummy objdump
8062 if test $build = $host ; then
8063 OBJDUMP="$2"
859789af 8064 else
05cbd757 8065 OBJDUMP="${ncn_tool_prefix}$2"
859789af 8066 fi
859789af
AC
8067fi
8068
a0da8069
NN
8069
8070
8071
8072
8073
be01d343 8074# Target tools.
c6b750e1 8075
2429c060
PB
8076# Check whether --with-build-time-tools or --without-build-time-tools was given.
8077if test "${with_build_time_tools+set}" = set; then
8078 withval="$with_build_time_tools"
8079 case x"$withval" in
8080 x/*) ;;
8081 *)
8082 with_build_time_tools=
c6b750e1
DJ
8083 { echo "$as_me:$LINENO: WARNING: argument to --with-build-time-tools must be an absolute path" >&5
8084echo "$as_me: WARNING: argument to --with-build-time-tools must be an absolute path" >&2;}
2429c060
PB
8085 ;;
8086 esac
859789af 8087else
2429c060 8088 with_build_time_tools=
c6b750e1 8089fi;
859789af 8090
9a819804
AO
8091
8092
8093if test -n "$CC_FOR_TARGET"; then
8094 ac_cv_prog_CC_FOR_TARGET=$CC_FOR_TARGET
8095elif test -n "$ac_cv_prog_CC_FOR_TARGET"; then
8096 CC_FOR_TARGET=$ac_cv_prog_CC_FOR_TARGET
8097fi
8098
8099if test -n "$ac_cv_prog_CC_FOR_TARGET"; then
8100 for ncn_progname in cc gcc; do
8101 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
8102set dummy ${ncn_progname}; ac_word=$2
8103echo "$as_me:$LINENO: checking for $ac_word" >&5
8104echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8105if test "${ac_cv_prog_CC_FOR_TARGET+set}" = set; then
8106 echo $ECHO_N "(cached) $ECHO_C" >&6
8107else
8108 if test -n "$CC_FOR_TARGET"; then
8109 ac_cv_prog_CC_FOR_TARGET="$CC_FOR_TARGET" # Let the user override the test.
8110else
8111as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8112for as_dir in $PATH
8113do
8114 IFS=$as_save_IFS
8115 test -z "$as_dir" && as_dir=.
8116 for ac_exec_ext in '' $ac_executable_extensions; do
8117 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
8118 ac_cv_prog_CC_FOR_TARGET="${ncn_progname}"
8119 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8120 break 2
8121 fi
8122done
8123done
8124
8125fi
8126fi
8127CC_FOR_TARGET=$ac_cv_prog_CC_FOR_TARGET
8128if test -n "$CC_FOR_TARGET"; then
8129 echo "$as_me:$LINENO: result: $CC_FOR_TARGET" >&5
8130echo "${ECHO_T}$CC_FOR_TARGET" >&6
8131else
8132 echo "$as_me:$LINENO: result: no" >&5
8133echo "${ECHO_T}no" >&6
8134fi
8135
8136 done
8137fi
8138
8139if test -z "$ac_cv_prog_CC_FOR_TARGET" && test -n "$with_build_time_tools"; then
2429c060 8140 for ncn_progname in cc gcc; do
c6b750e1
DJ
8141 echo "$as_me:$LINENO: checking for ${ncn_progname} in $with_build_time_tools" >&5
8142echo $ECHO_N "checking for ${ncn_progname} in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
8143 if test -x $with_build_time_tools/${ncn_progname}; then
8144 ac_cv_prog_CC_FOR_TARGET=$with_build_time_tools/${ncn_progname}
c6b750e1
DJ
8145 echo "$as_me:$LINENO: result: yes" >&5
8146echo "${ECHO_T}yes" >&6
cac3d6c4 8147 break
2429c060 8148 else
c6b750e1
DJ
8149 echo "$as_me:$LINENO: result: no" >&5
8150echo "${ECHO_T}no" >&6
cac3d6c4
CM
8151 fi
8152 done
55db4b87
PB
8153fi
8154
2429c060
PB
8155if test -z "$ac_cv_prog_CC_FOR_TARGET"; then
8156 for ncn_progname in cc gcc; do
8157 if test -n "$ncn_target_tool_prefix"; then
8158 # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
05cbd757 8159set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
8160echo "$as_me:$LINENO: checking for $ac_word" >&5
8161echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8162if test "${ac_cv_prog_CC_FOR_TARGET+set}" = set; then
8163 echo $ECHO_N "(cached) $ECHO_C" >&6
55db4b87
PB
8164else
8165 if test -n "$CC_FOR_TARGET"; then
8166 ac_cv_prog_CC_FOR_TARGET="$CC_FOR_TARGET" # Let the user override the test.
8167else
c6b750e1
DJ
8168as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8169for as_dir in $PATH
8170do
8171 IFS=$as_save_IFS
8172 test -z "$as_dir" && as_dir=.
8173 for ac_exec_ext in '' $ac_executable_extensions; do
8174 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
8175 ac_cv_prog_CC_FOR_TARGET="${ncn_target_tool_prefix}${ncn_progname}"
8176 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8177 break 2
8178 fi
8179done
8180done
8181
55db4b87
PB
8182fi
8183fi
c6b750e1 8184CC_FOR_TARGET=$ac_cv_prog_CC_FOR_TARGET
55db4b87 8185if test -n "$CC_FOR_TARGET"; then
c6b750e1
DJ
8186 echo "$as_me:$LINENO: result: $CC_FOR_TARGET" >&5
8187echo "${ECHO_T}$CC_FOR_TARGET" >&6
55db4b87 8188else
c6b750e1
DJ
8189 echo "$as_me:$LINENO: result: no" >&5
8190echo "${ECHO_T}no" >&6
55db4b87
PB
8191fi
8192
2429c060
PB
8193 fi
8194 if test -z "$ac_cv_prog_CC_FOR_TARGET" && test $build = $target ; then
8195 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
05cbd757 8196set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
8197echo "$as_me:$LINENO: checking for $ac_word" >&5
8198echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8199if test "${ac_cv_prog_CC_FOR_TARGET+set}" = set; then
8200 echo $ECHO_N "(cached) $ECHO_C" >&6
55db4b87 8201else
05cbd757
PB
8202 if test -n "$CC_FOR_TARGET"; then
8203 ac_cv_prog_CC_FOR_TARGET="$CC_FOR_TARGET" # Let the user override the test.
55db4b87 8204else
c6b750e1
DJ
8205as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8206for as_dir in $PATH
8207do
8208 IFS=$as_save_IFS
8209 test -z "$as_dir" && as_dir=.
8210 for ac_exec_ext in '' $ac_executable_extensions; do
8211 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
8212 ac_cv_prog_CC_FOR_TARGET="${ncn_progname}"
8213 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8214 break 2
8215 fi
8216done
8217done
8218
55db4b87
PB
8219fi
8220fi
c6b750e1 8221CC_FOR_TARGET=$ac_cv_prog_CC_FOR_TARGET
05cbd757 8222if test -n "$CC_FOR_TARGET"; then
c6b750e1
DJ
8223 echo "$as_me:$LINENO: result: $CC_FOR_TARGET" >&5
8224echo "${ECHO_T}$CC_FOR_TARGET" >&6
55db4b87 8225else
c6b750e1
DJ
8226 echo "$as_me:$LINENO: result: no" >&5
8227echo "${ECHO_T}no" >&6
55db4b87 8228fi
c6b750e1 8229
2429c060
PB
8230 fi
8231 test -n "$ac_cv_prog_CC_FOR_TARGET" && break
8232 done
8233fi
c6b750e1 8234
05cbd757
PB
8235if test -z "$ac_cv_prog_CC_FOR_TARGET" ; then
8236 set dummy cc gcc
8237 if test $build = $target ; then
8238 CC_FOR_TARGET="$2"
55db4b87 8239 else
05cbd757 8240 CC_FOR_TARGET="${ncn_target_tool_prefix}$2"
55db4b87 8241 fi
d3f5afc4
MS
8242else
8243 CC_FOR_TARGET="$ac_cv_prog_CC_FOR_TARGET"
55db4b87
PB
8244fi
8245
9a819804
AO
8246
8247
8248if test -n "$CXX_FOR_TARGET"; then
8249 ac_cv_prog_CXX_FOR_TARGET=$CXX_FOR_TARGET
8250elif test -n "$ac_cv_prog_CXX_FOR_TARGET"; then
8251 CXX_FOR_TARGET=$ac_cv_prog_CXX_FOR_TARGET
8252fi
8253
8254if test -n "$ac_cv_prog_CXX_FOR_TARGET"; then
8255 for ncn_progname in c++ g++ cxx gxx; do
8256 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
8257set dummy ${ncn_progname}; ac_word=$2
8258echo "$as_me:$LINENO: checking for $ac_word" >&5
8259echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8260if test "${ac_cv_prog_CXX_FOR_TARGET+set}" = set; then
8261 echo $ECHO_N "(cached) $ECHO_C" >&6
8262else
8263 if test -n "$CXX_FOR_TARGET"; then
8264 ac_cv_prog_CXX_FOR_TARGET="$CXX_FOR_TARGET" # Let the user override the test.
8265else
8266as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8267for as_dir in $PATH
8268do
8269 IFS=$as_save_IFS
8270 test -z "$as_dir" && as_dir=.
8271 for ac_exec_ext in '' $ac_executable_extensions; do
8272 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
8273 ac_cv_prog_CXX_FOR_TARGET="${ncn_progname}"
8274 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8275 break 2
8276 fi
8277done
8278done
8279
8280fi
8281fi
8282CXX_FOR_TARGET=$ac_cv_prog_CXX_FOR_TARGET
8283if test -n "$CXX_FOR_TARGET"; then
8284 echo "$as_me:$LINENO: result: $CXX_FOR_TARGET" >&5
8285echo "${ECHO_T}$CXX_FOR_TARGET" >&6
8286else
8287 echo "$as_me:$LINENO: result: no" >&5
8288echo "${ECHO_T}no" >&6
8289fi
8290
8291 done
8292fi
8293
8294if test -z "$ac_cv_prog_CXX_FOR_TARGET" && test -n "$with_build_time_tools"; then
2429c060 8295 for ncn_progname in c++ g++ cxx gxx; do
c6b750e1
DJ
8296 echo "$as_me:$LINENO: checking for ${ncn_progname} in $with_build_time_tools" >&5
8297echo $ECHO_N "checking for ${ncn_progname} in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
8298 if test -x $with_build_time_tools/${ncn_progname}; then
8299 ac_cv_prog_CXX_FOR_TARGET=$with_build_time_tools/${ncn_progname}
c6b750e1
DJ
8300 echo "$as_me:$LINENO: result: yes" >&5
8301echo "${ECHO_T}yes" >&6
2429c060
PB
8302 break
8303 else
c6b750e1
DJ
8304 echo "$as_me:$LINENO: result: no" >&5
8305echo "${ECHO_T}no" >&6
2429c060
PB
8306 fi
8307 done
8308fi
8309
8310if test -z "$ac_cv_prog_CXX_FOR_TARGET"; then
8311 for ncn_progname in c++ g++ cxx gxx; do
8312 if test -n "$ncn_target_tool_prefix"; then
8313 # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
05cbd757 8314set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
8315echo "$as_me:$LINENO: checking for $ac_word" >&5
8316echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8317if test "${ac_cv_prog_CXX_FOR_TARGET+set}" = set; then
8318 echo $ECHO_N "(cached) $ECHO_C" >&6
55db4b87
PB
8319else
8320 if test -n "$CXX_FOR_TARGET"; then
8321 ac_cv_prog_CXX_FOR_TARGET="$CXX_FOR_TARGET" # Let the user override the test.
8322else
c6b750e1
DJ
8323as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8324for as_dir in $PATH
8325do
8326 IFS=$as_save_IFS
8327 test -z "$as_dir" && as_dir=.
8328 for ac_exec_ext in '' $ac_executable_extensions; do
8329 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
8330 ac_cv_prog_CXX_FOR_TARGET="${ncn_target_tool_prefix}${ncn_progname}"
8331 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8332 break 2
8333 fi
8334done
8335done
8336
55db4b87
PB
8337fi
8338fi
c6b750e1 8339CXX_FOR_TARGET=$ac_cv_prog_CXX_FOR_TARGET
55db4b87 8340if test -n "$CXX_FOR_TARGET"; then
c6b750e1
DJ
8341 echo "$as_me:$LINENO: result: $CXX_FOR_TARGET" >&5
8342echo "${ECHO_T}$CXX_FOR_TARGET" >&6
55db4b87 8343else
c6b750e1
DJ
8344 echo "$as_me:$LINENO: result: no" >&5
8345echo "${ECHO_T}no" >&6
55db4b87
PB
8346fi
8347
2429c060
PB
8348 fi
8349 if test -z "$ac_cv_prog_CXX_FOR_TARGET" && test $build = $target ; then
8350 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
05cbd757 8351set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
8352echo "$as_me:$LINENO: checking for $ac_word" >&5
8353echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8354if test "${ac_cv_prog_CXX_FOR_TARGET+set}" = set; then
8355 echo $ECHO_N "(cached) $ECHO_C" >&6
55db4b87 8356else
05cbd757
PB
8357 if test -n "$CXX_FOR_TARGET"; then
8358 ac_cv_prog_CXX_FOR_TARGET="$CXX_FOR_TARGET" # Let the user override the test.
55db4b87 8359else
c6b750e1
DJ
8360as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8361for as_dir in $PATH
8362do
8363 IFS=$as_save_IFS
8364 test -z "$as_dir" && as_dir=.
8365 for ac_exec_ext in '' $ac_executable_extensions; do
8366 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
8367 ac_cv_prog_CXX_FOR_TARGET="${ncn_progname}"
8368 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8369 break 2
8370 fi
8371done
8372done
8373
55db4b87
PB
8374fi
8375fi
c6b750e1 8376CXX_FOR_TARGET=$ac_cv_prog_CXX_FOR_TARGET
05cbd757 8377if test -n "$CXX_FOR_TARGET"; then
c6b750e1
DJ
8378 echo "$as_me:$LINENO: result: $CXX_FOR_TARGET" >&5
8379echo "${ECHO_T}$CXX_FOR_TARGET" >&6
55db4b87 8380else
c6b750e1
DJ
8381 echo "$as_me:$LINENO: result: no" >&5
8382echo "${ECHO_T}no" >&6
55db4b87 8383fi
c6b750e1 8384
2429c060
PB
8385 fi
8386 test -n "$ac_cv_prog_CXX_FOR_TARGET" && break
8387 done
8388fi
c6b750e1 8389
05cbd757
PB
8390if test -z "$ac_cv_prog_CXX_FOR_TARGET" ; then
8391 set dummy c++ g++ cxx gxx
8392 if test $build = $target ; then
8393 CXX_FOR_TARGET="$2"
55db4b87 8394 else
05cbd757 8395 CXX_FOR_TARGET="${ncn_target_tool_prefix}$2"
55db4b87 8396 fi
d3f5afc4
MS
8397else
8398 CXX_FOR_TARGET="$ac_cv_prog_CXX_FOR_TARGET"
859789af
AC
8399fi
8400
9a819804
AO
8401
8402
8403if test -n "$GCC_FOR_TARGET"; then
8404 ac_cv_prog_GCC_FOR_TARGET=$GCC_FOR_TARGET
8405elif test -n "$ac_cv_prog_GCC_FOR_TARGET"; then
8406 GCC_FOR_TARGET=$ac_cv_prog_GCC_FOR_TARGET
8407fi
8408
8409if test -n "$ac_cv_prog_GCC_FOR_TARGET"; then
8410 for ncn_progname in gcc; do
8411 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
8412set dummy ${ncn_progname}; ac_word=$2
8413echo "$as_me:$LINENO: checking for $ac_word" >&5
8414echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8415if test "${ac_cv_prog_GCC_FOR_TARGET+set}" = set; then
8416 echo $ECHO_N "(cached) $ECHO_C" >&6
8417else
8418 if test -n "$GCC_FOR_TARGET"; then
8419 ac_cv_prog_GCC_FOR_TARGET="$GCC_FOR_TARGET" # Let the user override the test.
8420else
8421as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8422for as_dir in $PATH
8423do
8424 IFS=$as_save_IFS
8425 test -z "$as_dir" && as_dir=.
8426 for ac_exec_ext in '' $ac_executable_extensions; do
8427 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
8428 ac_cv_prog_GCC_FOR_TARGET="${ncn_progname}"
8429 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8430 break 2
8431 fi
8432done
8433done
8434
8435fi
8436fi
8437GCC_FOR_TARGET=$ac_cv_prog_GCC_FOR_TARGET
8438if test -n "$GCC_FOR_TARGET"; then
8439 echo "$as_me:$LINENO: result: $GCC_FOR_TARGET" >&5
8440echo "${ECHO_T}$GCC_FOR_TARGET" >&6
8441else
8442 echo "$as_me:$LINENO: result: no" >&5
8443echo "${ECHO_T}no" >&6
8444fi
8445
8446 done
8447fi
8448
8449if test -z "$ac_cv_prog_GCC_FOR_TARGET" && test -n "$with_build_time_tools"; then
2429c060 8450 for ncn_progname in gcc; do
c6b750e1
DJ
8451 echo "$as_me:$LINENO: checking for ${ncn_progname} in $with_build_time_tools" >&5
8452echo $ECHO_N "checking for ${ncn_progname} in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
8453 if test -x $with_build_time_tools/${ncn_progname}; then
8454 ac_cv_prog_GCC_FOR_TARGET=$with_build_time_tools/${ncn_progname}
c6b750e1
DJ
8455 echo "$as_me:$LINENO: result: yes" >&5
8456echo "${ECHO_T}yes" >&6
2429c060
PB
8457 break
8458 else
c6b750e1
DJ
8459 echo "$as_me:$LINENO: result: no" >&5
8460echo "${ECHO_T}no" >&6
2429c060
PB
8461 fi
8462 done
8463fi
8464
8465if test -z "$ac_cv_prog_GCC_FOR_TARGET"; then
8466 for ncn_progname in gcc; do
8467 if test -n "$ncn_target_tool_prefix"; then
8468 # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
05cbd757 8469set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
8470echo "$as_me:$LINENO: checking for $ac_word" >&5
8471echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8472if test "${ac_cv_prog_GCC_FOR_TARGET+set}" = set; then
8473 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af 8474else
2429c060
PB
8475 if test -n "$GCC_FOR_TARGET"; then
8476 ac_cv_prog_GCC_FOR_TARGET="$GCC_FOR_TARGET" # Let the user override the test.
55db4b87 8477else
c6b750e1
DJ
8478as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8479for as_dir in $PATH
8480do
8481 IFS=$as_save_IFS
8482 test -z "$as_dir" && as_dir=.
8483 for ac_exec_ext in '' $ac_executable_extensions; do
8484 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
8485 ac_cv_prog_GCC_FOR_TARGET="${ncn_target_tool_prefix}${ncn_progname}"
8486 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8487 break 2
8488 fi
8489done
8490done
8491
55db4b87
PB
8492fi
8493fi
c6b750e1 8494GCC_FOR_TARGET=$ac_cv_prog_GCC_FOR_TARGET
55db4b87 8495if test -n "$GCC_FOR_TARGET"; then
c6b750e1
DJ
8496 echo "$as_me:$LINENO: result: $GCC_FOR_TARGET" >&5
8497echo "${ECHO_T}$GCC_FOR_TARGET" >&6
55db4b87 8498else
c6b750e1
DJ
8499 echo "$as_me:$LINENO: result: no" >&5
8500echo "${ECHO_T}no" >&6
55db4b87
PB
8501fi
8502
2429c060
PB
8503 fi
8504 if test -z "$ac_cv_prog_GCC_FOR_TARGET" && test $build = $target ; then
8505 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
05cbd757 8506set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
8507echo "$as_me:$LINENO: checking for $ac_word" >&5
8508echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8509if test "${ac_cv_prog_GCC_FOR_TARGET+set}" = set; then
8510 echo $ECHO_N "(cached) $ECHO_C" >&6
55db4b87 8511else
05cbd757
PB
8512 if test -n "$GCC_FOR_TARGET"; then
8513 ac_cv_prog_GCC_FOR_TARGET="$GCC_FOR_TARGET" # Let the user override the test.
55db4b87 8514else
c6b750e1
DJ
8515as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8516for as_dir in $PATH
8517do
8518 IFS=$as_save_IFS
8519 test -z "$as_dir" && as_dir=.
8520 for ac_exec_ext in '' $ac_executable_extensions; do
8521 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
8522 ac_cv_prog_GCC_FOR_TARGET="${ncn_progname}"
8523 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8524 break 2
8525 fi
8526done
8527done
8528
55db4b87
PB
8529fi
8530fi
c6b750e1 8531GCC_FOR_TARGET=$ac_cv_prog_GCC_FOR_TARGET
05cbd757 8532if test -n "$GCC_FOR_TARGET"; then
c6b750e1
DJ
8533 echo "$as_me:$LINENO: result: $GCC_FOR_TARGET" >&5
8534echo "${ECHO_T}$GCC_FOR_TARGET" >&6
55db4b87 8535else
c6b750e1
DJ
8536 echo "$as_me:$LINENO: result: no" >&5
8537echo "${ECHO_T}no" >&6
55db4b87 8538fi
c6b750e1 8539
2429c060
PB
8540 fi
8541 test -n "$ac_cv_prog_GCC_FOR_TARGET" && break
8542 done
8543fi
c6b750e1 8544
05cbd757
PB
8545if test -z "$ac_cv_prog_GCC_FOR_TARGET" ; then
8546 GCC_FOR_TARGET="${CC_FOR_TARGET}"
d3f5afc4
MS
8547else
8548 GCC_FOR_TARGET="$ac_cv_prog_GCC_FOR_TARGET"
55db4b87
PB
8549fi
8550
9a819804
AO
8551
8552
8553if test -n "$GCJ_FOR_TARGET"; then
8554 ac_cv_prog_GCJ_FOR_TARGET=$GCJ_FOR_TARGET
8555elif test -n "$ac_cv_prog_GCJ_FOR_TARGET"; then
8556 GCJ_FOR_TARGET=$ac_cv_prog_GCJ_FOR_TARGET
8557fi
8558
8559if test -n "$ac_cv_prog_GCJ_FOR_TARGET"; then
8560 for ncn_progname in gcj; do
8561 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
8562set dummy ${ncn_progname}; ac_word=$2
8563echo "$as_me:$LINENO: checking for $ac_word" >&5
8564echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8565if test "${ac_cv_prog_GCJ_FOR_TARGET+set}" = set; then
8566 echo $ECHO_N "(cached) $ECHO_C" >&6
8567else
8568 if test -n "$GCJ_FOR_TARGET"; then
8569 ac_cv_prog_GCJ_FOR_TARGET="$GCJ_FOR_TARGET" # Let the user override the test.
8570else
8571as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8572for as_dir in $PATH
8573do
8574 IFS=$as_save_IFS
8575 test -z "$as_dir" && as_dir=.
8576 for ac_exec_ext in '' $ac_executable_extensions; do
8577 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
8578 ac_cv_prog_GCJ_FOR_TARGET="${ncn_progname}"
8579 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8580 break 2
8581 fi
8582done
8583done
8584
8585fi
8586fi
8587GCJ_FOR_TARGET=$ac_cv_prog_GCJ_FOR_TARGET
8588if test -n "$GCJ_FOR_TARGET"; then
8589 echo "$as_me:$LINENO: result: $GCJ_FOR_TARGET" >&5
8590echo "${ECHO_T}$GCJ_FOR_TARGET" >&6
8591else
8592 echo "$as_me:$LINENO: result: no" >&5
8593echo "${ECHO_T}no" >&6
8594fi
8595
8596 done
8597fi
8598
8599if test -z "$ac_cv_prog_GCJ_FOR_TARGET" && test -n "$with_build_time_tools"; then
2429c060 8600 for ncn_progname in gcj; do
c6b750e1
DJ
8601 echo "$as_me:$LINENO: checking for ${ncn_progname} in $with_build_time_tools" >&5
8602echo $ECHO_N "checking for ${ncn_progname} in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
8603 if test -x $with_build_time_tools/${ncn_progname}; then
8604 ac_cv_prog_GCJ_FOR_TARGET=$with_build_time_tools/${ncn_progname}
c6b750e1
DJ
8605 echo "$as_me:$LINENO: result: yes" >&5
8606echo "${ECHO_T}yes" >&6
2429c060
PB
8607 break
8608 else
c6b750e1
DJ
8609 echo "$as_me:$LINENO: result: no" >&5
8610echo "${ECHO_T}no" >&6
2429c060
PB
8611 fi
8612 done
8613fi
8614
8615if test -z "$ac_cv_prog_GCJ_FOR_TARGET"; then
8616 for ncn_progname in gcj; do
8617 if test -n "$ncn_target_tool_prefix"; then
8618 # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
05cbd757 8619set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
8620echo "$as_me:$LINENO: checking for $ac_word" >&5
8621echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8622if test "${ac_cv_prog_GCJ_FOR_TARGET+set}" = set; then
8623 echo $ECHO_N "(cached) $ECHO_C" >&6
55db4b87
PB
8624else
8625 if test -n "$GCJ_FOR_TARGET"; then
8626 ac_cv_prog_GCJ_FOR_TARGET="$GCJ_FOR_TARGET" # Let the user override the test.
8627else
c6b750e1
DJ
8628as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8629for as_dir in $PATH
8630do
8631 IFS=$as_save_IFS
8632 test -z "$as_dir" && as_dir=.
8633 for ac_exec_ext in '' $ac_executable_extensions; do
8634 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
8635 ac_cv_prog_GCJ_FOR_TARGET="${ncn_target_tool_prefix}${ncn_progname}"
8636 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8637 break 2
8638 fi
8639done
8640done
8641
55db4b87
PB
8642fi
8643fi
9a819804
AO
8644GCJ_FOR_TARGET=$ac_cv_prog_GCJ_FOR_TARGET
8645if test -n "$GCJ_FOR_TARGET"; then
8646 echo "$as_me:$LINENO: result: $GCJ_FOR_TARGET" >&5
8647echo "${ECHO_T}$GCJ_FOR_TARGET" >&6
8648else
8649 echo "$as_me:$LINENO: result: no" >&5
8650echo "${ECHO_T}no" >&6
8651fi
8652
8653 fi
8654 if test -z "$ac_cv_prog_GCJ_FOR_TARGET" && test $build = $target ; then
8655 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
8656set dummy ${ncn_progname}; ac_word=$2
8657echo "$as_me:$LINENO: checking for $ac_word" >&5
8658echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8659if test "${ac_cv_prog_GCJ_FOR_TARGET+set}" = set; then
8660 echo $ECHO_N "(cached) $ECHO_C" >&6
8661else
8662 if test -n "$GCJ_FOR_TARGET"; then
8663 ac_cv_prog_GCJ_FOR_TARGET="$GCJ_FOR_TARGET" # Let the user override the test.
8664else
8665as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8666for as_dir in $PATH
8667do
8668 IFS=$as_save_IFS
8669 test -z "$as_dir" && as_dir=.
8670 for ac_exec_ext in '' $ac_executable_extensions; do
8671 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
8672 ac_cv_prog_GCJ_FOR_TARGET="${ncn_progname}"
8673 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8674 break 2
8675 fi
8676done
8677done
8678
8679fi
8680fi
8681GCJ_FOR_TARGET=$ac_cv_prog_GCJ_FOR_TARGET
8682if test -n "$GCJ_FOR_TARGET"; then
8683 echo "$as_me:$LINENO: result: $GCJ_FOR_TARGET" >&5
8684echo "${ECHO_T}$GCJ_FOR_TARGET" >&6
8685else
8686 echo "$as_me:$LINENO: result: no" >&5
8687echo "${ECHO_T}no" >&6
8688fi
8689
8690 fi
8691 test -n "$ac_cv_prog_GCJ_FOR_TARGET" && break
8692 done
8693fi
8694
8695if test -z "$ac_cv_prog_GCJ_FOR_TARGET" ; then
8696 set dummy gcj
8697 if test $build = $target ; then
8698 GCJ_FOR_TARGET="$2"
8699 else
8700 GCJ_FOR_TARGET="${ncn_target_tool_prefix}$2"
8701 fi
d3f5afc4
MS
8702else
8703 GCJ_FOR_TARGET="$ac_cv_prog_GCJ_FOR_TARGET"
9a819804
AO
8704fi
8705
8706
8707
8708if test -n "$GFORTRAN_FOR_TARGET"; then
8709 ac_cv_prog_GFORTRAN_FOR_TARGET=$GFORTRAN_FOR_TARGET
8710elif test -n "$ac_cv_prog_GFORTRAN_FOR_TARGET"; then
8711 GFORTRAN_FOR_TARGET=$ac_cv_prog_GFORTRAN_FOR_TARGET
55db4b87
PB
8712fi
8713
9a819804
AO
8714if test -n "$ac_cv_prog_GFORTRAN_FOR_TARGET"; then
8715 for ncn_progname in gfortran; do
8716 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
05cbd757 8717set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
8718echo "$as_me:$LINENO: checking for $ac_word" >&5
8719echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
9a819804 8720if test "${ac_cv_prog_GFORTRAN_FOR_TARGET+set}" = set; then
c6b750e1 8721 echo $ECHO_N "(cached) $ECHO_C" >&6
55db4b87 8722else
9a819804
AO
8723 if test -n "$GFORTRAN_FOR_TARGET"; then
8724 ac_cv_prog_GFORTRAN_FOR_TARGET="$GFORTRAN_FOR_TARGET" # Let the user override the test.
55db4b87 8725else
c6b750e1
DJ
8726as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8727for as_dir in $PATH
8728do
8729 IFS=$as_save_IFS
8730 test -z "$as_dir" && as_dir=.
8731 for ac_exec_ext in '' $ac_executable_extensions; do
8732 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9a819804 8733 ac_cv_prog_GFORTRAN_FOR_TARGET="${ncn_progname}"
c6b750e1
DJ
8734 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8735 break 2
8736 fi
8737done
8738done
8739
55db4b87
PB
8740fi
8741fi
9a819804
AO
8742GFORTRAN_FOR_TARGET=$ac_cv_prog_GFORTRAN_FOR_TARGET
8743if test -n "$GFORTRAN_FOR_TARGET"; then
8744 echo "$as_me:$LINENO: result: $GFORTRAN_FOR_TARGET" >&5
8745echo "${ECHO_T}$GFORTRAN_FOR_TARGET" >&6
55db4b87 8746else
c6b750e1
DJ
8747 echo "$as_me:$LINENO: result: no" >&5
8748echo "${ECHO_T}no" >&6
55db4b87 8749fi
c6b750e1 8750
2429c060
PB
8751 done
8752fi
c6b750e1 8753
9a819804 8754if test -z "$ac_cv_prog_GFORTRAN_FOR_TARGET" && test -n "$with_build_time_tools"; then
2429c060 8755 for ncn_progname in gfortran; do
c6b750e1
DJ
8756 echo "$as_me:$LINENO: checking for ${ncn_progname} in $with_build_time_tools" >&5
8757echo $ECHO_N "checking for ${ncn_progname} in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
8758 if test -x $with_build_time_tools/${ncn_progname}; then
8759 ac_cv_prog_GFORTRAN_FOR_TARGET=$with_build_time_tools/${ncn_progname}
c6b750e1
DJ
8760 echo "$as_me:$LINENO: result: yes" >&5
8761echo "${ECHO_T}yes" >&6
2429c060
PB
8762 break
8763 else
c6b750e1
DJ
8764 echo "$as_me:$LINENO: result: no" >&5
8765echo "${ECHO_T}no" >&6
2429c060
PB
8766 fi
8767 done
8768fi
8769
8770if test -z "$ac_cv_prog_GFORTRAN_FOR_TARGET"; then
8771 for ncn_progname in gfortran; do
8772 if test -n "$ncn_target_tool_prefix"; then
8773 # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
05cbd757 8774set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
8775echo "$as_me:$LINENO: checking for $ac_word" >&5
8776echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8777if test "${ac_cv_prog_GFORTRAN_FOR_TARGET+set}" = set; then
8778 echo $ECHO_N "(cached) $ECHO_C" >&6
55db4b87
PB
8779else
8780 if test -n "$GFORTRAN_FOR_TARGET"; then
8781 ac_cv_prog_GFORTRAN_FOR_TARGET="$GFORTRAN_FOR_TARGET" # Let the user override the test.
8782else
c6b750e1
DJ
8783as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8784for as_dir in $PATH
8785do
8786 IFS=$as_save_IFS
8787 test -z "$as_dir" && as_dir=.
8788 for ac_exec_ext in '' $ac_executable_extensions; do
8789 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
8790 ac_cv_prog_GFORTRAN_FOR_TARGET="${ncn_target_tool_prefix}${ncn_progname}"
8791 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8792 break 2
8793 fi
8794done
8795done
8796
55db4b87
PB
8797fi
8798fi
c6b750e1 8799GFORTRAN_FOR_TARGET=$ac_cv_prog_GFORTRAN_FOR_TARGET
55db4b87 8800if test -n "$GFORTRAN_FOR_TARGET"; then
c6b750e1
DJ
8801 echo "$as_me:$LINENO: result: $GFORTRAN_FOR_TARGET" >&5
8802echo "${ECHO_T}$GFORTRAN_FOR_TARGET" >&6
55db4b87 8803else
c6b750e1
DJ
8804 echo "$as_me:$LINENO: result: no" >&5
8805echo "${ECHO_T}no" >&6
55db4b87
PB
8806fi
8807
2429c060
PB
8808 fi
8809 if test -z "$ac_cv_prog_GFORTRAN_FOR_TARGET" && test $build = $target ; then
8810 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
05cbd757 8811set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
8812echo "$as_me:$LINENO: checking for $ac_word" >&5
8813echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8814if test "${ac_cv_prog_GFORTRAN_FOR_TARGET+set}" = set; then
8815 echo $ECHO_N "(cached) $ECHO_C" >&6
55db4b87 8816else
05cbd757 8817 if test -n "$GFORTRAN_FOR_TARGET"; then
c6b750e1
DJ
8818 ac_cv_prog_GFORTRAN_FOR_TARGET="$GFORTRAN_FOR_TARGET" # Let the user override the test.
8819else
8820as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8821for as_dir in $PATH
8822do
8823 IFS=$as_save_IFS
8824 test -z "$as_dir" && as_dir=.
8825 for ac_exec_ext in '' $ac_executable_extensions; do
8826 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
8827 ac_cv_prog_GFORTRAN_FOR_TARGET="${ncn_progname}"
8828 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8829 break 2
8830 fi
8831done
8832done
8833
55db4b87
PB
8834fi
8835fi
c6b750e1 8836GFORTRAN_FOR_TARGET=$ac_cv_prog_GFORTRAN_FOR_TARGET
05cbd757 8837if test -n "$GFORTRAN_FOR_TARGET"; then
c6b750e1
DJ
8838 echo "$as_me:$LINENO: result: $GFORTRAN_FOR_TARGET" >&5
8839echo "${ECHO_T}$GFORTRAN_FOR_TARGET" >&6
55db4b87 8840else
c6b750e1
DJ
8841 echo "$as_me:$LINENO: result: no" >&5
8842echo "${ECHO_T}no" >&6
55db4b87 8843fi
c6b750e1 8844
2429c060
PB
8845 fi
8846 test -n "$ac_cv_prog_GFORTRAN_FOR_TARGET" && break
8847 done
8848fi
c6b750e1 8849
05cbd757
PB
8850if test -z "$ac_cv_prog_GFORTRAN_FOR_TARGET" ; then
8851 set dummy gfortran
8852 if test $build = $target ; then
8853 GFORTRAN_FOR_TARGET="$2"
55db4b87 8854 else
05cbd757 8855 GFORTRAN_FOR_TARGET="${ncn_target_tool_prefix}$2"
55db4b87 8856 fi
d3f5afc4
MS
8857else
8858 GFORTRAN_FOR_TARGET="$ac_cv_prog_GFORTRAN_FOR_TARGET"
859789af
AC
8859fi
8860
2429c060
PB
8861
8862
2429c060
PB
8863cat > conftest.c << \EOF
8864#ifdef __GNUC__
8865 gcc_yay;
8866#endif
8867EOF
8868if ($GCC_FOR_TARGET -E conftest.c | grep gcc_yay) > /dev/null 2>&1; then
8869 have_gcc_for_target=yes
859789af 8870else
2429c060
PB
8871 GCC_FOR_TARGET=${ncn_target_tool_prefix}gcc
8872 have_gcc_for_target=no
859789af 8873fi
2429c060
PB
8874rm conftest.c
8875
8876
8877
859789af 8878
2429c060
PB
8879if test -z "$ac_cv_path_AR_FOR_TARGET" ; then
8880 if test -n "$with_build_time_tools"; then
c6b750e1
DJ
8881 echo "$as_me:$LINENO: checking for ar in $with_build_time_tools" >&5
8882echo $ECHO_N "checking for ar in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
8883 if test -x $with_build_time_tools/ar; then
8884 AR_FOR_TARGET=`cd $with_build_time_tools && pwd`/ar
8885 ac_cv_path_AR_FOR_TARGET=$AR_FOR_TARGET
c6b750e1
DJ
8886 echo "$as_me:$LINENO: result: $ac_cv_path_AR_FOR_TARGET" >&5
8887echo "${ECHO_T}$ac_cv_path_AR_FOR_TARGET" >&6
3a35eeb3 8888 else
c6b750e1
DJ
8889 echo "$as_me:$LINENO: result: no" >&5
8890echo "${ECHO_T}no" >&6
3a35eeb3 8891 fi
2429c060
PB
8892 elif test $build != $host && test $have_gcc_for_target = yes; then
8893 AR_FOR_TARGET=`$GCC_FOR_TARGET --print-prog-name=ar`
d3f5afc4
MS
8894 test $AR_FOR_TARGET = ar && AR_FOR_TARGET=
8895 test -n "$AR_FOR_TARGET" && ac_cv_path_AR_FOR_TARGET=$AR_FOR_TARGET
05cbd757 8896 fi
2429c060 8897fi
c6b750e1 8898if test -z "$ac_cv_path_AR_FOR_TARGET" && test -n "$gcc_cv_tool_dirs"; then
2429c060
PB
8899 # Extract the first word of "ar", so it can be a program name with args.
8900set dummy ar; ac_word=$2
c6b750e1
DJ
8901echo "$as_me:$LINENO: checking for $ac_word" >&5
8902echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8903if test "${ac_cv_path_AR_FOR_TARGET+set}" = set; then
8904 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af 8905else
c6b750e1
DJ
8906 case $AR_FOR_TARGET in
8907 [\\/]* | ?:[\\/]*)
2429c060
PB
8908 ac_cv_path_AR_FOR_TARGET="$AR_FOR_TARGET" # Let the user override the test with a path.
8909 ;;
2429c060 8910 *)
c6b750e1
DJ
8911 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8912for as_dir in $gcc_cv_tool_dirs
8913do
8914 IFS=$as_save_IFS
8915 test -z "$as_dir" && as_dir=.
8916 for ac_exec_ext in '' $ac_executable_extensions; do
8917 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
8918 ac_cv_path_AR_FOR_TARGET="$as_dir/$ac_word$ac_exec_ext"
8919 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8920 break 2
8921 fi
8922done
8923done
8924
2429c060
PB
8925 ;;
8926esac
859789af 8927fi
c6b750e1
DJ
8928AR_FOR_TARGET=$ac_cv_path_AR_FOR_TARGET
8929
2429c060 8930if test -n "$AR_FOR_TARGET"; then
c6b750e1
DJ
8931 echo "$as_me:$LINENO: result: $AR_FOR_TARGET" >&5
8932echo "${ECHO_T}$AR_FOR_TARGET" >&6
859789af 8933else
c6b750e1
DJ
8934 echo "$as_me:$LINENO: result: no" >&5
8935echo "${ECHO_T}no" >&6
859789af 8936fi
05cbd757 8937
2429c060
PB
8938fi
8939if test -z "$ac_cv_path_AR_FOR_TARGET" ; then
9a819804
AO
8940
8941
8942if test -n "$AR_FOR_TARGET"; then
8943 ac_cv_prog_AR_FOR_TARGET=$AR_FOR_TARGET
8944elif test -n "$ac_cv_prog_AR_FOR_TARGET"; then
8945 AR_FOR_TARGET=$ac_cv_prog_AR_FOR_TARGET
8946fi
8947
8948if test -n "$ac_cv_prog_AR_FOR_TARGET"; then
8949 for ncn_progname in ar; do
8950 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
8951set dummy ${ncn_progname}; ac_word=$2
8952echo "$as_me:$LINENO: checking for $ac_word" >&5
8953echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8954if test "${ac_cv_prog_AR_FOR_TARGET+set}" = set; then
8955 echo $ECHO_N "(cached) $ECHO_C" >&6
8956else
8957 if test -n "$AR_FOR_TARGET"; then
8958 ac_cv_prog_AR_FOR_TARGET="$AR_FOR_TARGET" # Let the user override the test.
8959else
8960as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8961for as_dir in $PATH
8962do
8963 IFS=$as_save_IFS
8964 test -z "$as_dir" && as_dir=.
8965 for ac_exec_ext in '' $ac_executable_extensions; do
8966 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
8967 ac_cv_prog_AR_FOR_TARGET="${ncn_progname}"
8968 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8969 break 2
8970 fi
8971done
8972done
8973
8974fi
8975fi
8976AR_FOR_TARGET=$ac_cv_prog_AR_FOR_TARGET
8977if test -n "$AR_FOR_TARGET"; then
8978 echo "$as_me:$LINENO: result: $AR_FOR_TARGET" >&5
8979echo "${ECHO_T}$AR_FOR_TARGET" >&6
8980else
8981 echo "$as_me:$LINENO: result: no" >&5
8982echo "${ECHO_T}no" >&6
8983fi
8984
8985 done
8986fi
8987
8988if test -z "$ac_cv_prog_AR_FOR_TARGET" && test -n "$with_build_time_tools"; then
2429c060 8989 for ncn_progname in ar; do
c6b750e1
DJ
8990 echo "$as_me:$LINENO: checking for ${ncn_progname} in $with_build_time_tools" >&5
8991echo $ECHO_N "checking for ${ncn_progname} in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
8992 if test -x $with_build_time_tools/${ncn_progname}; then
8993 ac_cv_prog_AR_FOR_TARGET=$with_build_time_tools/${ncn_progname}
c6b750e1
DJ
8994 echo "$as_me:$LINENO: result: yes" >&5
8995echo "${ECHO_T}yes" >&6
2429c060
PB
8996 break
8997 else
c6b750e1
DJ
8998 echo "$as_me:$LINENO: result: no" >&5
8999echo "${ECHO_T}no" >&6
2429c060
PB
9000 fi
9001 done
859789af
AC
9002fi
9003
2429c060
PB
9004if test -z "$ac_cv_prog_AR_FOR_TARGET"; then
9005 for ncn_progname in ar; do
9006 if test -n "$ncn_target_tool_prefix"; then
9007 # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
05cbd757 9008set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
9009echo "$as_me:$LINENO: checking for $ac_word" >&5
9010echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
9011if test "${ac_cv_prog_AR_FOR_TARGET+set}" = set; then
9012 echo $ECHO_N "(cached) $ECHO_C" >&6
7e0f7140 9013else
2429c060
PB
9014 if test -n "$AR_FOR_TARGET"; then
9015 ac_cv_prog_AR_FOR_TARGET="$AR_FOR_TARGET" # Let the user override the test.
7e0f7140 9016else
c6b750e1
DJ
9017as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9018for as_dir in $PATH
9019do
9020 IFS=$as_save_IFS
9021 test -z "$as_dir" && as_dir=.
9022 for ac_exec_ext in '' $ac_executable_extensions; do
9023 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9024 ac_cv_prog_AR_FOR_TARGET="${ncn_target_tool_prefix}${ncn_progname}"
9025 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
9026 break 2
9027 fi
9028done
9029done
9030
7e0f7140
GK
9031fi
9032fi
c6b750e1 9033AR_FOR_TARGET=$ac_cv_prog_AR_FOR_TARGET
2429c060 9034if test -n "$AR_FOR_TARGET"; then
c6b750e1
DJ
9035 echo "$as_me:$LINENO: result: $AR_FOR_TARGET" >&5
9036echo "${ECHO_T}$AR_FOR_TARGET" >&6
7e0f7140 9037else
c6b750e1
DJ
9038 echo "$as_me:$LINENO: result: no" >&5
9039echo "${ECHO_T}no" >&6
7e0f7140
GK
9040fi
9041
2429c060
PB
9042 fi
9043 if test -z "$ac_cv_prog_AR_FOR_TARGET" && test $build = $target ; then
9044 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
7e0f7140 9045set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
9046echo "$as_me:$LINENO: checking for $ac_word" >&5
9047echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
9048if test "${ac_cv_prog_AR_FOR_TARGET+set}" = set; then
9049 echo $ECHO_N "(cached) $ECHO_C" >&6
7e0f7140 9050else
2429c060
PB
9051 if test -n "$AR_FOR_TARGET"; then
9052 ac_cv_prog_AR_FOR_TARGET="$AR_FOR_TARGET" # Let the user override the test.
cac3d6c4 9053else
c6b750e1
DJ
9054as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9055for as_dir in $PATH
9056do
9057 IFS=$as_save_IFS
9058 test -z "$as_dir" && as_dir=.
9059 for ac_exec_ext in '' $ac_executable_extensions; do
9060 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9061 ac_cv_prog_AR_FOR_TARGET="${ncn_progname}"
9062 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
9063 break 2
9064 fi
9065done
9066done
9067
7e0f7140
GK
9068fi
9069fi
c6b750e1 9070AR_FOR_TARGET=$ac_cv_prog_AR_FOR_TARGET
2429c060 9071if test -n "$AR_FOR_TARGET"; then
c6b750e1
DJ
9072 echo "$as_me:$LINENO: result: $AR_FOR_TARGET" >&5
9073echo "${ECHO_T}$AR_FOR_TARGET" >&6
7e0f7140 9074else
c6b750e1
DJ
9075 echo "$as_me:$LINENO: result: no" >&5
9076echo "${ECHO_T}no" >&6
7e0f7140 9077fi
c6b750e1 9078
2429c060
PB
9079 fi
9080 test -n "$ac_cv_prog_AR_FOR_TARGET" && break
9081 done
9082fi
c6b750e1 9083
2429c060
PB
9084if test -z "$ac_cv_prog_AR_FOR_TARGET" ; then
9085 set dummy ar
7e0f7140 9086 if test $build = $target ; then
2429c060 9087 AR_FOR_TARGET="$2"
7e0f7140 9088 else
2429c060 9089 AR_FOR_TARGET="${ncn_target_tool_prefix}$2"
7e0f7140 9090 fi
d3f5afc4
MS
9091else
9092 AR_FOR_TARGET="$ac_cv_prog_AR_FOR_TARGET"
7e0f7140
GK
9093fi
9094
3a35eeb3
PB
9095else
9096 AR_FOR_TARGET=$ac_cv_path_AR_FOR_TARGET
2429c060
PB
9097fi
9098
9099
9100
9101
9102if test -z "$ac_cv_path_AS_FOR_TARGET" ; then
9103 if test -n "$with_build_time_tools"; then
c6b750e1
DJ
9104 echo "$as_me:$LINENO: checking for as in $with_build_time_tools" >&5
9105echo $ECHO_N "checking for as in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
9106 if test -x $with_build_time_tools/as; then
9107 AS_FOR_TARGET=`cd $with_build_time_tools && pwd`/as
9108 ac_cv_path_AS_FOR_TARGET=$AS_FOR_TARGET
c6b750e1
DJ
9109 echo "$as_me:$LINENO: result: $ac_cv_path_AS_FOR_TARGET" >&5
9110echo "${ECHO_T}$ac_cv_path_AS_FOR_TARGET" >&6
3a35eeb3 9111 else
c6b750e1
DJ
9112 echo "$as_me:$LINENO: result: no" >&5
9113echo "${ECHO_T}no" >&6
3a35eeb3 9114 fi
2429c060
PB
9115 elif test $build != $host && test $have_gcc_for_target = yes; then
9116 AS_FOR_TARGET=`$GCC_FOR_TARGET --print-prog-name=as`
d3f5afc4
MS
9117 test $AS_FOR_TARGET = as && AS_FOR_TARGET=
9118 test -n "$AS_FOR_TARGET" && ac_cv_path_AS_FOR_TARGET=$AS_FOR_TARGET
2429c060
PB
9119 fi
9120fi
c6b750e1 9121if test -z "$ac_cv_path_AS_FOR_TARGET" && test -n "$gcc_cv_tool_dirs"; then
2429c060
PB
9122 # Extract the first word of "as", so it can be a program name with args.
9123set dummy as; ac_word=$2
c6b750e1
DJ
9124echo "$as_me:$LINENO: checking for $ac_word" >&5
9125echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
9126if test "${ac_cv_path_AS_FOR_TARGET+set}" = set; then
9127 echo $ECHO_N "(cached) $ECHO_C" >&6
2429c060 9128else
c6b750e1
DJ
9129 case $AS_FOR_TARGET in
9130 [\\/]* | ?:[\\/]*)
2429c060
PB
9131 ac_cv_path_AS_FOR_TARGET="$AS_FOR_TARGET" # Let the user override the test with a path.
9132 ;;
2429c060 9133 *)
c6b750e1
DJ
9134 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9135for as_dir in $gcc_cv_tool_dirs
9136do
9137 IFS=$as_save_IFS
9138 test -z "$as_dir" && as_dir=.
9139 for ac_exec_ext in '' $ac_executable_extensions; do
9140 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9141 ac_cv_path_AS_FOR_TARGET="$as_dir/$ac_word$ac_exec_ext"
9142 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
9143 break 2
9144 fi
9145done
9146done
9147
2429c060
PB
9148 ;;
9149esac
9150fi
c6b750e1
DJ
9151AS_FOR_TARGET=$ac_cv_path_AS_FOR_TARGET
9152
2429c060 9153if test -n "$AS_FOR_TARGET"; then
c6b750e1
DJ
9154 echo "$as_me:$LINENO: result: $AS_FOR_TARGET" >&5
9155echo "${ECHO_T}$AS_FOR_TARGET" >&6
2429c060 9156else
c6b750e1
DJ
9157 echo "$as_me:$LINENO: result: no" >&5
9158echo "${ECHO_T}no" >&6
2429c060
PB
9159fi
9160
9161fi
9162if test -z "$ac_cv_path_AS_FOR_TARGET" ; then
9a819804
AO
9163
9164
9165if test -n "$AS_FOR_TARGET"; then
9166 ac_cv_prog_AS_FOR_TARGET=$AS_FOR_TARGET
9167elif test -n "$ac_cv_prog_AS_FOR_TARGET"; then
9168 AS_FOR_TARGET=$ac_cv_prog_AS_FOR_TARGET
9169fi
9170
9171if test -n "$ac_cv_prog_AS_FOR_TARGET"; then
9172 for ncn_progname in as; do
9173 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
9174set dummy ${ncn_progname}; ac_word=$2
9175echo "$as_me:$LINENO: checking for $ac_word" >&5
9176echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
9177if test "${ac_cv_prog_AS_FOR_TARGET+set}" = set; then
9178 echo $ECHO_N "(cached) $ECHO_C" >&6
9179else
9180 if test -n "$AS_FOR_TARGET"; then
9181 ac_cv_prog_AS_FOR_TARGET="$AS_FOR_TARGET" # Let the user override the test.
9182else
9183as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9184for as_dir in $PATH
9185do
9186 IFS=$as_save_IFS
9187 test -z "$as_dir" && as_dir=.
9188 for ac_exec_ext in '' $ac_executable_extensions; do
9189 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9190 ac_cv_prog_AS_FOR_TARGET="${ncn_progname}"
9191 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
9192 break 2
9193 fi
9194done
9195done
9196
9197fi
9198fi
9199AS_FOR_TARGET=$ac_cv_prog_AS_FOR_TARGET
9200if test -n "$AS_FOR_TARGET"; then
9201 echo "$as_me:$LINENO: result: $AS_FOR_TARGET" >&5
9202echo "${ECHO_T}$AS_FOR_TARGET" >&6
9203else
9204 echo "$as_me:$LINENO: result: no" >&5
9205echo "${ECHO_T}no" >&6
9206fi
9207
9208 done
9209fi
9210
9211if test -z "$ac_cv_prog_AS_FOR_TARGET" && test -n "$with_build_time_tools"; then
2429c060 9212 for ncn_progname in as; do
c6b750e1
DJ
9213 echo "$as_me:$LINENO: checking for ${ncn_progname} in $with_build_time_tools" >&5
9214echo $ECHO_N "checking for ${ncn_progname} in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
9215 if test -x $with_build_time_tools/${ncn_progname}; then
9216 ac_cv_prog_AS_FOR_TARGET=$with_build_time_tools/${ncn_progname}
c6b750e1
DJ
9217 echo "$as_me:$LINENO: result: yes" >&5
9218echo "${ECHO_T}yes" >&6
2429c060
PB
9219 break
9220 else
c6b750e1
DJ
9221 echo "$as_me:$LINENO: result: no" >&5
9222echo "${ECHO_T}no" >&6
2429c060
PB
9223 fi
9224 done
9225fi
9226
9227if test -z "$ac_cv_prog_AS_FOR_TARGET"; then
9228 for ncn_progname in as; do
9229 if test -n "$ncn_target_tool_prefix"; then
9230 # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
9231set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
9232echo "$as_me:$LINENO: checking for $ac_word" >&5
9233echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
9234if test "${ac_cv_prog_AS_FOR_TARGET+set}" = set; then
9235 echo $ECHO_N "(cached) $ECHO_C" >&6
2429c060
PB
9236else
9237 if test -n "$AS_FOR_TARGET"; then
9238 ac_cv_prog_AS_FOR_TARGET="$AS_FOR_TARGET" # Let the user override the test.
9239else
c6b750e1
DJ
9240as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9241for as_dir in $PATH
9242do
9243 IFS=$as_save_IFS
9244 test -z "$as_dir" && as_dir=.
9245 for ac_exec_ext in '' $ac_executable_extensions; do
9246 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9247 ac_cv_prog_AS_FOR_TARGET="${ncn_target_tool_prefix}${ncn_progname}"
9248 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
9249 break 2
9250 fi
9251done
9252done
9253
2429c060
PB
9254fi
9255fi
c6b750e1 9256AS_FOR_TARGET=$ac_cv_prog_AS_FOR_TARGET
2429c060 9257if test -n "$AS_FOR_TARGET"; then
c6b750e1
DJ
9258 echo "$as_me:$LINENO: result: $AS_FOR_TARGET" >&5
9259echo "${ECHO_T}$AS_FOR_TARGET" >&6
2429c060 9260else
c6b750e1
DJ
9261 echo "$as_me:$LINENO: result: no" >&5
9262echo "${ECHO_T}no" >&6
2429c060
PB
9263fi
9264
9265 fi
9266 if test -z "$ac_cv_prog_AS_FOR_TARGET" && test $build = $target ; then
9267 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
9268set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
9269echo "$as_me:$LINENO: checking for $ac_word" >&5
9270echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
9271if test "${ac_cv_prog_AS_FOR_TARGET+set}" = set; then
9272 echo $ECHO_N "(cached) $ECHO_C" >&6
2429c060
PB
9273else
9274 if test -n "$AS_FOR_TARGET"; then
9275 ac_cv_prog_AS_FOR_TARGET="$AS_FOR_TARGET" # Let the user override the test.
9276else
c6b750e1
DJ
9277as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9278for as_dir in $PATH
9279do
9280 IFS=$as_save_IFS
9281 test -z "$as_dir" && as_dir=.
9282 for ac_exec_ext in '' $ac_executable_extensions; do
9283 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9284 ac_cv_prog_AS_FOR_TARGET="${ncn_progname}"
9285 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
9286 break 2
9287 fi
9288done
9289done
9290
2429c060
PB
9291fi
9292fi
c6b750e1 9293AS_FOR_TARGET=$ac_cv_prog_AS_FOR_TARGET
2429c060 9294if test -n "$AS_FOR_TARGET"; then
c6b750e1
DJ
9295 echo "$as_me:$LINENO: result: $AS_FOR_TARGET" >&5
9296echo "${ECHO_T}$AS_FOR_TARGET" >&6
2429c060 9297else
c6b750e1
DJ
9298 echo "$as_me:$LINENO: result: no" >&5
9299echo "${ECHO_T}no" >&6
2429c060 9300fi
c6b750e1 9301
2429c060
PB
9302 fi
9303 test -n "$ac_cv_prog_AS_FOR_TARGET" && break
9304 done
9305fi
c6b750e1 9306
2429c060
PB
9307if test -z "$ac_cv_prog_AS_FOR_TARGET" ; then
9308 set dummy as
9309 if test $build = $target ; then
9310 AS_FOR_TARGET="$2"
9311 else
9312 AS_FOR_TARGET="${ncn_target_tool_prefix}$2"
9313 fi
d3f5afc4
MS
9314else
9315 AS_FOR_TARGET="$ac_cv_prog_AS_FOR_TARGET"
2429c060
PB
9316fi
9317
3a35eeb3
PB
9318else
9319 AS_FOR_TARGET=$ac_cv_path_AS_FOR_TARGET
2429c060
PB
9320fi
9321
9322
9323
9324
9325if test -z "$ac_cv_path_DLLTOOL_FOR_TARGET" ; then
9326 if test -n "$with_build_time_tools"; then
c6b750e1
DJ
9327 echo "$as_me:$LINENO: checking for dlltool in $with_build_time_tools" >&5
9328echo $ECHO_N "checking for dlltool in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
9329 if test -x $with_build_time_tools/dlltool; then
9330 DLLTOOL_FOR_TARGET=`cd $with_build_time_tools && pwd`/dlltool
9331 ac_cv_path_DLLTOOL_FOR_TARGET=$DLLTOOL_FOR_TARGET
c6b750e1
DJ
9332 echo "$as_me:$LINENO: result: $ac_cv_path_DLLTOOL_FOR_TARGET" >&5
9333echo "${ECHO_T}$ac_cv_path_DLLTOOL_FOR_TARGET" >&6
3a35eeb3 9334 else
c6b750e1
DJ
9335 echo "$as_me:$LINENO: result: no" >&5
9336echo "${ECHO_T}no" >&6
3a35eeb3 9337 fi
2429c060
PB
9338 elif test $build != $host && test $have_gcc_for_target = yes; then
9339 DLLTOOL_FOR_TARGET=`$GCC_FOR_TARGET --print-prog-name=dlltool`
d3f5afc4
MS
9340 test $DLLTOOL_FOR_TARGET = dlltool && DLLTOOL_FOR_TARGET=
9341 test -n "$DLLTOOL_FOR_TARGET" && ac_cv_path_DLLTOOL_FOR_TARGET=$DLLTOOL_FOR_TARGET
2429c060
PB
9342 fi
9343fi
c6b750e1 9344if test -z "$ac_cv_path_DLLTOOL_FOR_TARGET" && test -n "$gcc_cv_tool_dirs"; then
2429c060
PB
9345 # Extract the first word of "dlltool", so it can be a program name with args.
9346set dummy dlltool; ac_word=$2
c6b750e1
DJ
9347echo "$as_me:$LINENO: checking for $ac_word" >&5
9348echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
9349if test "${ac_cv_path_DLLTOOL_FOR_TARGET+set}" = set; then
9350 echo $ECHO_N "(cached) $ECHO_C" >&6
2429c060 9351else
c6b750e1
DJ
9352 case $DLLTOOL_FOR_TARGET in
9353 [\\/]* | ?:[\\/]*)
2429c060
PB
9354 ac_cv_path_DLLTOOL_FOR_TARGET="$DLLTOOL_FOR_TARGET" # Let the user override the test with a path.
9355 ;;
2429c060 9356 *)
c6b750e1
DJ
9357 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9358for as_dir in $gcc_cv_tool_dirs
9359do
9360 IFS=$as_save_IFS
9361 test -z "$as_dir" && as_dir=.
9362 for ac_exec_ext in '' $ac_executable_extensions; do
9363 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9364 ac_cv_path_DLLTOOL_FOR_TARGET="$as_dir/$ac_word$ac_exec_ext"
9365 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
9366 break 2
9367 fi
9368done
9369done
9370
2429c060
PB
9371 ;;
9372esac
9373fi
c6b750e1
DJ
9374DLLTOOL_FOR_TARGET=$ac_cv_path_DLLTOOL_FOR_TARGET
9375
2429c060 9376if test -n "$DLLTOOL_FOR_TARGET"; then
c6b750e1
DJ
9377 echo "$as_me:$LINENO: result: $DLLTOOL_FOR_TARGET" >&5
9378echo "${ECHO_T}$DLLTOOL_FOR_TARGET" >&6
2429c060 9379else
c6b750e1
DJ
9380 echo "$as_me:$LINENO: result: no" >&5
9381echo "${ECHO_T}no" >&6
2429c060
PB
9382fi
9383
9384fi
9385if test -z "$ac_cv_path_DLLTOOL_FOR_TARGET" ; then
9a819804
AO
9386
9387
9388if test -n "$DLLTOOL_FOR_TARGET"; then
9389 ac_cv_prog_DLLTOOL_FOR_TARGET=$DLLTOOL_FOR_TARGET
9390elif test -n "$ac_cv_prog_DLLTOOL_FOR_TARGET"; then
9391 DLLTOOL_FOR_TARGET=$ac_cv_prog_DLLTOOL_FOR_TARGET
9392fi
9393
9394if test -n "$ac_cv_prog_DLLTOOL_FOR_TARGET"; then
9395 for ncn_progname in dlltool; do
9396 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
9397set dummy ${ncn_progname}; ac_word=$2
9398echo "$as_me:$LINENO: checking for $ac_word" >&5
9399echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
9400if test "${ac_cv_prog_DLLTOOL_FOR_TARGET+set}" = set; then
9401 echo $ECHO_N "(cached) $ECHO_C" >&6
9402else
9403 if test -n "$DLLTOOL_FOR_TARGET"; then
9404 ac_cv_prog_DLLTOOL_FOR_TARGET="$DLLTOOL_FOR_TARGET" # Let the user override the test.
9405else
9406as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9407for as_dir in $PATH
9408do
9409 IFS=$as_save_IFS
9410 test -z "$as_dir" && as_dir=.
9411 for ac_exec_ext in '' $ac_executable_extensions; do
9412 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9413 ac_cv_prog_DLLTOOL_FOR_TARGET="${ncn_progname}"
9414 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
9415 break 2
9416 fi
9417done
9418done
9419
9420fi
9421fi
9422DLLTOOL_FOR_TARGET=$ac_cv_prog_DLLTOOL_FOR_TARGET
9423if test -n "$DLLTOOL_FOR_TARGET"; then
9424 echo "$as_me:$LINENO: result: $DLLTOOL_FOR_TARGET" >&5
9425echo "${ECHO_T}$DLLTOOL_FOR_TARGET" >&6
9426else
9427 echo "$as_me:$LINENO: result: no" >&5
9428echo "${ECHO_T}no" >&6
9429fi
9430
9431 done
9432fi
9433
9434if test -z "$ac_cv_prog_DLLTOOL_FOR_TARGET" && test -n "$with_build_time_tools"; then
2429c060 9435 for ncn_progname in dlltool; do
c6b750e1
DJ
9436 echo "$as_me:$LINENO: checking for ${ncn_progname} in $with_build_time_tools" >&5
9437echo $ECHO_N "checking for ${ncn_progname} in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
9438 if test -x $with_build_time_tools/${ncn_progname}; then
9439 ac_cv_prog_DLLTOOL_FOR_TARGET=$with_build_time_tools/${ncn_progname}
c6b750e1
DJ
9440 echo "$as_me:$LINENO: result: yes" >&5
9441echo "${ECHO_T}yes" >&6
2429c060
PB
9442 break
9443 else
c6b750e1
DJ
9444 echo "$as_me:$LINENO: result: no" >&5
9445echo "${ECHO_T}no" >&6
2429c060
PB
9446 fi
9447 done
9448fi
9449
9450if test -z "$ac_cv_prog_DLLTOOL_FOR_TARGET"; then
9451 for ncn_progname in dlltool; do
9452 if test -n "$ncn_target_tool_prefix"; then
9453 # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
9454set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
9455echo "$as_me:$LINENO: checking for $ac_word" >&5
9456echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
9457if test "${ac_cv_prog_DLLTOOL_FOR_TARGET+set}" = set; then
9458 echo $ECHO_N "(cached) $ECHO_C" >&6
2429c060
PB
9459else
9460 if test -n "$DLLTOOL_FOR_TARGET"; then
9461 ac_cv_prog_DLLTOOL_FOR_TARGET="$DLLTOOL_FOR_TARGET" # Let the user override the test.
9462else
c6b750e1
DJ
9463as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9464for as_dir in $PATH
9465do
9466 IFS=$as_save_IFS
9467 test -z "$as_dir" && as_dir=.
9468 for ac_exec_ext in '' $ac_executable_extensions; do
9469 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9470 ac_cv_prog_DLLTOOL_FOR_TARGET="${ncn_target_tool_prefix}${ncn_progname}"
9471 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
9472 break 2
9473 fi
9474done
9475done
9476
2429c060
PB
9477fi
9478fi
c6b750e1 9479DLLTOOL_FOR_TARGET=$ac_cv_prog_DLLTOOL_FOR_TARGET
2429c060 9480if test -n "$DLLTOOL_FOR_TARGET"; then
c6b750e1
DJ
9481 echo "$as_me:$LINENO: result: $DLLTOOL_FOR_TARGET" >&5
9482echo "${ECHO_T}$DLLTOOL_FOR_TARGET" >&6
2429c060 9483else
c6b750e1
DJ
9484 echo "$as_me:$LINENO: result: no" >&5
9485echo "${ECHO_T}no" >&6
2429c060
PB
9486fi
9487
9488 fi
9489 if test -z "$ac_cv_prog_DLLTOOL_FOR_TARGET" && test $build = $target ; then
9490 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
9491set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
9492echo "$as_me:$LINENO: checking for $ac_word" >&5
9493echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
9494if test "${ac_cv_prog_DLLTOOL_FOR_TARGET+set}" = set; then
9495 echo $ECHO_N "(cached) $ECHO_C" >&6
2429c060
PB
9496else
9497 if test -n "$DLLTOOL_FOR_TARGET"; then
9498 ac_cv_prog_DLLTOOL_FOR_TARGET="$DLLTOOL_FOR_TARGET" # Let the user override the test.
9499else
c6b750e1
DJ
9500as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9501for as_dir in $PATH
9502do
9503 IFS=$as_save_IFS
9504 test -z "$as_dir" && as_dir=.
9505 for ac_exec_ext in '' $ac_executable_extensions; do
9506 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9507 ac_cv_prog_DLLTOOL_FOR_TARGET="${ncn_progname}"
9508 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
9509 break 2
9510 fi
9511done
9512done
9513
2429c060
PB
9514fi
9515fi
c6b750e1 9516DLLTOOL_FOR_TARGET=$ac_cv_prog_DLLTOOL_FOR_TARGET
2429c060 9517if test -n "$DLLTOOL_FOR_TARGET"; then
c6b750e1
DJ
9518 echo "$as_me:$LINENO: result: $DLLTOOL_FOR_TARGET" >&5
9519echo "${ECHO_T}$DLLTOOL_FOR_TARGET" >&6
2429c060 9520else
c6b750e1
DJ
9521 echo "$as_me:$LINENO: result: no" >&5
9522echo "${ECHO_T}no" >&6
2429c060 9523fi
c6b750e1 9524
2429c060
PB
9525 fi
9526 test -n "$ac_cv_prog_DLLTOOL_FOR_TARGET" && break
9527 done
9528fi
c6b750e1 9529
2429c060
PB
9530if test -z "$ac_cv_prog_DLLTOOL_FOR_TARGET" ; then
9531 set dummy dlltool
9532 if test $build = $target ; then
9533 DLLTOOL_FOR_TARGET="$2"
9534 else
9535 DLLTOOL_FOR_TARGET="${ncn_target_tool_prefix}$2"
9536 fi
d3f5afc4
MS
9537else
9538 DLLTOOL_FOR_TARGET="$ac_cv_prog_DLLTOOL_FOR_TARGET"
2429c060
PB
9539fi
9540
3a35eeb3
PB
9541else
9542 DLLTOOL_FOR_TARGET=$ac_cv_path_DLLTOOL_FOR_TARGET
2429c060
PB
9543fi
9544
9545
9546
9547
9548if test -z "$ac_cv_path_LD_FOR_TARGET" ; then
9549 if test -n "$with_build_time_tools"; then
c6b750e1
DJ
9550 echo "$as_me:$LINENO: checking for ld in $with_build_time_tools" >&5
9551echo $ECHO_N "checking for ld in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
9552 if test -x $with_build_time_tools/ld; then
9553 LD_FOR_TARGET=`cd $with_build_time_tools && pwd`/ld
9554 ac_cv_path_LD_FOR_TARGET=$LD_FOR_TARGET
c6b750e1
DJ
9555 echo "$as_me:$LINENO: result: $ac_cv_path_LD_FOR_TARGET" >&5
9556echo "${ECHO_T}$ac_cv_path_LD_FOR_TARGET" >&6
3a35eeb3 9557 else
c6b750e1
DJ
9558 echo "$as_me:$LINENO: result: no" >&5
9559echo "${ECHO_T}no" >&6
3a35eeb3 9560 fi
2429c060
PB
9561 elif test $build != $host && test $have_gcc_for_target = yes; then
9562 LD_FOR_TARGET=`$GCC_FOR_TARGET --print-prog-name=ld`
d3f5afc4
MS
9563 test $LD_FOR_TARGET = ld && LD_FOR_TARGET=
9564 test -n "$LD_FOR_TARGET" && ac_cv_path_LD_FOR_TARGET=$LD_FOR_TARGET
2429c060
PB
9565 fi
9566fi
c6b750e1 9567if test -z "$ac_cv_path_LD_FOR_TARGET" && test -n "$gcc_cv_tool_dirs"; then
2429c060
PB
9568 # Extract the first word of "ld", so it can be a program name with args.
9569set dummy ld; ac_word=$2
c6b750e1
DJ
9570echo "$as_me:$LINENO: checking for $ac_word" >&5
9571echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
9572if test "${ac_cv_path_LD_FOR_TARGET+set}" = set; then
9573 echo $ECHO_N "(cached) $ECHO_C" >&6
2429c060 9574else
c6b750e1
DJ
9575 case $LD_FOR_TARGET in
9576 [\\/]* | ?:[\\/]*)
2429c060
PB
9577 ac_cv_path_LD_FOR_TARGET="$LD_FOR_TARGET" # Let the user override the test with a path.
9578 ;;
2429c060 9579 *)
c6b750e1
DJ
9580 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9581for as_dir in $gcc_cv_tool_dirs
9582do
9583 IFS=$as_save_IFS
9584 test -z "$as_dir" && as_dir=.
9585 for ac_exec_ext in '' $ac_executable_extensions; do
9586 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9587 ac_cv_path_LD_FOR_TARGET="$as_dir/$ac_word$ac_exec_ext"
9588 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
9589 break 2
9590 fi
9591done
9592done
9593
2429c060
PB
9594 ;;
9595esac
9596fi
c6b750e1
DJ
9597LD_FOR_TARGET=$ac_cv_path_LD_FOR_TARGET
9598
2429c060 9599if test -n "$LD_FOR_TARGET"; then
c6b750e1
DJ
9600 echo "$as_me:$LINENO: result: $LD_FOR_TARGET" >&5
9601echo "${ECHO_T}$LD_FOR_TARGET" >&6
2429c060 9602else
c6b750e1
DJ
9603 echo "$as_me:$LINENO: result: no" >&5
9604echo "${ECHO_T}no" >&6
2429c060
PB
9605fi
9606
9607fi
9608if test -z "$ac_cv_path_LD_FOR_TARGET" ; then
9a819804
AO
9609
9610
9611if test -n "$LD_FOR_TARGET"; then
9612 ac_cv_prog_LD_FOR_TARGET=$LD_FOR_TARGET
9613elif test -n "$ac_cv_prog_LD_FOR_TARGET"; then
9614 LD_FOR_TARGET=$ac_cv_prog_LD_FOR_TARGET
9615fi
9616
9617if test -n "$ac_cv_prog_LD_FOR_TARGET"; then
9618 for ncn_progname in ld; do
9619 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
9620set dummy ${ncn_progname}; ac_word=$2
9621echo "$as_me:$LINENO: checking for $ac_word" >&5
9622echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
9623if test "${ac_cv_prog_LD_FOR_TARGET+set}" = set; then
9624 echo $ECHO_N "(cached) $ECHO_C" >&6
9625else
9626 if test -n "$LD_FOR_TARGET"; then
9627 ac_cv_prog_LD_FOR_TARGET="$LD_FOR_TARGET" # Let the user override the test.
9628else
9629as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9630for as_dir in $PATH
9631do
9632 IFS=$as_save_IFS
9633 test -z "$as_dir" && as_dir=.
9634 for ac_exec_ext in '' $ac_executable_extensions; do
9635 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9636 ac_cv_prog_LD_FOR_TARGET="${ncn_progname}"
9637 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
9638 break 2
9639 fi
9640done
9641done
9642
9643fi
9644fi
9645LD_FOR_TARGET=$ac_cv_prog_LD_FOR_TARGET
9646if test -n "$LD_FOR_TARGET"; then
9647 echo "$as_me:$LINENO: result: $LD_FOR_TARGET" >&5
9648echo "${ECHO_T}$LD_FOR_TARGET" >&6
9649else
9650 echo "$as_me:$LINENO: result: no" >&5
9651echo "${ECHO_T}no" >&6
9652fi
9653
9654 done
9655fi
9656
9657if test -z "$ac_cv_prog_LD_FOR_TARGET" && test -n "$with_build_time_tools"; then
2429c060 9658 for ncn_progname in ld; do
c6b750e1
DJ
9659 echo "$as_me:$LINENO: checking for ${ncn_progname} in $with_build_time_tools" >&5
9660echo $ECHO_N "checking for ${ncn_progname} in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
9661 if test -x $with_build_time_tools/${ncn_progname}; then
9662 ac_cv_prog_LD_FOR_TARGET=$with_build_time_tools/${ncn_progname}
c6b750e1
DJ
9663 echo "$as_me:$LINENO: result: yes" >&5
9664echo "${ECHO_T}yes" >&6
2429c060
PB
9665 break
9666 else
c6b750e1
DJ
9667 echo "$as_me:$LINENO: result: no" >&5
9668echo "${ECHO_T}no" >&6
2429c060
PB
9669 fi
9670 done
9671fi
9672
9673if test -z "$ac_cv_prog_LD_FOR_TARGET"; then
9674 for ncn_progname in ld; do
9675 if test -n "$ncn_target_tool_prefix"; then
9676 # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
9677set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
9678echo "$as_me:$LINENO: checking for $ac_word" >&5
9679echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
9680if test "${ac_cv_prog_LD_FOR_TARGET+set}" = set; then
9681 echo $ECHO_N "(cached) $ECHO_C" >&6
2429c060
PB
9682else
9683 if test -n "$LD_FOR_TARGET"; then
9684 ac_cv_prog_LD_FOR_TARGET="$LD_FOR_TARGET" # Let the user override the test.
9685else
c6b750e1
DJ
9686as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9687for as_dir in $PATH
9688do
9689 IFS=$as_save_IFS
9690 test -z "$as_dir" && as_dir=.
9691 for ac_exec_ext in '' $ac_executable_extensions; do
9692 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9693 ac_cv_prog_LD_FOR_TARGET="${ncn_target_tool_prefix}${ncn_progname}"
9694 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
9695 break 2
9696 fi
9697done
9698done
9699
2429c060
PB
9700fi
9701fi
c6b750e1 9702LD_FOR_TARGET=$ac_cv_prog_LD_FOR_TARGET
2429c060 9703if test -n "$LD_FOR_TARGET"; then
c6b750e1
DJ
9704 echo "$as_me:$LINENO: result: $LD_FOR_TARGET" >&5
9705echo "${ECHO_T}$LD_FOR_TARGET" >&6
2429c060 9706else
c6b750e1
DJ
9707 echo "$as_me:$LINENO: result: no" >&5
9708echo "${ECHO_T}no" >&6
2429c060
PB
9709fi
9710
9711 fi
9712 if test -z "$ac_cv_prog_LD_FOR_TARGET" && test $build = $target ; then
9713 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
9714set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
9715echo "$as_me:$LINENO: checking for $ac_word" >&5
9716echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
9717if test "${ac_cv_prog_LD_FOR_TARGET+set}" = set; then
9718 echo $ECHO_N "(cached) $ECHO_C" >&6
2429c060
PB
9719else
9720 if test -n "$LD_FOR_TARGET"; then
9721 ac_cv_prog_LD_FOR_TARGET="$LD_FOR_TARGET" # Let the user override the test.
9722else
c6b750e1
DJ
9723as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9724for as_dir in $PATH
9725do
9726 IFS=$as_save_IFS
9727 test -z "$as_dir" && as_dir=.
9728 for ac_exec_ext in '' $ac_executable_extensions; do
9729 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9730 ac_cv_prog_LD_FOR_TARGET="${ncn_progname}"
9731 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
9732 break 2
9733 fi
9734done
9735done
9736
2429c060
PB
9737fi
9738fi
c6b750e1 9739LD_FOR_TARGET=$ac_cv_prog_LD_FOR_TARGET
2429c060 9740if test -n "$LD_FOR_TARGET"; then
c6b750e1
DJ
9741 echo "$as_me:$LINENO: result: $LD_FOR_TARGET" >&5
9742echo "${ECHO_T}$LD_FOR_TARGET" >&6
2429c060 9743else
c6b750e1
DJ
9744 echo "$as_me:$LINENO: result: no" >&5
9745echo "${ECHO_T}no" >&6
2429c060 9746fi
c6b750e1 9747
2429c060
PB
9748 fi
9749 test -n "$ac_cv_prog_LD_FOR_TARGET" && break
9750 done
9751fi
c6b750e1 9752
2429c060
PB
9753if test -z "$ac_cv_prog_LD_FOR_TARGET" ; then
9754 set dummy ld
9755 if test $build = $target ; then
9756 LD_FOR_TARGET="$2"
9757 else
9758 LD_FOR_TARGET="${ncn_target_tool_prefix}$2"
9759 fi
d3f5afc4
MS
9760else
9761 LD_FOR_TARGET="$ac_cv_prog_LD_FOR_TARGET"
2429c060
PB
9762fi
9763
3a35eeb3
PB
9764else
9765 LD_FOR_TARGET=$ac_cv_path_LD_FOR_TARGET
2429c060
PB
9766fi
9767
9768
9769
9770
9771if test -z "$ac_cv_path_LIPO_FOR_TARGET" ; then
9772 if test -n "$with_build_time_tools"; then
c6b750e1
DJ
9773 echo "$as_me:$LINENO: checking for lipo in $with_build_time_tools" >&5
9774echo $ECHO_N "checking for lipo in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
9775 if test -x $with_build_time_tools/lipo; then
9776 LIPO_FOR_TARGET=`cd $with_build_time_tools && pwd`/lipo
9777 ac_cv_path_LIPO_FOR_TARGET=$LIPO_FOR_TARGET
c6b750e1
DJ
9778 echo "$as_me:$LINENO: result: $ac_cv_path_LIPO_FOR_TARGET" >&5
9779echo "${ECHO_T}$ac_cv_path_LIPO_FOR_TARGET" >&6
3a35eeb3 9780 else
c6b750e1
DJ
9781 echo "$as_me:$LINENO: result: no" >&5
9782echo "${ECHO_T}no" >&6
3a35eeb3 9783 fi
2429c060
PB
9784 elif test $build != $host && test $have_gcc_for_target = yes; then
9785 LIPO_FOR_TARGET=`$GCC_FOR_TARGET --print-prog-name=lipo`
d3f5afc4
MS
9786 test $LIPO_FOR_TARGET = lipo && LIPO_FOR_TARGET=
9787 test -n "$LIPO_FOR_TARGET" && ac_cv_path_LIPO_FOR_TARGET=$LIPO_FOR_TARGET
2429c060
PB
9788 fi
9789fi
9a819804
AO
9790if test -z "$ac_cv_path_LIPO_FOR_TARGET" && test -n "$gcc_cv_tool_dirs"; then
9791 # Extract the first word of "lipo", so it can be a program name with args.
9792set dummy lipo; ac_word=$2
9793echo "$as_me:$LINENO: checking for $ac_word" >&5
9794echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
9795if test "${ac_cv_path_LIPO_FOR_TARGET+set}" = set; then
9796 echo $ECHO_N "(cached) $ECHO_C" >&6
9797else
9798 case $LIPO_FOR_TARGET in
9799 [\\/]* | ?:[\\/]*)
9800 ac_cv_path_LIPO_FOR_TARGET="$LIPO_FOR_TARGET" # Let the user override the test with a path.
9801 ;;
9802 *)
9803 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9804for as_dir in $gcc_cv_tool_dirs
9805do
9806 IFS=$as_save_IFS
9807 test -z "$as_dir" && as_dir=.
9808 for ac_exec_ext in '' $ac_executable_extensions; do
9809 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9810 ac_cv_path_LIPO_FOR_TARGET="$as_dir/$ac_word$ac_exec_ext"
9811 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
9812 break 2
9813 fi
9814done
9815done
9816
9817 ;;
9818esac
9819fi
9820LIPO_FOR_TARGET=$ac_cv_path_LIPO_FOR_TARGET
9821
9822if test -n "$LIPO_FOR_TARGET"; then
9823 echo "$as_me:$LINENO: result: $LIPO_FOR_TARGET" >&5
9824echo "${ECHO_T}$LIPO_FOR_TARGET" >&6
9825else
9826 echo "$as_me:$LINENO: result: no" >&5
9827echo "${ECHO_T}no" >&6
9828fi
9829
9830fi
9831if test -z "$ac_cv_path_LIPO_FOR_TARGET" ; then
9832
9833
9834if test -n "$LIPO_FOR_TARGET"; then
9835 ac_cv_prog_LIPO_FOR_TARGET=$LIPO_FOR_TARGET
9836elif test -n "$ac_cv_prog_LIPO_FOR_TARGET"; then
9837 LIPO_FOR_TARGET=$ac_cv_prog_LIPO_FOR_TARGET
9838fi
9839
9840if test -n "$ac_cv_prog_LIPO_FOR_TARGET"; then
9841 for ncn_progname in lipo; do
9842 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
9843set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
9844echo "$as_me:$LINENO: checking for $ac_word" >&5
9845echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
9a819804 9846if test "${ac_cv_prog_LIPO_FOR_TARGET+set}" = set; then
c6b750e1 9847 echo $ECHO_N "(cached) $ECHO_C" >&6
2429c060 9848else
9a819804
AO
9849 if test -n "$LIPO_FOR_TARGET"; then
9850 ac_cv_prog_LIPO_FOR_TARGET="$LIPO_FOR_TARGET" # Let the user override the test.
9851else
9852as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9853for as_dir in $PATH
c6b750e1
DJ
9854do
9855 IFS=$as_save_IFS
9856 test -z "$as_dir" && as_dir=.
9857 for ac_exec_ext in '' $ac_executable_extensions; do
9858 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9a819804 9859 ac_cv_prog_LIPO_FOR_TARGET="${ncn_progname}"
c6b750e1
DJ
9860 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
9861 break 2
9862 fi
9863done
9864done
9865
2429c060 9866fi
9a819804
AO
9867fi
9868LIPO_FOR_TARGET=$ac_cv_prog_LIPO_FOR_TARGET
2429c060 9869if test -n "$LIPO_FOR_TARGET"; then
c6b750e1
DJ
9870 echo "$as_me:$LINENO: result: $LIPO_FOR_TARGET" >&5
9871echo "${ECHO_T}$LIPO_FOR_TARGET" >&6
2429c060 9872else
c6b750e1
DJ
9873 echo "$as_me:$LINENO: result: no" >&5
9874echo "${ECHO_T}no" >&6
2429c060
PB
9875fi
9876
9a819804 9877 done
2429c060 9878fi
9a819804
AO
9879
9880if test -z "$ac_cv_prog_LIPO_FOR_TARGET" && test -n "$with_build_time_tools"; then
2429c060 9881 for ncn_progname in lipo; do
c6b750e1
DJ
9882 echo "$as_me:$LINENO: checking for ${ncn_progname} in $with_build_time_tools" >&5
9883echo $ECHO_N "checking for ${ncn_progname} in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
9884 if test -x $with_build_time_tools/${ncn_progname}; then
9885 ac_cv_prog_LIPO_FOR_TARGET=$with_build_time_tools/${ncn_progname}
c6b750e1
DJ
9886 echo "$as_me:$LINENO: result: yes" >&5
9887echo "${ECHO_T}yes" >&6
2429c060
PB
9888 break
9889 else
c6b750e1
DJ
9890 echo "$as_me:$LINENO: result: no" >&5
9891echo "${ECHO_T}no" >&6
2429c060
PB
9892 fi
9893 done
9894fi
9895
9896if test -z "$ac_cv_prog_LIPO_FOR_TARGET"; then
9897 for ncn_progname in lipo; do
9898 if test -n "$ncn_target_tool_prefix"; then
9899 # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
9900set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
9901echo "$as_me:$LINENO: checking for $ac_word" >&5
9902echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
9903if test "${ac_cv_prog_LIPO_FOR_TARGET+set}" = set; then
9904 echo $ECHO_N "(cached) $ECHO_C" >&6
2429c060
PB
9905else
9906 if test -n "$LIPO_FOR_TARGET"; then
9907 ac_cv_prog_LIPO_FOR_TARGET="$LIPO_FOR_TARGET" # Let the user override the test.
9908else
c6b750e1
DJ
9909as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9910for as_dir in $PATH
9911do
9912 IFS=$as_save_IFS
9913 test -z "$as_dir" && as_dir=.
9914 for ac_exec_ext in '' $ac_executable_extensions; do
9915 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9916 ac_cv_prog_LIPO_FOR_TARGET="${ncn_target_tool_prefix}${ncn_progname}"
9917 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
9918 break 2
9919 fi
9920done
9921done
9922
2429c060
PB
9923fi
9924fi
c6b750e1 9925LIPO_FOR_TARGET=$ac_cv_prog_LIPO_FOR_TARGET
2429c060 9926if test -n "$LIPO_FOR_TARGET"; then
c6b750e1
DJ
9927 echo "$as_me:$LINENO: result: $LIPO_FOR_TARGET" >&5
9928echo "${ECHO_T}$LIPO_FOR_TARGET" >&6
2429c060 9929else
c6b750e1
DJ
9930 echo "$as_me:$LINENO: result: no" >&5
9931echo "${ECHO_T}no" >&6
2429c060
PB
9932fi
9933
9934 fi
9935 if test -z "$ac_cv_prog_LIPO_FOR_TARGET" && test $build = $target ; then
9936 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
9937set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
9938echo "$as_me:$LINENO: checking for $ac_word" >&5
9939echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
9940if test "${ac_cv_prog_LIPO_FOR_TARGET+set}" = set; then
9941 echo $ECHO_N "(cached) $ECHO_C" >&6
2429c060
PB
9942else
9943 if test -n "$LIPO_FOR_TARGET"; then
9944 ac_cv_prog_LIPO_FOR_TARGET="$LIPO_FOR_TARGET" # Let the user override the test.
9945else
c6b750e1
DJ
9946as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9947for as_dir in $PATH
9948do
9949 IFS=$as_save_IFS
9950 test -z "$as_dir" && as_dir=.
9951 for ac_exec_ext in '' $ac_executable_extensions; do
9952 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9953 ac_cv_prog_LIPO_FOR_TARGET="${ncn_progname}"
9954 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
9955 break 2
9956 fi
9957done
9958done
9959
2429c060
PB
9960fi
9961fi
c6b750e1 9962LIPO_FOR_TARGET=$ac_cv_prog_LIPO_FOR_TARGET
2429c060 9963if test -n "$LIPO_FOR_TARGET"; then
c6b750e1
DJ
9964 echo "$as_me:$LINENO: result: $LIPO_FOR_TARGET" >&5
9965echo "${ECHO_T}$LIPO_FOR_TARGET" >&6
2429c060 9966else
c6b750e1
DJ
9967 echo "$as_me:$LINENO: result: no" >&5
9968echo "${ECHO_T}no" >&6
2429c060 9969fi
c6b750e1 9970
2429c060
PB
9971 fi
9972 test -n "$ac_cv_prog_LIPO_FOR_TARGET" && break
9973 done
9974fi
c6b750e1 9975
2429c060
PB
9976if test -z "$ac_cv_prog_LIPO_FOR_TARGET" ; then
9977 set dummy lipo
9978 if test $build = $target ; then
9979 LIPO_FOR_TARGET="$2"
9980 else
9981 LIPO_FOR_TARGET="${ncn_target_tool_prefix}$2"
9982 fi
d3f5afc4
MS
9983else
9984 LIPO_FOR_TARGET="$ac_cv_prog_LIPO_FOR_TARGET"
2429c060
PB
9985fi
9986
3a35eeb3
PB
9987else
9988 LIPO_FOR_TARGET=$ac_cv_path_LIPO_FOR_TARGET
2429c060
PB
9989fi
9990
9991
9992
9993
9994if test -z "$ac_cv_path_NM_FOR_TARGET" ; then
9995 if test -n "$with_build_time_tools"; then
c6b750e1
DJ
9996 echo "$as_me:$LINENO: checking for nm in $with_build_time_tools" >&5
9997echo $ECHO_N "checking for nm in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
9998 if test -x $with_build_time_tools/nm; then
9999 NM_FOR_TARGET=`cd $with_build_time_tools && pwd`/nm
10000 ac_cv_path_NM_FOR_TARGET=$NM_FOR_TARGET
c6b750e1
DJ
10001 echo "$as_me:$LINENO: result: $ac_cv_path_NM_FOR_TARGET" >&5
10002echo "${ECHO_T}$ac_cv_path_NM_FOR_TARGET" >&6
3a35eeb3 10003 else
c6b750e1
DJ
10004 echo "$as_me:$LINENO: result: no" >&5
10005echo "${ECHO_T}no" >&6
3a35eeb3 10006 fi
2429c060
PB
10007 elif test $build != $host && test $have_gcc_for_target = yes; then
10008 NM_FOR_TARGET=`$GCC_FOR_TARGET --print-prog-name=nm`
d3f5afc4
MS
10009 test $NM_FOR_TARGET = nm && NM_FOR_TARGET=
10010 test -n "$NM_FOR_TARGET" && ac_cv_path_NM_FOR_TARGET=$NM_FOR_TARGET
2429c060
PB
10011 fi
10012fi
c6b750e1 10013if test -z "$ac_cv_path_NM_FOR_TARGET" && test -n "$gcc_cv_tool_dirs"; then
2429c060
PB
10014 # Extract the first word of "nm", so it can be a program name with args.
10015set dummy nm; ac_word=$2
c6b750e1
DJ
10016echo "$as_me:$LINENO: checking for $ac_word" >&5
10017echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
10018if test "${ac_cv_path_NM_FOR_TARGET+set}" = set; then
10019 echo $ECHO_N "(cached) $ECHO_C" >&6
2429c060 10020else
c6b750e1
DJ
10021 case $NM_FOR_TARGET in
10022 [\\/]* | ?:[\\/]*)
2429c060
PB
10023 ac_cv_path_NM_FOR_TARGET="$NM_FOR_TARGET" # Let the user override the test with a path.
10024 ;;
2429c060 10025 *)
c6b750e1
DJ
10026 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10027for as_dir in $gcc_cv_tool_dirs
10028do
10029 IFS=$as_save_IFS
10030 test -z "$as_dir" && as_dir=.
10031 for ac_exec_ext in '' $ac_executable_extensions; do
10032 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
10033 ac_cv_path_NM_FOR_TARGET="$as_dir/$ac_word$ac_exec_ext"
10034 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
10035 break 2
10036 fi
10037done
10038done
10039
2429c060
PB
10040 ;;
10041esac
10042fi
c6b750e1
DJ
10043NM_FOR_TARGET=$ac_cv_path_NM_FOR_TARGET
10044
2429c060 10045if test -n "$NM_FOR_TARGET"; then
c6b750e1
DJ
10046 echo "$as_me:$LINENO: result: $NM_FOR_TARGET" >&5
10047echo "${ECHO_T}$NM_FOR_TARGET" >&6
2429c060 10048else
c6b750e1
DJ
10049 echo "$as_me:$LINENO: result: no" >&5
10050echo "${ECHO_T}no" >&6
2429c060
PB
10051fi
10052
10053fi
10054if test -z "$ac_cv_path_NM_FOR_TARGET" ; then
9a819804
AO
10055
10056
10057if test -n "$NM_FOR_TARGET"; then
10058 ac_cv_prog_NM_FOR_TARGET=$NM_FOR_TARGET
10059elif test -n "$ac_cv_prog_NM_FOR_TARGET"; then
10060 NM_FOR_TARGET=$ac_cv_prog_NM_FOR_TARGET
10061fi
10062
10063if test -n "$ac_cv_prog_NM_FOR_TARGET"; then
10064 for ncn_progname in nm; do
10065 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
10066set dummy ${ncn_progname}; ac_word=$2
10067echo "$as_me:$LINENO: checking for $ac_word" >&5
10068echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
10069if test "${ac_cv_prog_NM_FOR_TARGET+set}" = set; then
10070 echo $ECHO_N "(cached) $ECHO_C" >&6
10071else
10072 if test -n "$NM_FOR_TARGET"; then
10073 ac_cv_prog_NM_FOR_TARGET="$NM_FOR_TARGET" # Let the user override the test.
10074else
10075as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10076for as_dir in $PATH
10077do
10078 IFS=$as_save_IFS
10079 test -z "$as_dir" && as_dir=.
10080 for ac_exec_ext in '' $ac_executable_extensions; do
10081 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
10082 ac_cv_prog_NM_FOR_TARGET="${ncn_progname}"
10083 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
10084 break 2
10085 fi
10086done
10087done
10088
10089fi
10090fi
10091NM_FOR_TARGET=$ac_cv_prog_NM_FOR_TARGET
10092if test -n "$NM_FOR_TARGET"; then
10093 echo "$as_me:$LINENO: result: $NM_FOR_TARGET" >&5
10094echo "${ECHO_T}$NM_FOR_TARGET" >&6
10095else
10096 echo "$as_me:$LINENO: result: no" >&5
10097echo "${ECHO_T}no" >&6
10098fi
10099
10100 done
10101fi
10102
10103if test -z "$ac_cv_prog_NM_FOR_TARGET" && test -n "$with_build_time_tools"; then
2429c060 10104 for ncn_progname in nm; do
c6b750e1
DJ
10105 echo "$as_me:$LINENO: checking for ${ncn_progname} in $with_build_time_tools" >&5
10106echo $ECHO_N "checking for ${ncn_progname} in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
10107 if test -x $with_build_time_tools/${ncn_progname}; then
10108 ac_cv_prog_NM_FOR_TARGET=$with_build_time_tools/${ncn_progname}
c6b750e1
DJ
10109 echo "$as_me:$LINENO: result: yes" >&5
10110echo "${ECHO_T}yes" >&6
2429c060
PB
10111 break
10112 else
c6b750e1
DJ
10113 echo "$as_me:$LINENO: result: no" >&5
10114echo "${ECHO_T}no" >&6
2429c060
PB
10115 fi
10116 done
10117fi
10118
10119if test -z "$ac_cv_prog_NM_FOR_TARGET"; then
10120 for ncn_progname in nm; do
10121 if test -n "$ncn_target_tool_prefix"; then
10122 # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
7e0f7140 10123set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
10124echo "$as_me:$LINENO: checking for $ac_word" >&5
10125echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
10126if test "${ac_cv_prog_NM_FOR_TARGET+set}" = set; then
10127 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af 10128else
55db4b87
PB
10129 if test -n "$NM_FOR_TARGET"; then
10130 ac_cv_prog_NM_FOR_TARGET="$NM_FOR_TARGET" # Let the user override the test.
859789af 10131else
c6b750e1
DJ
10132as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10133for as_dir in $PATH
10134do
10135 IFS=$as_save_IFS
10136 test -z "$as_dir" && as_dir=.
10137 for ac_exec_ext in '' $ac_executable_extensions; do
10138 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
10139 ac_cv_prog_NM_FOR_TARGET="${ncn_target_tool_prefix}${ncn_progname}"
10140 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
10141 break 2
10142 fi
10143done
10144done
10145
859789af
AC
10146fi
10147fi
c6b750e1 10148NM_FOR_TARGET=$ac_cv_prog_NM_FOR_TARGET
55db4b87 10149if test -n "$NM_FOR_TARGET"; then
c6b750e1
DJ
10150 echo "$as_me:$LINENO: result: $NM_FOR_TARGET" >&5
10151echo "${ECHO_T}$NM_FOR_TARGET" >&6
859789af 10152else
c6b750e1
DJ
10153 echo "$as_me:$LINENO: result: no" >&5
10154echo "${ECHO_T}no" >&6
859789af
AC
10155fi
10156
2429c060
PB
10157 fi
10158 if test -z "$ac_cv_prog_NM_FOR_TARGET" && test $build = $target ; then
10159 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
05cbd757 10160set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
10161echo "$as_me:$LINENO: checking for $ac_word" >&5
10162echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
10163if test "${ac_cv_prog_NM_FOR_TARGET+set}" = set; then
10164 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af 10165else
05cbd757
PB
10166 if test -n "$NM_FOR_TARGET"; then
10167 ac_cv_prog_NM_FOR_TARGET="$NM_FOR_TARGET" # Let the user override the test.
859789af 10168else
c6b750e1
DJ
10169as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10170for as_dir in $PATH
10171do
10172 IFS=$as_save_IFS
10173 test -z "$as_dir" && as_dir=.
10174 for ac_exec_ext in '' $ac_executable_extensions; do
10175 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
10176 ac_cv_prog_NM_FOR_TARGET="${ncn_progname}"
10177 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
10178 break 2
10179 fi
10180done
10181done
10182
859789af
AC
10183fi
10184fi
c6b750e1 10185NM_FOR_TARGET=$ac_cv_prog_NM_FOR_TARGET
05cbd757 10186if test -n "$NM_FOR_TARGET"; then
c6b750e1
DJ
10187 echo "$as_me:$LINENO: result: $NM_FOR_TARGET" >&5
10188echo "${ECHO_T}$NM_FOR_TARGET" >&6
859789af 10189else
c6b750e1
DJ
10190 echo "$as_me:$LINENO: result: no" >&5
10191echo "${ECHO_T}no" >&6
859789af 10192fi
c6b750e1 10193
2429c060
PB
10194 fi
10195 test -n "$ac_cv_prog_NM_FOR_TARGET" && break
10196 done
10197fi
c6b750e1 10198
05cbd757
PB
10199if test -z "$ac_cv_prog_NM_FOR_TARGET" ; then
10200 set dummy nm
10201 if test $build = $target ; then
10202 NM_FOR_TARGET="$2"
859789af 10203 else
05cbd757 10204 NM_FOR_TARGET="${ncn_target_tool_prefix}$2"
859789af 10205 fi
d3f5afc4
MS
10206else
10207 NM_FOR_TARGET="$ac_cv_prog_NM_FOR_TARGET"
859789af
AC
10208fi
10209
3a35eeb3
PB
10210else
10211 NM_FOR_TARGET=$ac_cv_path_NM_FOR_TARGET
2429c060
PB
10212fi
10213
10214
10215
10216
10217if test -z "$ac_cv_path_OBJDUMP_FOR_TARGET" ; then
10218 if test -n "$with_build_time_tools"; then
c6b750e1
DJ
10219 echo "$as_me:$LINENO: checking for objdump in $with_build_time_tools" >&5
10220echo $ECHO_N "checking for objdump in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
10221 if test -x $with_build_time_tools/objdump; then
10222 OBJDUMP_FOR_TARGET=`cd $with_build_time_tools && pwd`/objdump
10223 ac_cv_path_OBJDUMP_FOR_TARGET=$OBJDUMP_FOR_TARGET
c6b750e1
DJ
10224 echo "$as_me:$LINENO: result: $ac_cv_path_OBJDUMP_FOR_TARGET" >&5
10225echo "${ECHO_T}$ac_cv_path_OBJDUMP_FOR_TARGET" >&6
3a35eeb3 10226 else
c6b750e1
DJ
10227 echo "$as_me:$LINENO: result: no" >&5
10228echo "${ECHO_T}no" >&6
3a35eeb3 10229 fi
2429c060
PB
10230 elif test $build != $host && test $have_gcc_for_target = yes; then
10231 OBJDUMP_FOR_TARGET=`$GCC_FOR_TARGET --print-prog-name=objdump`
d3f5afc4
MS
10232 test $OBJDUMP_FOR_TARGET = objdump && OBJDUMP_FOR_TARGET=
10233 test -n "$OBJDUMP_FOR_TARGET" && ac_cv_path_OBJDUMP_FOR_TARGET=$OBJDUMP_FOR_TARGET
2429c060
PB
10234 fi
10235fi
c6b750e1 10236if test -z "$ac_cv_path_OBJDUMP_FOR_TARGET" && test -n "$gcc_cv_tool_dirs"; then
2429c060
PB
10237 # Extract the first word of "objdump", so it can be a program name with args.
10238set dummy objdump; ac_word=$2
c6b750e1
DJ
10239echo "$as_me:$LINENO: checking for $ac_word" >&5
10240echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
10241if test "${ac_cv_path_OBJDUMP_FOR_TARGET+set}" = set; then
10242 echo $ECHO_N "(cached) $ECHO_C" >&6
2429c060 10243else
c6b750e1
DJ
10244 case $OBJDUMP_FOR_TARGET in
10245 [\\/]* | ?:[\\/]*)
2429c060
PB
10246 ac_cv_path_OBJDUMP_FOR_TARGET="$OBJDUMP_FOR_TARGET" # Let the user override the test with a path.
10247 ;;
2429c060 10248 *)
c6b750e1
DJ
10249 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10250for as_dir in $gcc_cv_tool_dirs
10251do
10252 IFS=$as_save_IFS
10253 test -z "$as_dir" && as_dir=.
10254 for ac_exec_ext in '' $ac_executable_extensions; do
10255 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
10256 ac_cv_path_OBJDUMP_FOR_TARGET="$as_dir/$ac_word$ac_exec_ext"
10257 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
10258 break 2
10259 fi
10260done
10261done
10262
2429c060
PB
10263 ;;
10264esac
10265fi
c6b750e1
DJ
10266OBJDUMP_FOR_TARGET=$ac_cv_path_OBJDUMP_FOR_TARGET
10267
2429c060 10268if test -n "$OBJDUMP_FOR_TARGET"; then
c6b750e1
DJ
10269 echo "$as_me:$LINENO: result: $OBJDUMP_FOR_TARGET" >&5
10270echo "${ECHO_T}$OBJDUMP_FOR_TARGET" >&6
2429c060 10271else
c6b750e1
DJ
10272 echo "$as_me:$LINENO: result: no" >&5
10273echo "${ECHO_T}no" >&6
2429c060
PB
10274fi
10275
10276fi
10277if test -z "$ac_cv_path_OBJDUMP_FOR_TARGET" ; then
9a819804
AO
10278
10279
10280if test -n "$OBJDUMP_FOR_TARGET"; then
10281 ac_cv_prog_OBJDUMP_FOR_TARGET=$OBJDUMP_FOR_TARGET
10282elif test -n "$ac_cv_prog_OBJDUMP_FOR_TARGET"; then
10283 OBJDUMP_FOR_TARGET=$ac_cv_prog_OBJDUMP_FOR_TARGET
10284fi
10285
10286if test -n "$ac_cv_prog_OBJDUMP_FOR_TARGET"; then
10287 for ncn_progname in objdump; do
10288 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
10289set dummy ${ncn_progname}; ac_word=$2
10290echo "$as_me:$LINENO: checking for $ac_word" >&5
10291echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
10292if test "${ac_cv_prog_OBJDUMP_FOR_TARGET+set}" = set; then
10293 echo $ECHO_N "(cached) $ECHO_C" >&6
10294else
10295 if test -n "$OBJDUMP_FOR_TARGET"; then
10296 ac_cv_prog_OBJDUMP_FOR_TARGET="$OBJDUMP_FOR_TARGET" # Let the user override the test.
10297else
10298as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10299for as_dir in $PATH
10300do
10301 IFS=$as_save_IFS
10302 test -z "$as_dir" && as_dir=.
10303 for ac_exec_ext in '' $ac_executable_extensions; do
10304 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
10305 ac_cv_prog_OBJDUMP_FOR_TARGET="${ncn_progname}"
10306 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
10307 break 2
10308 fi
10309done
10310done
10311
10312fi
10313fi
10314OBJDUMP_FOR_TARGET=$ac_cv_prog_OBJDUMP_FOR_TARGET
10315if test -n "$OBJDUMP_FOR_TARGET"; then
10316 echo "$as_me:$LINENO: result: $OBJDUMP_FOR_TARGET" >&5
10317echo "${ECHO_T}$OBJDUMP_FOR_TARGET" >&6
10318else
10319 echo "$as_me:$LINENO: result: no" >&5
10320echo "${ECHO_T}no" >&6
10321fi
10322
10323 done
10324fi
10325
10326if test -z "$ac_cv_prog_OBJDUMP_FOR_TARGET" && test -n "$with_build_time_tools"; then
2429c060 10327 for ncn_progname in objdump; do
c6b750e1
DJ
10328 echo "$as_me:$LINENO: checking for ${ncn_progname} in $with_build_time_tools" >&5
10329echo $ECHO_N "checking for ${ncn_progname} in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
10330 if test -x $with_build_time_tools/${ncn_progname}; then
10331 ac_cv_prog_OBJDUMP_FOR_TARGET=$with_build_time_tools/${ncn_progname}
c6b750e1
DJ
10332 echo "$as_me:$LINENO: result: yes" >&5
10333echo "${ECHO_T}yes" >&6
2429c060
PB
10334 break
10335 else
c6b750e1
DJ
10336 echo "$as_me:$LINENO: result: no" >&5
10337echo "${ECHO_T}no" >&6
2429c060
PB
10338 fi
10339 done
10340fi
10341
10342if test -z "$ac_cv_prog_OBJDUMP_FOR_TARGET"; then
10343 for ncn_progname in objdump; do
10344 if test -n "$ncn_target_tool_prefix"; then
10345 # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
05cbd757 10346set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
10347echo "$as_me:$LINENO: checking for $ac_word" >&5
10348echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
10349if test "${ac_cv_prog_OBJDUMP_FOR_TARGET+set}" = set; then
10350 echo $ECHO_N "(cached) $ECHO_C" >&6
5ae72758
DJ
10351else
10352 if test -n "$OBJDUMP_FOR_TARGET"; then
10353 ac_cv_prog_OBJDUMP_FOR_TARGET="$OBJDUMP_FOR_TARGET" # Let the user override the test.
10354else
c6b750e1
DJ
10355as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10356for as_dir in $PATH
10357do
10358 IFS=$as_save_IFS
10359 test -z "$as_dir" && as_dir=.
10360 for ac_exec_ext in '' $ac_executable_extensions; do
10361 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
10362 ac_cv_prog_OBJDUMP_FOR_TARGET="${ncn_target_tool_prefix}${ncn_progname}"
10363 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
10364 break 2
10365 fi
10366done
10367done
10368
5ae72758
DJ
10369fi
10370fi
c6b750e1 10371OBJDUMP_FOR_TARGET=$ac_cv_prog_OBJDUMP_FOR_TARGET
5ae72758 10372if test -n "$OBJDUMP_FOR_TARGET"; then
c6b750e1
DJ
10373 echo "$as_me:$LINENO: result: $OBJDUMP_FOR_TARGET" >&5
10374echo "${ECHO_T}$OBJDUMP_FOR_TARGET" >&6
5ae72758 10375else
c6b750e1
DJ
10376 echo "$as_me:$LINENO: result: no" >&5
10377echo "${ECHO_T}no" >&6
5ae72758
DJ
10378fi
10379
2429c060
PB
10380 fi
10381 if test -z "$ac_cv_prog_OBJDUMP_FOR_TARGET" && test $build = $target ; then
10382 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
5ae72758 10383set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
10384echo "$as_me:$LINENO: checking for $ac_word" >&5
10385echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
10386if test "${ac_cv_prog_OBJDUMP_FOR_TARGET+set}" = set; then
10387 echo $ECHO_N "(cached) $ECHO_C" >&6
5ae72758
DJ
10388else
10389 if test -n "$OBJDUMP_FOR_TARGET"; then
10390 ac_cv_prog_OBJDUMP_FOR_TARGET="$OBJDUMP_FOR_TARGET" # Let the user override the test.
10391else
c6b750e1
DJ
10392as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10393for as_dir in $PATH
10394do
10395 IFS=$as_save_IFS
10396 test -z "$as_dir" && as_dir=.
10397 for ac_exec_ext in '' $ac_executable_extensions; do
10398 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
10399 ac_cv_prog_OBJDUMP_FOR_TARGET="${ncn_progname}"
10400 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
10401 break 2
10402 fi
10403done
10404done
10405
5ae72758
DJ
10406fi
10407fi
c6b750e1 10408OBJDUMP_FOR_TARGET=$ac_cv_prog_OBJDUMP_FOR_TARGET
5ae72758 10409if test -n "$OBJDUMP_FOR_TARGET"; then
c6b750e1
DJ
10410 echo "$as_me:$LINENO: result: $OBJDUMP_FOR_TARGET" >&5
10411echo "${ECHO_T}$OBJDUMP_FOR_TARGET" >&6
5ae72758 10412else
c6b750e1
DJ
10413 echo "$as_me:$LINENO: result: no" >&5
10414echo "${ECHO_T}no" >&6
5ae72758 10415fi
c6b750e1 10416
2429c060
PB
10417 fi
10418 test -n "$ac_cv_prog_OBJDUMP_FOR_TARGET" && break
10419 done
10420fi
c6b750e1 10421
5ae72758
DJ
10422if test -z "$ac_cv_prog_OBJDUMP_FOR_TARGET" ; then
10423 set dummy objdump
10424 if test $build = $target ; then
10425 OBJDUMP_FOR_TARGET="$2"
10426 else
10427 OBJDUMP_FOR_TARGET="${ncn_target_tool_prefix}$2"
10428 fi
d3f5afc4
MS
10429else
10430 OBJDUMP_FOR_TARGET="$ac_cv_prog_OBJDUMP_FOR_TARGET"
5ae72758
DJ
10431fi
10432
3a35eeb3
PB
10433else
10434 OBJDUMP_FOR_TARGET=$ac_cv_path_OBJDUMP_FOR_TARGET
2429c060
PB
10435fi
10436
10437
10438
10439
10440if test -z "$ac_cv_path_RANLIB_FOR_TARGET" ; then
10441 if test -n "$with_build_time_tools"; then
c6b750e1
DJ
10442 echo "$as_me:$LINENO: checking for ranlib in $with_build_time_tools" >&5
10443echo $ECHO_N "checking for ranlib in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
10444 if test -x $with_build_time_tools/ranlib; then
10445 RANLIB_FOR_TARGET=`cd $with_build_time_tools && pwd`/ranlib
10446 ac_cv_path_RANLIB_FOR_TARGET=$RANLIB_FOR_TARGET
c6b750e1
DJ
10447 echo "$as_me:$LINENO: result: $ac_cv_path_RANLIB_FOR_TARGET" >&5
10448echo "${ECHO_T}$ac_cv_path_RANLIB_FOR_TARGET" >&6
3a35eeb3 10449 else
c6b750e1
DJ
10450 echo "$as_me:$LINENO: result: no" >&5
10451echo "${ECHO_T}no" >&6
3a35eeb3 10452 fi
2429c060
PB
10453 elif test $build != $host && test $have_gcc_for_target = yes; then
10454 RANLIB_FOR_TARGET=`$GCC_FOR_TARGET --print-prog-name=ranlib`
d3f5afc4
MS
10455 test $RANLIB_FOR_TARGET = ranlib && RANLIB_FOR_TARGET=
10456 test -n "$RANLIB_FOR_TARGET" && ac_cv_path_RANLIB_FOR_TARGET=$RANLIB_FOR_TARGET
2429c060
PB
10457 fi
10458fi
c6b750e1 10459if test -z "$ac_cv_path_RANLIB_FOR_TARGET" && test -n "$gcc_cv_tool_dirs"; then
2429c060
PB
10460 # Extract the first word of "ranlib", so it can be a program name with args.
10461set dummy ranlib; ac_word=$2
c6b750e1
DJ
10462echo "$as_me:$LINENO: checking for $ac_word" >&5
10463echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
10464if test "${ac_cv_path_RANLIB_FOR_TARGET+set}" = set; then
10465 echo $ECHO_N "(cached) $ECHO_C" >&6
2429c060 10466else
c6b750e1
DJ
10467 case $RANLIB_FOR_TARGET in
10468 [\\/]* | ?:[\\/]*)
2429c060
PB
10469 ac_cv_path_RANLIB_FOR_TARGET="$RANLIB_FOR_TARGET" # Let the user override the test with a path.
10470 ;;
2429c060 10471 *)
c6b750e1
DJ
10472 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10473for as_dir in $gcc_cv_tool_dirs
10474do
10475 IFS=$as_save_IFS
10476 test -z "$as_dir" && as_dir=.
10477 for ac_exec_ext in '' $ac_executable_extensions; do
10478 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
10479 ac_cv_path_RANLIB_FOR_TARGET="$as_dir/$ac_word$ac_exec_ext"
10480 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
10481 break 2
10482 fi
10483done
10484done
10485
2429c060
PB
10486 ;;
10487esac
10488fi
c6b750e1
DJ
10489RANLIB_FOR_TARGET=$ac_cv_path_RANLIB_FOR_TARGET
10490
2429c060 10491if test -n "$RANLIB_FOR_TARGET"; then
c6b750e1
DJ
10492 echo "$as_me:$LINENO: result: $RANLIB_FOR_TARGET" >&5
10493echo "${ECHO_T}$RANLIB_FOR_TARGET" >&6
2429c060 10494else
c6b750e1
DJ
10495 echo "$as_me:$LINENO: result: no" >&5
10496echo "${ECHO_T}no" >&6
2429c060
PB
10497fi
10498
10499fi
10500if test -z "$ac_cv_path_RANLIB_FOR_TARGET" ; then
9a819804
AO
10501
10502
10503if test -n "$RANLIB_FOR_TARGET"; then
10504 ac_cv_prog_RANLIB_FOR_TARGET=$RANLIB_FOR_TARGET
10505elif test -n "$ac_cv_prog_RANLIB_FOR_TARGET"; then
10506 RANLIB_FOR_TARGET=$ac_cv_prog_RANLIB_FOR_TARGET
10507fi
10508
10509if test -n "$ac_cv_prog_RANLIB_FOR_TARGET"; then
10510 for ncn_progname in ranlib; do
10511 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
10512set dummy ${ncn_progname}; ac_word=$2
10513echo "$as_me:$LINENO: checking for $ac_word" >&5
10514echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
10515if test "${ac_cv_prog_RANLIB_FOR_TARGET+set}" = set; then
10516 echo $ECHO_N "(cached) $ECHO_C" >&6
10517else
10518 if test -n "$RANLIB_FOR_TARGET"; then
10519 ac_cv_prog_RANLIB_FOR_TARGET="$RANLIB_FOR_TARGET" # Let the user override the test.
10520else
10521as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10522for as_dir in $PATH
10523do
10524 IFS=$as_save_IFS
10525 test -z "$as_dir" && as_dir=.
10526 for ac_exec_ext in '' $ac_executable_extensions; do
10527 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
10528 ac_cv_prog_RANLIB_FOR_TARGET="${ncn_progname}"
10529 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
10530 break 2
10531 fi
10532done
10533done
10534
10535fi
10536fi
10537RANLIB_FOR_TARGET=$ac_cv_prog_RANLIB_FOR_TARGET
10538if test -n "$RANLIB_FOR_TARGET"; then
10539 echo "$as_me:$LINENO: result: $RANLIB_FOR_TARGET" >&5
10540echo "${ECHO_T}$RANLIB_FOR_TARGET" >&6
10541else
10542 echo "$as_me:$LINENO: result: no" >&5
10543echo "${ECHO_T}no" >&6
10544fi
10545
10546 done
10547fi
10548
10549if test -z "$ac_cv_prog_RANLIB_FOR_TARGET" && test -n "$with_build_time_tools"; then
2429c060 10550 for ncn_progname in ranlib; do
c6b750e1
DJ
10551 echo "$as_me:$LINENO: checking for ${ncn_progname} in $with_build_time_tools" >&5
10552echo $ECHO_N "checking for ${ncn_progname} in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
10553 if test -x $with_build_time_tools/${ncn_progname}; then
10554 ac_cv_prog_RANLIB_FOR_TARGET=$with_build_time_tools/${ncn_progname}
c6b750e1
DJ
10555 echo "$as_me:$LINENO: result: yes" >&5
10556echo "${ECHO_T}yes" >&6
2429c060
PB
10557 break
10558 else
c6b750e1
DJ
10559 echo "$as_me:$LINENO: result: no" >&5
10560echo "${ECHO_T}no" >&6
2429c060
PB
10561 fi
10562 done
10563fi
10564
10565if test -z "$ac_cv_prog_RANLIB_FOR_TARGET"; then
10566 for ncn_progname in ranlib; do
10567 if test -n "$ncn_target_tool_prefix"; then
10568 # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
5ae72758 10569set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
10570echo "$as_me:$LINENO: checking for $ac_word" >&5
10571echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
10572if test "${ac_cv_prog_RANLIB_FOR_TARGET+set}" = set; then
10573 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af 10574else
55db4b87
PB
10575 if test -n "$RANLIB_FOR_TARGET"; then
10576 ac_cv_prog_RANLIB_FOR_TARGET="$RANLIB_FOR_TARGET" # Let the user override the test.
859789af 10577else
c6b750e1
DJ
10578as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10579for as_dir in $PATH
10580do
10581 IFS=$as_save_IFS
10582 test -z "$as_dir" && as_dir=.
10583 for ac_exec_ext in '' $ac_executable_extensions; do
10584 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
10585 ac_cv_prog_RANLIB_FOR_TARGET="${ncn_target_tool_prefix}${ncn_progname}"
10586 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
10587 break 2
10588 fi
10589done
10590done
10591
859789af
AC
10592fi
10593fi
c6b750e1 10594RANLIB_FOR_TARGET=$ac_cv_prog_RANLIB_FOR_TARGET
55db4b87 10595if test -n "$RANLIB_FOR_TARGET"; then
c6b750e1
DJ
10596 echo "$as_me:$LINENO: result: $RANLIB_FOR_TARGET" >&5
10597echo "${ECHO_T}$RANLIB_FOR_TARGET" >&6
859789af 10598else
c6b750e1
DJ
10599 echo "$as_me:$LINENO: result: no" >&5
10600echo "${ECHO_T}no" >&6
859789af
AC
10601fi
10602
2429c060
PB
10603 fi
10604 if test -z "$ac_cv_prog_RANLIB_FOR_TARGET" && test $build = $target ; then
10605 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
05cbd757 10606set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
10607echo "$as_me:$LINENO: checking for $ac_word" >&5
10608echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
10609if test "${ac_cv_prog_RANLIB_FOR_TARGET+set}" = set; then
10610 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af 10611else
05cbd757
PB
10612 if test -n "$RANLIB_FOR_TARGET"; then
10613 ac_cv_prog_RANLIB_FOR_TARGET="$RANLIB_FOR_TARGET" # Let the user override the test.
859789af 10614else
c6b750e1
DJ
10615as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10616for as_dir in $PATH
10617do
10618 IFS=$as_save_IFS
10619 test -z "$as_dir" && as_dir=.
10620 for ac_exec_ext in '' $ac_executable_extensions; do
10621 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
10622 ac_cv_prog_RANLIB_FOR_TARGET="${ncn_progname}"
10623 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
10624 break 2
10625 fi
10626done
10627done
10628
859789af
AC
10629fi
10630fi
c6b750e1 10631RANLIB_FOR_TARGET=$ac_cv_prog_RANLIB_FOR_TARGET
05cbd757 10632if test -n "$RANLIB_FOR_TARGET"; then
c6b750e1
DJ
10633 echo "$as_me:$LINENO: result: $RANLIB_FOR_TARGET" >&5
10634echo "${ECHO_T}$RANLIB_FOR_TARGET" >&6
859789af 10635else
c6b750e1
DJ
10636 echo "$as_me:$LINENO: result: no" >&5
10637echo "${ECHO_T}no" >&6
859789af 10638fi
c6b750e1 10639
2429c060
PB
10640 fi
10641 test -n "$ac_cv_prog_RANLIB_FOR_TARGET" && break
10642 done
10643fi
c6b750e1 10644
2429c060
PB
10645if test -z "$ac_cv_prog_RANLIB_FOR_TARGET" ; then
10646 set dummy ranlib
10647 if test $build = $target ; then
10648 RANLIB_FOR_TARGET="$2"
10649 else
10650 RANLIB_FOR_TARGET="${ncn_target_tool_prefix}$2"
859789af 10651 fi
d3f5afc4
MS
10652else
10653 RANLIB_FOR_TARGET="$ac_cv_prog_RANLIB_FOR_TARGET"
2429c060 10654fi
05cbd757 10655
3a35eeb3
PB
10656else
10657 RANLIB_FOR_TARGET=$ac_cv_path_RANLIB_FOR_TARGET
859789af
AC
10658fi
10659
2429c060
PB
10660
10661
10662
10663if test -z "$ac_cv_path_STRIP_FOR_TARGET" ; then
10664 if test -n "$with_build_time_tools"; then
c6b750e1
DJ
10665 echo "$as_me:$LINENO: checking for strip in $with_build_time_tools" >&5
10666echo $ECHO_N "checking for strip in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
10667 if test -x $with_build_time_tools/strip; then
10668 STRIP_FOR_TARGET=`cd $with_build_time_tools && pwd`/strip
10669 ac_cv_path_STRIP_FOR_TARGET=$STRIP_FOR_TARGET
c6b750e1
DJ
10670 echo "$as_me:$LINENO: result: $ac_cv_path_STRIP_FOR_TARGET" >&5
10671echo "${ECHO_T}$ac_cv_path_STRIP_FOR_TARGET" >&6
3a35eeb3 10672 else
c6b750e1
DJ
10673 echo "$as_me:$LINENO: result: no" >&5
10674echo "${ECHO_T}no" >&6
3a35eeb3 10675 fi
2429c060
PB
10676 elif test $build != $host && test $have_gcc_for_target = yes; then
10677 STRIP_FOR_TARGET=`$GCC_FOR_TARGET --print-prog-name=strip`
d3f5afc4
MS
10678 test $STRIP_FOR_TARGET = strip && STRIP_FOR_TARGET=
10679 test -n "$STRIP_FOR_TARGET" && ac_cv_path_STRIP_FOR_TARGET=$STRIP_FOR_TARGET
2429c060
PB
10680 fi
10681fi
c6b750e1 10682if test -z "$ac_cv_path_STRIP_FOR_TARGET" && test -n "$gcc_cv_tool_dirs"; then
2429c060
PB
10683 # Extract the first word of "strip", so it can be a program name with args.
10684set dummy strip; ac_word=$2
c6b750e1
DJ
10685echo "$as_me:$LINENO: checking for $ac_word" >&5
10686echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
10687if test "${ac_cv_path_STRIP_FOR_TARGET+set}" = set; then
10688 echo $ECHO_N "(cached) $ECHO_C" >&6
2429c060 10689else
c6b750e1
DJ
10690 case $STRIP_FOR_TARGET in
10691 [\\/]* | ?:[\\/]*)
2429c060
PB
10692 ac_cv_path_STRIP_FOR_TARGET="$STRIP_FOR_TARGET" # Let the user override the test with a path.
10693 ;;
2429c060 10694 *)
c6b750e1
DJ
10695 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10696for as_dir in $gcc_cv_tool_dirs
10697do
10698 IFS=$as_save_IFS
10699 test -z "$as_dir" && as_dir=.
10700 for ac_exec_ext in '' $ac_executable_extensions; do
10701 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
10702 ac_cv_path_STRIP_FOR_TARGET="$as_dir/$ac_word$ac_exec_ext"
10703 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
10704 break 2
10705 fi
10706done
10707done
10708
2429c060
PB
10709 ;;
10710esac
10711fi
c6b750e1
DJ
10712STRIP_FOR_TARGET=$ac_cv_path_STRIP_FOR_TARGET
10713
2429c060 10714if test -n "$STRIP_FOR_TARGET"; then
c6b750e1
DJ
10715 echo "$as_me:$LINENO: result: $STRIP_FOR_TARGET" >&5
10716echo "${ECHO_T}$STRIP_FOR_TARGET" >&6
2429c060 10717else
c6b750e1
DJ
10718 echo "$as_me:$LINENO: result: no" >&5
10719echo "${ECHO_T}no" >&6
2429c060
PB
10720fi
10721
10722fi
10723if test -z "$ac_cv_path_STRIP_FOR_TARGET" ; then
9a819804
AO
10724
10725
10726if test -n "$STRIP_FOR_TARGET"; then
10727 ac_cv_prog_STRIP_FOR_TARGET=$STRIP_FOR_TARGET
10728elif test -n "$ac_cv_prog_STRIP_FOR_TARGET"; then
10729 STRIP_FOR_TARGET=$ac_cv_prog_STRIP_FOR_TARGET
10730fi
10731
10732if test -n "$ac_cv_prog_STRIP_FOR_TARGET"; then
10733 for ncn_progname in strip; do
10734 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
10735set dummy ${ncn_progname}; ac_word=$2
10736echo "$as_me:$LINENO: checking for $ac_word" >&5
10737echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
10738if test "${ac_cv_prog_STRIP_FOR_TARGET+set}" = set; then
10739 echo $ECHO_N "(cached) $ECHO_C" >&6
10740else
10741 if test -n "$STRIP_FOR_TARGET"; then
10742 ac_cv_prog_STRIP_FOR_TARGET="$STRIP_FOR_TARGET" # Let the user override the test.
10743else
10744as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10745for as_dir in $PATH
10746do
10747 IFS=$as_save_IFS
10748 test -z "$as_dir" && as_dir=.
10749 for ac_exec_ext in '' $ac_executable_extensions; do
10750 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
10751 ac_cv_prog_STRIP_FOR_TARGET="${ncn_progname}"
10752 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
10753 break 2
10754 fi
10755done
10756done
10757
10758fi
10759fi
10760STRIP_FOR_TARGET=$ac_cv_prog_STRIP_FOR_TARGET
10761if test -n "$STRIP_FOR_TARGET"; then
10762 echo "$as_me:$LINENO: result: $STRIP_FOR_TARGET" >&5
10763echo "${ECHO_T}$STRIP_FOR_TARGET" >&6
10764else
10765 echo "$as_me:$LINENO: result: no" >&5
10766echo "${ECHO_T}no" >&6
10767fi
10768
10769 done
10770fi
10771
10772if test -z "$ac_cv_prog_STRIP_FOR_TARGET" && test -n "$with_build_time_tools"; then
2429c060 10773 for ncn_progname in strip; do
c6b750e1
DJ
10774 echo "$as_me:$LINENO: checking for ${ncn_progname} in $with_build_time_tools" >&5
10775echo $ECHO_N "checking for ${ncn_progname} in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
10776 if test -x $with_build_time_tools/${ncn_progname}; then
10777 ac_cv_prog_STRIP_FOR_TARGET=$with_build_time_tools/${ncn_progname}
c6b750e1
DJ
10778 echo "$as_me:$LINENO: result: yes" >&5
10779echo "${ECHO_T}yes" >&6
2429c060
PB
10780 break
10781 else
c6b750e1
DJ
10782 echo "$as_me:$LINENO: result: no" >&5
10783echo "${ECHO_T}no" >&6
2429c060
PB
10784 fi
10785 done
10786fi
10787
10788if test -z "$ac_cv_prog_STRIP_FOR_TARGET"; then
10789 for ncn_progname in strip; do
10790 if test -n "$ncn_target_tool_prefix"; then
10791 # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
7e0f7140 10792set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
10793echo "$as_me:$LINENO: checking for $ac_word" >&5
10794echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
10795if test "${ac_cv_prog_STRIP_FOR_TARGET+set}" = set; then
10796 echo $ECHO_N "(cached) $ECHO_C" >&6
7e0f7140
GK
10797else
10798 if test -n "$STRIP_FOR_TARGET"; then
10799 ac_cv_prog_STRIP_FOR_TARGET="$STRIP_FOR_TARGET" # Let the user override the test.
c6b750e1
DJ
10800else
10801as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10802for as_dir in $PATH
10803do
10804 IFS=$as_save_IFS
10805 test -z "$as_dir" && as_dir=.
10806 for ac_exec_ext in '' $ac_executable_extensions; do
10807 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
10808 ac_cv_prog_STRIP_FOR_TARGET="${ncn_target_tool_prefix}${ncn_progname}"
10809 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
10810 break 2
10811 fi
10812done
10813done
10814
7e0f7140
GK
10815fi
10816fi
c6b750e1 10817STRIP_FOR_TARGET=$ac_cv_prog_STRIP_FOR_TARGET
7e0f7140 10818if test -n "$STRIP_FOR_TARGET"; then
c6b750e1
DJ
10819 echo "$as_me:$LINENO: result: $STRIP_FOR_TARGET" >&5
10820echo "${ECHO_T}$STRIP_FOR_TARGET" >&6
7e0f7140 10821else
c6b750e1
DJ
10822 echo "$as_me:$LINENO: result: no" >&5
10823echo "${ECHO_T}no" >&6
7e0f7140
GK
10824fi
10825
2429c060
PB
10826 fi
10827 if test -z "$ac_cv_prog_STRIP_FOR_TARGET" && test $build = $target ; then
10828 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
7e0f7140 10829set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
10830echo "$as_me:$LINENO: checking for $ac_word" >&5
10831echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
10832if test "${ac_cv_prog_STRIP_FOR_TARGET+set}" = set; then
10833 echo $ECHO_N "(cached) $ECHO_C" >&6
7e0f7140
GK
10834else
10835 if test -n "$STRIP_FOR_TARGET"; then
10836 ac_cv_prog_STRIP_FOR_TARGET="$STRIP_FOR_TARGET" # Let the user override the test.
10837else
c6b750e1
DJ
10838as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10839for as_dir in $PATH
10840do
10841 IFS=$as_save_IFS
10842 test -z "$as_dir" && as_dir=.
10843 for ac_exec_ext in '' $ac_executable_extensions; do
10844 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
10845 ac_cv_prog_STRIP_FOR_TARGET="${ncn_progname}"
10846 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
10847 break 2
10848 fi
10849done
10850done
10851
7e0f7140
GK
10852fi
10853fi
c6b750e1 10854STRIP_FOR_TARGET=$ac_cv_prog_STRIP_FOR_TARGET
7e0f7140 10855if test -n "$STRIP_FOR_TARGET"; then
c6b750e1
DJ
10856 echo "$as_me:$LINENO: result: $STRIP_FOR_TARGET" >&5
10857echo "${ECHO_T}$STRIP_FOR_TARGET" >&6
7e0f7140 10858else
c6b750e1
DJ
10859 echo "$as_me:$LINENO: result: no" >&5
10860echo "${ECHO_T}no" >&6
7e0f7140 10861fi
c6b750e1 10862
2429c060
PB
10863 fi
10864 test -n "$ac_cv_prog_STRIP_FOR_TARGET" && break
10865 done
10866fi
c6b750e1 10867
7e0f7140
GK
10868if test -z "$ac_cv_prog_STRIP_FOR_TARGET" ; then
10869 set dummy strip
10870 if test $build = $target ; then
10871 STRIP_FOR_TARGET="$2"
10872 else
10873 STRIP_FOR_TARGET="${ncn_target_tool_prefix}$2"
10874 fi
d3f5afc4
MS
10875else
10876 STRIP_FOR_TARGET="$ac_cv_prog_STRIP_FOR_TARGET"
7e0f7140
GK
10877fi
10878
3a35eeb3
PB
10879else
10880 STRIP_FOR_TARGET=$ac_cv_path_STRIP_FOR_TARGET
2429c060
PB
10881fi
10882
10883
10884
10885
10886if test -z "$ac_cv_path_WINDRES_FOR_TARGET" ; then
10887 if test -n "$with_build_time_tools"; then
c6b750e1
DJ
10888 echo "$as_me:$LINENO: checking for windres in $with_build_time_tools" >&5
10889echo $ECHO_N "checking for windres in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
10890 if test -x $with_build_time_tools/windres; then
10891 WINDRES_FOR_TARGET=`cd $with_build_time_tools && pwd`/windres
10892 ac_cv_path_WINDRES_FOR_TARGET=$WINDRES_FOR_TARGET
c6b750e1
DJ
10893 echo "$as_me:$LINENO: result: $ac_cv_path_WINDRES_FOR_TARGET" >&5
10894echo "${ECHO_T}$ac_cv_path_WINDRES_FOR_TARGET" >&6
3a35eeb3 10895 else
c6b750e1
DJ
10896 echo "$as_me:$LINENO: result: no" >&5
10897echo "${ECHO_T}no" >&6
3a35eeb3 10898 fi
2429c060
PB
10899 elif test $build != $host && test $have_gcc_for_target = yes; then
10900 WINDRES_FOR_TARGET=`$GCC_FOR_TARGET --print-prog-name=windres`
d3f5afc4
MS
10901 test $WINDRES_FOR_TARGET = windres && WINDRES_FOR_TARGET=
10902 test -n "$WINDRES_FOR_TARGET" && ac_cv_path_WINDRES_FOR_TARGET=$WINDRES_FOR_TARGET
2429c060
PB
10903 fi
10904fi
c6b750e1 10905if test -z "$ac_cv_path_WINDRES_FOR_TARGET" && test -n "$gcc_cv_tool_dirs"; then
2429c060
PB
10906 # Extract the first word of "windres", so it can be a program name with args.
10907set dummy windres; ac_word=$2
c6b750e1
DJ
10908echo "$as_me:$LINENO: checking for $ac_word" >&5
10909echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
10910if test "${ac_cv_path_WINDRES_FOR_TARGET+set}" = set; then
10911 echo $ECHO_N "(cached) $ECHO_C" >&6
2429c060 10912else
c6b750e1
DJ
10913 case $WINDRES_FOR_TARGET in
10914 [\\/]* | ?:[\\/]*)
2429c060
PB
10915 ac_cv_path_WINDRES_FOR_TARGET="$WINDRES_FOR_TARGET" # Let the user override the test with a path.
10916 ;;
2429c060 10917 *)
c6b750e1
DJ
10918 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10919for as_dir in $gcc_cv_tool_dirs
10920do
10921 IFS=$as_save_IFS
10922 test -z "$as_dir" && as_dir=.
10923 for ac_exec_ext in '' $ac_executable_extensions; do
10924 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
10925 ac_cv_path_WINDRES_FOR_TARGET="$as_dir/$ac_word$ac_exec_ext"
10926 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
10927 break 2
10928 fi
10929done
10930done
10931
2429c060
PB
10932 ;;
10933esac
10934fi
c6b750e1
DJ
10935WINDRES_FOR_TARGET=$ac_cv_path_WINDRES_FOR_TARGET
10936
2429c060 10937if test -n "$WINDRES_FOR_TARGET"; then
c6b750e1
DJ
10938 echo "$as_me:$LINENO: result: $WINDRES_FOR_TARGET" >&5
10939echo "${ECHO_T}$WINDRES_FOR_TARGET" >&6
2429c060 10940else
c6b750e1
DJ
10941 echo "$as_me:$LINENO: result: no" >&5
10942echo "${ECHO_T}no" >&6
2429c060
PB
10943fi
10944
10945fi
10946if test -z "$ac_cv_path_WINDRES_FOR_TARGET" ; then
9a819804
AO
10947
10948
10949if test -n "$WINDRES_FOR_TARGET"; then
10950 ac_cv_prog_WINDRES_FOR_TARGET=$WINDRES_FOR_TARGET
10951elif test -n "$ac_cv_prog_WINDRES_FOR_TARGET"; then
10952 WINDRES_FOR_TARGET=$ac_cv_prog_WINDRES_FOR_TARGET
10953fi
10954
10955if test -n "$ac_cv_prog_WINDRES_FOR_TARGET"; then
10956 for ncn_progname in windres; do
10957 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
10958set dummy ${ncn_progname}; ac_word=$2
10959echo "$as_me:$LINENO: checking for $ac_word" >&5
10960echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
10961if test "${ac_cv_prog_WINDRES_FOR_TARGET+set}" = set; then
10962 echo $ECHO_N "(cached) $ECHO_C" >&6
10963else
10964 if test -n "$WINDRES_FOR_TARGET"; then
10965 ac_cv_prog_WINDRES_FOR_TARGET="$WINDRES_FOR_TARGET" # Let the user override the test.
10966else
10967as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10968for as_dir in $PATH
10969do
10970 IFS=$as_save_IFS
10971 test -z "$as_dir" && as_dir=.
10972 for ac_exec_ext in '' $ac_executable_extensions; do
10973 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
10974 ac_cv_prog_WINDRES_FOR_TARGET="${ncn_progname}"
10975 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
10976 break 2
10977 fi
10978done
10979done
10980
10981fi
10982fi
10983WINDRES_FOR_TARGET=$ac_cv_prog_WINDRES_FOR_TARGET
10984if test -n "$WINDRES_FOR_TARGET"; then
10985 echo "$as_me:$LINENO: result: $WINDRES_FOR_TARGET" >&5
10986echo "${ECHO_T}$WINDRES_FOR_TARGET" >&6
10987else
10988 echo "$as_me:$LINENO: result: no" >&5
10989echo "${ECHO_T}no" >&6
10990fi
10991
10992 done
10993fi
10994
10995if test -z "$ac_cv_prog_WINDRES_FOR_TARGET" && test -n "$with_build_time_tools"; then
2429c060 10996 for ncn_progname in windres; do
c6b750e1
DJ
10997 echo "$as_me:$LINENO: checking for ${ncn_progname} in $with_build_time_tools" >&5
10998echo $ECHO_N "checking for ${ncn_progname} in $with_build_time_tools... $ECHO_C" >&6
3a35eeb3
PB
10999 if test -x $with_build_time_tools/${ncn_progname}; then
11000 ac_cv_prog_WINDRES_FOR_TARGET=$with_build_time_tools/${ncn_progname}
c6b750e1
DJ
11001 echo "$as_me:$LINENO: result: yes" >&5
11002echo "${ECHO_T}yes" >&6
2429c060
PB
11003 break
11004 else
c6b750e1
DJ
11005 echo "$as_me:$LINENO: result: no" >&5
11006echo "${ECHO_T}no" >&6
2429c060
PB
11007 fi
11008 done
11009fi
11010
11011if test -z "$ac_cv_prog_WINDRES_FOR_TARGET"; then
11012 for ncn_progname in windres; do
11013 if test -n "$ncn_target_tool_prefix"; then
11014 # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
05cbd757 11015set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
c6b750e1
DJ
11016echo "$as_me:$LINENO: checking for $ac_word" >&5
11017echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
11018if test "${ac_cv_prog_WINDRES_FOR_TARGET+set}" = set; then
11019 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af 11020else
55db4b87
PB
11021 if test -n "$WINDRES_FOR_TARGET"; then
11022 ac_cv_prog_WINDRES_FOR_TARGET="$WINDRES_FOR_TARGET" # Let the user override the test.
859789af 11023else
c6b750e1
DJ
11024as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
11025for as_dir in $PATH
11026do
11027 IFS=$as_save_IFS
11028 test -z "$as_dir" && as_dir=.
11029 for ac_exec_ext in '' $ac_executable_extensions; do
11030 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
11031 ac_cv_prog_WINDRES_FOR_TARGET="${ncn_target_tool_prefix}${ncn_progname}"
11032 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
11033 break 2
11034 fi
11035done
11036done
11037
859789af
AC
11038fi
11039fi
c6b750e1 11040WINDRES_FOR_TARGET=$ac_cv_prog_WINDRES_FOR_TARGET
55db4b87 11041if test -n "$WINDRES_FOR_TARGET"; then
c6b750e1
DJ
11042 echo "$as_me:$LINENO: result: $WINDRES_FOR_TARGET" >&5
11043echo "${ECHO_T}$WINDRES_FOR_TARGET" >&6
859789af 11044else
c6b750e1
DJ
11045 echo "$as_me:$LINENO: result: no" >&5
11046echo "${ECHO_T}no" >&6
859789af
AC
11047fi
11048
2429c060
PB
11049 fi
11050 if test -z "$ac_cv_prog_WINDRES_FOR_TARGET" && test $build = $target ; then
11051 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
05cbd757 11052set dummy ${ncn_progname}; ac_word=$2
c6b750e1
DJ
11053echo "$as_me:$LINENO: checking for $ac_word" >&5
11054echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
11055if test "${ac_cv_prog_WINDRES_FOR_TARGET+set}" = set; then
11056 echo $ECHO_N "(cached) $ECHO_C" >&6
859789af 11057else
05cbd757
PB
11058 if test -n "$WINDRES_FOR_TARGET"; then
11059 ac_cv_prog_WINDRES_FOR_TARGET="$WINDRES_FOR_TARGET" # Let the user override the test.
859789af 11060else
c6b750e1
DJ
11061as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
11062for as_dir in $PATH
11063do
11064 IFS=$as_save_IFS
11065 test -z "$as_dir" && as_dir=.
11066 for ac_exec_ext in '' $ac_executable_extensions; do
11067 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
11068 ac_cv_prog_WINDRES_FOR_TARGET="${ncn_progname}"
11069 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
11070 break 2
11071 fi
11072done
11073done
11074
859789af
AC
11075fi
11076fi
c6b750e1 11077WINDRES_FOR_TARGET=$ac_cv_prog_WINDRES_FOR_TARGET
05cbd757 11078if test -n "$WINDRES_FOR_TARGET"; then
c6b750e1
DJ
11079 echo "$as_me:$LINENO: result: $WINDRES_FOR_TARGET" >&5
11080echo "${ECHO_T}$WINDRES_FOR_TARGET" >&6
859789af 11081else
c6b750e1
DJ
11082 echo "$as_me:$LINENO: result: no" >&5
11083echo "${ECHO_T}no" >&6
859789af 11084fi
c6b750e1 11085
2429c060
PB
11086 fi
11087 test -n "$ac_cv_prog_WINDRES_FOR_TARGET" && break
11088 done
11089fi
c6b750e1 11090
05cbd757
PB
11091if test -z "$ac_cv_prog_WINDRES_FOR_TARGET" ; then
11092 set dummy windres
11093 if test $build = $target ; then
11094 WINDRES_FOR_TARGET="$2"
859789af 11095 else
05cbd757 11096 WINDRES_FOR_TARGET="${ncn_target_tool_prefix}$2"
859789af 11097 fi
d3f5afc4
MS
11098else
11099 WINDRES_FOR_TARGET="$ac_cv_prog_WINDRES_FOR_TARGET"
859789af
AC
11100fi
11101
3a35eeb3
PB
11102else
11103 WINDRES_FOR_TARGET=$ac_cv_path_WINDRES_FOR_TARGET
2429c060
PB
11104fi
11105
852e5f18 11106
0c24b341
NC
11107
11108
11109if test -z "$ac_cv_path_WINDMC_FOR_TARGET" ; then
11110 if test -n "$with_build_time_tools"; then
11111 echo "$as_me:$LINENO: checking for windmc in $with_build_time_tools" >&5
11112echo $ECHO_N "checking for windmc in $with_build_time_tools... $ECHO_C" >&6
11113 if test -x $with_build_time_tools/windmc; then
11114 WINDMC_FOR_TARGET=`cd $with_build_time_tools && pwd`/windmc
11115 ac_cv_path_WINDMC_FOR_TARGET=$WINDMC_FOR_TARGET
11116 echo "$as_me:$LINENO: result: $ac_cv_path_WINDMC_FOR_TARGET" >&5
11117echo "${ECHO_T}$ac_cv_path_WINDMC_FOR_TARGET" >&6
11118 else
11119 echo "$as_me:$LINENO: result: no" >&5
11120echo "${ECHO_T}no" >&6
11121 fi
11122 elif test $build != $host && test $have_gcc_for_target = yes; then
11123 WINDMC_FOR_TARGET=`$GCC_FOR_TARGET --print-prog-name=windmc`
11124 test $WINDMC_FOR_TARGET = windmc && WINDMC_FOR_TARGET=
11125 test -n "$WINDMC_FOR_TARGET" && ac_cv_path_WINDMC_FOR_TARGET=$WINDMC_FOR_TARGET
11126 fi
11127fi
11128if test -z "$ac_cv_path_WINDMC_FOR_TARGET" && test -n "$gcc_cv_tool_dirs"; then
11129 # Extract the first word of "windmc", so it can be a program name with args.
11130set dummy windmc; ac_word=$2
11131echo "$as_me:$LINENO: checking for $ac_word" >&5
11132echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
11133if test "${ac_cv_path_WINDMC_FOR_TARGET+set}" = set; then
11134 echo $ECHO_N "(cached) $ECHO_C" >&6
11135else
11136 case $WINDMC_FOR_TARGET in
11137 [\\/]* | ?:[\\/]*)
11138 ac_cv_path_WINDMC_FOR_TARGET="$WINDMC_FOR_TARGET" # Let the user override the test with a path.
11139 ;;
11140 *)
11141 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
11142for as_dir in $gcc_cv_tool_dirs
11143do
11144 IFS=$as_save_IFS
11145 test -z "$as_dir" && as_dir=.
11146 for ac_exec_ext in '' $ac_executable_extensions; do
11147 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
11148 ac_cv_path_WINDMC_FOR_TARGET="$as_dir/$ac_word$ac_exec_ext"
11149 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
11150 break 2
11151 fi
11152done
11153done
11154
11155 ;;
11156esac
11157fi
11158WINDMC_FOR_TARGET=$ac_cv_path_WINDMC_FOR_TARGET
11159
11160if test -n "$WINDMC_FOR_TARGET"; then
11161 echo "$as_me:$LINENO: result: $WINDMC_FOR_TARGET" >&5
11162echo "${ECHO_T}$WINDMC_FOR_TARGET" >&6
11163else
11164 echo "$as_me:$LINENO: result: no" >&5
11165echo "${ECHO_T}no" >&6
11166fi
11167
11168fi
11169if test -z "$ac_cv_path_WINDMC_FOR_TARGET" ; then
11170
11171
11172if test -n "$WINDMC_FOR_TARGET"; then
11173 ac_cv_prog_WINDMC_FOR_TARGET=$WINDMC_FOR_TARGET
11174elif test -n "$ac_cv_prog_WINDMC_FOR_TARGET"; then
11175 WINDMC_FOR_TARGET=$ac_cv_prog_WINDMC_FOR_TARGET
11176fi
11177
11178if test -n "$ac_cv_prog_WINDMC_FOR_TARGET"; then
11179 for ncn_progname in windmc; do
11180 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
11181set dummy ${ncn_progname}; ac_word=$2
11182echo "$as_me:$LINENO: checking for $ac_word" >&5
11183echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
11184if test "${ac_cv_prog_WINDMC_FOR_TARGET+set}" = set; then
11185 echo $ECHO_N "(cached) $ECHO_C" >&6
11186else
11187 if test -n "$WINDMC_FOR_TARGET"; then
11188 ac_cv_prog_WINDMC_FOR_TARGET="$WINDMC_FOR_TARGET" # Let the user override the test.
11189else
11190as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
11191for as_dir in $PATH
11192do
11193 IFS=$as_save_IFS
11194 test -z "$as_dir" && as_dir=.
11195 for ac_exec_ext in '' $ac_executable_extensions; do
11196 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
11197 ac_cv_prog_WINDMC_FOR_TARGET="${ncn_progname}"
11198 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
11199 break 2
11200 fi
11201done
11202done
11203
11204fi
11205fi
11206WINDMC_FOR_TARGET=$ac_cv_prog_WINDMC_FOR_TARGET
11207if test -n "$WINDMC_FOR_TARGET"; then
11208 echo "$as_me:$LINENO: result: $WINDMC_FOR_TARGET" >&5
11209echo "${ECHO_T}$WINDMC_FOR_TARGET" >&6
11210else
11211 echo "$as_me:$LINENO: result: no" >&5
11212echo "${ECHO_T}no" >&6
11213fi
11214
11215 done
11216fi
11217
11218if test -z "$ac_cv_prog_WINDMC_FOR_TARGET" && test -n "$with_build_time_tools"; then
11219 for ncn_progname in windmc; do
11220 echo "$as_me:$LINENO: checking for ${ncn_progname} in $with_build_time_tools" >&5
11221echo $ECHO_N "checking for ${ncn_progname} in $with_build_time_tools... $ECHO_C" >&6
11222 if test -x $with_build_time_tools/${ncn_progname}; then
11223 ac_cv_prog_WINDMC_FOR_TARGET=$with_build_time_tools/${ncn_progname}
11224 echo "$as_me:$LINENO: result: yes" >&5
11225echo "${ECHO_T}yes" >&6
11226 break
11227 else
11228 echo "$as_me:$LINENO: result: no" >&5
11229echo "${ECHO_T}no" >&6
11230 fi
11231 done
11232fi
11233
11234if test -z "$ac_cv_prog_WINDMC_FOR_TARGET"; then
11235 for ncn_progname in windmc; do
11236 if test -n "$ncn_target_tool_prefix"; then
11237 # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
11238set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
11239echo "$as_me:$LINENO: checking for $ac_word" >&5
11240echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
11241if test "${ac_cv_prog_WINDMC_FOR_TARGET+set}" = set; then
11242 echo $ECHO_N "(cached) $ECHO_C" >&6
11243else
11244 if test -n "$WINDMC_FOR_TARGET"; then
11245 ac_cv_prog_WINDMC_FOR_TARGET="$WINDMC_FOR_TARGET" # Let the user override the test.
11246else
11247as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
11248for as_dir in $PATH
11249do
11250 IFS=$as_save_IFS
11251 test -z "$as_dir" && as_dir=.
11252 for ac_exec_ext in '' $ac_executable_extensions; do
11253 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
11254 ac_cv_prog_WINDMC_FOR_TARGET="${ncn_target_tool_prefix}${ncn_progname}"
11255 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
11256 break 2
11257 fi
11258done
11259done
11260
11261fi
11262fi
11263WINDMC_FOR_TARGET=$ac_cv_prog_WINDMC_FOR_TARGET
11264if test -n "$WINDMC_FOR_TARGET"; then
11265 echo "$as_me:$LINENO: result: $WINDMC_FOR_TARGET" >&5
11266echo "${ECHO_T}$WINDMC_FOR_TARGET" >&6
11267else
11268 echo "$as_me:$LINENO: result: no" >&5
11269echo "${ECHO_T}no" >&6
11270fi
11271
11272 fi
11273 if test -z "$ac_cv_prog_WINDMC_FOR_TARGET" && test $build = $target ; then
11274 # Extract the first word of "${ncn_progname}", so it can be a program name with args.
11275set dummy ${ncn_progname}; ac_word=$2
11276echo "$as_me:$LINENO: checking for $ac_word" >&5
11277echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
11278if test "${ac_cv_prog_WINDMC_FOR_TARGET+set}" = set; then
11279 echo $ECHO_N "(cached) $ECHO_C" >&6
11280else
11281 if test -n "$WINDMC_FOR_TARGET"; then
11282 ac_cv_prog_WINDMC_FOR_TARGET="$WINDMC_FOR_TARGET" # Let the user override the test.
11283else
11284as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
11285for as_dir in $PATH
11286do
11287 IFS=$as_save_IFS
11288 test -z "$as_dir" && as_dir=.
11289 for ac_exec_ext in '' $ac_executable_extensions; do
11290 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
11291 ac_cv_prog_WINDMC_FOR_TARGET="${ncn_progname}"
11292 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
11293 break 2
11294 fi
11295done
11296done
11297
11298fi
11299fi
11300WINDMC_FOR_TARGET=$ac_cv_prog_WINDMC_FOR_TARGET
11301if test -n "$WINDMC_FOR_TARGET"; then
11302 echo "$as_me:$LINENO: result: $WINDMC_FOR_TARGET" >&5
11303echo "${ECHO_T}$WINDMC_FOR_TARGET" >&6
11304else
11305 echo "$as_me:$LINENO: result: no" >&5
11306echo "${ECHO_T}no" >&6
11307fi
11308
11309 fi
11310 test -n "$ac_cv_prog_WINDMC_FOR_TARGET" && break
11311 done
11312fi
11313
11314if test -z "$ac_cv_prog_WINDMC_FOR_TARGET" ; then
11315 set dummy windmc
11316 if test $build = $target ; then
11317 WINDMC_FOR_TARGET="$2"
11318 else
11319 WINDMC_FOR_TARGET="${ncn_target_tool_prefix}$2"
11320 fi
11321else
11322 WINDMC_FOR_TARGET="$ac_cv_prog_WINDMC_FOR_TARGET"
11323fi
11324
11325else
11326 WINDMC_FOR_TARGET=$ac_cv_path_WINDMC_FOR_TARGET
11327fi
11328
11329
be01d343
PB
11330RAW_CXX_FOR_TARGET="$CXX_FOR_TARGET"
11331
c6b750e1
DJ
11332echo "$as_me:$LINENO: checking where to find the target ar" >&5
11333echo $ECHO_N "checking where to find the target ar... $ECHO_C" >&6
be01d343 11334if test "x${build}" != "x${host}" ; then
2429c060
PB
11335 if expr "x$AR_FOR_TARGET" : "x/" > /dev/null; then
11336 # We already found the complete path
b8025f34
AS
11337 ac_dir=`dirname $AR_FOR_TARGET`
11338 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11339echo "${ECHO_T}pre-installed in $ac_dir" >&6
2429c060
PB
11340 else
11341 # Canadian cross, just use what we found
c6b750e1
DJ
11342 echo "$as_me:$LINENO: result: pre-installed" >&5
11343echo "${ECHO_T}pre-installed" >&6
2429c060 11344 fi
be01d343
PB
11345else
11346 ok=yes
11347 case " ${configdirs} " in
11348 *" binutils "*) ;;
11349 *) ok=no ;;
11350 esac
c6b750e1 11351
be01d343
PB
11352 if test $ok = yes; then
11353 # An in-tree tool is available and we can use it
11354 AR_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/ar'
c6b750e1
DJ
11355 echo "$as_me:$LINENO: result: just compiled" >&5
11356echo "${ECHO_T}just compiled" >&6
2429c060
PB
11357 elif expr "x$AR_FOR_TARGET" : "x/" > /dev/null; then
11358 # We already found the complete path
b8025f34
AS
11359 ac_dir=`dirname $AR_FOR_TARGET`
11360 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11361echo "${ECHO_T}pre-installed in $ac_dir" >&6
be01d343
PB
11362 elif test "x$target" = "x$host"; then
11363 # We can use an host tool
11364 AR_FOR_TARGET='$(AR)'
c6b750e1
DJ
11365 echo "$as_me:$LINENO: result: host tool" >&5
11366echo "${ECHO_T}host tool" >&6
be01d343
PB
11367 else
11368 # We need a cross tool
c6b750e1
DJ
11369 echo "$as_me:$LINENO: result: pre-installed" >&5
11370echo "${ECHO_T}pre-installed" >&6
be01d343
PB
11371 fi
11372fi
4b900473 11373
c6b750e1
DJ
11374echo "$as_me:$LINENO: checking where to find the target as" >&5
11375echo $ECHO_N "checking where to find the target as... $ECHO_C" >&6
be01d343 11376if test "x${build}" != "x${host}" ; then
2429c060
PB
11377 if expr "x$AS_FOR_TARGET" : "x/" > /dev/null; then
11378 # We already found the complete path
b8025f34
AS
11379 ac_dir=`dirname $AS_FOR_TARGET`
11380 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11381echo "${ECHO_T}pre-installed in $ac_dir" >&6
2429c060
PB
11382 else
11383 # Canadian cross, just use what we found
c6b750e1
DJ
11384 echo "$as_me:$LINENO: result: pre-installed" >&5
11385echo "${ECHO_T}pre-installed" >&6
2429c060 11386 fi
be01d343
PB
11387else
11388 ok=yes
11389 case " ${configdirs} " in
11390 *" gas "*) ;;
11391 *) ok=no ;;
11392 esac
c6b750e1 11393
be01d343
PB
11394 if test $ok = yes; then
11395 # An in-tree tool is available and we can use it
11396 AS_FOR_TARGET='$$r/$(HOST_SUBDIR)/gas/as-new'
c6b750e1
DJ
11397 echo "$as_me:$LINENO: result: just compiled" >&5
11398echo "${ECHO_T}just compiled" >&6
2429c060
PB
11399 elif expr "x$AS_FOR_TARGET" : "x/" > /dev/null; then
11400 # We already found the complete path
b8025f34
AS
11401 ac_dir=`dirname $AS_FOR_TARGET`
11402 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11403echo "${ECHO_T}pre-installed in $ac_dir" >&6
be01d343
PB
11404 elif test "x$target" = "x$host"; then
11405 # We can use an host tool
11406 AS_FOR_TARGET='$(AS)'
c6b750e1
DJ
11407 echo "$as_me:$LINENO: result: host tool" >&5
11408echo "${ECHO_T}host tool" >&6
be01d343
PB
11409 else
11410 # We need a cross tool
c6b750e1
DJ
11411 echo "$as_me:$LINENO: result: pre-installed" >&5
11412echo "${ECHO_T}pre-installed" >&6
be01d343
PB
11413 fi
11414fi
4b900473 11415
c6b750e1
DJ
11416echo "$as_me:$LINENO: checking where to find the target cc" >&5
11417echo $ECHO_N "checking where to find the target cc... $ECHO_C" >&6
be01d343 11418if test "x${build}" != "x${host}" ; then
2429c060
PB
11419 if expr "x$CC_FOR_TARGET" : "x/" > /dev/null; then
11420 # We already found the complete path
b8025f34
AS
11421 ac_dir=`dirname $CC_FOR_TARGET`
11422 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11423echo "${ECHO_T}pre-installed in $ac_dir" >&6
2429c060
PB
11424 else
11425 # Canadian cross, just use what we found
c6b750e1
DJ
11426 echo "$as_me:$LINENO: result: pre-installed" >&5
11427echo "${ECHO_T}pre-installed" >&6
2429c060 11428 fi
be01d343
PB
11429else
11430 ok=yes
11431 case " ${configdirs} " in
11432 *" gcc "*) ;;
11433 *) ok=no ;;
11434 esac
c6b750e1 11435
be01d343
PB
11436 if test $ok = yes; then
11437 # An in-tree tool is available and we can use it
11438 CC_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/xgcc -B$$r/$(HOST_SUBDIR)/gcc/'
c6b750e1
DJ
11439 echo "$as_me:$LINENO: result: just compiled" >&5
11440echo "${ECHO_T}just compiled" >&6
2429c060
PB
11441 elif expr "x$CC_FOR_TARGET" : "x/" > /dev/null; then
11442 # We already found the complete path
b8025f34
AS
11443 ac_dir=`dirname $CC_FOR_TARGET`
11444 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11445echo "${ECHO_T}pre-installed in $ac_dir" >&6
be01d343
PB
11446 elif test "x$target" = "x$host"; then
11447 # We can use an host tool
11448 CC_FOR_TARGET='$(CC)'
c6b750e1
DJ
11449 echo "$as_me:$LINENO: result: host tool" >&5
11450echo "${ECHO_T}host tool" >&6
be01d343
PB
11451 else
11452 # We need a cross tool
c6b750e1
DJ
11453 echo "$as_me:$LINENO: result: pre-installed" >&5
11454echo "${ECHO_T}pre-installed" >&6
be01d343
PB
11455 fi
11456fi
4b900473 11457
c6b750e1
DJ
11458echo "$as_me:$LINENO: checking where to find the target c++" >&5
11459echo $ECHO_N "checking where to find the target c++... $ECHO_C" >&6
be01d343 11460if test "x${build}" != "x${host}" ; then
2429c060
PB
11461 if expr "x$CXX_FOR_TARGET" : "x/" > /dev/null; then
11462 # We already found the complete path
b8025f34
AS
11463 ac_dir=`dirname $CXX_FOR_TARGET`
11464 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11465echo "${ECHO_T}pre-installed in $ac_dir" >&6
2429c060
PB
11466 else
11467 # Canadian cross, just use what we found
c6b750e1
DJ
11468 echo "$as_me:$LINENO: result: pre-installed" >&5
11469echo "${ECHO_T}pre-installed" >&6
2429c060 11470 fi
be01d343
PB
11471else
11472 ok=yes
11473 case " ${configdirs} " in
11474 *" gcc "*) ;;
11475 *) ok=no ;;
11476 esac
11477 case ,${enable_languages}, in
11478 *,c++,*) ;;
11479 *) ok=no ;;
11480 esac
11481 if test $ok = yes; then
11482 # An in-tree tool is available and we can use it
11483 CXX_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/g++ -B$$r/$(HOST_SUBDIR)/gcc/ -nostdinc++ `test ! -f $$r/$(TARGET_SUBDIR)/libstdc++-v3/scripts/testsuite_flags || $(SHELL) $$r/$(TARGET_SUBDIR)/libstdc++-v3/scripts/testsuite_flags --build-includes` -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src/.libs'
c6b750e1
DJ
11484 echo "$as_me:$LINENO: result: just compiled" >&5
11485echo "${ECHO_T}just compiled" >&6
2429c060
PB
11486 elif expr "x$CXX_FOR_TARGET" : "x/" > /dev/null; then
11487 # We already found the complete path
b8025f34
AS
11488 ac_dir=`dirname $CXX_FOR_TARGET`
11489 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11490echo "${ECHO_T}pre-installed in $ac_dir" >&6
be01d343
PB
11491 elif test "x$target" = "x$host"; then
11492 # We can use an host tool
11493 CXX_FOR_TARGET='$(CXX)'
c6b750e1
DJ
11494 echo "$as_me:$LINENO: result: host tool" >&5
11495echo "${ECHO_T}host tool" >&6
be01d343
PB
11496 else
11497 # We need a cross tool
c6b750e1
DJ
11498 echo "$as_me:$LINENO: result: pre-installed" >&5
11499echo "${ECHO_T}pre-installed" >&6
be01d343
PB
11500 fi
11501fi
4b900473 11502
c6b750e1
DJ
11503echo "$as_me:$LINENO: checking where to find the target c++ for libstdc++" >&5
11504echo $ECHO_N "checking where to find the target c++ for libstdc++... $ECHO_C" >&6
be01d343 11505if test "x${build}" != "x${host}" ; then
2429c060
PB
11506 if expr "x$RAW_CXX_FOR_TARGET" : "x/" > /dev/null; then
11507 # We already found the complete path
b8025f34
AS
11508 ac_dir=`dirname $RAW_CXX_FOR_TARGET`
11509 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11510echo "${ECHO_T}pre-installed in $ac_dir" >&6
2429c060
PB
11511 else
11512 # Canadian cross, just use what we found
c6b750e1
DJ
11513 echo "$as_me:$LINENO: result: pre-installed" >&5
11514echo "${ECHO_T}pre-installed" >&6
2429c060 11515 fi
be01d343
PB
11516else
11517 ok=yes
11518 case " ${configdirs} " in
11519 *" gcc "*) ;;
11520 *) ok=no ;;
11521 esac
11522 case ,${enable_languages}, in
11523 *,c++,*) ;;
11524 *) ok=no ;;
11525 esac
11526 if test $ok = yes; then
11527 # An in-tree tool is available and we can use it
11528 RAW_CXX_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/xgcc -shared-libgcc -B$$r/$(HOST_SUBDIR)/gcc -nostdinc++ -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src/.libs'
c6b750e1
DJ
11529 echo "$as_me:$LINENO: result: just compiled" >&5
11530echo "${ECHO_T}just compiled" >&6
2429c060
PB
11531 elif expr "x$RAW_CXX_FOR_TARGET" : "x/" > /dev/null; then
11532 # We already found the complete path
b8025f34
AS
11533 ac_dir=`dirname $RAW_CXX_FOR_TARGET`
11534 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11535echo "${ECHO_T}pre-installed in $ac_dir" >&6
be01d343
PB
11536 elif test "x$target" = "x$host"; then
11537 # We can use an host tool
11538 RAW_CXX_FOR_TARGET='$(CXX)'
c6b750e1
DJ
11539 echo "$as_me:$LINENO: result: host tool" >&5
11540echo "${ECHO_T}host tool" >&6
be01d343
PB
11541 else
11542 # We need a cross tool
c6b750e1
DJ
11543 echo "$as_me:$LINENO: result: pre-installed" >&5
11544echo "${ECHO_T}pre-installed" >&6
be01d343
PB
11545 fi
11546fi
4b900473 11547
c6b750e1
DJ
11548echo "$as_me:$LINENO: checking where to find the target dlltool" >&5
11549echo $ECHO_N "checking where to find the target dlltool... $ECHO_C" >&6
be01d343 11550if test "x${build}" != "x${host}" ; then
2429c060
PB
11551 if expr "x$DLLTOOL_FOR_TARGET" : "x/" > /dev/null; then
11552 # We already found the complete path
b8025f34
AS
11553 ac_dir=`dirname $DLLTOOL_FOR_TARGET`
11554 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11555echo "${ECHO_T}pre-installed in $ac_dir" >&6
2429c060
PB
11556 else
11557 # Canadian cross, just use what we found
c6b750e1
DJ
11558 echo "$as_me:$LINENO: result: pre-installed" >&5
11559echo "${ECHO_T}pre-installed" >&6
2429c060 11560 fi
be01d343
PB
11561else
11562 ok=yes
11563 case " ${configdirs} " in
11564 *" binutils "*) ;;
11565 *) ok=no ;;
11566 esac
c6b750e1 11567
be01d343
PB
11568 if test $ok = yes; then
11569 # An in-tree tool is available and we can use it
11570 DLLTOOL_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/dlltool'
c6b750e1
DJ
11571 echo "$as_me:$LINENO: result: just compiled" >&5
11572echo "${ECHO_T}just compiled" >&6
2429c060
PB
11573 elif expr "x$DLLTOOL_FOR_TARGET" : "x/" > /dev/null; then
11574 # We already found the complete path
b8025f34
AS
11575 ac_dir=`dirname $DLLTOOL_FOR_TARGET`
11576 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11577echo "${ECHO_T}pre-installed in $ac_dir" >&6
be01d343
PB
11578 elif test "x$target" = "x$host"; then
11579 # We can use an host tool
11580 DLLTOOL_FOR_TARGET='$(DLLTOOL)'
c6b750e1
DJ
11581 echo "$as_me:$LINENO: result: host tool" >&5
11582echo "${ECHO_T}host tool" >&6
be01d343
PB
11583 else
11584 # We need a cross tool
c6b750e1
DJ
11585 echo "$as_me:$LINENO: result: pre-installed" >&5
11586echo "${ECHO_T}pre-installed" >&6
be01d343
PB
11587 fi
11588fi
4b900473 11589
c6b750e1
DJ
11590echo "$as_me:$LINENO: checking where to find the target gcc" >&5
11591echo $ECHO_N "checking where to find the target gcc... $ECHO_C" >&6
be01d343 11592if test "x${build}" != "x${host}" ; then
2429c060
PB
11593 if expr "x$GCC_FOR_TARGET" : "x/" > /dev/null; then
11594 # We already found the complete path
b8025f34
AS
11595 ac_dir=`dirname $GCC_FOR_TARGET`
11596 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11597echo "${ECHO_T}pre-installed in $ac_dir" >&6
2429c060
PB
11598 else
11599 # Canadian cross, just use what we found
c6b750e1
DJ
11600 echo "$as_me:$LINENO: result: pre-installed" >&5
11601echo "${ECHO_T}pre-installed" >&6
2429c060 11602 fi
be01d343
PB
11603else
11604 ok=yes
11605 case " ${configdirs} " in
11606 *" gcc "*) ;;
11607 *) ok=no ;;
11608 esac
c6b750e1 11609
be01d343
PB
11610 if test $ok = yes; then
11611 # An in-tree tool is available and we can use it
11612 GCC_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/xgcc -B$$r/$(HOST_SUBDIR)/gcc/'
c6b750e1
DJ
11613 echo "$as_me:$LINENO: result: just compiled" >&5
11614echo "${ECHO_T}just compiled" >&6
2429c060
PB
11615 elif expr "x$GCC_FOR_TARGET" : "x/" > /dev/null; then
11616 # We already found the complete path
b8025f34
AS
11617 ac_dir=`dirname $GCC_FOR_TARGET`
11618 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11619echo "${ECHO_T}pre-installed in $ac_dir" >&6
be01d343
PB
11620 elif test "x$target" = "x$host"; then
11621 # We can use an host tool
11622 GCC_FOR_TARGET='$()'
c6b750e1
DJ
11623 echo "$as_me:$LINENO: result: host tool" >&5
11624echo "${ECHO_T}host tool" >&6
be01d343
PB
11625 else
11626 # We need a cross tool
c6b750e1
DJ
11627 echo "$as_me:$LINENO: result: pre-installed" >&5
11628echo "${ECHO_T}pre-installed" >&6
be01d343
PB
11629 fi
11630fi
4b900473 11631
c6b750e1
DJ
11632echo "$as_me:$LINENO: checking where to find the target gcj" >&5
11633echo $ECHO_N "checking where to find the target gcj... $ECHO_C" >&6
be01d343 11634if test "x${build}" != "x${host}" ; then
2429c060
PB
11635 if expr "x$GCJ_FOR_TARGET" : "x/" > /dev/null; then
11636 # We already found the complete path
b8025f34
AS
11637 ac_dir=`dirname $GCJ_FOR_TARGET`
11638 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11639echo "${ECHO_T}pre-installed in $ac_dir" >&6
2429c060
PB
11640 else
11641 # Canadian cross, just use what we found
c6b750e1
DJ
11642 echo "$as_me:$LINENO: result: pre-installed" >&5
11643echo "${ECHO_T}pre-installed" >&6
2429c060 11644 fi
be01d343
PB
11645else
11646 ok=yes
11647 case " ${configdirs} " in
11648 *" gcc "*) ;;
11649 *) ok=no ;;
11650 esac
11651 case ,${enable_languages}, in
11652 *,java,*) ;;
11653 *) ok=no ;;
11654 esac
11655 if test $ok = yes; then
11656 # An in-tree tool is available and we can use it
11657 GCJ_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/gcj -B$$r/$(HOST_SUBDIR)/gcc/'
c6b750e1
DJ
11658 echo "$as_me:$LINENO: result: just compiled" >&5
11659echo "${ECHO_T}just compiled" >&6
2429c060
PB
11660 elif expr "x$GCJ_FOR_TARGET" : "x/" > /dev/null; then
11661 # We already found the complete path
b8025f34
AS
11662 ac_dir=`dirname $GCJ_FOR_TARGET`
11663 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11664echo "${ECHO_T}pre-installed in $ac_dir" >&6
be01d343
PB
11665 elif test "x$target" = "x$host"; then
11666 # We can use an host tool
11667 GCJ_FOR_TARGET='$(GCJ)'
c6b750e1
DJ
11668 echo "$as_me:$LINENO: result: host tool" >&5
11669echo "${ECHO_T}host tool" >&6
be01d343
PB
11670 else
11671 # We need a cross tool
c6b750e1
DJ
11672 echo "$as_me:$LINENO: result: pre-installed" >&5
11673echo "${ECHO_T}pre-installed" >&6
be01d343
PB
11674 fi
11675fi
4b900473 11676
c6b750e1
DJ
11677echo "$as_me:$LINENO: checking where to find the target gfortran" >&5
11678echo $ECHO_N "checking where to find the target gfortran... $ECHO_C" >&6
be01d343 11679if test "x${build}" != "x${host}" ; then
2429c060
PB
11680 if expr "x$GFORTRAN_FOR_TARGET" : "x/" > /dev/null; then
11681 # We already found the complete path
b8025f34
AS
11682 ac_dir=`dirname $GFORTRAN_FOR_TARGET`
11683 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11684echo "${ECHO_T}pre-installed in $ac_dir" >&6
2429c060
PB
11685 else
11686 # Canadian cross, just use what we found
c6b750e1
DJ
11687 echo "$as_me:$LINENO: result: pre-installed" >&5
11688echo "${ECHO_T}pre-installed" >&6
2429c060 11689 fi
be01d343
PB
11690else
11691 ok=yes
11692 case " ${configdirs} " in
11693 *" gcc "*) ;;
11694 *) ok=no ;;
11695 esac
11696 case ,${enable_languages}, in
11697 *,fortran,*) ;;
11698 *) ok=no ;;
11699 esac
11700 if test $ok = yes; then
11701 # An in-tree tool is available and we can use it
11702 GFORTRAN_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/gfortran -B$$r/$(HOST_SUBDIR)/gcc/'
c6b750e1
DJ
11703 echo "$as_me:$LINENO: result: just compiled" >&5
11704echo "${ECHO_T}just compiled" >&6
2429c060
PB
11705 elif expr "x$GFORTRAN_FOR_TARGET" : "x/" > /dev/null; then
11706 # We already found the complete path
b8025f34
AS
11707 ac_dir=`dirname $GFORTRAN_FOR_TARGET`
11708 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11709echo "${ECHO_T}pre-installed in $ac_dir" >&6
be01d343
PB
11710 elif test "x$target" = "x$host"; then
11711 # We can use an host tool
11712 GFORTRAN_FOR_TARGET='$(GFORTRAN)'
c6b750e1
DJ
11713 echo "$as_me:$LINENO: result: host tool" >&5
11714echo "${ECHO_T}host tool" >&6
be01d343
PB
11715 else
11716 # We need a cross tool
c6b750e1
DJ
11717 echo "$as_me:$LINENO: result: pre-installed" >&5
11718echo "${ECHO_T}pre-installed" >&6
be01d343
PB
11719 fi
11720fi
4b900473 11721
c6b750e1
DJ
11722echo "$as_me:$LINENO: checking where to find the target ld" >&5
11723echo $ECHO_N "checking where to find the target ld... $ECHO_C" >&6
be01d343 11724if test "x${build}" != "x${host}" ; then
2429c060
PB
11725 if expr "x$LD_FOR_TARGET" : "x/" > /dev/null; then
11726 # We already found the complete path
b8025f34
AS
11727 ac_dir=`dirname $LD_FOR_TARGET`
11728 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11729echo "${ECHO_T}pre-installed in $ac_dir" >&6
2429c060
PB
11730 else
11731 # Canadian cross, just use what we found
c6b750e1
DJ
11732 echo "$as_me:$LINENO: result: pre-installed" >&5
11733echo "${ECHO_T}pre-installed" >&6
2429c060 11734 fi
be01d343
PB
11735else
11736 ok=yes
11737 case " ${configdirs} " in
11738 *" ld "*) ;;
11739 *) ok=no ;;
11740 esac
c6b750e1 11741
be01d343
PB
11742 if test $ok = yes; then
11743 # An in-tree tool is available and we can use it
11744 LD_FOR_TARGET='$$r/$(HOST_SUBDIR)/ld/ld-new'
c6b750e1
DJ
11745 echo "$as_me:$LINENO: result: just compiled" >&5
11746echo "${ECHO_T}just compiled" >&6
2429c060
PB
11747 elif expr "x$LD_FOR_TARGET" : "x/" > /dev/null; then
11748 # We already found the complete path
b8025f34
AS
11749 ac_dir=`dirname $LD_FOR_TARGET`
11750 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11751echo "${ECHO_T}pre-installed in $ac_dir" >&6
be01d343
PB
11752 elif test "x$target" = "x$host"; then
11753 # We can use an host tool
11754 LD_FOR_TARGET='$(LD)'
c6b750e1
DJ
11755 echo "$as_me:$LINENO: result: host tool" >&5
11756echo "${ECHO_T}host tool" >&6
be01d343
PB
11757 else
11758 # We need a cross tool
c6b750e1
DJ
11759 echo "$as_me:$LINENO: result: pre-installed" >&5
11760echo "${ECHO_T}pre-installed" >&6
be01d343
PB
11761 fi
11762fi
4b900473 11763
c6b750e1
DJ
11764echo "$as_me:$LINENO: checking where to find the target lipo" >&5
11765echo $ECHO_N "checking where to find the target lipo... $ECHO_C" >&6
be01d343 11766if test "x${build}" != "x${host}" ; then
2429c060
PB
11767 if expr "x$LIPO_FOR_TARGET" : "x/" > /dev/null; then
11768 # We already found the complete path
b8025f34
AS
11769 ac_dir=`dirname $LIPO_FOR_TARGET`
11770 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11771echo "${ECHO_T}pre-installed in $ac_dir" >&6
2429c060
PB
11772 else
11773 # Canadian cross, just use what we found
c6b750e1
DJ
11774 echo "$as_me:$LINENO: result: pre-installed" >&5
11775echo "${ECHO_T}pre-installed" >&6
2429c060 11776 fi
be01d343 11777else
2429c060
PB
11778 if expr "x$LIPO_FOR_TARGET" : "x/" > /dev/null; then
11779 # We already found the complete path
b8025f34
AS
11780 ac_dir=`dirname $LIPO_FOR_TARGET`
11781 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11782echo "${ECHO_T}pre-installed in $ac_dir" >&6
2429c060 11783 elif test "x$target" = "x$host"; then
be01d343
PB
11784 # We can use an host tool
11785 LIPO_FOR_TARGET='$(LIPO)'
c6b750e1
DJ
11786 echo "$as_me:$LINENO: result: host tool" >&5
11787echo "${ECHO_T}host tool" >&6
be01d343
PB
11788 else
11789 # We need a cross tool
c6b750e1
DJ
11790 echo "$as_me:$LINENO: result: pre-installed" >&5
11791echo "${ECHO_T}pre-installed" >&6
be01d343
PB
11792 fi
11793fi
4b900473 11794
c6b750e1
DJ
11795echo "$as_me:$LINENO: checking where to find the target nm" >&5
11796echo $ECHO_N "checking where to find the target nm... $ECHO_C" >&6
be01d343 11797if test "x${build}" != "x${host}" ; then
2429c060
PB
11798 if expr "x$NM_FOR_TARGET" : "x/" > /dev/null; then
11799 # We already found the complete path
b8025f34
AS
11800 ac_dir=`dirname $NM_FOR_TARGET`
11801 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11802echo "${ECHO_T}pre-installed in $ac_dir" >&6
2429c060
PB
11803 else
11804 # Canadian cross, just use what we found
c6b750e1
DJ
11805 echo "$as_me:$LINENO: result: pre-installed" >&5
11806echo "${ECHO_T}pre-installed" >&6
2429c060 11807 fi
be01d343
PB
11808else
11809 ok=yes
11810 case " ${configdirs} " in
11811 *" binutils "*) ;;
11812 *) ok=no ;;
11813 esac
c6b750e1 11814
be01d343
PB
11815 if test $ok = yes; then
11816 # An in-tree tool is available and we can use it
11817 NM_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/nm-new'
c6b750e1
DJ
11818 echo "$as_me:$LINENO: result: just compiled" >&5
11819echo "${ECHO_T}just compiled" >&6
2429c060
PB
11820 elif expr "x$NM_FOR_TARGET" : "x/" > /dev/null; then
11821 # We already found the complete path
b8025f34
AS
11822 ac_dir=`dirname $NM_FOR_TARGET`
11823 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11824echo "${ECHO_T}pre-installed in $ac_dir" >&6
be01d343
PB
11825 elif test "x$target" = "x$host"; then
11826 # We can use an host tool
11827 NM_FOR_TARGET='$(NM)'
c6b750e1
DJ
11828 echo "$as_me:$LINENO: result: host tool" >&5
11829echo "${ECHO_T}host tool" >&6
be01d343
PB
11830 else
11831 # We need a cross tool
c6b750e1
DJ
11832 echo "$as_me:$LINENO: result: pre-installed" >&5
11833echo "${ECHO_T}pre-installed" >&6
be01d343
PB
11834 fi
11835fi
4b900473 11836
c6b750e1
DJ
11837echo "$as_me:$LINENO: checking where to find the target objdump" >&5
11838echo $ECHO_N "checking where to find the target objdump... $ECHO_C" >&6
be01d343 11839if test "x${build}" != "x${host}" ; then
2429c060
PB
11840 if expr "x$OBJDUMP_FOR_TARGET" : "x/" > /dev/null; then
11841 # We already found the complete path
b8025f34
AS
11842 ac_dir=`dirname $OBJDUMP_FOR_TARGET`
11843 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11844echo "${ECHO_T}pre-installed in $ac_dir" >&6
2429c060
PB
11845 else
11846 # Canadian cross, just use what we found
c6b750e1
DJ
11847 echo "$as_me:$LINENO: result: pre-installed" >&5
11848echo "${ECHO_T}pre-installed" >&6
2429c060 11849 fi
be01d343
PB
11850else
11851 ok=yes
11852 case " ${configdirs} " in
11853 *" binutils "*) ;;
11854 *) ok=no ;;
11855 esac
c6b750e1 11856
be01d343
PB
11857 if test $ok = yes; then
11858 # An in-tree tool is available and we can use it
11859 OBJDUMP_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/objdump'
c6b750e1
DJ
11860 echo "$as_me:$LINENO: result: just compiled" >&5
11861echo "${ECHO_T}just compiled" >&6
2429c060
PB
11862 elif expr "x$OBJDUMP_FOR_TARGET" : "x/" > /dev/null; then
11863 # We already found the complete path
b8025f34
AS
11864 ac_dir=`dirname $OBJDUMP_FOR_TARGET`
11865 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11866echo "${ECHO_T}pre-installed in $ac_dir" >&6
be01d343
PB
11867 elif test "x$target" = "x$host"; then
11868 # We can use an host tool
11869 OBJDUMP_FOR_TARGET='$(OBJDUMP)'
c6b750e1
DJ
11870 echo "$as_me:$LINENO: result: host tool" >&5
11871echo "${ECHO_T}host tool" >&6
be01d343
PB
11872 else
11873 # We need a cross tool
c6b750e1
DJ
11874 echo "$as_me:$LINENO: result: pre-installed" >&5
11875echo "${ECHO_T}pre-installed" >&6
be01d343
PB
11876 fi
11877fi
4b900473 11878
c6b750e1
DJ
11879echo "$as_me:$LINENO: checking where to find the target ranlib" >&5
11880echo $ECHO_N "checking where to find the target ranlib... $ECHO_C" >&6
be01d343 11881if test "x${build}" != "x${host}" ; then
2429c060
PB
11882 if expr "x$RANLIB_FOR_TARGET" : "x/" > /dev/null; then
11883 # We already found the complete path
b8025f34
AS
11884 ac_dir=`dirname $RANLIB_FOR_TARGET`
11885 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11886echo "${ECHO_T}pre-installed in $ac_dir" >&6
2429c060
PB
11887 else
11888 # Canadian cross, just use what we found
c6b750e1
DJ
11889 echo "$as_me:$LINENO: result: pre-installed" >&5
11890echo "${ECHO_T}pre-installed" >&6
2429c060 11891 fi
be01d343
PB
11892else
11893 ok=yes
11894 case " ${configdirs} " in
11895 *" binutils "*) ;;
11896 *) ok=no ;;
11897 esac
c6b750e1 11898
be01d343
PB
11899 if test $ok = yes; then
11900 # An in-tree tool is available and we can use it
11901 RANLIB_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/ranlib'
c6b750e1
DJ
11902 echo "$as_me:$LINENO: result: just compiled" >&5
11903echo "${ECHO_T}just compiled" >&6
2429c060
PB
11904 elif expr "x$RANLIB_FOR_TARGET" : "x/" > /dev/null; then
11905 # We already found the complete path
b8025f34
AS
11906 ac_dir=`dirname $RANLIB_FOR_TARGET`
11907 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11908echo "${ECHO_T}pre-installed in $ac_dir" >&6
be01d343
PB
11909 elif test "x$target" = "x$host"; then
11910 # We can use an host tool
11911 RANLIB_FOR_TARGET='$(RANLIB)'
c6b750e1
DJ
11912 echo "$as_me:$LINENO: result: host tool" >&5
11913echo "${ECHO_T}host tool" >&6
be01d343
PB
11914 else
11915 # We need a cross tool
c6b750e1
DJ
11916 echo "$as_me:$LINENO: result: pre-installed" >&5
11917echo "${ECHO_T}pre-installed" >&6
be01d343
PB
11918 fi
11919fi
4b900473 11920
c6b750e1
DJ
11921echo "$as_me:$LINENO: checking where to find the target strip" >&5
11922echo $ECHO_N "checking where to find the target strip... $ECHO_C" >&6
be01d343 11923if test "x${build}" != "x${host}" ; then
2429c060
PB
11924 if expr "x$STRIP_FOR_TARGET" : "x/" > /dev/null; then
11925 # We already found the complete path
b8025f34
AS
11926 ac_dir=`dirname $STRIP_FOR_TARGET`
11927 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11928echo "${ECHO_T}pre-installed in $ac_dir" >&6
2429c060
PB
11929 else
11930 # Canadian cross, just use what we found
c6b750e1
DJ
11931 echo "$as_me:$LINENO: result: pre-installed" >&5
11932echo "${ECHO_T}pre-installed" >&6
2429c060 11933 fi
be01d343
PB
11934else
11935 ok=yes
11936 case " ${configdirs} " in
11937 *" binutils "*) ;;
11938 *) ok=no ;;
11939 esac
c6b750e1 11940
be01d343
PB
11941 if test $ok = yes; then
11942 # An in-tree tool is available and we can use it
11943 STRIP_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/strip'
c6b750e1
DJ
11944 echo "$as_me:$LINENO: result: just compiled" >&5
11945echo "${ECHO_T}just compiled" >&6
2429c060
PB
11946 elif expr "x$STRIP_FOR_TARGET" : "x/" > /dev/null; then
11947 # We already found the complete path
b8025f34
AS
11948 ac_dir=`dirname $STRIP_FOR_TARGET`
11949 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11950echo "${ECHO_T}pre-installed in $ac_dir" >&6
be01d343
PB
11951 elif test "x$target" = "x$host"; then
11952 # We can use an host tool
11953 STRIP_FOR_TARGET='$(STRIP)'
c6b750e1
DJ
11954 echo "$as_me:$LINENO: result: host tool" >&5
11955echo "${ECHO_T}host tool" >&6
be01d343
PB
11956 else
11957 # We need a cross tool
c6b750e1
DJ
11958 echo "$as_me:$LINENO: result: pre-installed" >&5
11959echo "${ECHO_T}pre-installed" >&6
be01d343
PB
11960 fi
11961fi
4b900473 11962
c6b750e1
DJ
11963echo "$as_me:$LINENO: checking where to find the target windres" >&5
11964echo $ECHO_N "checking where to find the target windres... $ECHO_C" >&6
be01d343 11965if test "x${build}" != "x${host}" ; then
2429c060
PB
11966 if expr "x$WINDRES_FOR_TARGET" : "x/" > /dev/null; then
11967 # We already found the complete path
b8025f34
AS
11968 ac_dir=`dirname $WINDRES_FOR_TARGET`
11969 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11970echo "${ECHO_T}pre-installed in $ac_dir" >&6
2429c060
PB
11971 else
11972 # Canadian cross, just use what we found
c6b750e1
DJ
11973 echo "$as_me:$LINENO: result: pre-installed" >&5
11974echo "${ECHO_T}pre-installed" >&6
2429c060 11975 fi
be01d343
PB
11976else
11977 ok=yes
11978 case " ${configdirs} " in
11979 *" binutils "*) ;;
11980 *) ok=no ;;
11981 esac
c6b750e1 11982
be01d343
PB
11983 if test $ok = yes; then
11984 # An in-tree tool is available and we can use it
11985 WINDRES_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/windres'
c6b750e1
DJ
11986 echo "$as_me:$LINENO: result: just compiled" >&5
11987echo "${ECHO_T}just compiled" >&6
2429c060
PB
11988 elif expr "x$WINDRES_FOR_TARGET" : "x/" > /dev/null; then
11989 # We already found the complete path
b8025f34
AS
11990 ac_dir=`dirname $WINDRES_FOR_TARGET`
11991 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
11992echo "${ECHO_T}pre-installed in $ac_dir" >&6
be01d343
PB
11993 elif test "x$target" = "x$host"; then
11994 # We can use an host tool
11995 WINDRES_FOR_TARGET='$(WINDRES)'
c6b750e1
DJ
11996 echo "$as_me:$LINENO: result: host tool" >&5
11997echo "${ECHO_T}host tool" >&6
be01d343
PB
11998 else
11999 # We need a cross tool
c6b750e1
DJ
12000 echo "$as_me:$LINENO: result: pre-installed" >&5
12001echo "${ECHO_T}pre-installed" >&6
be01d343 12002 fi
a0da8069 12003fi
54752a6b 12004
0c24b341
NC
12005echo "$as_me:$LINENO: checking where to find the target windmc" >&5
12006echo $ECHO_N "checking where to find the target windmc... $ECHO_C" >&6
12007if test "x${build}" != "x${host}" ; then
12008 if expr "x$WINDMC_FOR_TARGET" : "x/" > /dev/null; then
12009 # We already found the complete path
12010 ac_dir=`dirname $WINDMC_FOR_TARGET`
12011 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
12012echo "${ECHO_T}pre-installed in $ac_dir" >&6
12013 else
12014 # Canadian cross, just use what we found
12015 echo "$as_me:$LINENO: result: pre-installed" >&5
12016echo "${ECHO_T}pre-installed" >&6
12017 fi
12018else
12019 ok=yes
12020 case " ${configdirs} " in
12021 *" binutils "*) ;;
12022 *) ok=no ;;
12023 esac
12024
12025 if test $ok = yes; then
12026 # An in-tree tool is available and we can use it
12027 WINDMC_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/windmc'
12028 echo "$as_me:$LINENO: result: just compiled" >&5
12029echo "${ECHO_T}just compiled" >&6
12030 elif expr "x$WINDMC_FOR_TARGET" : "x/" > /dev/null; then
12031 # We already found the complete path
12032 ac_dir=`dirname $WINDMC_FOR_TARGET`
12033 echo "$as_me:$LINENO: result: pre-installed in $ac_dir" >&5
12034echo "${ECHO_T}pre-installed in $ac_dir" >&6
12035 elif test "x$target" = "x$host"; then
12036 # We can use an host tool
12037 WINDMC_FOR_TARGET='$(WINDMC)'
12038 echo "$as_me:$LINENO: result: host tool" >&5
12039echo "${ECHO_T}host tool" >&6
12040 else
12041 # We need a cross tool
12042 echo "$as_me:$LINENO: result: pre-installed" >&5
12043echo "${ECHO_T}pre-installed" >&6
12044 fi
12045fi
12046
54752a6b
NN
12047
12048
be01d343 12049
4b900473 12050
a0da8069
NN
12051# Certain tools may need extra flags.
12052AR_FOR_TARGET=${AR_FOR_TARGET}${extra_arflags_for_target}
12053RANLIB_FOR_TARGET=${RANLIB_FOR_TARGET}${extra_ranlibflags_for_target}
12054NM_FOR_TARGET=${NM_FOR_TARGET}${extra_nmflags_for_target}
12055
be01d343
PB
12056# When building target libraries, except in a Canadian cross, we use
12057# the same toolchain as the compiler we just built.
12058COMPILER_AS_FOR_TARGET='$(AS_FOR_TARGET)'
12059COMPILER_LD_FOR_TARGET='$(LD_FOR_TARGET)'
12060COMPILER_NM_FOR_TARGET='$(NM_FOR_TARGET)'
12061if test $host = $build; then
12062 case " $configdirs " in
12063 *" gcc "*)
12064 COMPILER_AS_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/as'
12065 COMPILER_LD_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/collect-ld'
12066 COMPILER_NM_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/nm'${extra_nmflags_for_target}
12067 ;;
12068 esac
12069fi
12070
12071
12072
12073
12074
c6b750e1
DJ
12075echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5
12076echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6
3d5e36ae
AO
12077# Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
12078if test "${enable_maintainer_mode+set}" = set; then
12079 enableval="$enable_maintainer_mode"
12080 USE_MAINTAINER_MODE=$enableval
12081else
12082 USE_MAINTAINER_MODE=no
c6b750e1
DJ
12083fi;
12084echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5
12085echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6
3d5e36ae
AO
12086
12087
12088if test "$USE_MAINTAINER_MODE" = yes; then
12089 MAINTAINER_MODE_TRUE=
12090 MAINTAINER_MODE_FALSE='#'
12091else
12092 MAINTAINER_MODE_TRUE='#'
12093 MAINTAINER_MODE_FALSE=
c6b750e1 12094fi
3d5e36ae
AO
12095MAINT=$MAINTAINER_MODE_TRUE
12096
1d39f329
NN
12097# ---------------------
12098# GCC bootstrap support
12099# ---------------------
12100
12101# Stage specific cflags for build.
12102stage1_cflags="-g"
12103case $build in
12104 vax-*-*)
12105 case ${GCC} in
12106 yes) stage1_cflags="-g -Wa,-J" ;;
12107 *) stage1_cflags="-g -J" ;;
12108 esac ;;
1d39f329
NN
12109esac
12110
1d89b610
PB
12111# This is aimed to mimic bootstrap with a non-GCC compiler to catch problems.
12112if test "$GCC" = yes; then
12113 saved_CFLAGS="$CFLAGS"
12114
12115 # Pass -fkeep-inline-functions for stage 1 if the GCC version supports it.
12116 CFLAGS="$CFLAGS -fkeep-inline-functions"
c6b750e1
DJ
12117 echo "$as_me:$LINENO: checking whether -fkeep-inline-functions is supported" >&5
12118echo $ECHO_N "checking whether -fkeep-inline-functions is supported... $ECHO_C" >&6
12119 cat >conftest.$ac_ext <<_ACEOF
12120/* confdefs.h. */
12121_ACEOF
12122cat confdefs.h >>conftest.$ac_ext
12123cat >>conftest.$ac_ext <<_ACEOF
12124/* end confdefs.h. */
12125
2038f525
PB
12126#if (__GNUC__ < 3) \
12127 || (__GNUC__ == 3 && (__GNUC_MINOR__ < 3 \
12128 || (__GNUC_MINOR__ == 3 && __GNUC_PATCHLEVEL__ < 1)))
12129#error http://gcc.gnu.org/PR29382
12130#endif
12131
c6b750e1
DJ
12132int
12133main ()
12134{
12135
12136 ;
12137 return 0;
12138}
12139_ACEOF
12140rm -f conftest.$ac_objext
12141if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
12142 (eval $ac_compile) 2>conftest.er1
12143 ac_status=$?
12144 grep -v '^ *+' conftest.er1 >conftest.err
12145 rm -f conftest.er1
12146 cat conftest.err >&5
12147 echo "$as_me:$LINENO: \$? = $ac_status" >&5
12148 (exit $ac_status); } &&
12149 { ac_try='test -z "$ac_c_werror_flag"
12150 || test ! -s conftest.err'
12151 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
12152 (eval $ac_try) 2>&5
12153 ac_status=$?
12154 echo "$as_me:$LINENO: \$? = $ac_status" >&5
12155 (exit $ac_status); }; } &&
12156 { ac_try='test -s conftest.$ac_objext'
12157 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
12158 (eval $ac_try) 2>&5
12159 ac_status=$?
12160 echo "$as_me:$LINENO: \$? = $ac_status" >&5
12161 (exit $ac_status); }; }; then
12162 echo "$as_me:$LINENO: result: yes" >&5
12163echo "${ECHO_T}yes" >&6; stage1_cflags="$stage1_cflags -fkeep-inline-functions"
12164else
12165 echo "$as_me: failed program was:" >&5
12166sed 's/^/| /' conftest.$ac_ext >&5
12167
12168echo "$as_me:$LINENO: result: no" >&5
12169echo "${ECHO_T}no" >&6
12170fi
12171rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
1d89b610
PB
12172
12173 CFLAGS="$saved_CFLAGS"
12174fi
12175
12176
1d39f329 12177
8a0d8a5c
PB
12178# Enable --enable-checking in stage1 of the compiler.
12179# Check whether --enable-stage1-checking or --disable-stage1-checking was given.
12180if test "${enable_stage1_checking+set}" = set; then
12181 enableval="$enable_stage1_checking"
12182 stage1_checking=--enable-checking=${enable_stage1_checking}
12183else
5566c1fa 12184 if test "x$enable_checking" = xno || test "x$enable_checking" = x; then
2abc4e65 12185 stage1_checking=--enable-checking=yes,types
8a0d8a5c 12186else
5566c1fa 12187 stage1_checking=--enable-checking=$enable_checking,types
8a0d8a5c 12188fi
c6b750e1 12189fi;
8a0d8a5c
PB
12190
12191
1d39f329 12192# Enable -Werror in bootstrap stage2 and later.
1d39f329
NN
12193# Check whether --enable-werror or --disable-werror was given.
12194if test "${enable_werror+set}" = set; then
12195 enableval="$enable_werror"
c6b750e1 12196
1d39f329 12197else
a0323144 12198 if test -d ${srcdir}/gcc && test x"`cat $srcdir/gcc/DEV-PHASE`" = xexperimental; then
1d39f329 12199 enable_werror=yes
79fcd0ec
PB
12200else
12201 enable_werror=no
12202fi
c6b750e1 12203fi;
1a6f2dc7
NN
12204case ${enable_werror} in
12205 yes) stage2_werror_flag="--enable-werror-always" ;;
12206 *) stage2_werror_flag="" ;;
1d39f329
NN
12207esac
12208
12209
108a6f8e 12210# Flags needed to enable html installing and building
c6b750e1 12211
108a6f8e
CD
12212# Check whether --with-datarootdir or --without-datarootdir was given.
12213if test "${with_datarootdir+set}" = set; then
12214 withval="$with_datarootdir"
12215 datarootdir="\${prefix}/${withval}"
12216else
12217 datarootdir="\${prefix}/share"
c6b750e1 12218fi;
108a6f8e
CD
12219
12220
12221# Check whether --with-docdir or --without-docdir was given.
12222if test "${with_docdir+set}" = set; then
12223 withval="$with_docdir"
12224 docdir="\${prefix}/${withval}"
12225else
12226 docdir="\${datarootdir}/doc"
c6b750e1 12227fi;
108a6f8e
CD
12228
12229
a3ca38d2
DD
12230# Check whether --with-pdfdir or --without-pdfdir was given.
12231if test "${with_pdfdir+set}" = set; then
12232 withval="$with_pdfdir"
12233 pdfdir="\${prefix}/${withval}"
12234else
12235 pdfdir="\${docdir}"
12236fi;
12237
12238
108a6f8e
CD
12239# Check whether --with-htmldir or --without-htmldir was given.
12240if test "${with_htmldir+set}" = set; then
12241 withval="$with_htmldir"
12242 htmldir="\${prefix}/${withval}"
12243else
12244 htmldir="\${docdir}"
c6b750e1 12245fi;
108a6f8e
CD
12246
12247
12248
12249
12250
b8025f34 12251
c6b750e1
DJ
12252 ac_config_files="$ac_config_files Makefile"
12253cat >confcache <<\_ACEOF
a0da8069
NN
12254# This file is a shell script that caches the results of configure
12255# tests run on this system so they can be shared between configure
c6b750e1
DJ
12256# scripts and configure runs, see configure's option --config-cache.
12257# It is not useful on other systems. If it contains results you don't
12258# want to keep, you may remove or edit it.
a0da8069 12259#
c6b750e1
DJ
12260# config.status only pays attention to the cache file if you give it
12261# the --recheck option to rerun configure.
a0da8069 12262#
c6b750e1
DJ
12263# `ac_cv_env_foo' variables (set or unset) will be overridden when
12264# loading this file, other *unset* `ac_cv_foo' will be assigned the
12265# following values.
12266
12267_ACEOF
12268
a0da8069
NN
12269# The following way of writing the cache mishandles newlines in values,
12270# but we know of no workaround that is simple, portable, and efficient.
12271# So, don't put newlines in cache variables' values.
12272# Ultrix sh set writes to stderr and can't be redirected directly,
12273# and sets the high bit in the cache file unless we assign to the vars.
c6b750e1
DJ
12274{
12275 (set) 2>&1 |
12276 case `(ac_space=' '; set | grep ac_space) 2>&1` in
12277 *ac_space=\ *)
12278 # `set' does not quote correctly, so add quotes (double-quote
12279 # substitution turns \\\\ into \\, and sed turns \\ into \).
12280 sed -n \
12281 "s/'/'\\\\''/g;
12282 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
12283 ;;
12284 *)
12285 # `set' quotes correctly as required by POSIX, so do not add quotes.
12286 sed -n \
12287 "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
12288 ;;
12289 esac;
12290} |
12291 sed '
12292 t clear
12293 : clear
12294 s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
12295 t end
12296 /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
12297 : end' >>confcache
12298if diff $cache_file confcache >/dev/null 2>&1; then :; else
a0da8069 12299 if test -w $cache_file; then
c6b750e1
DJ
12300 test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
12301 cat confcache >$cache_file
a0da8069
NN
12302 else
12303 echo "not updating unwritable cache $cache_file"
12304 fi
852e5f18 12305fi
a0da8069 12306rm -f confcache
852e5f18 12307
a0da8069
NN
12308test "x$prefix" = xNONE && prefix=$ac_default_prefix
12309# Let make expand exec_prefix.
12310test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
852e5f18 12311
c6b750e1
DJ
12312# VPATH may cause trouble with some makes, so we remove $(srcdir),
12313# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
12314# trailing colons and then remove the whole line if VPATH becomes empty
12315# (actually we leave an empty line to preserve line numbers).
a0da8069 12316if test "x$srcdir" = x.; then
c6b750e1
DJ
12317 ac_vpsub='/^[ ]*VPATH[ ]*=/{
12318s/:*\$(srcdir):*/:/;
12319s/:*\${srcdir}:*/:/;
12320s/:*@srcdir@:*/:/;
12321s/^\([^=]*=[ ]*\):*/\1/;
12322s/:*$//;
12323s/^[^=]*=[ ]*$//;
12324}'
a0da8069 12325fi
252b5132 12326
a0da8069
NN
12327# Transform confdefs.h into DEFS.
12328# Protect against shell expansion while executing Makefile rules.
12329# Protect against Makefile macro expansion.
c6b750e1
DJ
12330#
12331# If the first sed substitution is executed (which looks for macros that
12332# take arguments), then we branch to the quote section. Otherwise,
12333# look for a macro that doesn't take arguments.
12334cat >confdef2opt.sed <<\_ACEOF
12335t clear
12336: clear
12337s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\),-D\1=\2,g
12338t quote
12339s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\),-D\1=\2,g
12340t quote
12341d
12342: quote
12343s,[ `~#$^&*(){}\\|;'"<>?],\\&,g
12344s,\[,\\&,g
12345s,\],\\&,g
12346s,\$,$$,g
12347p
12348_ACEOF
12349# We use echo to avoid assuming a particular line-breaking character.
12350# The extra dot is to prevent the shell from consuming trailing
12351# line-breaks from the sub-command output. A line-break within
12352# single-quotes doesn't work because, if this script is created in a
12353# platform that uses two characters for line-breaks (e.g., DOS), tr
12354# would break.
12355ac_LF_and_DOT=`echo; echo .`
12356DEFS=`sed -n -f confdef2opt.sed confdefs.h | tr "$ac_LF_and_DOT" ' .'`
12357rm -f confdef2opt.sed
12358
12359
12360ac_libobjs=
12361ac_ltlibobjs=
12362for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
12363 # 1. Remove the extension, and $U if already installed.
12364 ac_i=`echo "$ac_i" |
12365 sed 's/\$U\././;s/\.o$//;s/\.obj$//'`
12366 # 2. Add them.
12367 ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext"
12368 ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo'
12369done
12370LIBOBJS=$ac_libobjs
852e5f18 12371
c6b750e1 12372LTLIBOBJS=$ac_ltlibobjs
376a0e54 12373
cac3d6c4 12374
c6b750e1
DJ
12375
12376: ${CONFIG_STATUS=./config.status}
12377ac_clean_files_save=$ac_clean_files
12378ac_clean_files="$ac_clean_files $CONFIG_STATUS"
12379{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
12380echo "$as_me: creating $CONFIG_STATUS" >&6;}
12381cat >$CONFIG_STATUS <<_ACEOF
12382#! $SHELL
12383# Generated by $as_me.
a0da8069 12384# Run this file to recreate the current configuration.
a0da8069 12385# Compiler output produced by configure, useful for debugging
c6b750e1 12386# configure, is in config.log if it exists.
376a0e54 12387
c6b750e1
DJ
12388debug=false
12389ac_cs_recheck=false
12390ac_cs_silent=false
12391SHELL=\${CONFIG_SHELL-$SHELL}
12392_ACEOF
12393
12394cat >>$CONFIG_STATUS <<\_ACEOF
12395## --------------------- ##
12396## M4sh Initialization. ##
12397## --------------------- ##
12398
12399# Be Bourne compatible
12400if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
12401 emulate sh
12402 NULLCMD=:
12403 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
12404 # is contrary to our usage. Disable this feature.
12405 alias -g '${1+"$@"}'='"$@"'
12406elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
12407 set -o posix
12408fi
12409DUALCASE=1; export DUALCASE # for MKS sh
12410
12411# Support unset when possible.
12412if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
12413 as_unset=unset
12414else
12415 as_unset=false
12416fi
12417
12418
12419# Work around bugs in pre-3.0 UWIN ksh.
12420$as_unset ENV MAIL MAILPATH
12421PS1='$ '
12422PS2='> '
12423PS4='+ '
12424
12425# NLS nuisances.
12426for as_var in \
12427 LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
12428 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
12429 LC_TELEPHONE LC_TIME
12430do
12431 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
12432 eval $as_var=C; export $as_var
12433 else
12434 $as_unset $as_var
12435 fi
12436done
12437
12438# Required to use basename.
12439if expr a : '\(a\)' >/dev/null 2>&1; then
12440 as_expr=expr
12441else
12442 as_expr=false
12443fi
12444
12445if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
12446 as_basename=basename
12447else
12448 as_basename=false
12449fi
12450
12451
12452# Name of the executable.
12453as_me=`$as_basename "$0" ||
12454$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
12455 X"$0" : 'X\(//\)$' \| \
12456 X"$0" : 'X\(/\)$' \| \
12457 . : '\(.\)' 2>/dev/null ||
12458echo X/"$0" |
12459 sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
12460 /^X\/\(\/\/\)$/{ s//\1/; q; }
12461 /^X\/\(\/\).*/{ s//\1/; q; }
12462 s/.*/./; q'`
12463
12464
12465# PATH needs CR, and LINENO needs CR and PATH.
12466# Avoid depending upon Character Ranges.
12467as_cr_letters='abcdefghijklmnopqrstuvwxyz'
12468as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
12469as_cr_Letters=$as_cr_letters$as_cr_LETTERS
12470as_cr_digits='0123456789'
12471as_cr_alnum=$as_cr_Letters$as_cr_digits
12472
12473# The user is always right.
12474if test "${PATH_SEPARATOR+set}" != set; then
12475 echo "#! /bin/sh" >conf$$.sh
12476 echo "exit 0" >>conf$$.sh
12477 chmod +x conf$$.sh
12478 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
12479 PATH_SEPARATOR=';'
12480 else
12481 PATH_SEPARATOR=:
12482 fi
12483 rm -f conf$$.sh
12484fi
12485
12486
12487 as_lineno_1=$LINENO
12488 as_lineno_2=$LINENO
12489 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
12490 test "x$as_lineno_1" != "x$as_lineno_2" &&
12491 test "x$as_lineno_3" = "x$as_lineno_2" || {
12492 # Find who we are. Look in the path if we contain no path at all
12493 # relative or not.
12494 case $0 in
12495 *[\\/]* ) as_myself=$0 ;;
12496 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
12497for as_dir in $PATH
12498do
12499 IFS=$as_save_IFS
12500 test -z "$as_dir" && as_dir=.
12501 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
12502done
12503
12504 ;;
12505 esac
12506 # We did not find ourselves, most probably we were run as `sh COMMAND'
12507 # in which case we are not to be found in the path.
12508 if test "x$as_myself" = x; then
12509 as_myself=$0
12510 fi
12511 if test ! -f "$as_myself"; then
12512 { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
12513echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
12514 { (exit 1); exit 1; }; }
12515 fi
12516 case $CONFIG_SHELL in
12517 '')
12518 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
12519for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
12520do
12521 IFS=$as_save_IFS
12522 test -z "$as_dir" && as_dir=.
12523 for as_base in sh bash ksh sh5; do
12524 case $as_dir in
12525 /*)
12526 if ("$as_dir/$as_base" -c '
12527 as_lineno_1=$LINENO
12528 as_lineno_2=$LINENO
12529 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
12530 test "x$as_lineno_1" != "x$as_lineno_2" &&
12531 test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then
12532 $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
12533 $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
12534 CONFIG_SHELL=$as_dir/$as_base
12535 export CONFIG_SHELL
12536 exec "$CONFIG_SHELL" "$0" ${1+"$@"}
12537 fi;;
12538 esac
12539 done
12540done
12541;;
12542 esac
12543
12544 # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
12545 # uniformly replaced by the line number. The first 'sed' inserts a
12546 # line-number line before each line; the second 'sed' does the real
12547 # work. The second script uses 'N' to pair each line-number line
12548 # with the numbered line, and appends trailing '-' during
12549 # substitution so that $LINENO is not a special case at line end.
12550 # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
12551 # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-)
12552 sed '=' <$as_myself |
12553 sed '
12554 N
12555 s,$,-,
12556 : loop
12557 s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
12558 t loop
12559 s,-$,,
12560 s,^['$as_cr_digits']*\n,,
12561 ' >$as_me.lineno &&
12562 chmod +x $as_me.lineno ||
12563 { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
12564echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
12565 { (exit 1); exit 1; }; }
12566
12567 # Don't try to exec as it changes $[0], causing all sort of problems
12568 # (the dirname of $[0] is not the place where we might find the
12569 # original and so on. Autoconf is especially sensible to this).
12570 . ./$as_me.lineno
12571 # Exit status is that of the last command.
12572 exit
12573}
12574
12575
12576case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
12577 *c*,-n*) ECHO_N= ECHO_C='
12578' ECHO_T=' ' ;;
12579 *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;;
12580 *) ECHO_N= ECHO_C='\c' ECHO_T= ;;
12581esac
12582
12583if expr a : '\(a\)' >/dev/null 2>&1; then
12584 as_expr=expr
12585else
12586 as_expr=false
12587fi
12588
12589rm -f conf$$ conf$$.exe conf$$.file
12590echo >conf$$.file
12591if ln -s conf$$.file conf$$ 2>/dev/null; then
12592 # We could just check for DJGPP; but this test a) works b) is more generic
12593 # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
12594 if test -f conf$$.exe; then
12595 # Don't use ln at all; we don't have any links
12596 as_ln_s='cp -p'
12597 else
12598 as_ln_s='ln -s'
12599 fi
12600elif ln conf$$.file conf$$ 2>/dev/null; then
12601 as_ln_s=ln
12602else
12603 as_ln_s='cp -p'
12604fi
12605rm -f conf$$ conf$$.exe conf$$.file
12606
12607if mkdir -p . 2>/dev/null; then
12608 as_mkdir_p=:
12609else
12610 test -d ./-p && rmdir ./-p
12611 as_mkdir_p=false
12612fi
12613
12614as_executable_p="test -f"
12615
12616# Sed expression to map a string onto a valid CPP name.
12617as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
12618
12619# Sed expression to map a string onto a valid variable name.
12620as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
12621
12622
12623# IFS
12624# We need space, tab and new line, in precisely that order.
12625as_nl='
12626'
12627IFS=" $as_nl"
12628
12629# CDPATH.
12630$as_unset CDPATH
12631
12632exec 6>&1
12633
12634# Open the log real soon, to keep \$[0] and so on meaningful, and to
12635# report actual input values of CONFIG_FILES etc. instead of their
12636# values after options handling. Logging --version etc. is OK.
12637exec 5>>config.log
12638{
12639 echo
12640 sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
12641## Running $as_me. ##
12642_ASBOX
12643} >&5
12644cat >&5 <<_CSEOF
12645
12646This file was extended by $as_me, which was
12647generated by GNU Autoconf 2.59. Invocation command line was
12648
12649 CONFIG_FILES = $CONFIG_FILES
12650 CONFIG_HEADERS = $CONFIG_HEADERS
12651 CONFIG_LINKS = $CONFIG_LINKS
12652 CONFIG_COMMANDS = $CONFIG_COMMANDS
12653 $ $0 $@
12654
12655_CSEOF
12656echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
12657echo >&5
12658_ACEOF
12659
12660# Files that config.status was made for.
12661if test -n "$ac_config_files"; then
12662 echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS
12663fi
12664
12665if test -n "$ac_config_headers"; then
12666 echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS
12667fi
12668
12669if test -n "$ac_config_links"; then
12670 echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS
12671fi
12672
12673if test -n "$ac_config_commands"; then
12674 echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
12675fi
12676
12677cat >>$CONFIG_STATUS <<\_ACEOF
12678
12679ac_cs_usage="\
12680\`$as_me' instantiates files from templates according to the
12681current configuration.
12682
12683Usage: $0 [OPTIONS] [FILE]...
12684
12685 -h, --help print this help, then exit
12686 -V, --version print version number, then exit
12687 -q, --quiet do not print progress messages
12688 -d, --debug don't remove temporary files
12689 --recheck update $as_me by reconfiguring in the same conditions
12690 --file=FILE[:TEMPLATE]
12691 instantiate the configuration file FILE
12692
12693Configuration files:
12694$config_files
12695
12696Report bugs to <bug-autoconf@gnu.org>."
12697_ACEOF
12698
12699cat >>$CONFIG_STATUS <<_ACEOF
12700ac_cs_version="\\
12701config.status
12702configured by $0, generated by GNU Autoconf 2.59,
12703 with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
12704
12705Copyright (C) 2003 Free Software Foundation, Inc.
12706This config.status script is free software; the Free Software Foundation
12707gives unlimited permission to copy, distribute and modify it."
12708srcdir=$srcdir
12709INSTALL="$INSTALL"
12710_ACEOF
12711
12712cat >>$CONFIG_STATUS <<\_ACEOF
12713# If no file are specified by the user, then we need to provide default
12714# value. By we need to know if files were specified by the user.
12715ac_need_defaults=:
12716while test $# != 0
a0da8069 12717do
c6b750e1
DJ
12718 case $1 in
12719 --*=*)
12720 ac_option=`expr "x$1" : 'x\([^=]*\)='`
12721 ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
12722 ac_shift=:
12723 ;;
12724 -*)
12725 ac_option=$1
12726 ac_optarg=$2
12727 ac_shift=shift
12728 ;;
12729 *) # This is not an option, so the user has probably given explicit
12730 # arguments.
12731 ac_option=$1
12732 ac_need_defaults=false;;
12733 esac
12734
12735 case $ac_option in
12736 # Handling of the options.
12737_ACEOF
12738cat >>$CONFIG_STATUS <<\_ACEOF
a0da8069 12739 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
c6b750e1
DJ
12740 ac_cs_recheck=: ;;
12741 --version | --vers* | -V )
12742 echo "$ac_cs_version"; exit 0 ;;
12743 --he | --h)
12744 # Conflict between --help and --header
12745 { { echo "$as_me:$LINENO: error: ambiguous option: $1
12746Try \`$0 --help' for more information." >&5
12747echo "$as_me: error: ambiguous option: $1
12748Try \`$0 --help' for more information." >&2;}
12749 { (exit 1); exit 1; }; };;
12750 --help | --hel | -h )
12751 echo "$ac_cs_usage"; exit 0 ;;
12752 --debug | --d* | -d )
12753 debug=: ;;
12754 --file | --fil | --fi | --f )
12755 $ac_shift
12756 CONFIG_FILES="$CONFIG_FILES $ac_optarg"
12757 ac_need_defaults=false;;
12758 --header | --heade | --head | --hea )
12759 $ac_shift
12760 CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
12761 ac_need_defaults=false;;
12762 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
12763 | -silent | --silent | --silen | --sile | --sil | --si | --s)
12764 ac_cs_silent=: ;;
12765
12766 # This is an error.
12767 -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1
12768Try \`$0 --help' for more information." >&5
12769echo "$as_me: error: unrecognized option: $1
12770Try \`$0 --help' for more information." >&2;}
12771 { (exit 1); exit 1; }; } ;;
12772
12773 *) ac_config_targets="$ac_config_targets $1" ;;
12774
376a0e54 12775 esac
c6b750e1 12776 shift
376a0e54
CM
12777done
12778
c6b750e1 12779ac_configure_extra_args=
376a0e54 12780
c6b750e1
DJ
12781if $ac_cs_silent; then
12782 exec 6>/dev/null
12783 ac_configure_extra_args="$ac_configure_extra_args --silent"
12784fi
376a0e54 12785
c6b750e1
DJ
12786_ACEOF
12787cat >>$CONFIG_STATUS <<_ACEOF
12788if \$ac_cs_recheck; then
12789 echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
12790 exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
12791fi
12792
12793_ACEOF
12794
12795
12796
12797
12798
12799cat >>$CONFIG_STATUS <<\_ACEOF
12800for ac_config_target in $ac_config_targets
12801do
12802 case "$ac_config_target" in
12803 # Handling of arguments.
12804 "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
12805 *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
12806echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
12807 { (exit 1); exit 1; }; };;
12808 esac
12809done
12810
12811# If the user did not use the arguments to specify the items to instantiate,
12812# then the envvar interface is used. Set only those that are not.
12813# We use the long form for the default assignment because of an extremely
12814# bizarre bug on SunOS 4.1.3.
12815if $ac_need_defaults; then
12816 test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
12817fi
12818
12819# Have a temporary directory for convenience. Make it in the build tree
12820# simply because there is no reason to put it here, and in addition,
12821# creating and moving files from /tmp can sometimes cause problems.
12822# Create a temporary directory, and hook for its removal unless debugging.
12823$debug ||
12824{
12825 trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
12826 trap '{ (exit 1); exit 1; }' 1 2 13 15
12827}
12828
12829# Create a (secure) tmp directory for tmp files.
12830
12831{
12832 tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` &&
12833 test -n "$tmp" && test -d "$tmp"
12834} ||
12835{
12836 tmp=./confstat$$-$RANDOM
12837 (umask 077 && mkdir $tmp)
12838} ||
12839{
12840 echo "$me: cannot create a temporary directory in ." >&2
12841 { (exit 1); exit 1; }
12842}
12843
12844_ACEOF
12845
12846cat >>$CONFIG_STATUS <<_ACEOF
12847
12848#
12849# CONFIG_FILES section.
12850#
12851
12852# No need to generate the scripts if there are no CONFIG_FILES.
12853# This happens for instance when ./config.status config.h
12854if test -n "\$CONFIG_FILES"; then
12855 # Protect against being on the right side of a sed subst in config.status.
12856 sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g;
12857 s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF
12858s,@SHELL@,$SHELL,;t t
12859s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t
12860s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t
12861s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t
12862s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t
12863s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t
12864s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t
12865s,@exec_prefix@,$exec_prefix,;t t
12866s,@prefix@,$prefix,;t t
12867s,@program_transform_name@,$program_transform_name,;t t
12868s,@bindir@,$bindir,;t t
12869s,@sbindir@,$sbindir,;t t
12870s,@libexecdir@,$libexecdir,;t t
12871s,@datadir@,$datadir,;t t
12872s,@sysconfdir@,$sysconfdir,;t t
12873s,@sharedstatedir@,$sharedstatedir,;t t
12874s,@localstatedir@,$localstatedir,;t t
12875s,@libdir@,$libdir,;t t
12876s,@includedir@,$includedir,;t t
12877s,@oldincludedir@,$oldincludedir,;t t
12878s,@infodir@,$infodir,;t t
12879s,@mandir@,$mandir,;t t
12880s,@build_alias@,$build_alias,;t t
12881s,@host_alias@,$host_alias,;t t
12882s,@target_alias@,$target_alias,;t t
12883s,@DEFS@,$DEFS,;t t
12884s,@ECHO_C@,$ECHO_C,;t t
12885s,@ECHO_N@,$ECHO_N,;t t
12886s,@ECHO_T@,$ECHO_T,;t t
12887s,@LIBS@,$LIBS,;t t
12888s,@build@,$build,;t t
12889s,@build_cpu@,$build_cpu,;t t
12890s,@build_vendor@,$build_vendor,;t t
12891s,@build_os@,$build_os,;t t
12892s,@build_noncanonical@,$build_noncanonical,;t t
12893s,@host_noncanonical@,$host_noncanonical,;t t
12894s,@target_noncanonical@,$target_noncanonical,;t t
12895s,@host@,$host,;t t
12896s,@host_cpu@,$host_cpu,;t t
12897s,@host_vendor@,$host_vendor,;t t
12898s,@host_os@,$host_os,;t t
12899s,@target@,$target,;t t
12900s,@target_cpu@,$target_cpu,;t t
12901s,@target_vendor@,$target_vendor,;t t
12902s,@target_os@,$target_os,;t t
12903s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
12904s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
12905s,@INSTALL_DATA@,$INSTALL_DATA,;t t
12906s,@LN@,$LN,;t t
12907s,@LN_S@,$LN_S,;t t
12908s,@TOPLEVEL_CONFIGURE_ARGUMENTS@,$TOPLEVEL_CONFIGURE_ARGUMENTS,;t t
12909s,@build_libsubdir@,$build_libsubdir,;t t
12910s,@build_subdir@,$build_subdir,;t t
12911s,@host_subdir@,$host_subdir,;t t
12912s,@target_subdir@,$target_subdir,;t t
12913s,@CC@,$CC,;t t
12914s,@CFLAGS@,$CFLAGS,;t t
12915s,@LDFLAGS@,$LDFLAGS,;t t
12916s,@CPPFLAGS@,$CPPFLAGS,;t t
12917s,@ac_ct_CC@,$ac_ct_CC,;t t
12918s,@EXEEXT@,$EXEEXT,;t t
12919s,@OBJEXT@,$OBJEXT,;t t
18f6b6ee
PB
12920s,@CXX@,$CXX,;t t
12921s,@CXXFLAGS@,$CXXFLAGS,;t t
12922s,@ac_ct_CXX@,$ac_ct_CXX,;t t
c6b750e1
DJ
12923s,@GNATBIND@,$GNATBIND,;t t
12924s,@ac_ct_GNATBIND@,$ac_ct_GNATBIND,;t t
512b7dfb
PB
12925s,@GNATMAKE@,$GNATMAKE,;t t
12926s,@ac_ct_GNATMAKE@,$ac_ct_GNATMAKE,;t t
c6b750e1
DJ
12927s,@do_compare@,$do_compare,;t t
12928s,@gmplibs@,$gmplibs,;t t
12929s,@gmpinc@,$gmpinc,;t t
12930s,@stage1_languages@,$stage1_languages,;t t
12931s,@SYSROOT_CFLAGS_FOR_TARGET@,$SYSROOT_CFLAGS_FOR_TARGET,;t t
8a6ee3ab 12932s,@DEBUG_PREFIX_CFLAGS_FOR_TARGET@,$DEBUG_PREFIX_CFLAGS_FOR_TARGET,;t t
7f6ef0c0
PB
12933s,@CFLAGS_FOR_TARGET@,$CFLAGS_FOR_TARGET,;t t
12934s,@CXXFLAGS_FOR_TARGET@,$CXXFLAGS_FOR_TARGET,;t t
c6b750e1
DJ
12935s,@RPATH_ENVVAR@,$RPATH_ENVVAR,;t t
12936s,@tooldir@,$tooldir,;t t
12937s,@build_tooldir@,$build_tooldir,;t t
12938s,@CONFIGURE_GDB_TK@,$CONFIGURE_GDB_TK,;t t
12939s,@GDB_TK@,$GDB_TK,;t t
12940s,@INSTALL_GDB_TK@,$INSTALL_GDB_TK,;t t
12941s,@build_configargs@,$build_configargs,;t t
12942s,@build_configdirs@,$build_configdirs,;t t
12943s,@host_configargs@,$host_configargs,;t t
12944s,@configdirs@,$configdirs,;t t
12945s,@target_configargs@,$target_configargs,;t t
1576798e
PB
12946s,@AR_FOR_BUILD@,$AR_FOR_BUILD,;t t
12947s,@AS_FOR_BUILD@,$AS_FOR_BUILD,;t t
c6b750e1 12948s,@CC_FOR_BUILD@,$CC_FOR_BUILD,;t t
1576798e
PB
12949s,@CFLAGS_FOR_BUILD@,$CFLAGS_FOR_BUILD,;t t
12950s,@CXXFLAGS_FOR_BUILD@,$CXXFLAGS_FOR_BUILD,;t t
12951s,@CXX_FOR_BUILD@,$CXX_FOR_BUILD,;t t
12952s,@DLLTOOL_FOR_BUILD@,$DLLTOOL_FOR_BUILD,;t t
12953s,@GCJ_FOR_BUILD@,$GCJ_FOR_BUILD,;t t
12954s,@GFORTRAN_FOR_BUILD@,$GFORTRAN_FOR_BUILD,;t t
12955s,@LDFLAGS_FOR_BUILD@,$LDFLAGS_FOR_BUILD,;t t
12956s,@LD_FOR_BUILD@,$LD_FOR_BUILD,;t t
12957s,@NM_FOR_BUILD@,$NM_FOR_BUILD,;t t
12958s,@RANLIB_FOR_BUILD@,$RANLIB_FOR_BUILD,;t t
12959s,@WINDMC_FOR_BUILD@,$WINDMC_FOR_BUILD,;t t
12960s,@WINDRES_FOR_BUILD@,$WINDRES_FOR_BUILD,;t t
c6b750e1
DJ
12961s,@config_shell@,$config_shell,;t t
12962s,@YACC@,$YACC,;t t
12963s,@BISON@,$BISON,;t t
12964s,@M4@,$M4,;t t
12965s,@LEX@,$LEX,;t t
12966s,@FLEX@,$FLEX,;t t
12967s,@MAKEINFO@,$MAKEINFO,;t t
12968s,@EXPECT@,$EXPECT,;t t
12969s,@RUNTEST@,$RUNTEST,;t t
12970s,@AR@,$AR,;t t
12971s,@AS@,$AS,;t t
12972s,@DLLTOOL@,$DLLTOOL,;t t
12973s,@LD@,$LD,;t t
12974s,@LIPO@,$LIPO,;t t
12975s,@NM@,$NM,;t t
12976s,@RANLIB@,$RANLIB,;t t
12977s,@STRIP@,$STRIP,;t t
12978s,@WINDRES@,$WINDRES,;t t
0c24b341 12979s,@WINDMC@,$WINDMC,;t t
c6b750e1
DJ
12980s,@OBJCOPY@,$OBJCOPY,;t t
12981s,@OBJDUMP@,$OBJDUMP,;t t
c6b750e1
DJ
12982s,@CC_FOR_TARGET@,$CC_FOR_TARGET,;t t
12983s,@CXX_FOR_TARGET@,$CXX_FOR_TARGET,;t t
12984s,@GCC_FOR_TARGET@,$GCC_FOR_TARGET,;t t
12985s,@GCJ_FOR_TARGET@,$GCJ_FOR_TARGET,;t t
12986s,@GFORTRAN_FOR_TARGET@,$GFORTRAN_FOR_TARGET,;t t
12987s,@AR_FOR_TARGET@,$AR_FOR_TARGET,;t t
12988s,@AS_FOR_TARGET@,$AS_FOR_TARGET,;t t
12989s,@DLLTOOL_FOR_TARGET@,$DLLTOOL_FOR_TARGET,;t t
12990s,@LD_FOR_TARGET@,$LD_FOR_TARGET,;t t
12991s,@LIPO_FOR_TARGET@,$LIPO_FOR_TARGET,;t t
12992s,@NM_FOR_TARGET@,$NM_FOR_TARGET,;t t
12993s,@OBJDUMP_FOR_TARGET@,$OBJDUMP_FOR_TARGET,;t t
12994s,@RANLIB_FOR_TARGET@,$RANLIB_FOR_TARGET,;t t
12995s,@STRIP_FOR_TARGET@,$STRIP_FOR_TARGET,;t t
12996s,@WINDRES_FOR_TARGET@,$WINDRES_FOR_TARGET,;t t
0c24b341 12997s,@WINDMC_FOR_TARGET@,$WINDMC_FOR_TARGET,;t t
c6b750e1
DJ
12998s,@RAW_CXX_FOR_TARGET@,$RAW_CXX_FOR_TARGET,;t t
12999s,@FLAGS_FOR_TARGET@,$FLAGS_FOR_TARGET,;t t
13000s,@COMPILER_AS_FOR_TARGET@,$COMPILER_AS_FOR_TARGET,;t t
13001s,@COMPILER_LD_FOR_TARGET@,$COMPILER_LD_FOR_TARGET,;t t
13002s,@COMPILER_NM_FOR_TARGET@,$COMPILER_NM_FOR_TARGET,;t t
13003s,@MAINTAINER_MODE_TRUE@,$MAINTAINER_MODE_TRUE,;t t
13004s,@MAINTAINER_MODE_FALSE@,$MAINTAINER_MODE_FALSE,;t t
13005s,@MAINT@,$MAINT,;t t
13006s,@stage1_cflags@,$stage1_cflags,;t t
13007s,@stage1_checking@,$stage1_checking,;t t
13008s,@stage2_werror_flag@,$stage2_werror_flag,;t t
13009s,@datarootdir@,$datarootdir,;t t
13010s,@docdir@,$docdir,;t t
a3ca38d2 13011s,@pdfdir@,$pdfdir,;t t
c6b750e1
DJ
13012s,@htmldir@,$htmldir,;t t
13013s,@LIBOBJS@,$LIBOBJS,;t t
13014s,@LTLIBOBJS@,$LTLIBOBJS,;t t
a0da8069 13015/@serialization_dependencies@/r $serialization_dependencies
c6b750e1 13016s,@serialization_dependencies@,,;t t
a0da8069 13017/@host_makefile_frag@/r $host_makefile_frag
c6b750e1 13018s,@host_makefile_frag@,,;t t
a0da8069 13019/@target_makefile_frag@/r $target_makefile_frag
c6b750e1 13020s,@target_makefile_frag@,,;t t
a0da8069 13021/@alphaieee_frag@/r $alphaieee_frag
c6b750e1 13022s,@alphaieee_frag@,,;t t
a0da8069 13023/@ospace_frag@/r $ospace_frag
c6b750e1 13024s,@ospace_frag@,,;t t
a0da8069 13025CEOF
252b5132 13026
c6b750e1
DJ
13027_ACEOF
13028
13029 cat >>$CONFIG_STATUS <<\_ACEOF
13030 # Split the substitutions into bite-sized pieces for seds with
13031 # small command number limits, like on Digital OSF/1 and HP-UX.
13032 ac_max_sed_lines=48
13033 ac_sed_frag=1 # Number of current file.
13034 ac_beg=1 # First line for current file.
13035 ac_end=$ac_max_sed_lines # Line after last line for current file.
13036 ac_more_lines=:
13037 ac_sed_cmds=
13038 while $ac_more_lines; do
13039 if test $ac_beg -gt 1; then
13040 sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
13041 else
13042 sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
13043 fi
13044 if test ! -s $tmp/subs.frag; then
13045 ac_more_lines=false
a0da8069 13046 else
c6b750e1
DJ
13047 # The purpose of the label and of the branching condition is to
13048 # speed up the sed processing (if there are no `@' at all, there
13049 # is no need to browse any of the substitutions).
13050 # These are the two extra sed commands mentioned above.
13051 (echo ':t
13052 /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
13053 if test -z "$ac_sed_cmds"; then
13054 ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
13055 else
13056 ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
13057 fi
13058 ac_sed_frag=`expr $ac_sed_frag + 1`
13059 ac_beg=$ac_end
13060 ac_end=`expr $ac_end + $ac_max_sed_lines`
a0da8069 13061 fi
c6b750e1
DJ
13062 done
13063 if test -z "$ac_sed_cmds"; then
13064 ac_sed_cmds=cat
852e5f18 13065 fi
c6b750e1 13066fi # test -n "$CONFIG_FILES"
cac3d6c4 13067
c6b750e1
DJ
13068_ACEOF
13069cat >>$CONFIG_STATUS <<\_ACEOF
13070for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
a0da8069 13071 # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
c6b750e1
DJ
13072 case $ac_file in
13073 - | *:- | *:-:* ) # input from stdin
13074 cat >$tmp/stdin
13075 ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
13076 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
13077 *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
13078 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
13079 * ) ac_file_in=$ac_file.in ;;
a0da8069 13080 esac
252b5132 13081
c6b750e1
DJ
13082 # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
13083 ac_dir=`(dirname "$ac_file") 2>/dev/null ||
13084$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
13085 X"$ac_file" : 'X\(//\)[^/]' \| \
13086 X"$ac_file" : 'X\(//\)$' \| \
13087 X"$ac_file" : 'X\(/\)' \| \
13088 . : '\(.\)' 2>/dev/null ||
13089echo X"$ac_file" |
13090 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
13091 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
13092 /^X\(\/\/\)$/{ s//\1/; q; }
13093 /^X\(\/\).*/{ s//\1/; q; }
13094 s/.*/./; q'`
13095 { if $as_mkdir_p; then
13096 mkdir -p "$ac_dir"
cac3d6c4 13097 else
c6b750e1
DJ
13098 as_dir="$ac_dir"
13099 as_dirs=
13100 while test ! -d "$as_dir"; do
13101 as_dirs="$as_dir $as_dirs"
13102 as_dir=`(dirname "$as_dir") 2>/dev/null ||
13103$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
13104 X"$as_dir" : 'X\(//\)[^/]' \| \
13105 X"$as_dir" : 'X\(//\)$' \| \
13106 X"$as_dir" : 'X\(/\)' \| \
13107 . : '\(.\)' 2>/dev/null ||
13108echo X"$as_dir" |
13109 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
13110 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
13111 /^X\(\/\/\)$/{ s//\1/; q; }
13112 /^X\(\/\).*/{ s//\1/; q; }
13113 s/.*/./; q'`
13114 done
13115 test ! -n "$as_dirs" || mkdir $as_dirs
13116 fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
13117echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
13118 { (exit 1); exit 1; }; }; }
13119
13120 ac_builddir=.
252b5132 13121
c6b750e1
DJ
13122if test "$ac_dir" != .; then
13123 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
13124 # A "../" for each directory in $ac_dir_suffix.
13125 ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
13126else
13127 ac_dir_suffix= ac_top_builddir=
13128fi
13129
13130case $srcdir in
13131 .) # No --srcdir option. We are building in place.
13132 ac_srcdir=.
13133 if test -z "$ac_top_builddir"; then
13134 ac_top_srcdir=.
13135 else
13136 ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
13137 fi ;;
13138 [\\/]* | ?:[\\/]* ) # Absolute path.
13139 ac_srcdir=$srcdir$ac_dir_suffix;
13140 ac_top_srcdir=$srcdir ;;
a0da8069 13141 *) # Relative path.
c6b750e1
DJ
13142 ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
13143 ac_top_srcdir=$ac_top_builddir$srcdir ;;
13144esac
252b5132 13145
c6b750e1
DJ
13146# Do not use `cd foo && pwd` to compute absolute paths, because
13147# the directories may not exist.
13148case `pwd` in
13149.) ac_abs_builddir="$ac_dir";;
13150*)
13151 case "$ac_dir" in
13152 .) ac_abs_builddir=`pwd`;;
13153 [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
13154 *) ac_abs_builddir=`pwd`/"$ac_dir";;
13155 esac;;
13156esac
13157case $ac_abs_builddir in
13158.) ac_abs_top_builddir=${ac_top_builddir}.;;
13159*)
13160 case ${ac_top_builddir}. in
13161 .) ac_abs_top_builddir=$ac_abs_builddir;;
13162 [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
13163 *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
13164 esac;;
13165esac
13166case $ac_abs_builddir in
13167.) ac_abs_srcdir=$ac_srcdir;;
13168*)
13169 case $ac_srcdir in
13170 .) ac_abs_srcdir=$ac_abs_builddir;;
13171 [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
13172 *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
13173 esac;;
13174esac
13175case $ac_abs_builddir in
13176.) ac_abs_top_srcdir=$ac_top_srcdir;;
13177*)
13178 case $ac_top_srcdir in
13179 .) ac_abs_top_srcdir=$ac_abs_builddir;;
13180 [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
13181 *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
13182 esac;;
13183esac
252b5132 13184
c6b750e1
DJ
13185
13186 case $INSTALL in
13187 [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
13188 *) ac_INSTALL=$ac_top_builddir$INSTALL ;;
a0da8069 13189 esac
252b5132 13190
c6b750e1
DJ
13191 if test x"$ac_file" != x-; then
13192 { echo "$as_me:$LINENO: creating $ac_file" >&5
13193echo "$as_me: creating $ac_file" >&6;}
13194 rm -f "$ac_file"
13195 fi
13196 # Let's still pretend it is `configure' which instantiates (i.e., don't
13197 # use $as_me), people would be surprised to read:
13198 # /* config.h. Generated by config.status. */
13199 if test x"$ac_file" = x-; then
13200 configure_input=
13201 else
13202 configure_input="$ac_file. "
13203 fi
13204 configure_input=$configure_input"Generated from `echo $ac_file_in |
13205 sed 's,.*/,,'` by configure."
13206
13207 # First look for the input files in the build tree, otherwise in the
13208 # src tree.
13209 ac_file_inputs=`IFS=:
13210 for f in $ac_file_in; do
13211 case $f in
13212 -) echo $tmp/stdin ;;
13213 [\\/$]*)
13214 # Absolute (can't be DOS-style, as IFS=:)
13215 test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
13216echo "$as_me: error: cannot find input file: $f" >&2;}
13217 { (exit 1); exit 1; }; }
13218 echo "$f";;
13219 *) # Relative
13220 if test -f "$f"; then
13221 # Build tree
13222 echo "$f"
13223 elif test -f "$srcdir/$f"; then
13224 # Source tree
13225 echo "$srcdir/$f"
13226 else
13227 # /dev/null tree
13228 { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
13229echo "$as_me: error: cannot find input file: $f" >&2;}
13230 { (exit 1); exit 1; }; }
13231 fi;;
13232 esac
13233 done` || { (exit 1); exit 1; }
13234_ACEOF
13235cat >>$CONFIG_STATUS <<_ACEOF
13236 sed "$ac_vpsub
13237$extrasub
13238_ACEOF
13239cat >>$CONFIG_STATUS <<\_ACEOF
13240:t
13241/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
13242s,@configure_input@,$configure_input,;t t
13243s,@srcdir@,$ac_srcdir,;t t
13244s,@abs_srcdir@,$ac_abs_srcdir,;t t
13245s,@top_srcdir@,$ac_top_srcdir,;t t
13246s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t
13247s,@builddir@,$ac_builddir,;t t
13248s,@abs_builddir@,$ac_abs_builddir,;t t
13249s,@top_builddir@,$ac_top_builddir,;t t
13250s,@abs_top_builddir@,$ac_abs_top_builddir,;t t
13251s,@INSTALL@,$ac_INSTALL,;t t
13252" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
13253 rm -f $tmp/stdin
13254 if test x"$ac_file" != x-; then
13255 mv $tmp/out $ac_file
13256 else
13257 cat $tmp/out
13258 rm -f $tmp/out
13259 fi
c148b4cb 13260
c6b750e1
DJ
13261done
13262_ACEOF
c148b4cb 13263
c6b750e1 13264cat >>$CONFIG_STATUS <<\_ACEOF
c148b4cb 13265
c6b750e1
DJ
13266{ (exit 0); exit 0; }
13267_ACEOF
c148b4cb 13268chmod +x $CONFIG_STATUS
c6b750e1
DJ
13269ac_clean_files=$ac_clean_files_save
13270
13271
13272# configure is writing to config.log, and then calls config.status.
13273# config.status does its own redirection, appending to config.log.
13274# Unfortunately, on DOS this fails, as config.log is still kept open
13275# by configure, so config.status won't be able to write to it; its
13276# output is simply discarded. So we exec the FD to /dev/null,
13277# effectively closing config.log, so it can be properly (re)opened and
13278# appended to by config.status. When coming back to configure, we
13279# need to make the FD available again.
13280if test "$no_create" != yes; then
13281 ac_cs_success=:
13282 ac_config_status_args=
13283 test "$silent" = yes &&
13284 ac_config_status_args="$ac_config_status_args --quiet"
13285 exec 5>/dev/null
13286 $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
13287 exec 5>>config.log
13288 # Use ||, not &&, to avoid exiting from the if with $? = 1, which
13289 # would make configure fail if this is the last instruction.
13290 $ac_cs_success || { (exit 1); exit 1; }
13291fi
c148b4cb 13292
This page took 1.197326 seconds and 4 git commands to generate.