* linux-thread-db.c (check_for_thread_db): Return early if we have
[deliverable/binutils-gdb.git] / opcodes / configure
CommitLineData
252b5132 1#! /bin/sh
252b5132 2# Guess values for system-dependent variables and create Makefiles.
979273e3 3# Generated by GNU Autoconf 2.59.
252b5132 4#
979273e3 5# Copyright (C) 2003 Free Software Foundation, Inc.
252b5132
RH
6# This configure script is free software; the Free Software Foundation
7# gives unlimited permission to copy, distribute and modify it.
979273e3
NN
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
243
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`
252b5132 248
979273e3
NN
249exec 6>&1
250
251#
252# Initializations.
253#
252b5132 254ac_default_prefix=/usr/local
979273e3
NN
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="z8k-dis.c"
275# Factoring default headers for most tests.
276ac_includes_default="\
277#include <stdio.h>
278#if HAVE_SYS_TYPES_H
279# include <sys/types.h>
280#endif
281#if HAVE_SYS_STAT_H
282# include <sys/stat.h>
283#endif
284#if STDC_HEADERS
285# include <stdlib.h>
286# include <stddef.h>
287#else
288# if HAVE_STDLIB_H
289# include <stdlib.h>
290# endif
291#endif
292#if HAVE_STRING_H
293# if !STDC_HEADERS && HAVE_MEMORY_H
294# include <memory.h>
295# endif
296# include <string.h>
297#endif
298#if HAVE_STRINGS_H
299# include <strings.h>
300#endif
301#if HAVE_INTTYPES_H
302# include <inttypes.h>
303#else
304# if HAVE_STDINT_H
305# include <stdint.h>
306# endif
307#endif
308#if HAVE_UNISTD_H
309# include <unistd.h>
310#endif"
311
20e95c23 312ac_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 host host_cpu host_vendor host_os target target_cpu target_vendor target_os CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE AR ac_ct_AR RANLIB ac_ct_RANLIB LN_S LIBTOOL WARN_CFLAGS NO_WERROR MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT INSTALL_LIBBFD_TRUE INSTALL_LIBBFD_FALSE host_noncanonical target_noncanonical bfdlibdir bfdincludedir USE_NLS LIBINTL LIBINTL_DEP INCINTL XGETTEXT GMSGFMT POSUB CATALOGS DATADIRNAME INSTOBJEXT GENCAT CATOBJEXT MKINSTALLDIRS MSGFMT MSGMERGE CC_FOR_BUILD EXEEXT_FOR_BUILD HDEFINES CPP EGREP CGEN_MAINT_TRUE CGEN_MAINT_FALSE cgendir WIN32LDFLAGS WIN32LIBADD archdefs BFD_MACHINES LIBOBJS LTLIBOBJS'
979273e3 313ac_subst_files=''
252b5132
RH
314
315# Initialize some variables set by options.
979273e3
NN
316ac_init_help=
317ac_init_version=false
252b5132
RH
318# The variables have the same names as the options, with
319# dashes changed to underlines.
979273e3 320cache_file=/dev/null
252b5132 321exec_prefix=NONE
252b5132 322no_create=
252b5132
RH
323no_recursion=
324prefix=NONE
325program_prefix=NONE
326program_suffix=NONE
327program_transform_name=s,x,x,
328silent=
329site=
330srcdir=
252b5132
RH
331verbose=
332x_includes=NONE
333x_libraries=NONE
979273e3
NN
334
335# Installation directory options.
336# These are left unexpanded so users can "make install exec_prefix=/foo"
337# and all the variables that are supposed to be based on exec_prefix
338# by default will actually change.
339# Use braces instead of parens because sh, perl, etc. also accept them.
252b5132
RH
340bindir='${exec_prefix}/bin'
341sbindir='${exec_prefix}/sbin'
342libexecdir='${exec_prefix}/libexec'
343datadir='${prefix}/share'
344sysconfdir='${prefix}/etc'
345sharedstatedir='${prefix}/com'
346localstatedir='${prefix}/var'
347libdir='${exec_prefix}/lib'
348includedir='${prefix}/include'
349oldincludedir='/usr/include'
350infodir='${prefix}/info'
351mandir='${prefix}/man'
352
252b5132
RH
353ac_prev=
354for ac_option
355do
252b5132
RH
356 # If the previous option needs an argument, assign it.
357 if test -n "$ac_prev"; then
358 eval "$ac_prev=\$ac_option"
359 ac_prev=
360 continue
361 fi
362
979273e3 363 ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
252b5132
RH
364
365 # Accept the important Cygnus configure options, so we can diagnose typos.
366
979273e3 367 case $ac_option in
252b5132
RH
368
369 -bindir | --bindir | --bindi | --bind | --bin | --bi)
370 ac_prev=bindir ;;
371 -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
979273e3 372 bindir=$ac_optarg ;;
252b5132
RH
373
374 -build | --build | --buil | --bui | --bu)
979273e3 375 ac_prev=build_alias ;;
252b5132 376 -build=* | --build=* | --buil=* | --bui=* | --bu=*)
979273e3 377 build_alias=$ac_optarg ;;
252b5132
RH
378
379 -cache-file | --cache-file | --cache-fil | --cache-fi \
380 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
381 ac_prev=cache_file ;;
382 -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
383 | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
979273e3
NN
384 cache_file=$ac_optarg ;;
385
386 --config-cache | -C)
387 cache_file=config.cache ;;
252b5132
RH
388
389 -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
390 ac_prev=datadir ;;
391 -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
392 | --da=*)
979273e3 393 datadir=$ac_optarg ;;
252b5132
RH
394
395 -disable-* | --disable-*)
979273e3 396 ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
252b5132 397 # Reject names that are not valid shell variable names.
979273e3
NN
398 expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
399 { echo "$as_me: error: invalid feature name: $ac_feature" >&2
400 { (exit 1); exit 1; }; }
401 ac_feature=`echo $ac_feature | sed 's/-/_/g'`
402 eval "enable_$ac_feature=no" ;;
252b5132
RH
403
404 -enable-* | --enable-*)
979273e3 405 ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
252b5132 406 # Reject names that are not valid shell variable names.
979273e3
NN
407 expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
408 { echo "$as_me: error: invalid feature name: $ac_feature" >&2
409 { (exit 1); exit 1; }; }
410 ac_feature=`echo $ac_feature | sed 's/-/_/g'`
411 case $ac_option in
412 *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
252b5132
RH
413 *) ac_optarg=yes ;;
414 esac
979273e3 415 eval "enable_$ac_feature='$ac_optarg'" ;;
252b5132
RH
416
417 -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
418 | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
419 | --exec | --exe | --ex)
420 ac_prev=exec_prefix ;;
421 -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
422 | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
423 | --exec=* | --exe=* | --ex=*)
979273e3 424 exec_prefix=$ac_optarg ;;
252b5132
RH
425
426 -gas | --gas | --ga | --g)
427 # Obsolete; use --with-gas.
428 with_gas=yes ;;
429
979273e3
NN
430 -help | --help | --hel | --he | -h)
431 ac_init_help=long ;;
432 -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
433 ac_init_help=recursive ;;
434 -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
435 ac_init_help=short ;;
252b5132
RH
436
437 -host | --host | --hos | --ho)
979273e3 438 ac_prev=host_alias ;;
252b5132 439 -host=* | --host=* | --hos=* | --ho=*)
979273e3 440 host_alias=$ac_optarg ;;
252b5132
RH
441
442 -includedir | --includedir | --includedi | --included | --include \
443 | --includ | --inclu | --incl | --inc)
444 ac_prev=includedir ;;
445 -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
446 | --includ=* | --inclu=* | --incl=* | --inc=*)
979273e3 447 includedir=$ac_optarg ;;
252b5132
RH
448
449 -infodir | --infodir | --infodi | --infod | --info | --inf)
450 ac_prev=infodir ;;
451 -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
979273e3 452 infodir=$ac_optarg ;;
252b5132
RH
453
454 -libdir | --libdir | --libdi | --libd)
455 ac_prev=libdir ;;
456 -libdir=* | --libdir=* | --libdi=* | --libd=*)
979273e3 457 libdir=$ac_optarg ;;
252b5132
RH
458
459 -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
460 | --libexe | --libex | --libe)
461 ac_prev=libexecdir ;;
462 -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
463 | --libexe=* | --libex=* | --libe=*)
979273e3 464 libexecdir=$ac_optarg ;;
252b5132
RH
465
466 -localstatedir | --localstatedir | --localstatedi | --localstated \
467 | --localstate | --localstat | --localsta | --localst \
468 | --locals | --local | --loca | --loc | --lo)
469 ac_prev=localstatedir ;;
470 -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
471 | --localstate=* | --localstat=* | --localsta=* | --localst=* \
472 | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
979273e3 473 localstatedir=$ac_optarg ;;
252b5132
RH
474
475 -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
476 ac_prev=mandir ;;
477 -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
979273e3 478 mandir=$ac_optarg ;;
252b5132
RH
479
480 -nfp | --nfp | --nf)
481 # Obsolete; use --without-fp.
482 with_fp=no ;;
483
484 -no-create | --no-create | --no-creat | --no-crea | --no-cre \
979273e3 485 | --no-cr | --no-c | -n)
252b5132
RH
486 no_create=yes ;;
487
488 -no-recursion | --no-recursion | --no-recursio | --no-recursi \
489 | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
490 no_recursion=yes ;;
491
492 -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
493 | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
494 | --oldin | --oldi | --old | --ol | --o)
495 ac_prev=oldincludedir ;;
496 -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
497 | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
498 | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
979273e3 499 oldincludedir=$ac_optarg ;;
252b5132
RH
500
501 -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
502 ac_prev=prefix ;;
503 -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
979273e3 504 prefix=$ac_optarg ;;
252b5132
RH
505
506 -program-prefix | --program-prefix | --program-prefi | --program-pref \
507 | --program-pre | --program-pr | --program-p)
508 ac_prev=program_prefix ;;
509 -program-prefix=* | --program-prefix=* | --program-prefi=* \
510 | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
979273e3 511 program_prefix=$ac_optarg ;;
252b5132
RH
512
513 -program-suffix | --program-suffix | --program-suffi | --program-suff \
514 | --program-suf | --program-su | --program-s)
515 ac_prev=program_suffix ;;
516 -program-suffix=* | --program-suffix=* | --program-suffi=* \
517 | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
979273e3 518 program_suffix=$ac_optarg ;;
252b5132
RH
519
520 -program-transform-name | --program-transform-name \
521 | --program-transform-nam | --program-transform-na \
522 | --program-transform-n | --program-transform- \
523 | --program-transform | --program-transfor \
524 | --program-transfo | --program-transf \
525 | --program-trans | --program-tran \
526 | --progr-tra | --program-tr | --program-t)
527 ac_prev=program_transform_name ;;
528 -program-transform-name=* | --program-transform-name=* \
529 | --program-transform-nam=* | --program-transform-na=* \
530 | --program-transform-n=* | --program-transform-=* \
531 | --program-transform=* | --program-transfor=* \
532 | --program-transfo=* | --program-transf=* \
533 | --program-trans=* | --program-tran=* \
534 | --progr-tra=* | --program-tr=* | --program-t=*)
979273e3 535 program_transform_name=$ac_optarg ;;
252b5132
RH
536
537 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
538 | -silent | --silent | --silen | --sile | --sil)
539 silent=yes ;;
540
541 -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
542 ac_prev=sbindir ;;
543 -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
544 | --sbi=* | --sb=*)
979273e3 545 sbindir=$ac_optarg ;;
252b5132
RH
546
547 -sharedstatedir | --sharedstatedir | --sharedstatedi \
548 | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
549 | --sharedst | --shareds | --shared | --share | --shar \
550 | --sha | --sh)
551 ac_prev=sharedstatedir ;;
552 -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
553 | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
554 | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
555 | --sha=* | --sh=*)
979273e3 556 sharedstatedir=$ac_optarg ;;
252b5132
RH
557
558 -site | --site | --sit)
559 ac_prev=site ;;
560 -site=* | --site=* | --sit=*)
979273e3 561 site=$ac_optarg ;;
1fe1f39c 562
252b5132
RH
563 -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
564 ac_prev=srcdir ;;
565 -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
979273e3 566 srcdir=$ac_optarg ;;
252b5132
RH
567
568 -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
569 | --syscon | --sysco | --sysc | --sys | --sy)
570 ac_prev=sysconfdir ;;
571 -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
572 | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
979273e3 573 sysconfdir=$ac_optarg ;;
252b5132
RH
574
575 -target | --target | --targe | --targ | --tar | --ta | --t)
979273e3 576 ac_prev=target_alias ;;
252b5132 577 -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
979273e3 578 target_alias=$ac_optarg ;;
252b5132
RH
579
580 -v | -verbose | --verbose | --verbos | --verbo | --verb)
581 verbose=yes ;;
582
979273e3
NN
583 -version | --version | --versio | --versi | --vers | -V)
584 ac_init_version=: ;;
252b5132
RH
585
586 -with-* | --with-*)
979273e3 587 ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
252b5132 588 # Reject names that are not valid shell variable names.
979273e3
NN
589 expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
590 { echo "$as_me: error: invalid package name: $ac_package" >&2
591 { (exit 1); exit 1; }; }
252b5132 592 ac_package=`echo $ac_package| sed 's/-/_/g'`
979273e3
NN
593 case $ac_option in
594 *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
252b5132
RH
595 *) ac_optarg=yes ;;
596 esac
979273e3 597 eval "with_$ac_package='$ac_optarg'" ;;
252b5132
RH
598
599 -without-* | --without-*)
979273e3 600 ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
252b5132 601 # Reject names that are not valid shell variable names.
979273e3
NN
602 expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
603 { echo "$as_me: error: invalid package name: $ac_package" >&2
604 { (exit 1); exit 1; }; }
605 ac_package=`echo $ac_package | sed 's/-/_/g'`
606 eval "with_$ac_package=no" ;;
252b5132
RH
607
608 --x)
609 # Obsolete; use --with-x.
610 with_x=yes ;;
611
612 -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
613 | --x-incl | --x-inc | --x-in | --x-i)
614 ac_prev=x_includes ;;
615 -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
616 | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
979273e3 617 x_includes=$ac_optarg ;;
252b5132
RH
618
619 -x-libraries | --x-libraries | --x-librarie | --x-librari \
620 | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
621 ac_prev=x_libraries ;;
622 -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
623 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
979273e3 624 x_libraries=$ac_optarg ;;
252b5132 625
979273e3
NN
626 -*) { echo "$as_me: error: unrecognized option: $ac_option
627Try \`$0 --help' for more information." >&2
628 { (exit 1); exit 1; }; }
252b5132
RH
629 ;;
630
979273e3
NN
631 *=*)
632 ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
633 # Reject names that are not valid shell variable names.
634 expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
635 { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
636 { (exit 1); exit 1; }; }
637 ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`
638 eval "$ac_envvar='$ac_optarg'"
639 export $ac_envvar ;;
640
252b5132 641 *)
979273e3
NN
642 # FIXME: should be removed in autoconf 3.0.
643 echo "$as_me: WARNING: you should use --build, --host, --target" >&2
644 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
645 echo "$as_me: WARNING: invalid host type: $ac_option" >&2
646 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
252b5132
RH
647 ;;
648
649 esac
650done
651
652if test -n "$ac_prev"; then
979273e3
NN
653 ac_option=--`echo $ac_prev | sed 's/_/-/g'`
654 { echo "$as_me: error: missing argument to $ac_option" >&2
655 { (exit 1); exit 1; }; }
252b5132 656fi
252b5132 657
979273e3
NN
658# Be sure to have absolute paths.
659for ac_var in exec_prefix prefix
660do
661 eval ac_val=$`echo $ac_var`
662 case $ac_val in
663 [\\/$]* | ?:[\\/]* | NONE | '' ) ;;
664 *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
665 { (exit 1); exit 1; }; };;
666 esac
667done
252b5132 668
979273e3
NN
669# Be sure to have absolute paths.
670for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
671 localstatedir libdir includedir oldincludedir infodir mandir
252b5132 672do
979273e3
NN
673 eval ac_val=$`echo $ac_var`
674 case $ac_val in
675 [\\/$]* | ?:[\\/]* ) ;;
676 *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
677 { (exit 1); exit 1; }; };;
252b5132
RH
678 esac
679done
680
979273e3
NN
681# There might be people who depend on the old broken behavior: `$host'
682# used to hold the argument of --host etc.
683# FIXME: To remove some day.
684build=$build_alias
685host=$host_alias
686target=$target_alias
687
688# FIXME: To remove some day.
689if test "x$host_alias" != x; then
690 if test "x$build_alias" = x; then
691 cross_compiling=maybe
692 echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
693 If a cross compiler is detected then cross compile mode will be used." >&2
694 elif test "x$build_alias" != "x$host_alias"; then
695 cross_compiling=yes
696 fi
697fi
252b5132 698
979273e3
NN
699ac_tool_prefix=
700test -n "$host_alias" && ac_tool_prefix=$host_alias-
701
702test "$silent" = yes && exec 6>/dev/null
252b5132 703
252b5132
RH
704
705# Find the source files, if location was not specified.
706if test -z "$srcdir"; then
707 ac_srcdir_defaulted=yes
708 # Try the directory containing this script, then its parent.
979273e3
NN
709 ac_confdir=`(dirname "$0") 2>/dev/null ||
710$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
711 X"$0" : 'X\(//\)[^/]' \| \
712 X"$0" : 'X\(//\)$' \| \
713 X"$0" : 'X\(/\)' \| \
714 . : '\(.\)' 2>/dev/null ||
715echo X"$0" |
716 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
717 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
718 /^X\(\/\/\)$/{ s//\1/; q; }
719 /^X\(\/\).*/{ s//\1/; q; }
720 s/.*/./; q'`
252b5132
RH
721 srcdir=$ac_confdir
722 if test ! -r $srcdir/$ac_unique_file; then
723 srcdir=..
724 fi
725else
726 ac_srcdir_defaulted=no
727fi
728if test ! -r $srcdir/$ac_unique_file; then
729 if test "$ac_srcdir_defaulted" = yes; then
979273e3
NN
730 { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2
731 { (exit 1); exit 1; }; }
252b5132 732 else
979273e3
NN
733 { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
734 { (exit 1); exit 1; }; }
252b5132
RH
735 fi
736fi
979273e3
NN
737(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null ||
738 { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2
739 { (exit 1); exit 1; }; }
740srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
741ac_env_build_alias_set=${build_alias+set}
742ac_env_build_alias_value=$build_alias
743ac_cv_env_build_alias_set=${build_alias+set}
744ac_cv_env_build_alias_value=$build_alias
745ac_env_host_alias_set=${host_alias+set}
746ac_env_host_alias_value=$host_alias
747ac_cv_env_host_alias_set=${host_alias+set}
748ac_cv_env_host_alias_value=$host_alias
749ac_env_target_alias_set=${target_alias+set}
750ac_env_target_alias_value=$target_alias
751ac_cv_env_target_alias_set=${target_alias+set}
752ac_cv_env_target_alias_value=$target_alias
753ac_env_CC_set=${CC+set}
754ac_env_CC_value=$CC
755ac_cv_env_CC_set=${CC+set}
756ac_cv_env_CC_value=$CC
757ac_env_CFLAGS_set=${CFLAGS+set}
758ac_env_CFLAGS_value=$CFLAGS
759ac_cv_env_CFLAGS_set=${CFLAGS+set}
760ac_cv_env_CFLAGS_value=$CFLAGS
761ac_env_LDFLAGS_set=${LDFLAGS+set}
762ac_env_LDFLAGS_value=$LDFLAGS
763ac_cv_env_LDFLAGS_set=${LDFLAGS+set}
764ac_cv_env_LDFLAGS_value=$LDFLAGS
765ac_env_CPPFLAGS_set=${CPPFLAGS+set}
766ac_env_CPPFLAGS_value=$CPPFLAGS
767ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set}
768ac_cv_env_CPPFLAGS_value=$CPPFLAGS
769ac_env_CPP_set=${CPP+set}
770ac_env_CPP_value=$CPP
771ac_cv_env_CPP_set=${CPP+set}
772ac_cv_env_CPP_value=$CPP
252b5132 773
979273e3
NN
774#
775# Report the --help message.
776#
777if test "$ac_init_help" = "long"; then
778 # Omit some internal or obsolete options to make the list less imposing.
779 # This message is too long to be a string in the A/UX 3.1 sh.
780 cat <<_ACEOF
781\`configure' configures this package to adapt to many kinds of systems.
252b5132 782
979273e3 783Usage: $0 [OPTION]... [VAR=VALUE]...
252b5132 784
979273e3
NN
785To assign environment variables (e.g., CC, CFLAGS...), specify them as
786VAR=VALUE. See below for descriptions of some of the useful variables.
252b5132 787
979273e3 788Defaults for the options are specified in brackets.
ac48eca1 789
979273e3
NN
790Configuration:
791 -h, --help display this help and exit
792 --help=short display options specific to this package
793 --help=recursive display the short help of all the included packages
794 -V, --version display version information and exit
795 -q, --quiet, --silent do not print \`checking...' messages
796 --cache-file=FILE cache test results in FILE [disabled]
797 -C, --config-cache alias for \`--cache-file=config.cache'
798 -n, --no-create do not create output files
799 --srcdir=DIR find the sources in DIR [configure dir or \`..']
800
801_ACEOF
802
803 cat <<_ACEOF
804Installation directories:
805 --prefix=PREFIX install architecture-independent files in PREFIX
806 [$ac_default_prefix]
807 --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
808 [PREFIX]
ac48eca1 809
979273e3
NN
810By default, \`make install' will install all the files in
811\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
812an installation prefix other than \`$ac_default_prefix' using \`--prefix',
813for instance \`--prefix=\$HOME'.
ac48eca1 814
979273e3 815For better control, use the options below.
ac48eca1 816
979273e3
NN
817Fine tuning of the installation directories:
818 --bindir=DIR user executables [EPREFIX/bin]
819 --sbindir=DIR system admin executables [EPREFIX/sbin]
820 --libexecdir=DIR program executables [EPREFIX/libexec]
821 --datadir=DIR read-only architecture-independent data [PREFIX/share]
822 --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
823 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
824 --localstatedir=DIR modifiable single-machine data [PREFIX/var]
825 --libdir=DIR object code libraries [EPREFIX/lib]
826 --includedir=DIR C header files [PREFIX/include]
827 --oldincludedir=DIR C header files for non-gcc [/usr/include]
828 --infodir=DIR info documentation [PREFIX/info]
829 --mandir=DIR man documentation [PREFIX/man]
830_ACEOF
ac48eca1 831
979273e3 832 cat <<\_ACEOF
252b5132 833
979273e3
NN
834Program names:
835 --program-prefix=PREFIX prepend PREFIX to installed program names
836 --program-suffix=SUFFIX append SUFFIX to installed program names
837 --program-transform-name=PROGRAM run sed PROGRAM on installed program names
252b5132 838
979273e3
NN
839System types:
840 --build=BUILD configure for building on BUILD [guessed]
841 --host=HOST cross-compile to build programs to run on HOST [BUILD]
842 --target=TARGET configure for building compilers for TARGET [HOST]
843_ACEOF
252b5132 844fi
252b5132 845
979273e3 846if test -n "$ac_init_help"; then
252b5132 847
979273e3 848 cat <<\_ACEOF
252b5132 849
979273e3
NN
850Optional Features:
851 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
852 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
8ae85421
AM
853 --disable-dependency-tracking speeds up one-time build
854 --enable-dependency-tracking do not reject slow dependency extractors
979273e3
NN
855 --enable-shared=PKGS build shared libraries default=no
856 --enable-static=PKGS build static libraries default=yes
857 --enable-fast-install=PKGS optimize for fast installation default=yes
858 --disable-libtool-lock avoid locking (might break parallel builds)
859 --enable-targets alternative target configurations
860 --enable-commonbfdlib build shared BFD/opcodes/libiberty library
241a6c40
AM
861 --enable-werror treat compile warnings as errors
862 --enable-build-warnings enable build-time compiler warnings
8ae85421
AM
863 --enable-maintainer-mode enable make rules and dependencies not useful
864 (and sometimes confusing) to the casual installer
979273e3
NN
865 --enable-install-libbfd controls installation of libbfd and related headers
866 --disable-nls do not use Native Language Support
867 --enable-cgen-maint=dir build cgen generated files
868
869Optional Packages:
870 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
871 --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
872 --with-gnu-ld assume the C compiler uses GNU ld default=no
873 --with-pic try to use only PIC/non-PIC objects default=use both
252b5132 874
979273e3
NN
875Some influential environment variables:
876 CC C compiler command
877 CFLAGS C compiler flags
878 LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
879 nonstandard directory <lib dir>
880 CPPFLAGS C/C++ preprocessor flags, e.g. -I<include dir> if you have
881 headers in a nonstandard directory <include dir>
882 CPP C preprocessor
a2d91340 883
979273e3
NN
884Use these variables to override the choices made by `configure' or to help
885it to find libraries and programs with nonstandard names/locations.
886
887_ACEOF
a2d91340
AC
888fi
889
979273e3
NN
890if test "$ac_init_help" = "recursive"; then
891 # If there are subdirs, report their specific --help.
892 ac_popdir=`pwd`
893 for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
894 test -d $ac_dir || continue
895 ac_builddir=.
896
897if test "$ac_dir" != .; then
898 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
899 # A "../" for each directory in $ac_dir_suffix.
900 ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
901else
902 ac_dir_suffix= ac_top_builddir=
903fi
a2d91340 904
979273e3
NN
905case $srcdir in
906 .) # No --srcdir option. We are building in place.
907 ac_srcdir=.
908 if test -z "$ac_top_builddir"; then
909 ac_top_srcdir=.
910 else
911 ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
a2d91340 912 fi ;;
979273e3
NN
913 [\\/]* | ?:[\\/]* ) # Absolute path.
914 ac_srcdir=$srcdir$ac_dir_suffix;
915 ac_top_srcdir=$srcdir ;;
916 *) # Relative path.
917 ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
918 ac_top_srcdir=$ac_top_builddir$srcdir ;;
a2d91340
AC
919esac
920
979273e3
NN
921# Do not use `cd foo && pwd` to compute absolute paths, because
922# the directories may not exist.
923case `pwd` in
924.) ac_abs_builddir="$ac_dir";;
925*)
926 case "$ac_dir" in
927 .) ac_abs_builddir=`pwd`;;
928 [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
929 *) ac_abs_builddir=`pwd`/"$ac_dir";;
930 esac;;
a2d91340 931esac
979273e3
NN
932case $ac_abs_builddir in
933.) ac_abs_top_builddir=${ac_top_builddir}.;;
934*)
935 case ${ac_top_builddir}. in
936 .) ac_abs_top_builddir=$ac_abs_builddir;;
937 [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
938 *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
939 esac;;
940esac
941case $ac_abs_builddir in
942.) ac_abs_srcdir=$ac_srcdir;;
943*)
944 case $ac_srcdir in
945 .) ac_abs_srcdir=$ac_abs_builddir;;
946 [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
947 *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
948 esac;;
949esac
950case $ac_abs_builddir in
951.) ac_abs_top_srcdir=$ac_top_srcdir;;
952*)
953 case $ac_top_srcdir in
954 .) ac_abs_top_srcdir=$ac_abs_builddir;;
955 [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
956 *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
957 esac;;
a2d91340
AC
958esac
959
979273e3
NN
960 cd $ac_dir
961 # Check for guested configure; otherwise get Cygnus style configure.
962 if test -f $ac_srcdir/configure.gnu; then
963 echo
964 $SHELL $ac_srcdir/configure.gnu --help=recursive
965 elif test -f $ac_srcdir/configure; then
966 echo
967 $SHELL $ac_srcdir/configure --help=recursive
968 elif test -f $ac_srcdir/configure.ac ||
969 test -f $ac_srcdir/configure.in; then
970 echo
971 $ac_configure --help
972 else
973 echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
974 fi
8ae85421 975 cd $ac_popdir
979273e3
NN
976 done
977fi
a2d91340 978
979273e3
NN
979test -n "$ac_init_help" && exit 0
980if $ac_init_version; then
981 cat <<\_ACEOF
252b5132 982
979273e3
NN
983Copyright (C) 2003 Free Software Foundation, Inc.
984This configure script is free software; the Free Software Foundation
985gives unlimited permission to copy, distribute and modify it.
986_ACEOF
987 exit 0
988fi
989exec 5>config.log
990cat >&5 <<_ACEOF
991This file contains any messages produced by compilers while
992running configure, to aid debugging if configure makes a mistake.
2c73f9d8 993
979273e3
NN
994It was created by $as_me, which was
995generated by GNU Autoconf 2.59. Invocation command line was
252b5132 996
979273e3 997 $ $0 $@
252b5132 998
979273e3
NN
999_ACEOF
1000{
1001cat <<_ASUNAME
1002## --------- ##
1003## Platform. ##
1004## --------- ##
1005
1006hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
1007uname -m = `(uname -m) 2>/dev/null || echo unknown`
1008uname -r = `(uname -r) 2>/dev/null || echo unknown`
1009uname -s = `(uname -s) 2>/dev/null || echo unknown`
1010uname -v = `(uname -v) 2>/dev/null || echo unknown`
1011
1012/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
1013/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
1014
1015/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
1016/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
1017/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
1018hostinfo = `(hostinfo) 2>/dev/null || echo unknown`
1019/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
1020/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
1021/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
1022
1023_ASUNAME
1024
1025as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1026for as_dir in $PATH
1027do
1028 IFS=$as_save_IFS
1029 test -z "$as_dir" && as_dir=.
1030 echo "PATH: $as_dir"
1031done
252b5132 1032
979273e3 1033} >&5
75798298 1034
979273e3 1035cat >&5 <<_ACEOF
252b5132 1036
252b5132 1037
979273e3
NN
1038## ----------- ##
1039## Core tests. ##
1040## ----------- ##
1041
1042_ACEOF
1043
1044
1045# Keep a trace of the command line.
1046# Strip out --no-create and --no-recursion so they do not pile up.
1047# Strip out --silent because we don't want to record it for future runs.
1048# Also quote any args containing shell meta-characters.
1049# Make two passes to allow for proper duplicate-argument suppression.
1050ac_configure_args=
1051ac_configure_args0=
1052ac_configure_args1=
1053ac_sep=
1054ac_must_keep_next=false
1055for ac_pass in 1 2
1056do
1057 for ac_arg
1058 do
1059 case $ac_arg in
1060 -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
1061 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1062 | -silent | --silent | --silen | --sile | --sil)
1063 continue ;;
1064 *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
1065 ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1066 esac
1067 case $ac_pass in
1068 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
1069 2)
1070 ac_configure_args1="$ac_configure_args1 '$ac_arg'"
1071 if test $ac_must_keep_next = true; then
1072 ac_must_keep_next=false # Got value, back to normal.
1073 else
1074 case $ac_arg in
1075 *=* | --config-cache | -C | -disable-* | --disable-* \
1076 | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
1077 | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
1078 | -with-* | --with-* | -without-* | --without-* | --x)
1079 case "$ac_configure_args0 " in
1080 "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
1081 esac
1082 ;;
1083 -* ) ac_must_keep_next=true ;;
1084 esac
1085 fi
1086 ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
1087 # Get rid of the leading space.
1088 ac_sep=" "
1089 ;;
1090 esac
1091 done
1092done
1093$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; }
1094$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; }
1095
1096# When interrupted or exit'd, cleanup temporary files, and complete
1097# config.log. We remove comments because anyway the quotes in there
1098# would cause problems or look ugly.
1099# WARNING: Be sure not to use single quotes in there, as some shells,
1100# such as our DU 5.0 friend, will then `close' the trap.
1101trap 'exit_status=$?
1102 # Save into config.log some information that might help in debugging.
1103 {
1104 echo
1105
1106 cat <<\_ASBOX
1107## ---------------- ##
1108## Cache variables. ##
1109## ---------------- ##
1110_ASBOX
1111 echo
1112 # The following way of writing the cache mishandles newlines in values,
1113{
1114 (set) 2>&1 |
1115 case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
1116 *ac_space=\ *)
1117 sed -n \
1118 "s/'"'"'/'"'"'\\\\'"'"''"'"'/g;
1119 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p"
1120 ;;
1121 *)
1122 sed -n \
1123 "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
1124 ;;
1125 esac;
1126}
1127 echo
1128
1129 cat <<\_ASBOX
1130## ----------------- ##
1131## Output variables. ##
1132## ----------------- ##
1133_ASBOX
1134 echo
1135 for ac_var in $ac_subst_vars
1136 do
1137 eval ac_val=$`echo $ac_var`
1138 echo "$ac_var='"'"'$ac_val'"'"'"
1139 done | sort
1140 echo
1141
1142 if test -n "$ac_subst_files"; then
1143 cat <<\_ASBOX
1144## ------------- ##
1145## Output files. ##
1146## ------------- ##
1147_ASBOX
1148 echo
1149 for ac_var in $ac_subst_files
1150 do
1151 eval ac_val=$`echo $ac_var`
1152 echo "$ac_var='"'"'$ac_val'"'"'"
1153 done | sort
1154 echo
1155 fi
1156
1157 if test -s confdefs.h; then
1158 cat <<\_ASBOX
1159## ----------- ##
1160## confdefs.h. ##
1161## ----------- ##
1162_ASBOX
1163 echo
1164 sed "/^$/d" confdefs.h | sort
1165 echo
1166 fi
1167 test "$ac_signal" != 0 &&
1168 echo "$as_me: caught signal $ac_signal"
1169 echo "$as_me: exit $exit_status"
1170 } >&5
1171 rm -f core *.core &&
1172 rm -rf conftest* confdefs* conf$$* $ac_clean_files &&
1173 exit $exit_status
1174 ' 0
1175for ac_signal in 1 2 13 15; do
1176 trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
1177done
1178ac_signal=0
1179
1180# confdefs.h avoids OS command line length limits that DEFS can exceed.
1181rm -rf conftest* confdefs.h
1182# AIX cpp loses on an empty file, so make sure it contains at least a newline.
1183echo >confdefs.h
1184
1185# Predefined preprocessor variables.
1186
1187cat >>confdefs.h <<_ACEOF
1188#define PACKAGE_NAME "$PACKAGE_NAME"
1189_ACEOF
1190
1191
1192cat >>confdefs.h <<_ACEOF
1193#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
1194_ACEOF
1195
1196
1197cat >>confdefs.h <<_ACEOF
1198#define PACKAGE_VERSION "$PACKAGE_VERSION"
1199_ACEOF
1200
1201
1202cat >>confdefs.h <<_ACEOF
1203#define PACKAGE_STRING "$PACKAGE_STRING"
1204_ACEOF
1205
1206
1207cat >>confdefs.h <<_ACEOF
1208#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
1209_ACEOF
1210
1211
1212# Let the site file select an alternate cache file if it wants to.
1213# Prefer explicitly selected file to automatically selected ones.
1214if test -z "$CONFIG_SITE"; then
1215 if test "x$prefix" != xNONE; then
1216 CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
1217 else
1218 CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
1219 fi
1220fi
1221for ac_site_file in $CONFIG_SITE; do
1222 if test -r "$ac_site_file"; then
1223 { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
1224echo "$as_me: loading site script $ac_site_file" >&6;}
1225 sed 's/^/| /' "$ac_site_file" >&5
1226 . "$ac_site_file"
1227 fi
1228done
1229
1230if test -r "$cache_file"; then
1231 # Some versions of bash will fail to source /dev/null (special
1232 # files actually), so we avoid doing that.
1233 if test -f "$cache_file"; then
1234 { echo "$as_me:$LINENO: loading cache $cache_file" >&5
1235echo "$as_me: loading cache $cache_file" >&6;}
1236 case $cache_file in
1237 [\\/]* | ?:[\\/]* ) . $cache_file;;
1238 *) . ./$cache_file;;
1239 esac
1240 fi
1241else
1242 { echo "$as_me:$LINENO: creating cache $cache_file" >&5
1243echo "$as_me: creating cache $cache_file" >&6;}
1244 >$cache_file
1245fi
1246
1247# Check that the precious variables saved in the cache have kept the same
1248# value.
1249ac_cache_corrupted=false
1250for ac_var in `(set) 2>&1 |
1251 sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
1252 eval ac_old_set=\$ac_cv_env_${ac_var}_set
1253 eval ac_new_set=\$ac_env_${ac_var}_set
1254 eval ac_old_val="\$ac_cv_env_${ac_var}_value"
1255 eval ac_new_val="\$ac_env_${ac_var}_value"
1256 case $ac_old_set,$ac_new_set in
1257 set,)
1258 { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
1259echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
1260 ac_cache_corrupted=: ;;
1261 ,set)
1262 { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
1263echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
1264 ac_cache_corrupted=: ;;
1265 ,);;
1266 *)
1267 if test "x$ac_old_val" != "x$ac_new_val"; then
1268 { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
1269echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
1270 { echo "$as_me:$LINENO: former value: $ac_old_val" >&5
1271echo "$as_me: former value: $ac_old_val" >&2;}
1272 { echo "$as_me:$LINENO: current value: $ac_new_val" >&5
1273echo "$as_me: current value: $ac_new_val" >&2;}
1274 ac_cache_corrupted=:
1275 fi;;
1276 esac
1277 # Pass precious variables to config.status.
1278 if test "$ac_new_set" = set; then
1279 case $ac_new_val in
1280 *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
1281 ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
1282 *) ac_arg=$ac_var=$ac_new_val ;;
1283 esac
1284 case " $ac_configure_args " in
1285 *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
1286 *) ac_configure_args="$ac_configure_args '$ac_arg'" ;;
1287 esac
1288 fi
1289done
1290if $ac_cache_corrupted; then
1291 { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
1292echo "$as_me: error: changes in the environment can compromise the build" >&2;}
1293 { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
1294echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
1295 { (exit 1); exit 1; }; }
1296fi
1297
1298ac_ext=c
1299ac_cpp='$CPP $CPPFLAGS'
1300ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1301ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1302ac_compiler_gnu=$ac_cv_c_compiler_gnu
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324ac_aux_dir=
1325for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
1326 if test -f $ac_dir/install-sh; then
1327 ac_aux_dir=$ac_dir
1328 ac_install_sh="$ac_aux_dir/install-sh -c"
1329 break
1330 elif test -f $ac_dir/install.sh; then
1331 ac_aux_dir=$ac_dir
1332 ac_install_sh="$ac_aux_dir/install.sh -c"
1333 break
1334 elif test -f $ac_dir/shtool; then
1335 ac_aux_dir=$ac_dir
1336 ac_install_sh="$ac_aux_dir/shtool install -c"
1337 break
1338 fi
1339done
1340if test -z "$ac_aux_dir"; then
1341 { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
1342echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
1343 { (exit 1); exit 1; }; }
1344fi
1345ac_config_guess="$SHELL $ac_aux_dir/config.guess"
1346ac_config_sub="$SHELL $ac_aux_dir/config.sub"
1347ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
1348
1349# Make sure we can run config.sub.
1350$ac_config_sub sun4 >/dev/null 2>&1 ||
1351 { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5
1352echo "$as_me: error: cannot run $ac_config_sub" >&2;}
1353 { (exit 1); exit 1; }; }
1354
1355echo "$as_me:$LINENO: checking build system type" >&5
1356echo $ECHO_N "checking build system type... $ECHO_C" >&6
1357if test "${ac_cv_build+set}" = set; then
1358 echo $ECHO_N "(cached) $ECHO_C" >&6
1359else
1360 ac_cv_build_alias=$build_alias
1361test -z "$ac_cv_build_alias" &&
1362 ac_cv_build_alias=`$ac_config_guess`
1363test -z "$ac_cv_build_alias" &&
1364 { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
1365echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
1366 { (exit 1); exit 1; }; }
1367ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
1368 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5
1369echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;}
1370 { (exit 1); exit 1; }; }
1371
1372fi
1373echo "$as_me:$LINENO: result: $ac_cv_build" >&5
1374echo "${ECHO_T}$ac_cv_build" >&6
1375build=$ac_cv_build
1376build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
1377build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
1378build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
1379
1380
1381echo "$as_me:$LINENO: checking host system type" >&5
1382echo $ECHO_N "checking host system type... $ECHO_C" >&6
1383if test "${ac_cv_host+set}" = set; then
1384 echo $ECHO_N "(cached) $ECHO_C" >&6
1385else
1386 ac_cv_host_alias=$host_alias
1387test -z "$ac_cv_host_alias" &&
1388 ac_cv_host_alias=$ac_cv_build_alias
1389ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
1390 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5
1391echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
1392 { (exit 1); exit 1; }; }
1393
1394fi
1395echo "$as_me:$LINENO: result: $ac_cv_host" >&5
1396echo "${ECHO_T}$ac_cv_host" >&6
1397host=$ac_cv_host
1398host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
1399host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
1400host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
1401
1402
1403echo "$as_me:$LINENO: checking target system type" >&5
1404echo $ECHO_N "checking target system type... $ECHO_C" >&6
1405if test "${ac_cv_target+set}" = set; then
1406 echo $ECHO_N "(cached) $ECHO_C" >&6
1407else
1408 ac_cv_target_alias=$target_alias
1409test "x$ac_cv_target_alias" = "x" &&
1410 ac_cv_target_alias=$ac_cv_host_alias
1411ac_cv_target=`$ac_config_sub $ac_cv_target_alias` ||
1412 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_target_alias failed" >&5
1413echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;}
1414 { (exit 1); exit 1; }; }
1415
1416fi
1417echo "$as_me:$LINENO: result: $ac_cv_target" >&5
1418echo "${ECHO_T}$ac_cv_target" >&6
1419target=$ac_cv_target
1420target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
1421target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
1422target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
1423
1424
1425# The aliases save the names the user supplied, while $host etc.
1426# will get canonicalized.
1427test -n "$target_alias" &&
1428 test "$program_prefix$program_suffix$program_transform_name" = \
1429 NONENONEs,x,x, &&
1430 program_prefix=${target_alias}-
1431ac_ext=c
1432ac_cpp='$CPP $CPPFLAGS'
1433ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1434ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1435ac_compiler_gnu=$ac_cv_c_compiler_gnu
1436if test -n "$ac_tool_prefix"; then
1437 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
1438set dummy ${ac_tool_prefix}gcc; ac_word=$2
1439echo "$as_me:$LINENO: checking for $ac_word" >&5
1440echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1441if test "${ac_cv_prog_CC+set}" = set; then
1442 echo $ECHO_N "(cached) $ECHO_C" >&6
1443else
1444 if test -n "$CC"; then
1445 ac_cv_prog_CC="$CC" # Let the user override the test.
1446else
1447as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1448for as_dir in $PATH
1449do
1450 IFS=$as_save_IFS
1451 test -z "$as_dir" && as_dir=.
1452 for ac_exec_ext in '' $ac_executable_extensions; do
1453 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1454 ac_cv_prog_CC="${ac_tool_prefix}gcc"
1455 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1456 break 2
1457 fi
1458done
1459done
1460
1461fi
1462fi
1463CC=$ac_cv_prog_CC
1464if test -n "$CC"; then
1465 echo "$as_me:$LINENO: result: $CC" >&5
1466echo "${ECHO_T}$CC" >&6
1467else
1468 echo "$as_me:$LINENO: result: no" >&5
1469echo "${ECHO_T}no" >&6
1470fi
1471
1472fi
1473if test -z "$ac_cv_prog_CC"; then
1474 ac_ct_CC=$CC
1475 # Extract the first word of "gcc", so it can be a program name with args.
1476set dummy gcc; ac_word=$2
1477echo "$as_me:$LINENO: checking for $ac_word" >&5
1478echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1479if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
1480 echo $ECHO_N "(cached) $ECHO_C" >&6
1481else
1482 if test -n "$ac_ct_CC"; then
1483 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
1484else
1485as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1486for as_dir in $PATH
1487do
1488 IFS=$as_save_IFS
1489 test -z "$as_dir" && as_dir=.
1490 for ac_exec_ext in '' $ac_executable_extensions; do
1491 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1492 ac_cv_prog_ac_ct_CC="gcc"
1493 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1494 break 2
1495 fi
1496done
1497done
1498
1499fi
1500fi
1501ac_ct_CC=$ac_cv_prog_ac_ct_CC
1502if test -n "$ac_ct_CC"; then
1503 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
1504echo "${ECHO_T}$ac_ct_CC" >&6
1505else
1506 echo "$as_me:$LINENO: result: no" >&5
1507echo "${ECHO_T}no" >&6
1508fi
1509
1510 CC=$ac_ct_CC
1511else
1512 CC="$ac_cv_prog_CC"
1513fi
1514
1515if test -z "$CC"; then
1516 if test -n "$ac_tool_prefix"; then
1517 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
1518set dummy ${ac_tool_prefix}cc; ac_word=$2
1519echo "$as_me:$LINENO: checking for $ac_word" >&5
1520echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1521if test "${ac_cv_prog_CC+set}" = set; then
1522 echo $ECHO_N "(cached) $ECHO_C" >&6
1523else
1524 if test -n "$CC"; then
1525 ac_cv_prog_CC="$CC" # Let the user override the test.
1526else
1527as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1528for as_dir in $PATH
1529do
1530 IFS=$as_save_IFS
1531 test -z "$as_dir" && as_dir=.
1532 for ac_exec_ext in '' $ac_executable_extensions; do
1533 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1534 ac_cv_prog_CC="${ac_tool_prefix}cc"
1535 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1536 break 2
1537 fi
1538done
1539done
1540
1541fi
1542fi
1543CC=$ac_cv_prog_CC
1544if test -n "$CC"; then
1545 echo "$as_me:$LINENO: result: $CC" >&5
1546echo "${ECHO_T}$CC" >&6
1547else
1548 echo "$as_me:$LINENO: result: no" >&5
1549echo "${ECHO_T}no" >&6
1550fi
1551
1552fi
1553if test -z "$ac_cv_prog_CC"; then
1554 ac_ct_CC=$CC
1555 # Extract the first word of "cc", so it can be a program name with args.
1556set dummy cc; ac_word=$2
1557echo "$as_me:$LINENO: checking for $ac_word" >&5
1558echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1559if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
1560 echo $ECHO_N "(cached) $ECHO_C" >&6
1561else
1562 if test -n "$ac_ct_CC"; then
1563 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
1564else
1565as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1566for as_dir in $PATH
1567do
1568 IFS=$as_save_IFS
1569 test -z "$as_dir" && as_dir=.
1570 for ac_exec_ext in '' $ac_executable_extensions; do
1571 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1572 ac_cv_prog_ac_ct_CC="cc"
1573 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1574 break 2
1575 fi
1576done
1577done
1578
1579fi
1580fi
1581ac_ct_CC=$ac_cv_prog_ac_ct_CC
1582if test -n "$ac_ct_CC"; then
1583 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
1584echo "${ECHO_T}$ac_ct_CC" >&6
1585else
1586 echo "$as_me:$LINENO: result: no" >&5
1587echo "${ECHO_T}no" >&6
1588fi
1589
1590 CC=$ac_ct_CC
1591else
1592 CC="$ac_cv_prog_CC"
1593fi
1594
1595fi
1596if test -z "$CC"; then
1597 # Extract the first word of "cc", so it can be a program name with args.
1598set dummy cc; ac_word=$2
1599echo "$as_me:$LINENO: checking for $ac_word" >&5
1600echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1601if test "${ac_cv_prog_CC+set}" = set; then
1602 echo $ECHO_N "(cached) $ECHO_C" >&6
1603else
1604 if test -n "$CC"; then
1605 ac_cv_prog_CC="$CC" # Let the user override the test.
1606else
1607 ac_prog_rejected=no
1608as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1609for as_dir in $PATH
1610do
1611 IFS=$as_save_IFS
1612 test -z "$as_dir" && as_dir=.
1613 for ac_exec_ext in '' $ac_executable_extensions; do
1614 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1615 if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
1616 ac_prog_rejected=yes
1617 continue
1618 fi
1619 ac_cv_prog_CC="cc"
1620 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1621 break 2
1622 fi
1623done
1624done
1625
1626if test $ac_prog_rejected = yes; then
1627 # We found a bogon in the path, so make sure we never use it.
1628 set dummy $ac_cv_prog_CC
1629 shift
1630 if test $# != 0; then
1631 # We chose a different compiler from the bogus one.
1632 # However, it has the same basename, so the bogon will be chosen
1633 # first if we set CC to just the basename; use the full file name.
1634 shift
1635 ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
1636 fi
1637fi
1638fi
1639fi
1640CC=$ac_cv_prog_CC
1641if test -n "$CC"; then
1642 echo "$as_me:$LINENO: result: $CC" >&5
1643echo "${ECHO_T}$CC" >&6
1644else
1645 echo "$as_me:$LINENO: result: no" >&5
1646echo "${ECHO_T}no" >&6
1647fi
1648
1649fi
1650if test -z "$CC"; then
1651 if test -n "$ac_tool_prefix"; then
1652 for ac_prog in cl
1653 do
1654 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
1655set dummy $ac_tool_prefix$ac_prog; ac_word=$2
1656echo "$as_me:$LINENO: checking for $ac_word" >&5
1657echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1658if test "${ac_cv_prog_CC+set}" = set; then
1659 echo $ECHO_N "(cached) $ECHO_C" >&6
1660else
1661 if test -n "$CC"; then
1662 ac_cv_prog_CC="$CC" # Let the user override the test.
1663else
1664as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1665for as_dir in $PATH
1666do
1667 IFS=$as_save_IFS
1668 test -z "$as_dir" && as_dir=.
1669 for ac_exec_ext in '' $ac_executable_extensions; do
1670 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1671 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
1672 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1673 break 2
1674 fi
1675done
1676done
1677
1678fi
1679fi
1680CC=$ac_cv_prog_CC
1681if test -n "$CC"; then
1682 echo "$as_me:$LINENO: result: $CC" >&5
1683echo "${ECHO_T}$CC" >&6
1684else
1685 echo "$as_me:$LINENO: result: no" >&5
1686echo "${ECHO_T}no" >&6
1687fi
1688
1689 test -n "$CC" && break
1690 done
1691fi
1692if test -z "$CC"; then
1693 ac_ct_CC=$CC
1694 for ac_prog in cl
1695do
1696 # Extract the first word of "$ac_prog", so it can be a program name with args.
1697set dummy $ac_prog; ac_word=$2
1698echo "$as_me:$LINENO: checking for $ac_word" >&5
1699echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1700if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
1701 echo $ECHO_N "(cached) $ECHO_C" >&6
1702else
1703 if test -n "$ac_ct_CC"; then
1704 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
1705else
1706as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1707for as_dir in $PATH
1708do
1709 IFS=$as_save_IFS
1710 test -z "$as_dir" && as_dir=.
1711 for ac_exec_ext in '' $ac_executable_extensions; do
1712 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1713 ac_cv_prog_ac_ct_CC="$ac_prog"
1714 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1715 break 2
1716 fi
1717done
1718done
1719
1720fi
1721fi
1722ac_ct_CC=$ac_cv_prog_ac_ct_CC
1723if test -n "$ac_ct_CC"; then
1724 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
1725echo "${ECHO_T}$ac_ct_CC" >&6
1726else
1727 echo "$as_me:$LINENO: result: no" >&5
1728echo "${ECHO_T}no" >&6
1729fi
1730
1731 test -n "$ac_ct_CC" && break
1732done
1733
1734 CC=$ac_ct_CC
1735fi
1736
1737fi
1738
1739
1740test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
1741See \`config.log' for more details." >&5
1742echo "$as_me: error: no acceptable C compiler found in \$PATH
1743See \`config.log' for more details." >&2;}
1744 { (exit 1); exit 1; }; }
1745
1746# Provide some information about the compiler.
1747echo "$as_me:$LINENO:" \
1748 "checking for C compiler version" >&5
1749ac_compiler=`set X $ac_compile; echo $2`
1750{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
1751 (eval $ac_compiler --version </dev/null >&5) 2>&5
1752 ac_status=$?
1753 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1754 (exit $ac_status); }
1755{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
1756 (eval $ac_compiler -v </dev/null >&5) 2>&5
1757 ac_status=$?
1758 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1759 (exit $ac_status); }
1760{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
1761 (eval $ac_compiler -V </dev/null >&5) 2>&5
1762 ac_status=$?
1763 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1764 (exit $ac_status); }
1765
1766cat >conftest.$ac_ext <<_ACEOF
1767/* confdefs.h. */
1768_ACEOF
1769cat confdefs.h >>conftest.$ac_ext
1770cat >>conftest.$ac_ext <<_ACEOF
1771/* end confdefs.h. */
1772
1773int
1774main ()
1775{
1776
1777 ;
1778 return 0;
1779}
1780_ACEOF
1781ac_clean_files_save=$ac_clean_files
1782ac_clean_files="$ac_clean_files a.out a.exe b.out"
1783# Try to create an executable without -o first, disregard a.out.
1784# It will help us diagnose broken compilers, and finding out an intuition
1785# of exeext.
1786echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
1787echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6
1788ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
1789if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5
1790 (eval $ac_link_default) 2>&5
1791 ac_status=$?
1792 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1793 (exit $ac_status); }; then
1794 # Find the output, starting from the most likely. This scheme is
1795# not robust to junk in `.', hence go to wildcards (a.*) only as a last
1796# resort.
1797
1798# Be careful to initialize this variable, since it used to be cached.
1799# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile.
1800ac_cv_exeext=
1801# b.out is created by i960 compilers.
1802for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out
1803do
1804 test -f "$ac_file" || continue
1805 case $ac_file in
1806 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj )
1807 ;;
1808 conftest.$ac_ext )
1809 # This is the source file.
1810 ;;
1811 [ab].out )
1812 # We found the default executable, but exeext='' is most
1813 # certainly right.
1814 break;;
1815 *.* )
1816 ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
1817 # FIXME: I believe we export ac_cv_exeext for Libtool,
1818 # but it would be cool to find out if it's true. Does anybody
1819 # maintain Libtool? --akim.
1820 export ac_cv_exeext
1821 break;;
1822 * )
1823 break;;
1824 esac
1825done
1826else
1827 echo "$as_me: failed program was:" >&5
1828sed 's/^/| /' conftest.$ac_ext >&5
1829
1830{ { echo "$as_me:$LINENO: error: C compiler cannot create executables
1831See \`config.log' for more details." >&5
1832echo "$as_me: error: C compiler cannot create executables
1833See \`config.log' for more details." >&2;}
1834 { (exit 77); exit 77; }; }
1835fi
1836
1837ac_exeext=$ac_cv_exeext
1838echo "$as_me:$LINENO: result: $ac_file" >&5
1839echo "${ECHO_T}$ac_file" >&6
1840
1841# Check the compiler produces executables we can run. If not, either
1842# the compiler is broken, or we cross compile.
1843echo "$as_me:$LINENO: checking whether the C compiler works" >&5
1844echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
1845# FIXME: These cross compiler hacks should be removed for Autoconf 3.0
1846# If not cross compiling, check that we can run a simple program.
1847if test "$cross_compiling" != yes; then
1848 if { ac_try='./$ac_file'
1849 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1850 (eval $ac_try) 2>&5
1851 ac_status=$?
1852 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1853 (exit $ac_status); }; }; then
1854 cross_compiling=no
1855 else
1856 if test "$cross_compiling" = maybe; then
1857 cross_compiling=yes
1858 else
1859 { { echo "$as_me:$LINENO: error: cannot run C compiled programs.
1860If you meant to cross compile, use \`--host'.
1861See \`config.log' for more details." >&5
1862echo "$as_me: error: cannot run C compiled programs.
1863If you meant to cross compile, use \`--host'.
1864See \`config.log' for more details." >&2;}
1865 { (exit 1); exit 1; }; }
1866 fi
1867 fi
1868fi
1869echo "$as_me:$LINENO: result: yes" >&5
1870echo "${ECHO_T}yes" >&6
1871
1872rm -f a.out a.exe conftest$ac_cv_exeext b.out
1873ac_clean_files=$ac_clean_files_save
1874# Check the compiler produces executables we can run. If not, either
1875# the compiler is broken, or we cross compile.
1876echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
1877echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
1878echo "$as_me:$LINENO: result: $cross_compiling" >&5
1879echo "${ECHO_T}$cross_compiling" >&6
1880
1881echo "$as_me:$LINENO: checking for suffix of executables" >&5
1882echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6
1883if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
1884 (eval $ac_link) 2>&5
1885 ac_status=$?
1886 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1887 (exit $ac_status); }; then
1888 # If both `conftest.exe' and `conftest' are `present' (well, observable)
1889# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
1890# work properly (i.e., refer to `conftest.exe'), while it won't with
1891# `rm'.
1892for ac_file in conftest.exe conftest conftest.*; do
1893 test -f "$ac_file" || continue
1894 case $ac_file in
1895 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;;
1896 *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
1897 export ac_cv_exeext
1898 break;;
1899 * ) break;;
1900 esac
1901done
1902else
1903 { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
1904See \`config.log' for more details." >&5
1905echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
1906See \`config.log' for more details." >&2;}
1907 { (exit 1); exit 1; }; }
1908fi
1909
1910rm -f conftest$ac_cv_exeext
1911echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
1912echo "${ECHO_T}$ac_cv_exeext" >&6
1913
1914rm -f conftest.$ac_ext
1915EXEEXT=$ac_cv_exeext
1916ac_exeext=$EXEEXT
1917echo "$as_me:$LINENO: checking for suffix of object files" >&5
1918echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6
1919if test "${ac_cv_objext+set}" = set; then
1920 echo $ECHO_N "(cached) $ECHO_C" >&6
1921else
1922 cat >conftest.$ac_ext <<_ACEOF
1923/* confdefs.h. */
1924_ACEOF
1925cat confdefs.h >>conftest.$ac_ext
1926cat >>conftest.$ac_ext <<_ACEOF
1927/* end confdefs.h. */
1928
1929int
1930main ()
1931{
1932
1933 ;
1934 return 0;
1935}
1936_ACEOF
1937rm -f conftest.o conftest.obj
1938if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1939 (eval $ac_compile) 2>&5
1940 ac_status=$?
1941 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1942 (exit $ac_status); }; then
1943 for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
1944 case $ac_file in
1945 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;;
1946 *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
1947 break;;
1948 esac
1949done
1950else
1951 echo "$as_me: failed program was:" >&5
1952sed 's/^/| /' conftest.$ac_ext >&5
1953
1954{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
1955See \`config.log' for more details." >&5
1956echo "$as_me: error: cannot compute suffix of object files: cannot compile
1957See \`config.log' for more details." >&2;}
1958 { (exit 1); exit 1; }; }
1959fi
1960
1961rm -f conftest.$ac_cv_objext conftest.$ac_ext
1962fi
1963echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
1964echo "${ECHO_T}$ac_cv_objext" >&6
1965OBJEXT=$ac_cv_objext
1966ac_objext=$OBJEXT
1967echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
1968echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
1969if test "${ac_cv_c_compiler_gnu+set}" = set; then
1970 echo $ECHO_N "(cached) $ECHO_C" >&6
1971else
1972 cat >conftest.$ac_ext <<_ACEOF
1973/* confdefs.h. */
1974_ACEOF
1975cat confdefs.h >>conftest.$ac_ext
1976cat >>conftest.$ac_ext <<_ACEOF
1977/* end confdefs.h. */
1978
1979int
1980main ()
1981{
1982#ifndef __GNUC__
1983 choke me
1984#endif
1985
1986 ;
1987 return 0;
1988}
1989_ACEOF
1990rm -f conftest.$ac_objext
1991if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1992 (eval $ac_compile) 2>conftest.er1
1993 ac_status=$?
1994 grep -v '^ *+' conftest.er1 >conftest.err
1995 rm -f conftest.er1
1996 cat conftest.err >&5
1997 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1998 (exit $ac_status); } &&
8ae85421
AM
1999 { ac_try='test -z "$ac_c_werror_flag"
2000 || test ! -s conftest.err'
979273e3
NN
2001 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2002 (eval $ac_try) 2>&5
2003 ac_status=$?
2004 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2005 (exit $ac_status); }; } &&
2006 { ac_try='test -s conftest.$ac_objext'
2007 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2008 (eval $ac_try) 2>&5
2009 ac_status=$?
2010 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2011 (exit $ac_status); }; }; then
2012 ac_compiler_gnu=yes
2013else
2014 echo "$as_me: failed program was:" >&5
2015sed 's/^/| /' conftest.$ac_ext >&5
2016
2017ac_compiler_gnu=no
2018fi
2019rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
2020ac_cv_c_compiler_gnu=$ac_compiler_gnu
2021
2022fi
2023echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
2024echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
2025GCC=`test $ac_compiler_gnu = yes && echo yes`
2026ac_test_CFLAGS=${CFLAGS+set}
2027ac_save_CFLAGS=$CFLAGS
2028CFLAGS="-g"
2029echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
2030echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
2031if test "${ac_cv_prog_cc_g+set}" = set; then
2032 echo $ECHO_N "(cached) $ECHO_C" >&6
2033else
2034 cat >conftest.$ac_ext <<_ACEOF
2035/* confdefs.h. */
2036_ACEOF
2037cat confdefs.h >>conftest.$ac_ext
2038cat >>conftest.$ac_ext <<_ACEOF
2039/* end confdefs.h. */
2040
2041int
2042main ()
2043{
2044
2045 ;
2046 return 0;
2047}
2048_ACEOF
2049rm -f conftest.$ac_objext
2050if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2051 (eval $ac_compile) 2>conftest.er1
2052 ac_status=$?
2053 grep -v '^ *+' conftest.er1 >conftest.err
2054 rm -f conftest.er1
2055 cat conftest.err >&5
2056 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2057 (exit $ac_status); } &&
8ae85421
AM
2058 { ac_try='test -z "$ac_c_werror_flag"
2059 || test ! -s conftest.err'
979273e3
NN
2060 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2061 (eval $ac_try) 2>&5
2062 ac_status=$?
2063 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2064 (exit $ac_status); }; } &&
2065 { ac_try='test -s conftest.$ac_objext'
2066 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2067 (eval $ac_try) 2>&5
2068 ac_status=$?
2069 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2070 (exit $ac_status); }; }; then
2071 ac_cv_prog_cc_g=yes
2072else
2073 echo "$as_me: failed program was:" >&5
2074sed 's/^/| /' conftest.$ac_ext >&5
2075
2076ac_cv_prog_cc_g=no
2077fi
2078rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
2079fi
2080echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
2081echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
2082if test "$ac_test_CFLAGS" = set; then
2083 CFLAGS=$ac_save_CFLAGS
2084elif test $ac_cv_prog_cc_g = yes; then
2085 if test "$GCC" = yes; then
2086 CFLAGS="-g -O2"
2087 else
2088 CFLAGS="-g"
2089 fi
2090else
2091 if test "$GCC" = yes; then
2092 CFLAGS="-O2"
2093 else
2094 CFLAGS=
2095 fi
2096fi
2097echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
2098echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
2099if test "${ac_cv_prog_cc_stdc+set}" = set; then
2100 echo $ECHO_N "(cached) $ECHO_C" >&6
2101else
2102 ac_cv_prog_cc_stdc=no
2103ac_save_CC=$CC
2104cat >conftest.$ac_ext <<_ACEOF
2105/* confdefs.h. */
2106_ACEOF
2107cat confdefs.h >>conftest.$ac_ext
2108cat >>conftest.$ac_ext <<_ACEOF
2109/* end confdefs.h. */
2110#include <stdarg.h>
2111#include <stdio.h>
2112#include <sys/types.h>
2113#include <sys/stat.h>
2114/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
2115struct buf { int x; };
2116FILE * (*rcsopen) (struct buf *, struct stat *, int);
2117static char *e (p, i)
2118 char **p;
2119 int i;
2120{
2121 return p[i];
2122}
2123static char *f (char * (*g) (char **, int), char **p, ...)
2124{
2125 char *s;
2126 va_list v;
2127 va_start (v,p);
2128 s = g (p, va_arg (v,int));
2129 va_end (v);
2130 return s;
2131}
2132
2133/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
2134 function prototypes and stuff, but not '\xHH' hex character constants.
2135 These don't provoke an error unfortunately, instead are silently treated
2136 as 'x'. The following induces an error, until -std1 is added to get
2137 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
2138 array size at least. It's necessary to write '\x00'==0 to get something
2139 that's true only with -std1. */
2140int osf4_cc_array ['\x00' == 0 ? 1 : -1];
2141
2142int test (int i, double x);
2143struct s1 {int (*f) (int a);};
2144struct s2 {int (*f) (double a);};
2145int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
2146int argc;
2147char **argv;
2148int
2149main ()
2150{
2151return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
2152 ;
2153 return 0;
2154}
2155_ACEOF
2156# Don't try gcc -ansi; that turns off useful extensions and
2157# breaks some systems' header files.
2158# AIX -qlanglvl=ansi
2159# Ultrix and OSF/1 -std1
2160# HP-UX 10.20 and later -Ae
2161# HP-UX older versions -Aa -D_HPUX_SOURCE
2162# SVR4 -Xc -D__EXTENSIONS__
2163for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
2164do
2165 CC="$ac_save_CC $ac_arg"
2166 rm -f conftest.$ac_objext
2167if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2168 (eval $ac_compile) 2>conftest.er1
2169 ac_status=$?
2170 grep -v '^ *+' conftest.er1 >conftest.err
2171 rm -f conftest.er1
2172 cat conftest.err >&5
2173 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2174 (exit $ac_status); } &&
8ae85421
AM
2175 { ac_try='test -z "$ac_c_werror_flag"
2176 || test ! -s conftest.err'
979273e3
NN
2177 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2178 (eval $ac_try) 2>&5
2179 ac_status=$?
2180 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2181 (exit $ac_status); }; } &&
2182 { ac_try='test -s conftest.$ac_objext'
2183 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2184 (eval $ac_try) 2>&5
2185 ac_status=$?
2186 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2187 (exit $ac_status); }; }; then
2188 ac_cv_prog_cc_stdc=$ac_arg
2189break
2190else
2191 echo "$as_me: failed program was:" >&5
2192sed 's/^/| /' conftest.$ac_ext >&5
2193
2194fi
2195rm -f conftest.err conftest.$ac_objext
2196done
2197rm -f conftest.$ac_ext conftest.$ac_objext
2198CC=$ac_save_CC
2199
2200fi
2201
2202case "x$ac_cv_prog_cc_stdc" in
2203 x|xno)
2204 echo "$as_me:$LINENO: result: none needed" >&5
2205echo "${ECHO_T}none needed" >&6 ;;
2206 *)
2207 echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
2208echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
2209 CC="$CC $ac_cv_prog_cc_stdc" ;;
2210esac
2211
2212# Some people use a C++ compiler to compile C. Since we use `exit',
2213# in C++ we need to declare it. In case someone uses the same compiler
2214# for both compiling C and C++ we need to have the C++ compiler decide
2215# the declaration of exit, since it's the most demanding environment.
2216cat >conftest.$ac_ext <<_ACEOF
2217#ifndef __cplusplus
2218 choke me
2219#endif
2220_ACEOF
2221rm -f conftest.$ac_objext
2222if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2223 (eval $ac_compile) 2>conftest.er1
2224 ac_status=$?
2225 grep -v '^ *+' conftest.er1 >conftest.err
2226 rm -f conftest.er1
2227 cat conftest.err >&5
2228 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2229 (exit $ac_status); } &&
8ae85421
AM
2230 { ac_try='test -z "$ac_c_werror_flag"
2231 || test ! -s conftest.err'
979273e3
NN
2232 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2233 (eval $ac_try) 2>&5
2234 ac_status=$?
2235 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2236 (exit $ac_status); }; } &&
2237 { ac_try='test -s conftest.$ac_objext'
2238 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2239 (eval $ac_try) 2>&5
2240 ac_status=$?
2241 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2242 (exit $ac_status); }; }; then
2243 for ac_declaration in \
2244 '' \
2245 'extern "C" void std::exit (int) throw (); using std::exit;' \
2246 'extern "C" void std::exit (int); using std::exit;' \
2247 'extern "C" void exit (int) throw ();' \
2248 'extern "C" void exit (int);' \
2249 'void exit (int);'
2250do
2251 cat >conftest.$ac_ext <<_ACEOF
2252/* confdefs.h. */
2253_ACEOF
2254cat confdefs.h >>conftest.$ac_ext
2255cat >>conftest.$ac_ext <<_ACEOF
2256/* end confdefs.h. */
2257$ac_declaration
2258#include <stdlib.h>
2259int
2260main ()
2261{
2262exit (42);
2263 ;
2264 return 0;
2265}
2266_ACEOF
2267rm -f conftest.$ac_objext
2268if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2269 (eval $ac_compile) 2>conftest.er1
2270 ac_status=$?
2271 grep -v '^ *+' conftest.er1 >conftest.err
2272 rm -f conftest.er1
2273 cat conftest.err >&5
2274 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2275 (exit $ac_status); } &&
8ae85421
AM
2276 { ac_try='test -z "$ac_c_werror_flag"
2277 || test ! -s conftest.err'
979273e3
NN
2278 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2279 (eval $ac_try) 2>&5
2280 ac_status=$?
2281 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2282 (exit $ac_status); }; } &&
2283 { ac_try='test -s conftest.$ac_objext'
2284 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2285 (eval $ac_try) 2>&5
2286 ac_status=$?
2287 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2288 (exit $ac_status); }; }; then
2289 :
2290else
2291 echo "$as_me: failed program was:" >&5
2292sed 's/^/| /' conftest.$ac_ext >&5
2293
2294continue
2295fi
2296rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
2297 cat >conftest.$ac_ext <<_ACEOF
2298/* confdefs.h. */
2299_ACEOF
2300cat confdefs.h >>conftest.$ac_ext
2301cat >>conftest.$ac_ext <<_ACEOF
2302/* end confdefs.h. */
2303$ac_declaration
2304int
2305main ()
2306{
2307exit (42);
2308 ;
2309 return 0;
2310}
2311_ACEOF
2312rm -f conftest.$ac_objext
2313if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2314 (eval $ac_compile) 2>conftest.er1
2315 ac_status=$?
2316 grep -v '^ *+' conftest.er1 >conftest.err
2317 rm -f conftest.er1
2318 cat conftest.err >&5
2319 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2320 (exit $ac_status); } &&
8ae85421
AM
2321 { ac_try='test -z "$ac_c_werror_flag"
2322 || test ! -s conftest.err'
979273e3
NN
2323 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2324 (eval $ac_try) 2>&5
2325 ac_status=$?
2326 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2327 (exit $ac_status); }; } &&
2328 { ac_try='test -s conftest.$ac_objext'
2329 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2330 (eval $ac_try) 2>&5
2331 ac_status=$?
2332 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2333 (exit $ac_status); }; }; then
2334 break
2335else
2336 echo "$as_me: failed program was:" >&5
2337sed 's/^/| /' conftest.$ac_ext >&5
2338
2339fi
2340rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
2341done
2342rm -f conftest*
2343if test -n "$ac_declaration"; then
2344 echo '#ifdef __cplusplus' >>confdefs.h
2345 echo $ac_declaration >>confdefs.h
2346 echo '#endif' >>confdefs.h
2347fi
2348
2349else
2350 echo "$as_me: failed program was:" >&5
2351sed 's/^/| /' conftest.$ac_ext >&5
2352
2353fi
2354rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
2355ac_ext=c
2356ac_cpp='$CPP $CPPFLAGS'
2357ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
2358ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2359ac_compiler_gnu=$ac_cv_c_compiler_gnu
2360
2361
8ae85421
AM
2362echo "$as_me:$LINENO: checking for library containing strerror" >&5
2363echo $ECHO_N "checking for library containing strerror... $ECHO_C" >&6
2364if test "${ac_cv_search_strerror+set}" = set; then
979273e3
NN
2365 echo $ECHO_N "(cached) $ECHO_C" >&6
2366else
8ae85421
AM
2367 ac_func_search_save_LIBS=$LIBS
2368ac_cv_search_strerror=no
979273e3
NN
2369cat >conftest.$ac_ext <<_ACEOF
2370/* confdefs.h. */
2371_ACEOF
2372cat confdefs.h >>conftest.$ac_ext
2373cat >>conftest.$ac_ext <<_ACEOF
2374/* end confdefs.h. */
2375
2376/* Override any gcc2 internal prototype to avoid an error. */
2377#ifdef __cplusplus
2378extern "C"
2379#endif
2380/* We use char because int might match the return type of a gcc2
2381 builtin and then its argument prototype would still apply. */
2382char strerror ();
2383int
2384main ()
2385{
2386strerror ();
2387 ;
2388 return 0;
2389}
2390_ACEOF
2391rm -f conftest.$ac_objext conftest$ac_exeext
2392if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2393 (eval $ac_link) 2>conftest.er1
2394 ac_status=$?
2395 grep -v '^ *+' conftest.er1 >conftest.err
2396 rm -f conftest.er1
2397 cat conftest.err >&5
2398 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2399 (exit $ac_status); } &&
8ae85421
AM
2400 { ac_try='test -z "$ac_c_werror_flag"
2401 || test ! -s conftest.err'
979273e3
NN
2402 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2403 (eval $ac_try) 2>&5
2404 ac_status=$?
2405 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2406 (exit $ac_status); }; } &&
2407 { ac_try='test -s conftest$ac_exeext'
2408 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2409 (eval $ac_try) 2>&5
2410 ac_status=$?
2411 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2412 (exit $ac_status); }; }; then
8ae85421 2413 ac_cv_search_strerror="none required"
979273e3
NN
2414else
2415 echo "$as_me: failed program was:" >&5
2416sed 's/^/| /' conftest.$ac_ext >&5
2417
979273e3
NN
2418fi
2419rm -f conftest.err conftest.$ac_objext \
2420 conftest$ac_exeext conftest.$ac_ext
8ae85421
AM
2421if test "$ac_cv_search_strerror" = no; then
2422 for ac_lib in cposix; do
2423 LIBS="-l$ac_lib $ac_func_search_save_LIBS"
2424 cat >conftest.$ac_ext <<_ACEOF
2425/* confdefs.h. */
2426_ACEOF
2427cat confdefs.h >>conftest.$ac_ext
2428cat >>conftest.$ac_ext <<_ACEOF
2429/* end confdefs.h. */
2430
2431/* Override any gcc2 internal prototype to avoid an error. */
2432#ifdef __cplusplus
2433extern "C"
2434#endif
2435/* We use char because int might match the return type of a gcc2
2436 builtin and then its argument prototype would still apply. */
2437char strerror ();
2438int
2439main ()
2440{
2441strerror ();
2442 ;
2443 return 0;
2444}
2445_ACEOF
2446rm -f conftest.$ac_objext conftest$ac_exeext
2447if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2448 (eval $ac_link) 2>conftest.er1
2449 ac_status=$?
2450 grep -v '^ *+' conftest.er1 >conftest.err
2451 rm -f conftest.er1
2452 cat conftest.err >&5
2453 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2454 (exit $ac_status); } &&
2455 { ac_try='test -z "$ac_c_werror_flag"
2456 || test ! -s conftest.err'
2457 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2458 (eval $ac_try) 2>&5
2459 ac_status=$?
2460 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2461 (exit $ac_status); }; } &&
2462 { ac_try='test -s conftest$ac_exeext'
2463 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2464 (eval $ac_try) 2>&5
2465 ac_status=$?
2466 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2467 (exit $ac_status); }; }; then
2468 ac_cv_search_strerror="-l$ac_lib"
2469break
2470else
2471 echo "$as_me: failed program was:" >&5
2472sed 's/^/| /' conftest.$ac_ext >&5
2473
979273e3 2474fi
8ae85421
AM
2475rm -f conftest.err conftest.$ac_objext \
2476 conftest$ac_exeext conftest.$ac_ext
2477 done
979273e3 2478fi
8ae85421
AM
2479LIBS=$ac_func_search_save_LIBS
2480fi
2481echo "$as_me:$LINENO: result: $ac_cv_search_strerror" >&5
2482echo "${ECHO_T}$ac_cv_search_strerror" >&6
2483if test "$ac_cv_search_strerror" != no; then
2484 test "$ac_cv_search_strerror" = "none required" || LIBS="$ac_cv_search_strerror $LIBS"
979273e3 2485
8ae85421 2486fi
979273e3
NN
2487
2488
2489# We currently only use the version number for the name of any shared
2490# library. For user convenience, we always use the same version
2491# number that BFD is using.
2492BFD_VERSION=`sed -n -e 's/^.._INIT_AUTOMAKE.*,[ ]*\([^ ]*\)[ ]*).*/\1/p' < ${srcdir}/../bfd/configure.in`
2493
8ae85421 2494am__api_version="1.9"
979273e3
NN
2495# Find a good install program. We prefer a C program (faster),
2496# so one script is as good as another. But avoid the broken or
2497# incompatible versions:
2498# SysV /etc/install, /usr/sbin/install
2499# SunOS /usr/etc/install
2500# IRIX /sbin/install
2501# AIX /bin/install
2502# AmigaOS /C/install, which installs bootblocks on floppy discs
2503# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
2504# AFS /usr/afsws/bin/install, which mishandles nonexistent args
252b5132 2505# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
979273e3 2506# OS/2's system install, which has a completely different semantic
252b5132 2507# ./install, which can be erroneously created by make from ./install.sh.
979273e3
NN
2508echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
2509echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
252b5132 2510if test -z "$INSTALL"; then
979273e3
NN
2511if test "${ac_cv_path_install+set}" = set; then
2512 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 2513else
979273e3
NN
2514 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2515for as_dir in $PATH
2516do
2517 IFS=$as_save_IFS
2518 test -z "$as_dir" && as_dir=.
2519 # Account for people who put trailing slashes in PATH elements.
2520case $as_dir/ in
2521 ./ | .// | /cC/* | \
2522 /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
2523 ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \
2524 /usr/ucb/* ) ;;
2525 *)
2526 # OSF1 and SCO ODT 3.0 have their own names for install.
2527 # Don't use installbsd from OSF since it installs stuff as root
2528 # by default.
2529 for ac_prog in ginstall scoinst install; do
2530 for ac_exec_ext in '' $ac_executable_extensions; do
2531 if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
252b5132 2532 if test $ac_prog = install &&
979273e3 2533 grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
252b5132
RH
2534 # AIX install. It has an incompatible calling convention.
2535 :
979273e3
NN
2536 elif test $ac_prog = install &&
2537 grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
2538 # program-specific install script used by HP pwplus--don't use.
2539 :
252b5132 2540 else
979273e3
NN
2541 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
2542 break 3
252b5132
RH
2543 fi
2544 fi
2545 done
979273e3
NN
2546 done
2547 ;;
2548esac
2549done
2550
252b5132
RH
2551
2552fi
2553 if test "${ac_cv_path_install+set}" = set; then
979273e3 2554 INSTALL=$ac_cv_path_install
252b5132
RH
2555 else
2556 # As a last resort, use the slow shell script. We don't cache a
2557 # path for INSTALL within a source directory, because that will
2558 # break other packages using the cache if that directory is
2559 # removed, or if the path is relative.
979273e3 2560 INSTALL=$ac_install_sh
252b5132
RH
2561 fi
2562fi
979273e3
NN
2563echo "$as_me:$LINENO: result: $INSTALL" >&5
2564echo "${ECHO_T}$INSTALL" >&6
252b5132
RH
2565
2566# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
2567# It thinks the first close brace ends the variable substitution.
2568test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
2569
979273e3 2570test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
252b5132
RH
2571
2572test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
2573
979273e3
NN
2574echo "$as_me:$LINENO: checking whether build environment is sane" >&5
2575echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6
252b5132
RH
2576# Just in case
2577sleep 1
8ae85421 2578echo timestamp > conftest.file
252b5132
RH
2579# Do `set' in a subshell so we don't clobber the current shell's
2580# arguments. Must try -L first in case configure is actually a
2581# symlink; some systems play weird games with the mod time of symlinks
2582# (eg FreeBSD returns the mod time of the symlink's containing
2583# directory).
2584if (
8ae85421 2585 set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
252b5132
RH
2586 if test "$*" = "X"; then
2587 # -L didn't work.
8ae85421 2588 set X `ls -t $srcdir/configure conftest.file`
252b5132 2589 fi
8ae85421
AM
2590 rm -f conftest.file
2591 if test "$*" != "X $srcdir/configure conftest.file" \
2592 && test "$*" != "X conftest.file $srcdir/configure"; then
252b5132
RH
2593
2594 # If neither matched, then we have a broken ls. This can happen
2595 # if, for instance, CONFIG_SHELL is bash and it inherits a
2596 # broken ls alias from the environment. This has actually
2597 # happened. Such a system could not be considered "sane".
979273e3
NN
2598 { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken
2599alias in your environment" >&5
2600echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken
2601alias in your environment" >&2;}
2602 { (exit 1); exit 1; }; }
252b5132
RH
2603 fi
2604
8ae85421 2605 test "$2" = conftest.file
252b5132
RH
2606 )
2607then
2608 # Ok.
2609 :
2610else
979273e3
NN
2611 { { echo "$as_me:$LINENO: error: newly created file is older than distributed files!
2612Check your system clock" >&5
2613echo "$as_me: error: newly created file is older than distributed files!
2614Check your system clock" >&2;}
2615 { (exit 1); exit 1; }; }
252b5132 2616fi
979273e3
NN
2617echo "$as_me:$LINENO: result: yes" >&5
2618echo "${ECHO_T}yes" >&6
252b5132 2619test "$program_prefix" != NONE &&
979273e3 2620 program_transform_name="s,^,$program_prefix,;$program_transform_name"
252b5132
RH
2621# Use a double $ so make ignores it.
2622test "$program_suffix" != NONE &&
979273e3
NN
2623 program_transform_name="s,\$,$program_suffix,;$program_transform_name"
2624# Double any \ or $. echo might interpret backslashes.
2625# By default was `s,x,x', remove it if useless.
2626cat <<\_ACEOF >conftest.sed
2627s/[\\$]/&&/g;s/;s,x,x,$//
2628_ACEOF
2629program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
2630rm conftest.sed
2631
8ae85421
AM
2632# expand $ac_aux_dir to an absolute path
2633am_aux_dir=`cd $ac_aux_dir && pwd`
2634
2635test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
2636# Use eval to expand $SHELL
2637if eval "$MISSING --run true"; then
2638 am_missing_run="$MISSING --run "
2639else
2640 am_missing_run=
2641 { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5
2642echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
2643fi
2644
2645if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
2646 # We used to keeping the `.' as first argument, in order to
2647 # allow $(mkdir_p) to be used without argument. As in
2648 # $(mkdir_p) $(somedir)
2649 # where $(somedir) is conditionally defined. However this is wrong
2650 # for two reasons:
2651 # 1. if the package is installed by a user who cannot write `.'
2652 # make install will fail,
2653 # 2. the above comment should most certainly read
2654 # $(mkdir_p) $(DESTDIR)$(somedir)
2655 # so it does not work when $(somedir) is undefined and
2656 # $(DESTDIR) is not.
2657 # To support the latter case, we have to write
2658 # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
2659 # so the `.' trick is pointless.
2660 mkdir_p='mkdir -p --'
2661else
2662 # On NextStep and OpenStep, the `mkdir' command does not
2663 # recognize any option. It will interpret all options as
2664 # directories to create, and then abort because `.' already
2665 # exists.
2666 for d in ./-p ./--version;
2667 do
2668 test -d $d && rmdir $d
2669 done
2670 # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
2671 if test -f "$ac_aux_dir/mkinstalldirs"; then
2672 mkdir_p='$(mkinstalldirs)'
2673 else
2674 mkdir_p='$(install_sh) -d'
2675 fi
2676fi
2677
2678for ac_prog in gawk mawk nawk awk
2679do
2680 # Extract the first word of "$ac_prog", so it can be a program name with args.
2681set dummy $ac_prog; ac_word=$2
2682echo "$as_me:$LINENO: checking for $ac_word" >&5
2683echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
2684if test "${ac_cv_prog_AWK+set}" = set; then
2685 echo $ECHO_N "(cached) $ECHO_C" >&6
2686else
2687 if test -n "$AWK"; then
2688 ac_cv_prog_AWK="$AWK" # Let the user override the test.
2689else
2690as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2691for as_dir in $PATH
2692do
2693 IFS=$as_save_IFS
2694 test -z "$as_dir" && as_dir=.
2695 for ac_exec_ext in '' $ac_executable_extensions; do
2696 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2697 ac_cv_prog_AWK="$ac_prog"
2698 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2699 break 2
2700 fi
2701done
2702done
2703
2704fi
2705fi
2706AWK=$ac_cv_prog_AWK
2707if test -n "$AWK"; then
2708 echo "$as_me:$LINENO: result: $AWK" >&5
2709echo "${ECHO_T}$AWK" >&6
2710else
2711 echo "$as_me:$LINENO: result: no" >&5
2712echo "${ECHO_T}no" >&6
2713fi
2714
2715 test -n "$AWK" && break
2716done
2717
979273e3
NN
2718echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
2719echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6
2720set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'`
2721if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
2722 echo $ECHO_N "(cached) $ECHO_C" >&6
2723else
2724 cat >conftest.make <<\_ACEOF
252b5132 2725all:
979273e3
NN
2726 @echo 'ac_maketemp="$(MAKE)"'
2727_ACEOF
252b5132 2728# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
979273e3 2729eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
252b5132
RH
2730if test -n "$ac_maketemp"; then
2731 eval ac_cv_prog_make_${ac_make}_set=yes
2732else
2733 eval ac_cv_prog_make_${ac_make}_set=no
2734fi
979273e3 2735rm -f conftest.make
252b5132
RH
2736fi
2737if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
979273e3
NN
2738 echo "$as_me:$LINENO: result: yes" >&5
2739echo "${ECHO_T}yes" >&6
252b5132
RH
2740 SET_MAKE=
2741else
979273e3
NN
2742 echo "$as_me:$LINENO: result: no" >&5
2743echo "${ECHO_T}no" >&6
252b5132
RH
2744 SET_MAKE="MAKE=${MAKE-make}"
2745fi
2746
8ae85421
AM
2747rm -rf .tst 2>/dev/null
2748mkdir .tst 2>/dev/null
2749if test -d .tst; then
2750 am__leading_dot=.
2751else
2752 am__leading_dot=_
2753fi
2754rmdir .tst 2>/dev/null
2755
2756DEPDIR="${am__leading_dot}deps"
2757
2758 ac_config_commands="$ac_config_commands depfiles"
2759
2760
2761am_make=${MAKE-make}
2762cat > confinc << 'END'
2763am__doit:
2764 @echo done
2765.PHONY: am__doit
2766END
2767# If we don't find an include directive, just comment out the code.
2768echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5
2769echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6
2770am__include="#"
2771am__quote=
2772_am_result=none
2773# First try GNU make style include.
2774echo "include confinc" > confmf
2775# We grep out `Entering directory' and `Leaving directory'
2776# messages which can occur if `w' ends up in MAKEFLAGS.
2777# In particular we don't look at `^make:' because GNU make might
2778# be invoked under some other name (usually "gmake"), in which
2779# case it prints its new name instead of `make'.
2780if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
2781 am__include=include
2782 am__quote=
2783 _am_result=GNU
2784fi
2785# Now try BSD make style include.
2786if test "$am__include" = "#"; then
2787 echo '.include "confinc"' > confmf
2788 if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
2789 am__include=.include
2790 am__quote="\""
2791 _am_result=BSD
2792 fi
2793fi
2794
2795
2796echo "$as_me:$LINENO: result: $_am_result" >&5
2797echo "${ECHO_T}$_am_result" >&6
2798rm -f confinc confmf
2799
2800# Check whether --enable-dependency-tracking or --disable-dependency-tracking was given.
2801if test "${enable_dependency_tracking+set}" = set; then
2802 enableval="$enable_dependency_tracking"
2803
2804fi;
2805if test "x$enable_dependency_tracking" != xno; then
2806 am_depcomp="$ac_aux_dir/depcomp"
2807 AMDEPBACKSLASH='\'
2808fi
2809
2810
2811if test "x$enable_dependency_tracking" != xno; then
2812 AMDEP_TRUE=
2813 AMDEP_FALSE='#'
2814else
2815 AMDEP_TRUE='#'
2816 AMDEP_FALSE=
2817fi
252b5132 2818
252b5132 2819
252b5132 2820
8ae85421
AM
2821# test to see if srcdir already configured
2822if test "`cd $srcdir && pwd`" != "`pwd`" &&
2823 test -f $srcdir/config.status; then
979273e3
NN
2824 { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
2825echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
2826 { (exit 1); exit 1; }; }
252b5132 2827fi
979273e3 2828
8ae85421
AM
2829# test whether we have cygpath
2830if test -z "$CYGPATH_W"; then
2831 if (cygpath --version) >/dev/null 2>/dev/null; then
2832 CYGPATH_W='cygpath -w'
2833 else
2834 CYGPATH_W=echo
2835 fi
2836fi
2837
2838
2839# Define the identity of the package.
2840 PACKAGE=opcodes
2841 VERSION=${BFD_VERSION}
2842
2843
979273e3 2844cat >>confdefs.h <<_ACEOF
252b5132 2845#define PACKAGE "$PACKAGE"
979273e3 2846_ACEOF
252b5132 2847
979273e3
NN
2848
2849cat >>confdefs.h <<_ACEOF
252b5132 2850#define VERSION "$VERSION"
979273e3 2851_ACEOF
252b5132 2852
8ae85421 2853# Some tools Automake needs.
252b5132 2854
8ae85421 2855ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
252b5132 2856
8ae85421
AM
2857
2858AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
2859
2860
2861AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
2862
2863
2864AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
2865
2866
2867MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
2868
2869install_sh=${install_sh-"$am_aux_dir/install-sh"}
2870
2871# Installed binaries are usually stripped using `strip' when the user
2872# run `make install-strip'. However `strip' might not be the right
2873# tool to use in cross-compilation environments, therefore Automake
2874# will honor the `STRIP' environment variable to overrule this program.
2875if test "$cross_compiling" != no; then
2876 if test -n "$ac_tool_prefix"; then
2877 # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
2878set dummy ${ac_tool_prefix}strip; ac_word=$2
2879echo "$as_me:$LINENO: checking for $ac_word" >&5
2880echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
2881if test "${ac_cv_prog_STRIP+set}" = set; then
2882 echo $ECHO_N "(cached) $ECHO_C" >&6
2883else
2884 if test -n "$STRIP"; then
2885 ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
2886else
2887as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2888for as_dir in $PATH
2889do
2890 IFS=$as_save_IFS
2891 test -z "$as_dir" && as_dir=.
2892 for ac_exec_ext in '' $ac_executable_extensions; do
2893 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2894 ac_cv_prog_STRIP="${ac_tool_prefix}strip"
2895 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2896 break 2
2897 fi
2898done
2899done
2900
2901fi
2902fi
2903STRIP=$ac_cv_prog_STRIP
2904if test -n "$STRIP"; then
2905 echo "$as_me:$LINENO: result: $STRIP" >&5
2906echo "${ECHO_T}$STRIP" >&6
252b5132 2907else
8ae85421
AM
2908 echo "$as_me:$LINENO: result: no" >&5
2909echo "${ECHO_T}no" >&6
252b5132
RH
2910fi
2911
8ae85421
AM
2912fi
2913if test -z "$ac_cv_prog_STRIP"; then
2914 ac_ct_STRIP=$STRIP
2915 # Extract the first word of "strip", so it can be a program name with args.
2916set dummy strip; ac_word=$2
2917echo "$as_me:$LINENO: checking for $ac_word" >&5
2918echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
2919if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
2920 echo $ECHO_N "(cached) $ECHO_C" >&6
2921else
2922 if test -n "$ac_ct_STRIP"; then
2923 ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
2924else
2925as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2926for as_dir in $PATH
2927do
2928 IFS=$as_save_IFS
2929 test -z "$as_dir" && as_dir=.
2930 for ac_exec_ext in '' $ac_executable_extensions; do
2931 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2932 ac_cv_prog_ac_ct_STRIP="strip"
2933 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2934 break 2
2935 fi
2936done
2937done
2938
2939 test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":"
2940fi
2941fi
2942ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
2943if test -n "$ac_ct_STRIP"; then
2944 echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
2945echo "${ECHO_T}$ac_ct_STRIP" >&6
252b5132 2946else
8ae85421
AM
2947 echo "$as_me:$LINENO: result: no" >&5
2948echo "${ECHO_T}no" >&6
252b5132
RH
2949fi
2950
8ae85421 2951 STRIP=$ac_ct_STRIP
252b5132 2952else
8ae85421 2953 STRIP="$ac_cv_prog_STRIP"
252b5132
RH
2954fi
2955
8ae85421
AM
2956fi
2957INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
2958
2959# We need awk for the "check" target. The system "awk" is bad on
2960# some platforms.
2961# Always define AMTAR for backward compatibility.
2962
2963AMTAR=${AMTAR-"${am_missing_run}tar"}
2964
2965am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
2966
2967
2968
2969
2970depcc="$CC" am_compiler_list=
2971
2972echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
2973echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6
2974if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
2975 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 2976else
8ae85421
AM
2977 if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
2978 # We make a subdir and do the tests there. Otherwise we can end up
2979 # making bogus files that we don't know about and never remove. For
2980 # instance it was reported that on HP-UX the gcc test will end up
2981 # making a dummy file named `D' -- because `-MD' means `put the output
2982 # in D'.
2983 mkdir conftest.dir
2984 # Copy depcomp to subdir because otherwise we won't find it if we're
2985 # using a relative directory.
2986 cp "$am_depcomp" conftest.dir
2987 cd conftest.dir
2988 # We will build objects and dependencies in a subdirectory because
2989 # it helps to detect inapplicable dependency modes. For instance
2990 # both Tru64's cc and ICC support -MD to output dependencies as a
2991 # side effect of compilation, but ICC will put the dependencies in
2992 # the current directory while Tru64 will put them in the object
2993 # directory.
2994 mkdir sub
2995
2996 am_cv_CC_dependencies_compiler_type=none
2997 if test "$am_compiler_list" = ""; then
2998 am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
2999 fi
3000 for depmode in $am_compiler_list; do
3001 # Setup a source with many dependencies, because some compilers
3002 # like to wrap large dependency lists on column 80 (with \), and
3003 # we should not choose a depcomp mode which is confused by this.
3004 #
3005 # We need to recreate these files for each test, as the compiler may
3006 # overwrite some of them when testing with obscure command lines.
3007 # This happens at least with the AIX C compiler.
3008 : > sub/conftest.c
3009 for i in 1 2 3 4 5 6; do
3010 echo '#include "conftst'$i'.h"' >> sub/conftest.c
3011 # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
3012 # Solaris 8's {/usr,}/bin/sh.
3013 touch sub/conftst$i.h
3014 done
3015 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
3016
3017 case $depmode in
3018 nosideeffect)
3019 # after this tag, mechanisms are not by side-effect, so they'll
3020 # only be used when explicitly requested
3021 if test "x$enable_dependency_tracking" = xyes; then
3022 continue
3023 else
3024 break
3025 fi
3026 ;;
3027 none) break ;;
3028 esac
3029 # We check with `-c' and `-o' for the sake of the "dashmstdout"
3030 # mode. It turns out that the SunPro C++ compiler does not properly
3031 # handle `-M -o', and we need to detect this.
3032 if depmode=$depmode \
3033 source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
3034 depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
3035 $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
3036 >/dev/null 2>conftest.err &&
3037 grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
3038 grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
3039 ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
3040 # icc doesn't choke on unknown options, it will just issue warnings
3041 # or remarks (even with -Werror). So we grep stderr for any message
3042 # that says an option was ignored or not supported.
3043 # When given -MP, icc 7.0 and 7.1 complain thusly:
3044 # icc: Command line warning: ignoring option '-M'; no argument required
3045 # The diagnosis changed in icc 8.0:
3046 # icc: Command line remark: option '-MP' not supported
3047 if (grep 'ignoring option' conftest.err ||
3048 grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
3049 am_cv_CC_dependencies_compiler_type=$depmode
3050 break
3051 fi
3052 fi
3053 done
3054
3055 cd ..
3056 rm -rf conftest.dir
3057else
3058 am_cv_CC_dependencies_compiler_type=none
3059fi
3060
252b5132 3061fi
8ae85421
AM
3062echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
3063echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6
3064CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
3065
3066
252b5132 3067
8ae85421
AM
3068if
3069 test "x$enable_dependency_tracking" != xno \
3070 && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
3071 am__fastdepCC_TRUE=
3072 am__fastdepCC_FALSE='#'
252b5132 3073else
8ae85421
AM
3074 am__fastdepCC_TRUE='#'
3075 am__fastdepCC_FALSE=
252b5132
RH
3076fi
3077
3078
3079
8ae85421 3080
979273e3
NN
3081if test -n "$ac_tool_prefix"; then
3082 # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
252b5132 3083set dummy ${ac_tool_prefix}ar; ac_word=$2
979273e3
NN
3084echo "$as_me:$LINENO: checking for $ac_word" >&5
3085echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3086if test "${ac_cv_prog_AR+set}" = set; then
3087 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
3088else
3089 if test -n "$AR"; then
3090 ac_cv_prog_AR="$AR" # Let the user override the test.
3091else
979273e3
NN
3092as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3093for as_dir in $PATH
3094do
3095 IFS=$as_save_IFS
3096 test -z "$as_dir" && as_dir=.
3097 for ac_exec_ext in '' $ac_executable_extensions; do
3098 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3099 ac_cv_prog_AR="${ac_tool_prefix}ar"
3100 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3101 break 2
3102 fi
3103done
3104done
3105
252b5132
RH
3106fi
3107fi
979273e3 3108AR=$ac_cv_prog_AR
252b5132 3109if test -n "$AR"; then
979273e3
NN
3110 echo "$as_me:$LINENO: result: $AR" >&5
3111echo "${ECHO_T}$AR" >&6
252b5132 3112else
979273e3
NN
3113 echo "$as_me:$LINENO: result: no" >&5
3114echo "${ECHO_T}no" >&6
3115fi
3116
252b5132 3117fi
979273e3
NN
3118if test -z "$ac_cv_prog_AR"; then
3119 ac_ct_AR=$AR
3120 # Extract the first word of "ar", so it can be a program name with args.
3121set dummy ar; ac_word=$2
3122echo "$as_me:$LINENO: checking for $ac_word" >&5
3123echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3124if test "${ac_cv_prog_ac_ct_AR+set}" = set; then
3125 echo $ECHO_N "(cached) $ECHO_C" >&6
3126else
3127 if test -n "$ac_ct_AR"; then
3128 ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test.
3129else
3130as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3131for as_dir in $PATH
3132do
3133 IFS=$as_save_IFS
3134 test -z "$as_dir" && as_dir=.
3135 for ac_exec_ext in '' $ac_executable_extensions; do
3136 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3137 ac_cv_prog_ac_ct_AR="ar"
3138 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3139 break 2
3140 fi
3141done
3142done
252b5132 3143
979273e3
NN
3144fi
3145fi
3146ac_ct_AR=$ac_cv_prog_ac_ct_AR
3147if test -n "$ac_ct_AR"; then
3148 echo "$as_me:$LINENO: result: $ac_ct_AR" >&5
3149echo "${ECHO_T}$ac_ct_AR" >&6
3150else
3151 echo "$as_me:$LINENO: result: no" >&5
3152echo "${ECHO_T}no" >&6
3153fi
252b5132 3154
979273e3
NN
3155 AR=$ac_ct_AR
3156else
3157 AR="$ac_cv_prog_AR"
3158fi
252b5132 3159
979273e3
NN
3160if test -n "$ac_tool_prefix"; then
3161 # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
252b5132 3162set dummy ${ac_tool_prefix}ranlib; ac_word=$2
979273e3
NN
3163echo "$as_me:$LINENO: checking for $ac_word" >&5
3164echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3165if test "${ac_cv_prog_RANLIB+set}" = set; then
3166 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
3167else
3168 if test -n "$RANLIB"; then
3169 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
3170else
979273e3
NN
3171as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3172for as_dir in $PATH
3173do
3174 IFS=$as_save_IFS
3175 test -z "$as_dir" && as_dir=.
3176 for ac_exec_ext in '' $ac_executable_extensions; do
3177 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3178 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
3179 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3180 break 2
3181 fi
3182done
3183done
3184
252b5132
RH
3185fi
3186fi
979273e3 3187RANLIB=$ac_cv_prog_RANLIB
252b5132 3188if test -n "$RANLIB"; then
979273e3
NN
3189 echo "$as_me:$LINENO: result: $RANLIB" >&5
3190echo "${ECHO_T}$RANLIB" >&6
252b5132 3191else
979273e3
NN
3192 echo "$as_me:$LINENO: result: no" >&5
3193echo "${ECHO_T}no" >&6
252b5132
RH
3194fi
3195
979273e3 3196fi
252b5132 3197if test -z "$ac_cv_prog_RANLIB"; then
979273e3 3198 ac_ct_RANLIB=$RANLIB
252b5132
RH
3199 # Extract the first word of "ranlib", so it can be a program name with args.
3200set dummy ranlib; ac_word=$2
979273e3
NN
3201echo "$as_me:$LINENO: checking for $ac_word" >&5
3202echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3203if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
3204 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 3205else
979273e3
NN
3206 if test -n "$ac_ct_RANLIB"; then
3207 ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
252b5132 3208else
979273e3
NN
3209as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3210for as_dir in $PATH
3211do
3212 IFS=$as_save_IFS
3213 test -z "$as_dir" && as_dir=.
3214 for ac_exec_ext in '' $ac_executable_extensions; do
3215 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3216 ac_cv_prog_ac_ct_RANLIB="ranlib"
3217 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3218 break 2
3219 fi
3220done
3221done
3222
3223 test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":"
252b5132
RH
3224fi
3225fi
979273e3
NN
3226ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
3227if test -n "$ac_ct_RANLIB"; then
3228 echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
3229echo "${ECHO_T}$ac_ct_RANLIB" >&6
252b5132 3230else
979273e3
NN
3231 echo "$as_me:$LINENO: result: no" >&5
3232echo "${ECHO_T}no" >&6
252b5132
RH
3233fi
3234
979273e3 3235 RANLIB=$ac_ct_RANLIB
252b5132 3236else
979273e3 3237 RANLIB="$ac_cv_prog_RANLIB"
252b5132
RH
3238fi
3239
3240
3241# Check whether --enable-shared or --disable-shared was given.
3242if test "${enable_shared+set}" = set; then
3243 enableval="$enable_shared"
3244 p=${PACKAGE-default}
87e6d782 3245case $enableval in
252b5132
RH
3246yes) enable_shared=yes ;;
3247no) enable_shared=no ;;
3248*)
3249 enable_shared=no
3250 # Look at the argument we got. We use all the common list separators.
3251 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
3252 for pkg in $enableval; do
3253 if test "X$pkg" = "X$p"; then
3254 enable_shared=yes
3255 fi
3256 done
3257 IFS="$ac_save_ifs"
3258 ;;
3259esac
3260else
3261 enable_shared=no
979273e3 3262fi;
252b5132
RH
3263
3264# Check whether --enable-static or --disable-static was given.
3265if test "${enable_static+set}" = set; then
3266 enableval="$enable_static"
3267 p=${PACKAGE-default}
87e6d782 3268case $enableval in
252b5132
RH
3269yes) enable_static=yes ;;
3270no) enable_static=no ;;
3271*)
3272 enable_static=no
3273 # Look at the argument we got. We use all the common list separators.
3274 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
3275 for pkg in $enableval; do
3276 if test "X$pkg" = "X$p"; then
3277 enable_static=yes
3278 fi
3279 done
3280 IFS="$ac_save_ifs"
3281 ;;
3282esac
3283else
3284 enable_static=yes
979273e3 3285fi;
252b5132
RH
3286# Check whether --enable-fast-install or --disable-fast-install was given.
3287if test "${enable_fast_install+set}" = set; then
3288 enableval="$enable_fast_install"
3289 p=${PACKAGE-default}
87e6d782 3290case $enableval in
252b5132
RH
3291yes) enable_fast_install=yes ;;
3292no) enable_fast_install=no ;;
3293*)
3294 enable_fast_install=no
3295 # Look at the argument we got. We use all the common list separators.
3296 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
3297 for pkg in $enableval; do
3298 if test "X$pkg" = "X$p"; then
3299 enable_fast_install=yes
3300 fi
3301 done
3302 IFS="$ac_save_ifs"
3303 ;;
3304esac
3305else
3306 enable_fast_install=yes
979273e3 3307fi;
75798298 3308
252b5132
RH
3309# Check whether --with-gnu-ld or --without-gnu-ld was given.
3310if test "${with_gnu_ld+set}" = set; then
3311 withval="$with_gnu_ld"
3312 test "$withval" = no || with_gnu_ld=yes
3313else
3314 with_gnu_ld=no
979273e3 3315fi;
252b5132 3316ac_prog=ld
87e6d782 3317if test "$GCC" = yes; then
252b5132 3318 # Check if gcc -print-prog-name=ld gives a path.
979273e3
NN
3319 echo "$as_me:$LINENO: checking for ld used by GCC" >&5
3320echo $ECHO_N "checking for ld used by GCC... $ECHO_C" >&6
ac48eca1
AO
3321 case $host in
3322 *-*-mingw*)
3323 # gcc leaves a trailing carriage return which upsets mingw
3324 ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
3325 *)
3326 ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
3327 esac
87e6d782 3328 case $ac_prog in
252b5132 3329 # Accept absolute paths.
a74801ba 3330 [\\/]* | [A-Za-z]:[\\/]*)
252b5132
RH
3331 re_direlt='/[^/][^/]*/\.\./'
3332 # Canonicalize the path of ld
3333 ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
3334 while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
3335 ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
3336 done
3337 test -z "$LD" && LD="$ac_prog"
3338 ;;
3339 "")
3340 # If it fails, then pretend we aren't using GCC.
3341 ac_prog=ld
3342 ;;
3343 *)
3344 # If it is relative, then search for the first ld in PATH.
3345 with_gnu_ld=unknown
3346 ;;
3347 esac
3348elif test "$with_gnu_ld" = yes; then
979273e3
NN
3349 echo "$as_me:$LINENO: checking for GNU ld" >&5
3350echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6
252b5132 3351else
979273e3
NN
3352 echo "$as_me:$LINENO: checking for non-GNU ld" >&5
3353echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6
252b5132 3354fi
979273e3
NN
3355if test "${lt_cv_path_LD+set}" = set; then
3356 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
3357else
3358 if test -z "$LD"; then
a74801ba 3359 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
252b5132
RH
3360 for ac_dir in $PATH; do
3361 test -z "$ac_dir" && ac_dir=.
a74801ba 3362 if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
87e6d782 3363 lt_cv_path_LD="$ac_dir/$ac_prog"
252b5132
RH
3364 # Check to see if the program is GNU ld. I'd rather use --version,
3365 # but apparently some GNU ld's only accept -v.
3366 # Break only if it was the GNU/non-GNU ld that we prefer.
87e6d782 3367 if "$lt_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
252b5132
RH
3368 test "$with_gnu_ld" != no && break
3369 else
3370 test "$with_gnu_ld" != yes && break
3371 fi
3372 fi
3373 done
3374 IFS="$ac_save_ifs"
3375else
87e6d782 3376 lt_cv_path_LD="$LD" # Let the user override the test with a path.
252b5132
RH
3377fi
3378fi
3379
87e6d782 3380LD="$lt_cv_path_LD"
252b5132 3381if test -n "$LD"; then
979273e3
NN
3382 echo "$as_me:$LINENO: result: $LD" >&5
3383echo "${ECHO_T}$LD" >&6
252b5132 3384else
979273e3
NN
3385 echo "$as_me:$LINENO: result: no" >&5
3386echo "${ECHO_T}no" >&6
252b5132 3387fi
979273e3
NN
3388test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5
3389echo "$as_me: error: no acceptable ld found in \$PATH" >&2;}
3390 { (exit 1); exit 1; }; }
3391echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5
3392echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6
3393if test "${lt_cv_prog_gnu_ld+set}" = set; then
3394 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
3395else
3396 # I'd rather use --version here, but apparently some GNU ld's only accept -v.
3397if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
87e6d782 3398 lt_cv_prog_gnu_ld=yes
252b5132 3399else
87e6d782 3400 lt_cv_prog_gnu_ld=no
252b5132
RH
3401fi
3402fi
979273e3
NN
3403echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5
3404echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6
87e6d782 3405with_gnu_ld=$lt_cv_prog_gnu_ld
ac48eca1
AO
3406
3407
979273e3
NN
3408echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5
3409echo $ECHO_N "checking for $LD option to reload object files... $ECHO_C" >&6
3410if test "${lt_cv_ld_reload_flag+set}" = set; then
3411 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1
AO
3412else
3413 lt_cv_ld_reload_flag='-r'
3414fi
979273e3
NN
3415echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5
3416echo "${ECHO_T}$lt_cv_ld_reload_flag" >&6
ac48eca1
AO
3417reload_flag=$lt_cv_ld_reload_flag
3418test -n "$reload_flag" && reload_flag=" $reload_flag"
252b5132 3419
979273e3
NN
3420echo "$as_me:$LINENO: checking for BSD-compatible nm" >&5
3421echo $ECHO_N "checking for BSD-compatible nm... $ECHO_C" >&6
3422if test "${lt_cv_path_NM+set}" = set; then
3423 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
3424else
3425 if test -n "$NM"; then
3426 # Let the user override the test.
87e6d782 3427 lt_cv_path_NM="$NM"
252b5132 3428else
a74801ba 3429 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
252b5132
RH
3430 for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do
3431 test -z "$ac_dir" && ac_dir=.
ac48eca1
AO
3432 tmp_nm=$ac_dir/${ac_tool_prefix}nm
3433 if test -f $tmp_nm || test -f $tmp_nm$ac_exeext ; then
252b5132
RH
3434 # Check to see if the nm accepts a BSD-compat flag.
3435 # Adding the `sed 1q' prevents false positives on HP-UX, which says:
3436 # nm: unknown option "B" ignored
90f2472a
AO
3437 # Tru64's nm complains that /dev/null is an invalid object file
3438 if ($tmp_nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep '(/dev/null|Invalid file or object type)' >/dev/null; then
87e6d782 3439 lt_cv_path_NM="$tmp_nm -B"
252b5132 3440 break
ac48eca1 3441 elif ($tmp_nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
87e6d782 3442 lt_cv_path_NM="$tmp_nm -p"
252b5132
RH
3443 break
3444 else
87e6d782 3445 lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
252b5132
RH
3446 continue # so that we can try to find one that supports BSD flags
3447 fi
3448 fi
3449 done
3450 IFS="$ac_save_ifs"
87e6d782 3451 test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm
252b5132
RH
3452fi
3453fi
3454
87e6d782 3455NM="$lt_cv_path_NM"
979273e3
NN
3456echo "$as_me:$LINENO: result: $NM" >&5
3457echo "${ECHO_T}$NM" >&6
252b5132 3458
979273e3
NN
3459echo "$as_me:$LINENO: checking whether ln -s works" >&5
3460echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6
3461LN_S=$as_ln_s
3462if test "$LN_S" = "ln -s"; then
3463 echo "$as_me:$LINENO: result: yes" >&5
3464echo "${ECHO_T}yes" >&6
252b5132 3465else
979273e3
NN
3466 echo "$as_me:$LINENO: result: no, using $LN_S" >&5
3467echo "${ECHO_T}no, using $LN_S" >&6
252b5132
RH
3468fi
3469
979273e3
NN
3470echo "$as_me:$LINENO: checking how to recognise dependant libraries" >&5
3471echo $ECHO_N "checking how to recognise dependant libraries... $ECHO_C" >&6
3472if test "${lt_cv_deplibs_check_method+set}" = set; then
3473 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1 3474else
d64552c5 3475 lt_cv_file_magic_cmd='$MAGIC_CMD'
ac48eca1
AO
3476lt_cv_file_magic_test_file=
3477lt_cv_deplibs_check_method='unknown'
3478# Need to set the preceding variable on all platforms that support
3479# interlibrary dependencies.
3480# 'none' -- dependencies not supported.
3481# `unknown' -- same as none, but documents that we really don't know.
3482# 'pass_all' -- all dependencies passed with no checks.
3483# 'test_compile' -- check by making test program.
3484# 'file_magic [regex]' -- check by looking for files in library path
3485# which responds to the $file_magic_cmd with a given egrep regex.
3486# If you have `file' or equivalent on your system and you're not sure
3487# whether `pass_all' will *always* work, you probably want this one.
3488
87e6d782
NC
3489case $host_os in
3490aix*)
ac48eca1
AO
3491 lt_cv_deplibs_check_method=pass_all
3492 ;;
3493
3494beos*)
3495 lt_cv_deplibs_check_method=pass_all
3496 ;;
3497
3498bsdi4*)
87e6d782
NC
3499 lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)'
3500 lt_cv_file_magic_cmd='/usr/bin/file -L'
ac48eca1
AO
3501 lt_cv_file_magic_test_file=/shlib/libc.so
3502 ;;
3503
d64552c5 3504cygwin* | mingw* |pw32*)
ac48eca1 3505 lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
d64552c5 3506 lt_cv_file_magic_cmd='$OBJDUMP -f'
ac48eca1
AO
3507 ;;
3508
87e6d782 3509darwin* | rhapsody*)
32fba81d 3510 # this will be overwritten by pass_all, but leave it in just in case
87e6d782
NC
3511 lt_cv_deplibs_check_method='file_magic Mach-O dynamically linked shared library'
3512 lt_cv_file_magic_cmd='/usr/bin/file -L'
3513 case "$host_os" in
3514 rhapsody* | darwin1.012)
3515 lt_cv_file_magic_test_file='/System/Library/Frameworks/System.framework/System'
3516 ;;
3517 *) # Darwin 1.3 on
3518 lt_cv_file_magic_test_file='/usr/lib/libSystem.dylib'
3519 ;;
3520 esac
32fba81d 3521 lt_cv_deplibs_check_method=pass_all
87e6d782
NC
3522 ;;
3523
979273e3 3524freebsd* | kfreebsd*-gnu)
ac48eca1 3525 if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
87e6d782 3526 case $host_cpu in
ac48eca1 3527 i*86 )
90f2472a
AO
3528 # Not sure whether the presence of OpenBSD here was a mistake.
3529 # Let's accept both of them until this is cleared up.
87e6d782
NC
3530 lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD)/i[3-9]86 (compact )?demand paged shared library'
3531 lt_cv_file_magic_cmd=/usr/bin/file
ac48eca1
AO
3532 lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
3533 ;;
3534 esac
3535 else
3536 lt_cv_deplibs_check_method=pass_all
3537 fi
3538 ;;
3539
3540gnu*)
3541 lt_cv_deplibs_check_method=pass_all
3542 ;;
3543
87e6d782 3544hpux10.20*|hpux11*)
4867be41
DJ
3545 case $host_cpu in
3546 hppa*)
3547 lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library'
3548 lt_cv_file_magic_cmd=/usr/bin/file
3549 lt_cv_file_magic_test_file=/usr/lib/libc.sl
3550 ;;
3551 ia64*)
3552 lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64'
3553 lt_cv_file_magic_cmd=/usr/bin/file
3554 lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
3555 ;;
3556 esac
ac48eca1
AO
3557 ;;
3558
3559irix5* | irix6*)
87e6d782 3560 case $host_os in
ac48eca1
AO
3561 irix5*)
3562 # this will be overridden with pass_all, but let us keep it just in case
3563 lt_cv_deplibs_check_method="file_magic ELF 32-bit MSB dynamic lib MIPS - version 1"
3564 ;;
3565 *)
87e6d782 3566 case $LD in
ac48eca1
AO
3567 *-32|*"-32 ") libmagic=32-bit;;
3568 *-n32|*"-n32 ") libmagic=N32;;
3569 *-64|*"-64 ") libmagic=64-bit;;
3570 *) libmagic=never-match;;
3571 esac
3572 # this will be overridden with pass_all, but let us keep it just in case
87e6d782
NC
3573 lt_cv_deplibs_check_method="file_magic ELF ${libmagic} MSB mips-[1234] dynamic lib MIPS - version 1"
3574 ;;
ac48eca1
AO
3575 esac
3576 lt_cv_file_magic_test_file=`echo /lib${libsuff}/libc.so*`
3577 lt_cv_deplibs_check_method=pass_all
3578 ;;
3579
3580# This must be Linux ELF.
90f2472a 3581linux-gnu*)
32fba81d 3582 lt_cv_deplibs_check_method=pass_all
ac48eca1
AO
3583 ;;
3584
979273e3 3585netbsd* | knetbsd*-gnu)
87e6d782
NC
3586 if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
3587 lt_cv_deplibs_check_method='match_pattern /lib[^/\.]+\.so\.[0-9]+\.[0-9]+$'
ac48eca1 3588 else
87e6d782 3589 lt_cv_deplibs_check_method='match_pattern /lib[^/\.]+\.so$'
ac48eca1
AO
3590 fi
3591 ;;
3592
87e6d782
NC
3593newsos6)
3594 lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)'
3595 lt_cv_file_magic_cmd=/usr/bin/file
3596 lt_cv_file_magic_test_file=/usr/lib/libnls.so
3597 ;;
3598
ac48eca1
AO
3599osf3* | osf4* | osf5*)
3600 # this will be overridden with pass_all, but let us keep it just in case
3601 lt_cv_deplibs_check_method='file_magic COFF format alpha shared library'
3602 lt_cv_file_magic_test_file=/shlib/libc.so
3603 lt_cv_deplibs_check_method=pass_all
3604 ;;
3605
3606sco3.2v5*)
3607 lt_cv_deplibs_check_method=pass_all
3608 ;;
3609
3610solaris*)
3611 lt_cv_deplibs_check_method=pass_all
3612 lt_cv_file_magic_test_file=/lib/libc.so
3613 ;;
3614
6be7c12c
AO
3615sysv5uw[78]* | sysv4*uw2*)
3616 lt_cv_deplibs_check_method=pass_all
3617 ;;
3618
ac48eca1 3619sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
87e6d782 3620 case $host_vendor in
ac48eca1
AO
3621 ncr)
3622 lt_cv_deplibs_check_method=pass_all
3623 ;;
3624 motorola)
87e6d782
NC
3625 lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]'
3626 lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
979273e3
NN
3627 ;;
3628 esac
3629 ;;
3630esac
ac48eca1 3631
979273e3
NN
3632fi
3633echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5
3634echo "${ECHO_T}$lt_cv_deplibs_check_method" >&6
3635file_magic_cmd=$lt_cv_file_magic_cmd
3636deplibs_check_method=$lt_cv_deplibs_check_method
ac48eca1
AO
3637
3638
ac48eca1 3639
ac48eca1
AO
3640
3641# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers!
3642
32fba81d
NC
3643# find the maximum length of command line arguments
3644echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5
3645echo $ECHO_N "checking the maximum length of command line arguments... $ECHO_C" >&6
3646if test "${lt_cv_sys_max_cmd_len+set}" = set; then
3647 echo $ECHO_N "(cached) $ECHO_C" >&6
3648else
3649 i=0
3650 teststring="ABCD"
3651
3652 case $build_os in
3653 msdosdjgpp*)
3654 # On DJGPP, this test can blow up pretty badly due to problems in libc
3655 # (any single argument exceeding 2000 bytes causes a buffer overrun
3656 # during glob expansion). Even if it were fixed, the result of this
3657 # check would be larger than it should be.
3658 lt_cv_sys_max_cmd_len=12288; # 12K is about right
3659 ;;
3660
3661 cygwin* | mingw*)
3662 # On Win9x/ME, this test blows up -- it succeeds, but takes
3663 # about 5 minutes as the teststring grows exponentially.
3664 # Worse, since 9x/ME are not pre-emptively multitasking,
3665 # you end up with a "frozen" computer, even though with patience
3666 # the test eventually succeeds (with a max line length of 256k).
3667 # Instead, let's just punt: use the minimum linelength reported by
3668 # all of the supported platforms: 8192 (on NT/2K/XP).
3669 lt_cv_sys_max_cmd_len=8192;
3670 ;;
3671
3672 amigaos*)
3673 # On AmigaOS with pdksh, this test takes hours, literally.
3674 # So we just punt and use a minimum line length of 8192.
3675 lt_cv_sys_max_cmd_len=8192;
3676 ;;
3677
3678 netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
3679 # This has been around since 386BSD, at least. Likely further.
3680 if test -x /sbin/sysctl; then
3681 lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
3682 elif test -x /usr/sbin/sysctl; then
3683 lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
3684 else
3685 lt_cv_sys_max_cmd_len=65536 # usable default for *BSD
3686 fi
3687 # And add a safety zone
3688 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
3689 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
3690 ;;
3691 esac
3692
3693fi
3694
3695if test -n "$lt_cv_sys_max_cmd_len" ; then
3696 echo "$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len" >&5
3697echo "${ECHO_T}$lt_cv_sys_max_cmd_len" >&6
3698else
3699 echo "$as_me:$LINENO: result: none" >&5
3700echo "${ECHO_T}none" >&6
3701fi
3702
3703
ac48eca1 3704# Only perform the check for file, if the check method requires it
87e6d782 3705case $deplibs_check_method in
ac48eca1 3706file_magic*)
d64552c5 3707 if test "$file_magic_cmd" = '$MAGIC_CMD'; then
979273e3
NN
3708 echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5
3709echo $ECHO_N "checking for ${ac_tool_prefix}file... $ECHO_C" >&6
3710if test "${lt_cv_path_MAGIC_CMD+set}" = set; then
3711 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1 3712else
87e6d782 3713 case $MAGIC_CMD in
ac48eca1 3714 /*)
d64552c5 3715 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
ac48eca1
AO
3716 ;;
3717 ?:/*)
d64552c5 3718 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a dos path.
ac48eca1
AO
3719 ;;
3720 *)
d64552c5 3721 ac_save_MAGIC_CMD="$MAGIC_CMD"
ac48eca1
AO
3722 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
3723 ac_dummy="/usr/bin:$PATH"
3724 for ac_dir in $ac_dummy; do
3725 test -z "$ac_dir" && ac_dir=.
3726 if test -f $ac_dir/${ac_tool_prefix}file; then
d64552c5 3727 lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file"
ac48eca1 3728 if test -n "$file_magic_test_file"; then
87e6d782 3729 case $deplibs_check_method in
ac48eca1
AO
3730 "file_magic "*)
3731 file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`"
d64552c5 3732 MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
ac48eca1
AO
3733 if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
3734 egrep "$file_magic_regex" > /dev/null; then
3735 :
3736 else
3737 cat <<EOF 1>&2
3738
3739*** Warning: the command libtool uses to detect shared libraries,
3740*** $file_magic_cmd, produces output that libtool cannot recognize.
3741*** The result is that libtool may fail to recognize shared libraries
3742*** as such. This will affect the creation of libtool libraries that
3743*** depend on shared libraries, but programs linked with such libtool
3744*** libraries will work regardless of this problem. Nevertheless, you
3745*** may want to report the problem to your system manager and/or to
3746*** bug-libtool@gnu.org
3747
3748EOF
3749 fi ;;
3750 esac
3751 fi
3752 break
3753 fi
3754 done
3755 IFS="$ac_save_ifs"
d64552c5 3756 MAGIC_CMD="$ac_save_MAGIC_CMD"
ac48eca1
AO
3757 ;;
3758esac
3759fi
3760
d64552c5
AO
3761MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
3762if test -n "$MAGIC_CMD"; then
979273e3
NN
3763 echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5
3764echo "${ECHO_T}$MAGIC_CMD" >&6
ac48eca1 3765else
979273e3
NN
3766 echo "$as_me:$LINENO: result: no" >&5
3767echo "${ECHO_T}no" >&6
ac48eca1
AO
3768fi
3769
d64552c5 3770if test -z "$lt_cv_path_MAGIC_CMD"; then
ac48eca1 3771 if test -n "$ac_tool_prefix"; then
979273e3
NN
3772 echo "$as_me:$LINENO: checking for file" >&5
3773echo $ECHO_N "checking for file... $ECHO_C" >&6
3774if test "${lt_cv_path_MAGIC_CMD+set}" = set; then
3775 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1 3776else
87e6d782 3777 case $MAGIC_CMD in
ac48eca1 3778 /*)
d64552c5 3779 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
ac48eca1
AO
3780 ;;
3781 ?:/*)
d64552c5 3782 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a dos path.
ac48eca1
AO
3783 ;;
3784 *)
d64552c5 3785 ac_save_MAGIC_CMD="$MAGIC_CMD"
ac48eca1
AO
3786 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
3787 ac_dummy="/usr/bin:$PATH"
3788 for ac_dir in $ac_dummy; do
3789 test -z "$ac_dir" && ac_dir=.
3790 if test -f $ac_dir/file; then
d64552c5 3791 lt_cv_path_MAGIC_CMD="$ac_dir/file"
ac48eca1 3792 if test -n "$file_magic_test_file"; then
87e6d782 3793 case $deplibs_check_method in
ac48eca1
AO
3794 "file_magic "*)
3795 file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`"
d64552c5 3796 MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
ac48eca1
AO
3797 if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
3798 egrep "$file_magic_regex" > /dev/null; then
3799 :
3800 else
3801 cat <<EOF 1>&2
3802
3803*** Warning: the command libtool uses to detect shared libraries,
3804*** $file_magic_cmd, produces output that libtool cannot recognize.
3805*** The result is that libtool may fail to recognize shared libraries
3806*** as such. This will affect the creation of libtool libraries that
3807*** depend on shared libraries, but programs linked with such libtool
3808*** libraries will work regardless of this problem. Nevertheless, you
3809*** may want to report the problem to your system manager and/or to
3810*** bug-libtool@gnu.org
3811
3812EOF
3813 fi ;;
3814 esac
3815 fi
3816 break
3817 fi
3818 done
3819 IFS="$ac_save_ifs"
d64552c5 3820 MAGIC_CMD="$ac_save_MAGIC_CMD"
ac48eca1
AO
3821 ;;
3822esac
3823fi
3824
d64552c5
AO
3825MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
3826if test -n "$MAGIC_CMD"; then
979273e3
NN
3827 echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5
3828echo "${ECHO_T}$MAGIC_CMD" >&6
ac48eca1 3829else
979273e3
NN
3830 echo "$as_me:$LINENO: result: no" >&5
3831echo "${ECHO_T}no" >&6
ac48eca1
AO
3832fi
3833
3834 else
d64552c5 3835 MAGIC_CMD=:
ac48eca1
AO
3836 fi
3837fi
3838
3839 fi
3840 ;;
3841esac
3842
979273e3
NN
3843if test -n "$ac_tool_prefix"; then
3844 # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
ac48eca1 3845set dummy ${ac_tool_prefix}ranlib; ac_word=$2
979273e3
NN
3846echo "$as_me:$LINENO: checking for $ac_word" >&5
3847echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3848if test "${ac_cv_prog_RANLIB+set}" = set; then
3849 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1
AO
3850else
3851 if test -n "$RANLIB"; then
3852 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
3853else
979273e3
NN
3854as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3855for as_dir in $PATH
3856do
3857 IFS=$as_save_IFS
3858 test -z "$as_dir" && as_dir=.
3859 for ac_exec_ext in '' $ac_executable_extensions; do
3860 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3861 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
3862 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3863 break 2
3864 fi
3865done
3866done
3867
ac48eca1
AO
3868fi
3869fi
979273e3 3870RANLIB=$ac_cv_prog_RANLIB
ac48eca1 3871if test -n "$RANLIB"; then
979273e3
NN
3872 echo "$as_me:$LINENO: result: $RANLIB" >&5
3873echo "${ECHO_T}$RANLIB" >&6
ac48eca1 3874else
979273e3
NN
3875 echo "$as_me:$LINENO: result: no" >&5
3876echo "${ECHO_T}no" >&6
ac48eca1
AO
3877fi
3878
979273e3 3879fi
ac48eca1 3880if test -z "$ac_cv_prog_RANLIB"; then
979273e3 3881 ac_ct_RANLIB=$RANLIB
ac48eca1
AO
3882 # Extract the first word of "ranlib", so it can be a program name with args.
3883set dummy ranlib; ac_word=$2
979273e3
NN
3884echo "$as_me:$LINENO: checking for $ac_word" >&5
3885echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3886if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
3887 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1 3888else
979273e3
NN
3889 if test -n "$ac_ct_RANLIB"; then
3890 ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
ac48eca1 3891else
979273e3
NN
3892as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3893for as_dir in $PATH
3894do
3895 IFS=$as_save_IFS
3896 test -z "$as_dir" && as_dir=.
3897 for ac_exec_ext in '' $ac_executable_extensions; do
3898 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3899 ac_cv_prog_ac_ct_RANLIB="ranlib"
3900 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3901 break 2
3902 fi
3903done
3904done
3905
3906 test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":"
ac48eca1
AO
3907fi
3908fi
979273e3
NN
3909ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
3910if test -n "$ac_ct_RANLIB"; then
3911 echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
3912echo "${ECHO_T}$ac_ct_RANLIB" >&6
ac48eca1 3913else
979273e3
NN
3914 echo "$as_me:$LINENO: result: no" >&5
3915echo "${ECHO_T}no" >&6
ac48eca1
AO
3916fi
3917
979273e3 3918 RANLIB=$ac_ct_RANLIB
ac48eca1 3919else
979273e3 3920 RANLIB="$ac_cv_prog_RANLIB"
ac48eca1
AO
3921fi
3922
979273e3
NN
3923if test -n "$ac_tool_prefix"; then
3924 # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
ac48eca1 3925set dummy ${ac_tool_prefix}strip; ac_word=$2
979273e3
NN
3926echo "$as_me:$LINENO: checking for $ac_word" >&5
3927echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3928if test "${ac_cv_prog_STRIP+set}" = set; then
3929 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1
AO
3930else
3931 if test -n "$STRIP"; then
3932 ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
3933else
979273e3
NN
3934as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3935for as_dir in $PATH
3936do
3937 IFS=$as_save_IFS
3938 test -z "$as_dir" && as_dir=.
3939 for ac_exec_ext in '' $ac_executable_extensions; do
3940 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3941 ac_cv_prog_STRIP="${ac_tool_prefix}strip"
3942 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3943 break 2
3944 fi
3945done
3946done
3947
ac48eca1
AO
3948fi
3949fi
979273e3 3950STRIP=$ac_cv_prog_STRIP
ac48eca1 3951if test -n "$STRIP"; then
979273e3
NN
3952 echo "$as_me:$LINENO: result: $STRIP" >&5
3953echo "${ECHO_T}$STRIP" >&6
ac48eca1 3954else
979273e3
NN
3955 echo "$as_me:$LINENO: result: no" >&5
3956echo "${ECHO_T}no" >&6
ac48eca1
AO
3957fi
3958
979273e3 3959fi
ac48eca1 3960if test -z "$ac_cv_prog_STRIP"; then
979273e3 3961 ac_ct_STRIP=$STRIP
ac48eca1
AO
3962 # Extract the first word of "strip", so it can be a program name with args.
3963set dummy strip; ac_word=$2
979273e3
NN
3964echo "$as_me:$LINENO: checking for $ac_word" >&5
3965echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3966if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
3967 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1 3968else
979273e3
NN
3969 if test -n "$ac_ct_STRIP"; then
3970 ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
ac48eca1 3971else
979273e3
NN
3972as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3973for as_dir in $PATH
3974do
3975 IFS=$as_save_IFS
3976 test -z "$as_dir" && as_dir=.
3977 for ac_exec_ext in '' $ac_executable_extensions; do
3978 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3979 ac_cv_prog_ac_ct_STRIP="strip"
3980 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3981 break 2
3982 fi
3983done
3984done
3985
3986 test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":"
ac48eca1
AO
3987fi
3988fi
979273e3
NN
3989ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
3990if test -n "$ac_ct_STRIP"; then
3991 echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
3992echo "${ECHO_T}$ac_ct_STRIP" >&6
ac48eca1 3993else
979273e3
NN
3994 echo "$as_me:$LINENO: result: no" >&5
3995echo "${ECHO_T}no" >&6
ac48eca1
AO
3996fi
3997
979273e3 3998 STRIP=$ac_ct_STRIP
ac48eca1 3999else
979273e3 4000 STRIP="$ac_cv_prog_STRIP"
ac48eca1
AO
4001fi
4002
252b5132
RH
4003
4004# Check for any special flags to pass to ltconfig.
4005libtool_flags="--cache-file=$cache_file"
4006test "$enable_shared" = no && libtool_flags="$libtool_flags --disable-shared"
4007test "$enable_static" = no && libtool_flags="$libtool_flags --disable-static"
4008test "$enable_fast_install" = no && libtool_flags="$libtool_flags --disable-fast-install"
87e6d782
NC
4009test "$GCC" = yes && libtool_flags="$libtool_flags --with-gcc"
4010test "$lt_cv_prog_gnu_ld" = yes && libtool_flags="$libtool_flags --with-gnu-ld"
252b5132 4011
a74801ba
ILT
4012
4013# Check whether --enable-libtool-lock or --disable-libtool-lock was given.
4014if test "${enable_libtool_lock+set}" = set; then
4015 enableval="$enable_libtool_lock"
a74801ba 4016
979273e3 4017fi;
a74801ba
ILT
4018test "x$enable_libtool_lock" = xno && libtool_flags="$libtool_flags --disable-lock"
4019test x"$silent" = xyes && libtool_flags="$libtool_flags --silent"
4020
979273e3 4021
ac48eca1
AO
4022# Check whether --with-pic or --without-pic was given.
4023if test "${with_pic+set}" = set; then
4024 withval="$with_pic"
4025 pic_mode="$withval"
4026else
4027 pic_mode=default
979273e3 4028fi;
ac48eca1
AO
4029test x"$pic_mode" = xyes && libtool_flags="$libtool_flags --prefer-pic"
4030test x"$pic_mode" = xno && libtool_flags="$libtool_flags --prefer-non-pic"
4031
252b5132
RH
4032# Some flags need to be propagated to the compiler or linker for good
4033# libtool support.
87e6d782 4034case $host in
252b5132
RH
4035*-*-irix6*)
4036 # Find out which ABI we are using.
20e95c23 4037 echo '#line 4037 "configure"' > conftest.$ac_ext
979273e3
NN
4038 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4039 (eval $ac_compile) 2>&5
4040 ac_status=$?
4041 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4042 (exit $ac_status); }; then
e0001a05
NC
4043 if test "$lt_cv_prog_gnu_ld" = yes; then
4044 case `/usr/bin/file conftest.$ac_objext` in
4045 *32-bit*)
4046 LD="${LD-ld} -melf32bsmip"
4047 ;;
4048 *N32*)
4049 LD="${LD-ld} -melf32bmipn32"
4050 ;;
4051 *64-bit*)
4052 LD="${LD-ld} -melf64bmip"
4053 ;;
4054 esac
4055 else
87e6d782 4056 case `/usr/bin/file conftest.$ac_objext` in
252b5132
RH
4057 *32-bit*)
4058 LD="${LD-ld} -32"
4059 ;;
4060 *N32*)
4061 LD="${LD-ld} -n32"
4062 ;;
4063 *64-bit*)
4064 LD="${LD-ld} -64"
4065 ;;
4066 esac
e0001a05 4067 fi
252b5132
RH
4068 fi
4069 rm -rf conftest*
4070 ;;
4071
4867be41
DJ
4072ia64-*-hpux*)
4073 # Find out which ABI we are using.
4074 echo 'int i;' > conftest.$ac_ext
979273e3
NN
4075 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4076 (eval $ac_compile) 2>&5
4077 ac_status=$?
4078 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4079 (exit $ac_status); }; then
4867be41
DJ
4080 case "`/usr/bin/file conftest.o`" in
4081 *ELF-32*)
4082 HPUX_IA64_MODE="32"
4083 ;;
4084 *ELF-64*)
4085 HPUX_IA64_MODE="64"
4086 ;;
4087 esac
4088 fi
4089 rm -rf conftest*
4090 ;;
4091
32fba81d
NC
4092x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*)
4093 # Find out which ABI we are using.
4094 echo 'int i;' > conftest.$ac_ext
4095 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4096 (eval $ac_compile) 2>&5
4097 ac_status=$?
4098 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4099 (exit $ac_status); }; then
4100 case "`/usr/bin/file conftest.o`" in
4101 *32-bit*)
4102 case $host in
4103 x86_64-*linux*)
4104 LD="${LD-ld} -m elf_i386"
4105 ;;
4106 ppc64-*linux*|powerpc64-*linux*)
4107 LD="${LD-ld} -m elf32ppclinux"
4108 ;;
4109 s390x-*linux*)
4110 LD="${LD-ld} -m elf_s390"
4111 ;;
4112 sparc64-*linux*)
4113 LD="${LD-ld} -m elf32_sparc"
4114 ;;
4115 esac
4116 ;;
4117 *64-bit*)
4118 case $host in
4119 x86_64-*linux*)
4120 LD="${LD-ld} -m elf_x86_64"
4121 ;;
4122 ppc*-*linux*|powerpc*-*linux*)
4123 LD="${LD-ld} -m elf64ppc"
4124 ;;
4125 s390*-*linux*)
4126 LD="${LD-ld} -m elf64_s390"
4127 ;;
4128 sparc*-*linux*)
4129 LD="${LD-ld} -m elf64_sparc"
4130 ;;
4131 esac
4132 ;;
4133 esac
4134 fi
4135 rm -rf conftest*
4136 ;;
4137
252b5132
RH
4138*-*-sco3.2v5*)
4139 # On SCO OpenServer 5, we need -belf to get full-featured binaries.
4140 SAVE_CFLAGS="$CFLAGS"
4141 CFLAGS="$CFLAGS -belf"
979273e3
NN
4142 echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5
4143echo $ECHO_N "checking whether the C compiler needs -belf... $ECHO_C" >&6
4144if test "${lt_cv_cc_needs_belf+set}" = set; then
4145 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 4146else
979273e3
NN
4147
4148
ac48eca1 4149 ac_ext=c
ac48eca1 4150ac_cpp='$CPP $CPPFLAGS'
979273e3
NN
4151ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
4152ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
4153ac_compiler_gnu=$ac_cv_c_compiler_gnu
ac48eca1 4154
979273e3
NN
4155 cat >conftest.$ac_ext <<_ACEOF
4156/* confdefs.h. */
4157_ACEOF
4158cat confdefs.h >>conftest.$ac_ext
4159cat >>conftest.$ac_ext <<_ACEOF
4160/* end confdefs.h. */
252b5132 4161
979273e3
NN
4162int
4163main ()
4164{
252b5132 4165
979273e3
NN
4166 ;
4167 return 0;
4168}
4169_ACEOF
4170rm -f conftest.$ac_objext conftest$ac_exeext
4171if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4172 (eval $ac_link) 2>conftest.er1
4173 ac_status=$?
4174 grep -v '^ *+' conftest.er1 >conftest.err
4175 rm -f conftest.er1
4176 cat conftest.err >&5
4177 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4178 (exit $ac_status); } &&
8ae85421
AM
4179 { ac_try='test -z "$ac_c_werror_flag"
4180 || test ! -s conftest.err'
979273e3
NN
4181 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4182 (eval $ac_try) 2>&5
4183 ac_status=$?
4184 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4185 (exit $ac_status); }; } &&
4186 { ac_try='test -s conftest$ac_exeext'
4187 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4188 (eval $ac_try) 2>&5
4189 ac_status=$?
4190 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4191 (exit $ac_status); }; }; then
252b5132
RH
4192 lt_cv_cc_needs_belf=yes
4193else
979273e3
NN
4194 echo "$as_me: failed program was:" >&5
4195sed 's/^/| /' conftest.$ac_ext >&5
4196
4197lt_cv_cc_needs_belf=no
252b5132 4198fi
979273e3
NN
4199rm -f conftest.err conftest.$ac_objext \
4200 conftest$ac_exeext conftest.$ac_ext
ac48eca1 4201 ac_ext=c
ac48eca1 4202ac_cpp='$CPP $CPPFLAGS'
979273e3
NN
4203ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
4204ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
4205ac_compiler_gnu=$ac_cv_c_compiler_gnu
ac48eca1 4206
252b5132 4207fi
979273e3
NN
4208echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5
4209echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6
252b5132
RH
4210 if test x"$lt_cv_cc_needs_belf" != x"yes"; then
4211 # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
4212 CFLAGS="$SAVE_CFLAGS"
4213 fi
4214 ;;
4215
252b5132
RH
4216
4217esac
4218
252b5132
RH
4219
4220# Save cache, so that ltconfig can load it
979273e3 4221cat >confcache <<\_ACEOF
252b5132
RH
4222# This file is a shell script that caches the results of configure
4223# tests run on this system so they can be shared between configure
979273e3
NN
4224# scripts and configure runs, see configure's option --config-cache.
4225# It is not useful on other systems. If it contains results you don't
4226# want to keep, you may remove or edit it.
252b5132 4227#
979273e3
NN
4228# config.status only pays attention to the cache file if you give it
4229# the --recheck option to rerun configure.
252b5132 4230#
979273e3
NN
4231# `ac_cv_env_foo' variables (set or unset) will be overridden when
4232# loading this file, other *unset* `ac_cv_foo' will be assigned the
4233# following values.
4234
4235_ACEOF
4236
252b5132
RH
4237# The following way of writing the cache mishandles newlines in values,
4238# but we know of no workaround that is simple, portable, and efficient.
4239# So, don't put newlines in cache variables' values.
4240# Ultrix sh set writes to stderr and can't be redirected directly,
4241# and sets the high bit in the cache file unless we assign to the vars.
979273e3
NN
4242{
4243 (set) 2>&1 |
4244 case `(ac_space=' '; set | grep ac_space) 2>&1` in
4245 *ac_space=\ *)
4246 # `set' does not quote correctly, so add quotes (double-quote
4247 # substitution turns \\\\ into \\, and sed turns \\ into \).
4248 sed -n \
4249 "s/'/'\\\\''/g;
4250 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
4251 ;;
4252 *)
4253 # `set' quotes correctly as required by POSIX, so do not add quotes.
4254 sed -n \
4255 "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
4256 ;;
4257 esac;
4258} |
4259 sed '
4260 t clear
4261 : clear
4262 s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
4263 t end
4264 /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
4265 : end' >>confcache
4266if diff $cache_file confcache >/dev/null 2>&1; then :; else
252b5132 4267 if test -w $cache_file; then
979273e3
NN
4268 test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
4269 cat confcache >$cache_file
252b5132
RH
4270 else
4271 echo "not updating unwritable cache $cache_file"
4272 fi
4273fi
4274rm -f confcache
4275
252b5132 4276# Actually configure libtool. ac_aux_dir is where install-sh is found.
ac48eca1 4277AR="$AR" LTCC="$CC" CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \
d64552c5 4278MAGIC_CMD="$MAGIC_CMD" LD="$LD" LDFLAGS="$LDFLAGS" LIBS="$LIBS" \
ac48eca1
AO
4279LN_S="$LN_S" NM="$NM" RANLIB="$RANLIB" STRIP="$STRIP" \
4280AS="$AS" DLLTOOL="$DLLTOOL" OBJDUMP="$OBJDUMP" \
4281objext="$OBJEXT" exeext="$EXEEXT" reload_flag="$reload_flag" \
4282deplibs_check_method="$deplibs_check_method" file_magic_cmd="$file_magic_cmd" \
252b5132 4283${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \
ac48eca1 4284$libtool_flags --no-verify --build="$build" $ac_aux_dir/ltmain.sh $host \
979273e3
NN
4285|| { { echo "$as_me:$LINENO: error: libtool configure failed" >&5
4286echo "$as_me: error: libtool configure failed" >&2;}
4287 { (exit 1); exit 1; }; }
252b5132
RH
4288
4289# Reload cache, that may have been modified by ltconfig
4290if test -r "$cache_file"; then
979273e3
NN
4291 # Some versions of bash will fail to source /dev/null (special
4292 # files actually), so we avoid doing that.
4293 if test -f "$cache_file"; then
4294 { echo "$as_me:$LINENO: loading cache $cache_file" >&5
4295echo "$as_me: loading cache $cache_file" >&6;}
4296 case $cache_file in
4297 [\\/]* | ?:[\\/]* ) . $cache_file;;
4298 *) . ./$cache_file;;
4299 esac
4300 fi
252b5132 4301else
979273e3
NN
4302 { echo "$as_me:$LINENO: creating cache $cache_file" >&5
4303echo "$as_me: creating cache $cache_file" >&6;}
4304 >$cache_file
252b5132
RH
4305fi
4306
4307
4308# This can be used to rebuild libtool when needed
ac48eca1 4309LIBTOOL_DEPS="$ac_aux_dir/ltconfig $ac_aux_dir/ltmain.sh $ac_aux_dir/ltcf-c.sh"
252b5132
RH
4310
4311# Always use our own libtool.
4312LIBTOOL='$(SHELL) $(top_builddir)/libtool'
4313
4314# Redirect the config.log output again, so that the ltconfig log is not
4315# clobbered by the next message.
4316exec 5>>./config.log
4317
ac48eca1 4318
979273e3
NN
4319
4320
4321
4322
ac48eca1 4323
252b5132
RH
4324# Check whether --enable-targets or --disable-targets was given.
4325if test "${enable_targets+set}" = set; then
4326 enableval="$enable_targets"
4327 case "${enableval}" in
979273e3
NN
4328 yes | "") { { echo "$as_me:$LINENO: error: enable-targets option must specify target names or 'all'" >&5
4329echo "$as_me: error: enable-targets option must specify target names or 'all'" >&2;}
4330 { (exit 1); exit 1; }; }
252b5132
RH
4331 ;;
4332 no) enable_targets= ;;
4333 *) enable_targets=$enableval ;;
4334esac
979273e3 4335fi; # Check whether --enable-commonbfdlib or --disable-commonbfdlib was given.
252b5132
RH
4336if test "${enable_commonbfdlib+set}" = set; then
4337 enableval="$enable_commonbfdlib"
4338 case "${enableval}" in
4339 yes) commonbfdlib=true ;;
4340 no) commonbfdlib=false ;;
979273e3
NN
4341 *) { { echo "$as_me:$LINENO: error: bad value ${enableval} for opcodes commonbfdlib option" >&5
4342echo "$as_me: error: bad value ${enableval} for opcodes commonbfdlib option" >&2;}
4343 { (exit 1); exit 1; }; } ;;
252b5132 4344esac
979273e3 4345fi;
9e9b66a9 4346
a541e3ce 4347GCC_WARN_CFLAGS="-W -Wall -Wstrict-prototypes -Wmissing-prototypes"
1ad12f97 4348
569acd2c
NC
4349# Check whether --enable-werror or --disable-werror was given.
4350if test "${enable_werror+set}" = set; then
4351 enableval="$enable_werror"
1ad12f97
NC
4352 case "${enableval}" in
4353 yes | y) ERROR_ON_WARNING="yes" ;;
4354 no | n) ERROR_ON_WARNING="no" ;;
569acd2c
NC
4355 *) { { echo "$as_me:$LINENO: error: bad value ${enableval} for --enable-werror" >&5
4356echo "$as_me: error: bad value ${enableval} for --enable-werror" >&2;}
1ad12f97
NC
4357 { (exit 1); exit 1; }; } ;;
4358 esac
4359fi;
4360
9e9b66a9
AM
4361# Enable -Werror by default when using gcc
4362if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
4363 ERROR_ON_WARNING=yes
4364fi
4365
4366NO_WERROR=
4367if test "${ERROR_ON_WARNING}" = yes ; then
a541e3ce 4368 GCC_WARN_CFLAGS="$GCC_WARN_CFLAGS -Werror"
9e9b66a9 4369 NO_WERROR="-Wno-error"
1ad12f97
NC
4370fi
4371
a541e3ce
SE
4372if test "${GCC}" = yes ; then
4373 WARN_CFLAGS="${GCC_WARN_CFLAGS}"
4374fi
4375
a2d91340
AC
4376# Check whether --enable-build-warnings or --disable-build-warnings was given.
4377if test "${enable_build_warnings+set}" = set; then
4378 enableval="$enable_build_warnings"
4379 case "${enableval}" in
a541e3ce
SE
4380 yes) WARN_CFLAGS="${GCC_WARN_CFLAGS}";;
4381 no) if test "${GCC}" = yes ; then
4382 WARN_CFLAGS="-w"
4383 fi;;
a2d91340 4384 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
a541e3ce 4385 WARN_CFLAGS="${GCC_WARN_CFLAGS} ${t}";;
a2d91340 4386 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
a541e3ce 4387 WARN_CFLAGS="${t} ${GCC_WARN_CFLAGS}";;
9e9b66a9 4388 *) WARN_CFLAGS=`echo "${enableval}" | sed -e "s/,/ /g"`;;
a2d91340 4389esac
9e9b66a9
AM
4390fi;
4391
4392if test x"$silent" != x"yes" && test x"$WARN_CFLAGS" != x""; then
4393 echo "Setting warning flags = $WARN_CFLAGS" 6>&1
a2d91340
AC
4394fi
4395
4396
9e9b66a9
AM
4397
4398
4399
979273e3 4400 ac_config_headers="$ac_config_headers config.h:config.in"
252b5132 4401
252b5132
RH
4402
4403if test -z "$target" ; then
979273e3
NN
4404 { { echo "$as_me:$LINENO: error: Unrecognized target system type; please check config.sub." >&5
4405echo "$as_me: error: Unrecognized target system type; please check config.sub." >&2;}
4406 { (exit 1); exit 1; }; }
252b5132 4407fi
252b5132 4408
979273e3
NN
4409echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5
4410echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6
252b5132
RH
4411 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
4412if test "${enable_maintainer_mode+set}" = set; then
4413 enableval="$enable_maintainer_mode"
4414 USE_MAINTAINER_MODE=$enableval
4415else
4416 USE_MAINTAINER_MODE=no
979273e3
NN
4417fi;
4418 echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5
4419echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6
252b5132 4420
252b5132
RH
4421
4422if test $USE_MAINTAINER_MODE = yes; then
4423 MAINTAINER_MODE_TRUE=
4424 MAINTAINER_MODE_FALSE='#'
4425else
4426 MAINTAINER_MODE_TRUE='#'
4427 MAINTAINER_MODE_FALSE=
4428fi
8ae85421 4429
252b5132 4430 MAINT=$MAINTAINER_MODE_TRUE
252b5132 4431
979273e3 4432
24443139
AS
4433 case ${build_alias} in
4434 "") build_noncanonical=${build} ;;
4435 *) build_noncanonical=${build_alias} ;;
4436esac
4437
4438 case ${host_alias} in
4439 "") host_noncanonical=${build_noncanonical} ;;
4440 *) host_noncanonical=${host_alias} ;;
4441esac
4442
4443 case ${target_alias} in
4444 "") target_noncanonical=${host_noncanonical} ;;
4445 *) target_noncanonical=${target_alias} ;;
4446esac
4447
979273e3
NN
4448echo "$as_me:$LINENO: checking whether to install libbfd" >&5
4449echo $ECHO_N "checking whether to install libbfd... $ECHO_C" >&6
81172ff2
AM
4450 # Check whether --enable-install-libbfd or --disable-install-libbfd was given.
4451if test "${enable_install_libbfd+set}" = set; then
4452 enableval="$enable_install_libbfd"
4453 install_libbfd_p=$enableval
4454else
2469cfa2 4455 if test "${host}" = "${target}" || test "$enable_shared" = "yes"; then
81172ff2
AM
4456 install_libbfd_p=yes
4457 else
4458 install_libbfd_p=no
4459 fi
979273e3
NN
4460fi;
4461 echo "$as_me:$LINENO: result: $install_libbfd_p" >&5
4462echo "${ECHO_T}$install_libbfd_p" >&6
81172ff2 4463
81172ff2
AM
4464
4465if test $install_libbfd_p = yes; then
4466 INSTALL_LIBBFD_TRUE=
4467 INSTALL_LIBBFD_FALSE='#'
4468else
4469 INSTALL_LIBBFD_TRUE='#'
4470 INSTALL_LIBBFD_FALSE=
4471fi
8ae85421 4472
979273e3 4473 # Need _noncanonical variables for this.
24443139
AS
4474
4475
4476
4477
81172ff2
AM
4478 # libbfd.a is a host library containing target dependent code
4479 bfdlibdir='$(libdir)'
4480 bfdincludedir='$(includedir)'
4481 if test "${host}" != "${target}"; then
979273e3
NN
4482 bfdlibdir='$(exec_prefix)/$(host_noncanonical)/$(target_noncanonical)/lib'
4483 bfdincludedir='$(exec_prefix)/$(host_noncanonical)/$(target_noncanonical)/include'
81172ff2 4484 fi
81172ff2
AM
4485
4486
252b5132
RH
4487
4488
979273e3
NN
4489
4490
4491# host-specific stuff:
4492
4493ac_ext=c
4494ac_cpp='$CPP $CPPFLAGS'
4495ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
4496ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
4497ac_compiler_gnu=$ac_cv_c_compiler_gnu
4498if test -n "$ac_tool_prefix"; then
4499 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
4500set dummy ${ac_tool_prefix}gcc; ac_word=$2
4501echo "$as_me:$LINENO: checking for $ac_word" >&5
4502echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4503if test "${ac_cv_prog_CC+set}" = set; then
4504 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 4505else
979273e3
NN
4506 if test -n "$CC"; then
4507 ac_cv_prog_CC="$CC" # Let the user override the test.
252b5132 4508else
979273e3
NN
4509as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4510for as_dir in $PATH
4511do
4512 IFS=$as_save_IFS
4513 test -z "$as_dir" && as_dir=.
4514 for ac_exec_ext in '' $ac_executable_extensions; do
4515 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4516 ac_cv_prog_CC="${ac_tool_prefix}gcc"
4517 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4518 break 2
252b5132 4519 fi
979273e3
NN
4520done
4521done
4522
4523fi
252b5132 4524fi
979273e3
NN
4525CC=$ac_cv_prog_CC
4526if test -n "$CC"; then
4527 echo "$as_me:$LINENO: result: $CC" >&5
4528echo "${ECHO_T}$CC" >&6
4529else
4530 echo "$as_me:$LINENO: result: no" >&5
4531echo "${ECHO_T}no" >&6
252b5132
RH
4532fi
4533
979273e3
NN
4534fi
4535if test -z "$ac_cv_prog_CC"; then
4536 ac_ct_CC=$CC
4537 # Extract the first word of "gcc", so it can be a program name with args.
4538set dummy gcc; ac_word=$2
4539echo "$as_me:$LINENO: checking for $ac_word" >&5
4540echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4541if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
4542 echo $ECHO_N "(cached) $ECHO_C" >&6
4543else
4544 if test -n "$ac_ct_CC"; then
4545 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
4546else
4547as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4548for as_dir in $PATH
4549do
4550 IFS=$as_save_IFS
4551 test -z "$as_dir" && as_dir=.
4552 for ac_exec_ext in '' $ac_executable_extensions; do
4553 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4554 ac_cv_prog_ac_ct_CC="gcc"
4555 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4556 break 2
4557 fi
4558done
4559done
252b5132 4560
979273e3
NN
4561fi
4562fi
4563ac_ct_CC=$ac_cv_prog_ac_ct_CC
4564if test -n "$ac_ct_CC"; then
4565 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
4566echo "${ECHO_T}$ac_ct_CC" >&6
4567else
4568 echo "$as_me:$LINENO: result: no" >&5
4569echo "${ECHO_T}no" >&6
4570fi
252b5132 4571
979273e3
NN
4572 CC=$ac_ct_CC
4573else
4574 CC="$ac_cv_prog_CC"
4575fi
252b5132 4576
979273e3
NN
4577if test -z "$CC"; then
4578 if test -n "$ac_tool_prefix"; then
4579 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
4580set dummy ${ac_tool_prefix}cc; ac_word=$2
4581echo "$as_me:$LINENO: checking for $ac_word" >&5
4582echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4583if test "${ac_cv_prog_CC+set}" = set; then
4584 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
4585else
4586 if test -n "$CC"; then
4587 ac_cv_prog_CC="$CC" # Let the user override the test.
4588else
979273e3
NN
4589as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4590for as_dir in $PATH
4591do
4592 IFS=$as_save_IFS
4593 test -z "$as_dir" && as_dir=.
4594 for ac_exec_ext in '' $ac_executable_extensions; do
4595 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4596 ac_cv_prog_CC="${ac_tool_prefix}cc"
4597 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4598 break 2
4599 fi
4600done
4601done
4602
252b5132
RH
4603fi
4604fi
979273e3 4605CC=$ac_cv_prog_CC
252b5132 4606if test -n "$CC"; then
979273e3
NN
4607 echo "$as_me:$LINENO: result: $CC" >&5
4608echo "${ECHO_T}$CC" >&6
4609else
4610 echo "$as_me:$LINENO: result: no" >&5
4611echo "${ECHO_T}no" >&6
4612fi
4613
4614fi
4615if test -z "$ac_cv_prog_CC"; then
4616 ac_ct_CC=$CC
4617 # Extract the first word of "cc", so it can be a program name with args.
4618set dummy cc; ac_word=$2
4619echo "$as_me:$LINENO: checking for $ac_word" >&5
4620echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4621if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
4622 echo $ECHO_N "(cached) $ECHO_C" >&6
4623else
4624 if test -n "$ac_ct_CC"; then
4625 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
4626else
4627as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4628for as_dir in $PATH
4629do
4630 IFS=$as_save_IFS
4631 test -z "$as_dir" && as_dir=.
4632 for ac_exec_ext in '' $ac_executable_extensions; do
4633 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4634 ac_cv_prog_ac_ct_CC="cc"
4635 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4636 break 2
4637 fi
4638done
4639done
4640
4641fi
4642fi
4643ac_ct_CC=$ac_cv_prog_ac_ct_CC
4644if test -n "$ac_ct_CC"; then
4645 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
4646echo "${ECHO_T}$ac_ct_CC" >&6
252b5132 4647else
979273e3
NN
4648 echo "$as_me:$LINENO: result: no" >&5
4649echo "${ECHO_T}no" >&6
252b5132
RH
4650fi
4651
979273e3
NN
4652 CC=$ac_ct_CC
4653else
4654 CC="$ac_cv_prog_CC"
4655fi
4656
4657fi
252b5132
RH
4658if test -z "$CC"; then
4659 # Extract the first word of "cc", so it can be a program name with args.
4660set dummy cc; ac_word=$2
979273e3
NN
4661echo "$as_me:$LINENO: checking for $ac_word" >&5
4662echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4663if test "${ac_cv_prog_CC+set}" = set; then
4664 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
4665else
4666 if test -n "$CC"; then
4667 ac_cv_prog_CC="$CC" # Let the user override the test.
4668else
252b5132 4669 ac_prog_rejected=no
979273e3
NN
4670as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4671for as_dir in $PATH
4672do
4673 IFS=$as_save_IFS
4674 test -z "$as_dir" && as_dir=.
4675 for ac_exec_ext in '' $ac_executable_extensions; do
4676 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4677 if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
4678 ac_prog_rejected=yes
4679 continue
4680 fi
4681 ac_cv_prog_CC="cc"
4682 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4683 break 2
4684 fi
4685done
4686done
4687
252b5132
RH
4688if test $ac_prog_rejected = yes; then
4689 # We found a bogon in the path, so make sure we never use it.
4690 set dummy $ac_cv_prog_CC
4691 shift
979273e3 4692 if test $# != 0; then
252b5132
RH
4693 # We chose a different compiler from the bogus one.
4694 # However, it has the same basename, so the bogon will be chosen
4695 # first if we set CC to just the basename; use the full file name.
4696 shift
979273e3 4697 ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
252b5132
RH
4698 fi
4699fi
4700fi
4701fi
979273e3 4702CC=$ac_cv_prog_CC
252b5132 4703if test -n "$CC"; then
979273e3
NN
4704 echo "$as_me:$LINENO: result: $CC" >&5
4705echo "${ECHO_T}$CC" >&6
252b5132 4706else
979273e3
NN
4707 echo "$as_me:$LINENO: result: no" >&5
4708echo "${ECHO_T}no" >&6
252b5132
RH
4709fi
4710
979273e3
NN
4711fi
4712if test -z "$CC"; then
4713 if test -n "$ac_tool_prefix"; then
4714 for ac_prog in cl
4715 do
4716 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
4717set dummy $ac_tool_prefix$ac_prog; ac_word=$2
4718echo "$as_me:$LINENO: checking for $ac_word" >&5
4719echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4720if test "${ac_cv_prog_CC+set}" = set; then
4721 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
4722else
4723 if test -n "$CC"; then
4724 ac_cv_prog_CC="$CC" # Let the user override the test.
4725else
979273e3
NN
4726as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4727for as_dir in $PATH
4728do
4729 IFS=$as_save_IFS
4730 test -z "$as_dir" && as_dir=.
4731 for ac_exec_ext in '' $ac_executable_extensions; do
4732 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4733 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
4734 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4735 break 2
4736 fi
4737done
4738done
4739
4740fi
4741fi
4742CC=$ac_cv_prog_CC
4743if test -n "$CC"; then
4744 echo "$as_me:$LINENO: result: $CC" >&5
4745echo "${ECHO_T}$CC" >&6
4746else
4747 echo "$as_me:$LINENO: result: no" >&5
4748echo "${ECHO_T}no" >&6
4749fi
4750
4751 test -n "$CC" && break
252b5132 4752 done
252b5132 4753fi
979273e3
NN
4754if test -z "$CC"; then
4755 ac_ct_CC=$CC
4756 for ac_prog in cl
4757do
4758 # Extract the first word of "$ac_prog", so it can be a program name with args.
4759set dummy $ac_prog; ac_word=$2
4760echo "$as_me:$LINENO: checking for $ac_word" >&5
4761echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4762if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
4763 echo $ECHO_N "(cached) $ECHO_C" >&6
4764else
4765 if test -n "$ac_ct_CC"; then
4766 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
4767else
4768as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4769for as_dir in $PATH
4770do
4771 IFS=$as_save_IFS
4772 test -z "$as_dir" && as_dir=.
4773 for ac_exec_ext in '' $ac_executable_extensions; do
4774 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4775 ac_cv_prog_ac_ct_CC="$ac_prog"
4776 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4777 break 2
4778 fi
4779done
4780done
4781
4782fi
4783fi
4784ac_ct_CC=$ac_cv_prog_ac_ct_CC
4785if test -n "$ac_ct_CC"; then
4786 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
4787echo "${ECHO_T}$ac_ct_CC" >&6
4788else
4789 echo "$as_me:$LINENO: result: no" >&5
4790echo "${ECHO_T}no" >&6
4791fi
4792
4793 test -n "$ac_ct_CC" && break
4794done
4795
4796 CC=$ac_ct_CC
4797fi
4798
4799fi
4800
4801
4802test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
4803See \`config.log' for more details." >&5
4804echo "$as_me: error: no acceptable C compiler found in \$PATH
4805See \`config.log' for more details." >&2;}
4806 { (exit 1); exit 1; }; }
4807
4808# Provide some information about the compiler.
4809echo "$as_me:$LINENO:" \
4810 "checking for C compiler version" >&5
4811ac_compiler=`set X $ac_compile; echo $2`
4812{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
4813 (eval $ac_compiler --version </dev/null >&5) 2>&5
4814 ac_status=$?
4815 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4816 (exit $ac_status); }
4817{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
4818 (eval $ac_compiler -v </dev/null >&5) 2>&5
4819 ac_status=$?
4820 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4821 (exit $ac_status); }
4822{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
4823 (eval $ac_compiler -V </dev/null >&5) 2>&5
4824 ac_status=$?
4825 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4826 (exit $ac_status); }
4827
4828echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
4829echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
4830if test "${ac_cv_c_compiler_gnu+set}" = set; then
4831 echo $ECHO_N "(cached) $ECHO_C" >&6
4832else
4833 cat >conftest.$ac_ext <<_ACEOF
4834/* confdefs.h. */
4835_ACEOF
4836cat confdefs.h >>conftest.$ac_ext
4837cat >>conftest.$ac_ext <<_ACEOF
4838/* end confdefs.h. */
4839
4840int
4841main ()
4842{
4843#ifndef __GNUC__
4844 choke me
4845#endif
4846
4847 ;
4848 return 0;
4849}
4850_ACEOF
4851rm -f conftest.$ac_objext
4852if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4853 (eval $ac_compile) 2>conftest.er1
4854 ac_status=$?
4855 grep -v '^ *+' conftest.er1 >conftest.err
4856 rm -f conftest.er1
4857 cat conftest.err >&5
4858 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4859 (exit $ac_status); } &&
8ae85421
AM
4860 { ac_try='test -z "$ac_c_werror_flag"
4861 || test ! -s conftest.err'
979273e3
NN
4862 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4863 (eval $ac_try) 2>&5
4864 ac_status=$?
4865 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4866 (exit $ac_status); }; } &&
4867 { ac_try='test -s conftest.$ac_objext'
4868 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4869 (eval $ac_try) 2>&5
4870 ac_status=$?
4871 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4872 (exit $ac_status); }; }; then
4873 ac_compiler_gnu=yes
4874else
4875 echo "$as_me: failed program was:" >&5
4876sed 's/^/| /' conftest.$ac_ext >&5
4877
4878ac_compiler_gnu=no
4879fi
4880rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4881ac_cv_c_compiler_gnu=$ac_compiler_gnu
4882
4883fi
4884echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
4885echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
4886GCC=`test $ac_compiler_gnu = yes && echo yes`
4887ac_test_CFLAGS=${CFLAGS+set}
4888ac_save_CFLAGS=$CFLAGS
4889CFLAGS="-g"
4890echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
4891echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
4892if test "${ac_cv_prog_cc_g+set}" = set; then
4893 echo $ECHO_N "(cached) $ECHO_C" >&6
4894else
4895 cat >conftest.$ac_ext <<_ACEOF
4896/* confdefs.h. */
4897_ACEOF
4898cat confdefs.h >>conftest.$ac_ext
4899cat >>conftest.$ac_ext <<_ACEOF
4900/* end confdefs.h. */
4901
4902int
4903main ()
4904{
4905
4906 ;
4907 return 0;
4908}
4909_ACEOF
4910rm -f conftest.$ac_objext
4911if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4912 (eval $ac_compile) 2>conftest.er1
4913 ac_status=$?
4914 grep -v '^ *+' conftest.er1 >conftest.err
4915 rm -f conftest.er1
4916 cat conftest.err >&5
4917 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4918 (exit $ac_status); } &&
8ae85421
AM
4919 { ac_try='test -z "$ac_c_werror_flag"
4920 || test ! -s conftest.err'
979273e3
NN
4921 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4922 (eval $ac_try) 2>&5
4923 ac_status=$?
4924 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4925 (exit $ac_status); }; } &&
4926 { ac_try='test -s conftest.$ac_objext'
4927 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4928 (eval $ac_try) 2>&5
4929 ac_status=$?
4930 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4931 (exit $ac_status); }; }; then
4932 ac_cv_prog_cc_g=yes
4933else
4934 echo "$as_me: failed program was:" >&5
4935sed 's/^/| /' conftest.$ac_ext >&5
4936
4937ac_cv_prog_cc_g=no
4938fi
4939rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132 4940fi
979273e3
NN
4941echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
4942echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
4943if test "$ac_test_CFLAGS" = set; then
4944 CFLAGS=$ac_save_CFLAGS
4945elif test $ac_cv_prog_cc_g = yes; then
4946 if test "$GCC" = yes; then
4947 CFLAGS="-g -O2"
4948 else
4949 CFLAGS="-g"
4950 fi
252b5132 4951else
979273e3
NN
4952 if test "$GCC" = yes; then
4953 CFLAGS="-O2"
4954 else
4955 CFLAGS=
252b5132 4956 fi
979273e3
NN
4957fi
4958echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
4959echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
4960if test "${ac_cv_prog_cc_stdc+set}" = set; then
4961 echo $ECHO_N "(cached) $ECHO_C" >&6
4962else
4963 ac_cv_prog_cc_stdc=no
4964ac_save_CC=$CC
4965cat >conftest.$ac_ext <<_ACEOF
4966/* confdefs.h. */
4967_ACEOF
4968cat confdefs.h >>conftest.$ac_ext
4969cat >>conftest.$ac_ext <<_ACEOF
4970/* end confdefs.h. */
4971#include <stdarg.h>
4972#include <stdio.h>
4973#include <sys/types.h>
4974#include <sys/stat.h>
4975/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
4976struct buf { int x; };
4977FILE * (*rcsopen) (struct buf *, struct stat *, int);
4978static char *e (p, i)
4979 char **p;
4980 int i;
4981{
4982 return p[i];
4983}
4984static char *f (char * (*g) (char **, int), char **p, ...)
4985{
4986 char *s;
4987 va_list v;
4988 va_start (v,p);
4989 s = g (p, va_arg (v,int));
4990 va_end (v);
4991 return s;
4992}
4993
4994/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
4995 function prototypes and stuff, but not '\xHH' hex character constants.
4996 These don't provoke an error unfortunately, instead are silently treated
4997 as 'x'. The following induces an error, until -std1 is added to get
4998 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
4999 array size at least. It's necessary to write '\x00'==0 to get something
5000 that's true only with -std1. */
5001int osf4_cc_array ['\x00' == 0 ? 1 : -1];
5002
5003int test (int i, double x);
5004struct s1 {int (*f) (int a);};
5005struct s2 {int (*f) (double a);};
5006int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
5007int argc;
5008char **argv;
5009int
5010main ()
5011{
5012return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
5013 ;
5014 return 0;
5015}
5016_ACEOF
5017# Don't try gcc -ansi; that turns off useful extensions and
5018# breaks some systems' header files.
5019# AIX -qlanglvl=ansi
5020# Ultrix and OSF/1 -std1
5021# HP-UX 10.20 and later -Ae
5022# HP-UX older versions -Aa -D_HPUX_SOURCE
5023# SVR4 -Xc -D__EXTENSIONS__
5024for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
5025do
5026 CC="$ac_save_CC $ac_arg"
5027 rm -f conftest.$ac_objext
5028if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5029 (eval $ac_compile) 2>conftest.er1
5030 ac_status=$?
5031 grep -v '^ *+' conftest.er1 >conftest.err
5032 rm -f conftest.er1
5033 cat conftest.err >&5
5034 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5035 (exit $ac_status); } &&
8ae85421
AM
5036 { ac_try='test -z "$ac_c_werror_flag"
5037 || test ! -s conftest.err'
979273e3
NN
5038 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5039 (eval $ac_try) 2>&5
5040 ac_status=$?
5041 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5042 (exit $ac_status); }; } &&
5043 { ac_try='test -s conftest.$ac_objext'
5044 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5045 (eval $ac_try) 2>&5
5046 ac_status=$?
5047 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5048 (exit $ac_status); }; }; then
5049 ac_cv_prog_cc_stdc=$ac_arg
5050break
5051else
5052 echo "$as_me: failed program was:" >&5
5053sed 's/^/| /' conftest.$ac_ext >&5
5054
5055fi
5056rm -f conftest.err conftest.$ac_objext
5057done
5058rm -f conftest.$ac_ext conftest.$ac_objext
5059CC=$ac_save_CC
5060
252b5132
RH
5061fi
5062
979273e3
NN
5063case "x$ac_cv_prog_cc_stdc" in
5064 x|xno)
5065 echo "$as_me:$LINENO: result: none needed" >&5
5066echo "${ECHO_T}none needed" >&6 ;;
5067 *)
5068 echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
5069echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
5070 CC="$CC $ac_cv_prog_cc_stdc" ;;
5071esac
252b5132 5072
979273e3
NN
5073# Some people use a C++ compiler to compile C. Since we use `exit',
5074# in C++ we need to declare it. In case someone uses the same compiler
5075# for both compiling C and C++ we need to have the C++ compiler decide
5076# the declaration of exit, since it's the most demanding environment.
5077cat >conftest.$ac_ext <<_ACEOF
5078#ifndef __cplusplus
5079 choke me
5080#endif
5081_ACEOF
5082rm -f conftest.$ac_objext
5083if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5084 (eval $ac_compile) 2>conftest.er1
5085 ac_status=$?
5086 grep -v '^ *+' conftest.er1 >conftest.err
5087 rm -f conftest.er1
5088 cat conftest.err >&5
5089 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5090 (exit $ac_status); } &&
8ae85421
AM
5091 { ac_try='test -z "$ac_c_werror_flag"
5092 || test ! -s conftest.err'
979273e3
NN
5093 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5094 (eval $ac_try) 2>&5
5095 ac_status=$?
5096 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5097 (exit $ac_status); }; } &&
5098 { ac_try='test -s conftest.$ac_objext'
5099 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5100 (eval $ac_try) 2>&5
5101 ac_status=$?
5102 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5103 (exit $ac_status); }; }; then
5104 for ac_declaration in \
5105 '' \
5106 'extern "C" void std::exit (int) throw (); using std::exit;' \
5107 'extern "C" void std::exit (int); using std::exit;' \
5108 'extern "C" void exit (int) throw ();' \
5109 'extern "C" void exit (int);' \
5110 'void exit (int);'
5111do
5112 cat >conftest.$ac_ext <<_ACEOF
5113/* confdefs.h. */
5114_ACEOF
5115cat confdefs.h >>conftest.$ac_ext
5116cat >>conftest.$ac_ext <<_ACEOF
5117/* end confdefs.h. */
5118$ac_declaration
5119#include <stdlib.h>
5120int
5121main ()
5122{
5123exit (42);
5124 ;
5125 return 0;
5126}
5127_ACEOF
5128rm -f conftest.$ac_objext
5129if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5130 (eval $ac_compile) 2>conftest.er1
5131 ac_status=$?
5132 grep -v '^ *+' conftest.er1 >conftest.err
5133 rm -f conftest.er1
5134 cat conftest.err >&5
5135 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5136 (exit $ac_status); } &&
8ae85421
AM
5137 { ac_try='test -z "$ac_c_werror_flag"
5138 || test ! -s conftest.err'
979273e3
NN
5139 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5140 (eval $ac_try) 2>&5
5141 ac_status=$?
5142 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5143 (exit $ac_status); }; } &&
5144 { ac_try='test -s conftest.$ac_objext'
5145 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5146 (eval $ac_try) 2>&5
5147 ac_status=$?
5148 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5149 (exit $ac_status); }; }; then
5150 :
5151else
5152 echo "$as_me: failed program was:" >&5
5153sed 's/^/| /' conftest.$ac_ext >&5
252b5132 5154
979273e3
NN
5155continue
5156fi
5157rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
5158 cat >conftest.$ac_ext <<_ACEOF
5159/* confdefs.h. */
5160_ACEOF
5161cat confdefs.h >>conftest.$ac_ext
5162cat >>conftest.$ac_ext <<_ACEOF
5163/* end confdefs.h. */
5164$ac_declaration
5165int
5166main ()
5167{
5168exit (42);
5169 ;
5170 return 0;
5171}
5172_ACEOF
5173rm -f conftest.$ac_objext
5174if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5175 (eval $ac_compile) 2>conftest.er1
5176 ac_status=$?
5177 grep -v '^ *+' conftest.er1 >conftest.err
5178 rm -f conftest.er1
5179 cat conftest.err >&5
5180 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5181 (exit $ac_status); } &&
8ae85421
AM
5182 { ac_try='test -z "$ac_c_werror_flag"
5183 || test ! -s conftest.err'
979273e3
NN
5184 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5185 (eval $ac_try) 2>&5
5186 ac_status=$?
5187 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5188 (exit $ac_status); }; } &&
5189 { ac_try='test -s conftest.$ac_objext'
5190 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5191 (eval $ac_try) 2>&5
5192 ac_status=$?
5193 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5194 (exit $ac_status); }; }; then
5195 break
5196else
5197 echo "$as_me: failed program was:" >&5
5198sed 's/^/| /' conftest.$ac_ext >&5
252b5132 5199
979273e3
NN
5200fi
5201rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
5202done
5203rm -f conftest*
5204if test -n "$ac_declaration"; then
5205 echo '#ifdef __cplusplus' >>confdefs.h
5206 echo $ac_declaration >>confdefs.h
5207 echo '#endif' >>confdefs.h
5208fi
252b5132 5209
252b5132 5210else
979273e3
NN
5211 echo "$as_me: failed program was:" >&5
5212sed 's/^/| /' conftest.$ac_ext >&5
5213
252b5132 5214fi
979273e3 5215rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132 5216ac_ext=c
252b5132 5217ac_cpp='$CPP $CPPFLAGS'
979273e3
NN
5218ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
5219ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
5220ac_compiler_gnu=$ac_cv_c_compiler_gnu
252b5132 5221
252b5132 5222
32fba81d 5223ALL_LINGUAS="fr sv tr es da de id pt_BR ro nl fi vi ga zh_CN"
20e95c23
DJ
5224# If we haven't got the data from the intl directory,
5225# assume NLS is disabled.
5226USE_NLS=no
5227LIBINTL=
5228LIBINTL_DEP=
5229INCINTL=
5230XGETTEXT=
5231GMSGFMT=
5232POSUB=
1c0d3aa6
NC
5233
5234if test -f ../intl/config.intl; then
5235 . ../intl/config.intl
20e95c23
DJ
5236fi
5237echo "$as_me:$LINENO: checking whether NLS is requested" >&5
5238echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6
5239if test x"$USE_NLS" != xyes; then
5240 echo "$as_me:$LINENO: result: no" >&5
5241echo "${ECHO_T}no" >&6
252b5132 5242else
20e95c23
DJ
5243 echo "$as_me:$LINENO: result: yes" >&5
5244echo "${ECHO_T}yes" >&6
5245
5246cat >>confdefs.h <<\_ACEOF
5247#define ENABLE_NLS 1
5248_ACEOF
5249
5250
5251 echo "$as_me:$LINENO: checking for catalogs to be installed" >&5
5252echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6
5253 # Look for .po and .gmo files in the source directory.
5254 CATALOGS=
5255 XLINGUAS=
5256 for cat in $srcdir/po/*.gmo $srcdir/po/*.po; do
5257 # If there aren't any .gmo files the shell will give us the
5258 # literal string "../path/to/srcdir/po/*.gmo" which has to be
5259 # weeded out.
5260 case "$cat" in *\**)
5261 continue;;
5262 esac
5263 # The quadruple backslash is collapsed to a double backslash
5264 # by the backticks, then collapsed again by the double quotes,
5265 # leaving us with one backslash in the sed expression (right
5266 # before the dot that mustn't act as a wildcard).
5267 cat=`echo $cat | sed -e "s!$srcdir/po/!!" -e "s!\\\\.po!.gmo!"`
5268 lang=`echo $cat | sed -e "s!\\\\.gmo!!"`
5269 # The user is allowed to set LINGUAS to a list of languages to
5270 # install catalogs for. If it's empty that means "all of them."
5271 if test "x$LINGUAS" = x; then
5272 CATALOGS="$CATALOGS $cat"
5273 XLINGUAS="$XLINGUAS $lang"
5274 else
5275 case "$LINGUAS" in *$lang*)
5276 CATALOGS="$CATALOGS $cat"
5277 XLINGUAS="$XLINGUAS $lang"
5278 ;;
5279 esac
5280 fi
5281 done
5282 LINGUAS="$XLINGUAS"
5283 echo "$as_me:$LINENO: result: $LINGUAS" >&5
5284echo "${ECHO_T}$LINGUAS" >&6
5285
5286
5287 DATADIRNAME=share
5288
5289 INSTOBJEXT=.mo
5290
5291 GENCAT=gencat
5292
5293 CATOBJEXT=.gmo
5294
5295fi
5296
5297 MKINSTALLDIRS=
5298 if test -n "$ac_aux_dir"; then
5299 case "$ac_aux_dir" in
5300 /*) MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" ;;
5301 *) MKINSTALLDIRS="\$(top_builddir)/$ac_aux_dir/mkinstalldirs" ;;
5302 esac
5303 fi
5304 if test -z "$MKINSTALLDIRS"; then
5305 MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs"
5306 fi
5307
5308
5309
5310 echo "$as_me:$LINENO: checking whether NLS is requested" >&5
5311echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6
5312 # Check whether --enable-nls or --disable-nls was given.
5313if test "${enable_nls+set}" = set; then
5314 enableval="$enable_nls"
5315 USE_NLS=$enableval
252b5132 5316else
20e95c23
DJ
5317 USE_NLS=yes
5318fi;
5319 echo "$as_me:$LINENO: result: $USE_NLS" >&5
5320echo "${ECHO_T}$USE_NLS" >&6
5321
5322
5323
5324
5325
5326
5327# Prepare PATH_SEPARATOR.
5328# The user is always right.
5329if test "${PATH_SEPARATOR+set}" != set; then
5330 echo "#! /bin/sh" >conf$$.sh
5331 echo "exit 0" >>conf$$.sh
5332 chmod +x conf$$.sh
5333 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
5334 PATH_SEPARATOR=';'
5335 else
5336 PATH_SEPARATOR=:
979273e3 5337 fi
20e95c23
DJ
5338 rm -f conf$$.sh
5339fi
979273e3 5340
20e95c23
DJ
5341# Find out how to test for executable files. Don't use a zero-byte file,
5342# as systems may use methods other than mode bits to determine executability.
5343cat >conf$$.file <<_ASEOF
5344#! /bin/sh
5345exit 0
5346_ASEOF
5347chmod +x conf$$.file
5348if test -x conf$$.file >/dev/null 2>&1; then
5349 ac_executable_p="test -x"
5350else
5351 ac_executable_p="test -f"
252b5132 5352fi
20e95c23
DJ
5353rm -f conf$$.file
5354
5355# Extract the first word of "msgfmt", so it can be a program name with args.
5356set dummy msgfmt; ac_word=$2
5357echo "$as_me:$LINENO: checking for $ac_word" >&5
5358echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
5359if test "${ac_cv_path_MSGFMT+set}" = set; then
5360 echo $ECHO_N "(cached) $ECHO_C" >&6
5361else
5362 case "$MSGFMT" in
5363 [\\/]* | ?:[\\/]*)
5364 ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path.
5365 ;;
5366 *)
5367 ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR
5368 for ac_dir in $PATH; do
5369 IFS="$ac_save_IFS"
5370 test -z "$ac_dir" && ac_dir=.
5371 for ac_exec_ext in '' $ac_executable_extensions; do
5372 if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then
5373 if $ac_dir/$ac_word --statistics /dev/null >/dev/null 2>&1 &&
5374 (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
5375 ac_cv_path_MSGFMT="$ac_dir/$ac_word$ac_exec_ext"
5376 break 2
5377 fi
5378 fi
5379 done
5380 done
5381 IFS="$ac_save_IFS"
5382 test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":"
5383 ;;
5384esac
252b5132 5385fi
20e95c23
DJ
5386MSGFMT="$ac_cv_path_MSGFMT"
5387if test "$MSGFMT" != ":"; then
5388 echo "$as_me:$LINENO: result: $MSGFMT" >&5
5389echo "${ECHO_T}$MSGFMT" >&6
252b5132 5390else
979273e3
NN
5391 echo "$as_me:$LINENO: result: no" >&5
5392echo "${ECHO_T}no" >&6
252b5132
RH
5393fi
5394
20e95c23
DJ
5395 # Extract the first word of "gmsgfmt", so it can be a program name with args.
5396set dummy gmsgfmt; ac_word=$2
979273e3
NN
5397echo "$as_me:$LINENO: checking for $ac_word" >&5
5398echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
20e95c23 5399if test "${ac_cv_path_GMSGFMT+set}" = set; then
979273e3 5400 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 5401else
20e95c23
DJ
5402 case $GMSGFMT in
5403 [\\/]* | ?:[\\/]*)
5404 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path.
5405 ;;
5406 *)
5407 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
979273e3
NN
5408for as_dir in $PATH
5409do
5410 IFS=$as_save_IFS
5411 test -z "$as_dir" && as_dir=.
5412 for ac_exec_ext in '' $ac_executable_extensions; do
5413 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
20e95c23 5414 ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext"
979273e3
NN
5415 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5416 break 2
5417 fi
5418done
5419done
252b5132 5420
20e95c23
DJ
5421 test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT"
5422 ;;
5423esac
979273e3 5424fi
20e95c23
DJ
5425GMSGFMT=$ac_cv_path_GMSGFMT
5426
5427if test -n "$GMSGFMT"; then
5428 echo "$as_me:$LINENO: result: $GMSGFMT" >&5
5429echo "${ECHO_T}$GMSGFMT" >&6
252b5132 5430else
979273e3
NN
5431 echo "$as_me:$LINENO: result: no" >&5
5432echo "${ECHO_T}no" >&6
252b5132
RH
5433fi
5434
20e95c23
DJ
5435
5436
5437# Prepare PATH_SEPARATOR.
5438# The user is always right.
5439if test "${PATH_SEPARATOR+set}" != set; then
5440 echo "#! /bin/sh" >conf$$.sh
5441 echo "exit 0" >>conf$$.sh
5442 chmod +x conf$$.sh
5443 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
5444 PATH_SEPARATOR=';'
5445 else
5446 PATH_SEPARATOR=:
5447 fi
5448 rm -f conf$$.sh
979273e3 5449fi
252b5132 5450
20e95c23
DJ
5451# Find out how to test for executable files. Don't use a zero-byte file,
5452# as systems may use methods other than mode bits to determine executability.
5453cat >conf$$.file <<_ASEOF
5454#! /bin/sh
5455exit 0
5456_ASEOF
5457chmod +x conf$$.file
5458if test -x conf$$.file >/dev/null 2>&1; then
5459 ac_executable_p="test -x"
5460else
5461 ac_executable_p="test -f"
252b5132 5462fi
20e95c23
DJ
5463rm -f conf$$.file
5464
5465# Extract the first word of "xgettext", so it can be a program name with args.
5466set dummy xgettext; ac_word=$2
5467echo "$as_me:$LINENO: checking for $ac_word" >&5
5468echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
5469if test "${ac_cv_path_XGETTEXT+set}" = set; then
979273e3 5470 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 5471else
20e95c23
DJ
5472 case "$XGETTEXT" in
5473 [\\/]* | ?:[\\/]*)
5474 ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path.
5475 ;;
5476 *)
5477 ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR
5478 for ac_dir in $PATH; do
5479 IFS="$ac_save_IFS"
5480 test -z "$ac_dir" && ac_dir=.
5481 for ac_exec_ext in '' $ac_executable_extensions; do
5482 if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then
5483 if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 &&
5484 (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
5485 ac_cv_path_XGETTEXT="$ac_dir/$ac_word$ac_exec_ext"
5486 break 2
5487 fi
5488 fi
5489 done
5490 done
5491 IFS="$ac_save_IFS"
5492 test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":"
5493 ;;
5494esac
5495fi
5496XGETTEXT="$ac_cv_path_XGETTEXT"
5497if test "$XGETTEXT" != ":"; then
5498 echo "$as_me:$LINENO: result: $XGETTEXT" >&5
5499echo "${ECHO_T}$XGETTEXT" >&6
5500else
5501 echo "$as_me:$LINENO: result: no" >&5
5502echo "${ECHO_T}no" >&6
5503fi
5504
5505 rm -f messages.po
5506
5507
5508# Prepare PATH_SEPARATOR.
5509# The user is always right.
5510if test "${PATH_SEPARATOR+set}" != set; then
5511 echo "#! /bin/sh" >conf$$.sh
5512 echo "exit 0" >>conf$$.sh
5513 chmod +x conf$$.sh
5514 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
5515 PATH_SEPARATOR=';'
979273e3 5516 else
20e95c23 5517 PATH_SEPARATOR=:
979273e3 5518 fi
20e95c23 5519 rm -f conf$$.sh
979273e3 5520fi
979273e3 5521
20e95c23
DJ
5522# Find out how to test for executable files. Don't use a zero-byte file,
5523# as systems may use methods other than mode bits to determine executability.
5524cat >conf$$.file <<_ASEOF
5525#! /bin/sh
5526exit 0
5527_ASEOF
5528chmod +x conf$$.file
5529if test -x conf$$.file >/dev/null 2>&1; then
5530 ac_executable_p="test -x"
5531else
5532 ac_executable_p="test -f"
979273e3 5533fi
20e95c23 5534rm -f conf$$.file
979273e3 5535
20e95c23
DJ
5536# Extract the first word of "msgmerge", so it can be a program name with args.
5537set dummy msgmerge; ac_word=$2
5538echo "$as_me:$LINENO: checking for $ac_word" >&5
5539echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
5540if test "${ac_cv_path_MSGMERGE+set}" = set; then
5541 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 5542else
20e95c23
DJ
5543 case "$MSGMERGE" in
5544 [\\/]* | ?:[\\/]*)
5545 ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path.
5546 ;;
5547 *)
5548 ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR
5549 for ac_dir in $PATH; do
5550 IFS="$ac_save_IFS"
5551 test -z "$ac_dir" && ac_dir=.
5552 for ac_exec_ext in '' $ac_executable_extensions; do
5553 if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then
5554 if $ac_dir/$ac_word --update -q /dev/null /dev/null >/dev/null 2>&1; then
5555 ac_cv_path_MSGMERGE="$ac_dir/$ac_word$ac_exec_ext"
5556 break 2
5557 fi
5558 fi
5559 done
5560 done
5561 IFS="$ac_save_IFS"
5562 test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":"
5563 ;;
5564esac
252b5132 5565fi
20e95c23
DJ
5566MSGMERGE="$ac_cv_path_MSGMERGE"
5567if test "$MSGMERGE" != ":"; then
5568 echo "$as_me:$LINENO: result: $MSGMERGE" >&5
5569echo "${ECHO_T}$MSGMERGE" >&6
979273e3 5570else
20e95c23
DJ
5571 echo "$as_me:$LINENO: result: no" >&5
5572echo "${ECHO_T}no" >&6
5573fi
979273e3 5574
20e95c23
DJ
5575
5576 if test "$GMSGFMT" != ":"; then
5577 if $GMSGFMT --statistics /dev/null >/dev/null 2>&1 &&
5578 (if $GMSGFMT --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
5579 : ;
5580 else
5581 GMSGFMT=`echo "$GMSGFMT" | sed -e 's,^.*/,,'`
5582 echo "$as_me:$LINENO: result: found $GMSGFMT program is not GNU msgfmt; ignore it" >&5
5583echo "${ECHO_T}found $GMSGFMT program is not GNU msgfmt; ignore it" >&6
5584 GMSGFMT=":"
5585 fi
5586 fi
5587
5588 if test "$XGETTEXT" != ":"; then
5589 if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 &&
5590 (if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
5591 : ;
5592 else
5593 echo "$as_me:$LINENO: result: found xgettext program is not GNU xgettext; ignore it" >&5
5594echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6
5595 XGETTEXT=":"
5596 fi
5597 rm -f messages.po
5598 fi
5599
5600 ac_config_commands="$ac_config_commands default-1"
5601
5602
5603
5604. ${srcdir}/../bfd/configure.host
5605
5606# Put a plausible default for CC_FOR_BUILD in Makefile.
5607if test -z "$CC_FOR_BUILD"; then
5608 if test "x$cross_compiling" = "xno"; then
5609 CC_FOR_BUILD='$(CC)'
5610 else
5611 CC_FOR_BUILD=gcc
5612 fi
252b5132 5613fi
979273e3 5614
20e95c23
DJ
5615# Also set EXEEXT_FOR_BUILD.
5616if test "x$cross_compiling" = "xno"; then
5617 EXEEXT_FOR_BUILD='$(EXEEXT)'
5618else
5619 echo "$as_me:$LINENO: checking for build system executable suffix" >&5
5620echo $ECHO_N "checking for build system executable suffix... $ECHO_C" >&6
5621if test "${bfd_cv_build_exeext+set}" = set; then
5622 echo $ECHO_N "(cached) $ECHO_C" >&6
5623else
5624 rm -f conftest*
5625 echo 'int main () { return 0; }' > conftest.c
5626 bfd_cv_build_exeext=
5627 ${CC_FOR_BUILD} -o conftest conftest.c 1>&5 2>&5
5628 for file in conftest.*; do
5629 case $file in
5630 *.c | *.o | *.obj | *.ilk | *.pdb) ;;
5631 *) bfd_cv_build_exeext=`echo $file | sed -e s/conftest//` ;;
5632 esac
5633 done
5634 rm -f conftest*
5635 test x"${bfd_cv_build_exeext}" = x && bfd_cv_build_exeext=no
5636fi
5637echo "$as_me:$LINENO: result: $bfd_cv_build_exeext" >&5
5638echo "${ECHO_T}$bfd_cv_build_exeext" >&6
5639 EXEEXT_FOR_BUILD=""
5640 test x"${bfd_cv_build_exeext}" != xno && EXEEXT_FOR_BUILD=${bfd_cv_build_exeext}
252b5132 5641fi
979273e3 5642
20e95c23
DJ
5643
5644
5645# Find a good install program. We prefer a C program (faster),
5646# so one script is as good as another. But avoid the broken or
5647# incompatible versions:
5648# SysV /etc/install, /usr/sbin/install
5649# SunOS /usr/etc/install
5650# IRIX /sbin/install
5651# AIX /bin/install
5652# AmigaOS /C/install, which installs bootblocks on floppy discs
5653# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
5654# AFS /usr/afsws/bin/install, which mishandles nonexistent args
5655# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
5656# OS/2's system install, which has a completely different semantic
5657# ./install, which can be erroneously created by make from ./install.sh.
5658echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
5659echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
5660if test -z "$INSTALL"; then
5661if test "${ac_cv_path_install+set}" = set; then
5662 echo $ECHO_N "(cached) $ECHO_C" >&6
5663else
5664 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5665for as_dir in $PATH
5666do
5667 IFS=$as_save_IFS
5668 test -z "$as_dir" && as_dir=.
5669 # Account for people who put trailing slashes in PATH elements.
5670case $as_dir/ in
5671 ./ | .// | /cC/* | \
5672 /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
5673 ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \
5674 /usr/ucb/* ) ;;
5675 *)
5676 # OSF1 and SCO ODT 3.0 have their own names for install.
5677 # Don't use installbsd from OSF since it installs stuff as root
5678 # by default.
5679 for ac_prog in ginstall scoinst install; do
5680 for ac_exec_ext in '' $ac_executable_extensions; do
5681 if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
5682 if test $ac_prog = install &&
5683 grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
5684 # AIX install. It has an incompatible calling convention.
5685 :
5686 elif test $ac_prog = install &&
5687 grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
5688 # program-specific install script used by HP pwplus--don't use.
5689 :
5690 else
5691 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
5692 break 3
5693 fi
5694 fi
5695 done
979273e3 5696 done
20e95c23
DJ
5697 ;;
5698esac
5699done
5700
979273e3 5701
252b5132 5702fi
20e95c23
DJ
5703 if test "${ac_cv_path_install+set}" = set; then
5704 INSTALL=$ac_cv_path_install
5705 else
5706 # As a last resort, use the slow shell script. We don't cache a
5707 # path for INSTALL within a source directory, because that will
5708 # break other packages using the cache if that directory is
5709 # removed, or if the path is relative.
5710 INSTALL=$ac_install_sh
5711 fi
252b5132 5712fi
20e95c23
DJ
5713echo "$as_me:$LINENO: result: $INSTALL" >&5
5714echo "${ECHO_T}$INSTALL" >&6
5715
5716# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
5717# It thinks the first close brace ends the variable substitution.
5718test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
5719
5720test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
5721
5722test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
5723
5724
5725ac_ext=c
5726ac_cpp='$CPP $CPPFLAGS'
5727ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
5728ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
5729ac_compiler_gnu=$ac_cv_c_compiler_gnu
5730echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
5731echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
5732# On Suns, sometimes $CPP names a directory.
5733if test -n "$CPP" && test -d "$CPP"; then
5734 CPP=
5735fi
5736if test -z "$CPP"; then
5737 if test "${ac_cv_prog_CPP+set}" = set; then
5738 echo $ECHO_N "(cached) $ECHO_C" >&6
5739else
5740 # Double quotes because CPP needs to be expanded
5741 for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
5742 do
5743 ac_preproc_ok=false
979273e3
NN
5744for ac_c_preproc_warn_flag in '' yes
5745do
5746 # Use a header file that comes with gcc, so configuring glibc
5747 # with a fresh cross-compiler works.
5748 # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
5749 # <limits.h> exists even on freestanding compilers.
5750 # On the NeXT, cc -E runs the code through the compiler's parser,
5751 # not just through cpp. "Syntax error" is here to catch this case.
5752 cat >conftest.$ac_ext <<_ACEOF
5753/* confdefs.h. */
5754_ACEOF
5755cat confdefs.h >>conftest.$ac_ext
5756cat >>conftest.$ac_ext <<_ACEOF
5757/* end confdefs.h. */
5758#ifdef __STDC__
5759# include <limits.h>
5760#else
5761# include <assert.h>
5762#endif
5763 Syntax error
5764_ACEOF
5765if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
5766 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
5767 ac_status=$?
5768 grep -v '^ *+' conftest.er1 >conftest.err
5769 rm -f conftest.er1
5770 cat conftest.err >&5
5771 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5772 (exit $ac_status); } >/dev/null; then
5773 if test -s conftest.err; then
5774 ac_cpp_err=$ac_c_preproc_warn_flag
5775 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
5776 else
5777 ac_cpp_err=
5778 fi
ac48eca1 5779else
979273e3
NN
5780 ac_cpp_err=yes
5781fi
5782if test -z "$ac_cpp_err"; then
5783 :
ac48eca1 5784else
979273e3
NN
5785 echo "$as_me: failed program was:" >&5
5786sed 's/^/| /' conftest.$ac_ext >&5
5787
5788 # Broken: fails on valid input.
5789continue
5790fi
5791rm -f conftest.err conftest.$ac_ext
5792
20e95c23
DJ
5793 # OK, works on sane cases. Now check whether non-existent headers
5794 # can be detected and how.
979273e3
NN
5795 cat >conftest.$ac_ext <<_ACEOF
5796/* confdefs.h. */
5797_ACEOF
5798cat confdefs.h >>conftest.$ac_ext
5799cat >>conftest.$ac_ext <<_ACEOF
5800/* end confdefs.h. */
20e95c23 5801#include <ac_nonexistent.h>
979273e3 5802_ACEOF
20e95c23
DJ
5803if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
5804 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
979273e3
NN
5805 ac_status=$?
5806 grep -v '^ *+' conftest.er1 >conftest.err
5807 rm -f conftest.er1
5808 cat conftest.err >&5
5809 echo "$as_me:$LINENO: \$? = $ac_status" >&5
20e95c23
DJ
5810 (exit $ac_status); } >/dev/null; then
5811 if test -s conftest.err; then
5812 ac_cpp_err=$ac_c_preproc_warn_flag
5813 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
5814 else
5815 ac_cpp_err=
5816 fi
5817else
5818 ac_cpp_err=yes
5819fi
5820if test -z "$ac_cpp_err"; then
5821 # Broken: success on invalid input.
5822continue
252b5132 5823else
979273e3
NN
5824 echo "$as_me: failed program was:" >&5
5825sed 's/^/| /' conftest.$ac_ext >&5
5826
20e95c23
DJ
5827 # Passes both tests.
5828ac_preproc_ok=:
5829break
252b5132 5830fi
20e95c23 5831rm -f conftest.err conftest.$ac_ext
252b5132 5832
20e95c23
DJ
5833done
5834# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
5835rm -f conftest.err conftest.$ac_ext
5836if $ac_preproc_ok; then
5837 break
5838fi
979273e3 5839
20e95c23
DJ
5840 done
5841 ac_cv_prog_CPP=$CPP
252b5132 5842
252b5132 5843fi
20e95c23 5844 CPP=$ac_cv_prog_CPP
252b5132 5845else
20e95c23 5846 ac_cv_prog_CPP=$CPP
252b5132 5847fi
20e95c23
DJ
5848echo "$as_me:$LINENO: result: $CPP" >&5
5849echo "${ECHO_T}$CPP" >&6
5850ac_preproc_ok=false
5851for ac_c_preproc_warn_flag in '' yes
252b5132 5852do
20e95c23
DJ
5853 # Use a header file that comes with gcc, so configuring glibc
5854 # with a fresh cross-compiler works.
5855 # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
5856 # <limits.h> exists even on freestanding compilers.
5857 # On the NeXT, cc -E runs the code through the compiler's parser,
5858 # not just through cpp. "Syntax error" is here to catch this case.
979273e3
NN
5859 cat >conftest.$ac_ext <<_ACEOF
5860/* confdefs.h. */
5861_ACEOF
5862cat confdefs.h >>conftest.$ac_ext
5863cat >>conftest.$ac_ext <<_ACEOF
5864/* end confdefs.h. */
979273e3
NN
5865#ifdef __STDC__
5866# include <limits.h>
5867#else
5868# include <assert.h>
5869#endif
20e95c23 5870 Syntax error
979273e3 5871_ACEOF
20e95c23
DJ
5872if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
5873 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
979273e3
NN
5874 ac_status=$?
5875 grep -v '^ *+' conftest.er1 >conftest.err
5876 rm -f conftest.er1
5877 cat conftest.err >&5
5878 echo "$as_me:$LINENO: \$? = $ac_status" >&5
20e95c23
DJ
5879 (exit $ac_status); } >/dev/null; then
5880 if test -s conftest.err; then
5881 ac_cpp_err=$ac_c_preproc_warn_flag
5882 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
5883 else
5884 ac_cpp_err=
5885 fi
5886else
5887 ac_cpp_err=yes
5888fi
5889if test -z "$ac_cpp_err"; then
5890 :
979273e3
NN
5891else
5892 echo "$as_me: failed program was:" >&5
5893sed 's/^/| /' conftest.$ac_ext >&5
5894
20e95c23
DJ
5895 # Broken: fails on valid input.
5896continue
979273e3 5897fi
20e95c23 5898rm -f conftest.err conftest.$ac_ext
252b5132 5899
20e95c23
DJ
5900 # OK, works on sane cases. Now check whether non-existent headers
5901 # can be detected and how.
5902 cat >conftest.$ac_ext <<_ACEOF
5903/* confdefs.h. */
5904_ACEOF
5905cat confdefs.h >>conftest.$ac_ext
5906cat >>conftest.$ac_ext <<_ACEOF
5907/* end confdefs.h. */
5908#include <ac_nonexistent.h>
5909_ACEOF
5910if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
5911 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
5912 ac_status=$?
5913 grep -v '^ *+' conftest.er1 >conftest.err
5914 rm -f conftest.er1
5915 cat conftest.err >&5
5916 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5917 (exit $ac_status); } >/dev/null; then
5918 if test -s conftest.err; then
5919 ac_cpp_err=$ac_c_preproc_warn_flag
5920 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
5921 else
5922 ac_cpp_err=
5923 fi
5924else
5925 ac_cpp_err=yes
252b5132 5926fi
20e95c23
DJ
5927if test -z "$ac_cpp_err"; then
5928 # Broken: success on invalid input.
5929continue
252b5132 5930else
20e95c23
DJ
5931 echo "$as_me: failed program was:" >&5
5932sed 's/^/| /' conftest.$ac_ext >&5
979273e3 5933
20e95c23
DJ
5934 # Passes both tests.
5935ac_preproc_ok=:
5936break
252b5132 5937fi
20e95c23 5938rm -f conftest.err conftest.$ac_ext
979273e3 5939
20e95c23
DJ
5940done
5941# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
5942rm -f conftest.err conftest.$ac_ext
5943if $ac_preproc_ok; then
5944 :
252b5132 5945else
20e95c23
DJ
5946 { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
5947See \`config.log' for more details." >&5
5948echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check
5949See \`config.log' for more details." >&2;}
5950 { (exit 1); exit 1; }; }
252b5132
RH
5951fi
5952
20e95c23
DJ
5953ac_ext=c
5954ac_cpp='$CPP $CPPFLAGS'
5955ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
5956ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
5957ac_compiler_gnu=$ac_cv_c_compiler_gnu
5958
5959
5960echo "$as_me:$LINENO: checking for egrep" >&5
5961echo $ECHO_N "checking for egrep... $ECHO_C" >&6
5962if test "${ac_cv_prog_egrep+set}" = set; then
979273e3 5963 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 5964else
20e95c23
DJ
5965 if echo a | (grep -E '(a|b)') >/dev/null 2>&1
5966 then ac_cv_prog_egrep='grep -E'
5967 else ac_cv_prog_egrep='egrep'
252b5132 5968 fi
252b5132 5969fi
20e95c23
DJ
5970echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5
5971echo "${ECHO_T}$ac_cv_prog_egrep" >&6
5972 EGREP=$ac_cv_prog_egrep
5973
252b5132 5974
20e95c23
DJ
5975echo "$as_me:$LINENO: checking for ANSI C header files" >&5
5976echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
5977if test "${ac_cv_header_stdc+set}" = set; then
5978 echo $ECHO_N "(cached) $ECHO_C" >&6
5979else
5980 cat >conftest.$ac_ext <<_ACEOF
979273e3
NN
5981/* confdefs.h. */
5982_ACEOF
5983cat confdefs.h >>conftest.$ac_ext
5984cat >>conftest.$ac_ext <<_ACEOF
5985/* end confdefs.h. */
20e95c23
DJ
5986#include <stdlib.h>
5987#include <stdarg.h>
5988#include <string.h>
5989#include <float.h>
252b5132 5990
979273e3
NN
5991int
5992main ()
5993{
20e95c23 5994
979273e3
NN
5995 ;
5996 return 0;
5997}
5998_ACEOF
20e95c23
DJ
5999rm -f conftest.$ac_objext
6000if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6001 (eval $ac_compile) 2>conftest.er1
979273e3
NN
6002 ac_status=$?
6003 grep -v '^ *+' conftest.er1 >conftest.err
6004 rm -f conftest.er1
6005 cat conftest.err >&5
6006 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6007 (exit $ac_status); } &&
8ae85421
AM
6008 { ac_try='test -z "$ac_c_werror_flag"
6009 || test ! -s conftest.err'
979273e3
NN
6010 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6011 (eval $ac_try) 2>&5
6012 ac_status=$?
6013 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6014 (exit $ac_status); }; } &&
20e95c23 6015 { ac_try='test -s conftest.$ac_objext'
979273e3
NN
6016 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6017 (eval $ac_try) 2>&5
6018 ac_status=$?
6019 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6020 (exit $ac_status); }; }; then
20e95c23 6021 ac_cv_header_stdc=yes
252b5132 6022else
979273e3
NN
6023 echo "$as_me: failed program was:" >&5
6024sed 's/^/| /' conftest.$ac_ext >&5
6025
20e95c23 6026ac_cv_header_stdc=no
252b5132 6027fi
20e95c23 6028rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132 6029
20e95c23
DJ
6030if test $ac_cv_header_stdc = yes; then
6031 # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
6032 cat >conftest.$ac_ext <<_ACEOF
6033/* confdefs.h. */
6034_ACEOF
6035cat confdefs.h >>conftest.$ac_ext
6036cat >>conftest.$ac_ext <<_ACEOF
6037/* end confdefs.h. */
6038#include <string.h>
252b5132 6039
20e95c23
DJ
6040_ACEOF
6041if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
6042 $EGREP "memchr" >/dev/null 2>&1; then
6043 :
252b5132 6044else
20e95c23 6045 ac_cv_header_stdc=no
252b5132 6046fi
20e95c23
DJ
6047rm -f conftest*
6048
252b5132
RH
6049fi
6050
20e95c23
DJ
6051if test $ac_cv_header_stdc = yes; then
6052 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
6053 cat >conftest.$ac_ext <<_ACEOF
6054/* confdefs.h. */
6055_ACEOF
6056cat confdefs.h >>conftest.$ac_ext
6057cat >>conftest.$ac_ext <<_ACEOF
6058/* end confdefs.h. */
6059#include <stdlib.h>
6060
6061_ACEOF
6062if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
6063 $EGREP "free" >/dev/null 2>&1; then
6064 :
252b5132 6065else
20e95c23
DJ
6066 ac_cv_header_stdc=no
6067fi
6068rm -f conftest*
979273e3 6069
252b5132 6070fi
979273e3 6071
20e95c23
DJ
6072if test $ac_cv_header_stdc = yes; then
6073 # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
6074 if test "$cross_compiling" = yes; then
6075 :
252b5132 6076else
20e95c23
DJ
6077 cat >conftest.$ac_ext <<_ACEOF
6078/* confdefs.h. */
6079_ACEOF
6080cat confdefs.h >>conftest.$ac_ext
6081cat >>conftest.$ac_ext <<_ACEOF
6082/* end confdefs.h. */
6083#include <ctype.h>
6084#if ((' ' & 0x0FF) == 0x020)
6085# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
6086# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
6087#else
6088# define ISLOWER(c) \
6089 (('a' <= (c) && (c) <= 'i') \
6090 || ('j' <= (c) && (c) <= 'r') \
6091 || ('s' <= (c) && (c) <= 'z'))
6092# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
6093#endif
252b5132 6094
20e95c23
DJ
6095#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
6096int
6097main ()
6098{
6099 int i;
6100 for (i = 0; i < 256; i++)
6101 if (XOR (islower (i), ISLOWER (i))
6102 || toupper (i) != TOUPPER (i))
6103 exit(2);
6104 exit (0);
6105}
6106_ACEOF
6107rm -f conftest$ac_exeext
6108if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6109 (eval $ac_link) 2>&5
6110 ac_status=$?
6111 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6112 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
6113 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6114 (eval $ac_try) 2>&5
6115 ac_status=$?
6116 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6117 (exit $ac_status); }; }; then
6118 :
252b5132 6119else
20e95c23
DJ
6120 echo "$as_me: program exited with status $ac_status" >&5
6121echo "$as_me: failed program was:" >&5
6122sed 's/^/| /' conftest.$ac_ext >&5
6123
6124( exit $ac_status )
6125ac_cv_header_stdc=no
252b5132 6126fi
20e95c23 6127rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
252b5132 6128fi
20e95c23
DJ
6129fi
6130fi
6131echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
6132echo "${ECHO_T}$ac_cv_header_stdc" >&6
6133if test $ac_cv_header_stdc = yes; then
252b5132 6134
20e95c23
DJ
6135cat >>confdefs.h <<\_ACEOF
6136#define STDC_HEADERS 1
6137_ACEOF
979273e3 6138
20e95c23 6139fi
979273e3 6140
20e95c23 6141# On IRIX 5.3, sys/types and inttypes.h are conflicting.
979273e3 6142
c46f8c51 6143
c46f8c51 6144
979273e3 6145
252b5132 6146
252b5132 6147
252b5132 6148
979273e3 6149
252b5132 6150
20e95c23
DJ
6151for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
6152 inttypes.h stdint.h unistd.h
6153do
6154as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
6155echo "$as_me:$LINENO: checking for $ac_header" >&5
6156echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
6157if eval "test \"\${$as_ac_Header+set}\" = set"; then
979273e3 6158 echo $ECHO_N "(cached) $ECHO_C" >&6
979273e3 6159else
20e95c23 6160 cat >conftest.$ac_ext <<_ACEOF
979273e3
NN
6161/* confdefs.h. */
6162_ACEOF
6163cat confdefs.h >>conftest.$ac_ext
6164cat >>conftest.$ac_ext <<_ACEOF
6165/* end confdefs.h. */
6166$ac_includes_default
20e95c23
DJ
6167
6168#include <$ac_header>
979273e3
NN
6169_ACEOF
6170rm -f conftest.$ac_objext
6171if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6172 (eval $ac_compile) 2>conftest.er1
6173 ac_status=$?
6174 grep -v '^ *+' conftest.er1 >conftest.err
6175 rm -f conftest.er1
6176 cat conftest.err >&5
6177 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6178 (exit $ac_status); } &&
8ae85421
AM
6179 { ac_try='test -z "$ac_c_werror_flag"
6180 || test ! -s conftest.err'
979273e3
NN
6181 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6182 (eval $ac_try) 2>&5
6183 ac_status=$?
6184 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6185 (exit $ac_status); }; } &&
6186 { ac_try='test -s conftest.$ac_objext'
6187 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6188 (eval $ac_try) 2>&5
6189 ac_status=$?
6190 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6191 (exit $ac_status); }; }; then
20e95c23 6192 eval "$as_ac_Header=yes"
979273e3
NN
6193else
6194 echo "$as_me: failed program was:" >&5
6195sed 's/^/| /' conftest.$ac_ext >&5
6196
20e95c23 6197eval "$as_ac_Header=no"
979273e3
NN
6198fi
6199rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
b6849f55 6200fi
20e95c23
DJ
6201echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
6202echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
6203if test `eval echo '${'$as_ac_Header'}'` = yes; then
6204 cat >>confdefs.h <<_ACEOF
6205#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
6206_ACEOF
b6849f55 6207
b6849f55
NC
6208fi
6209
979273e3
NN
6210done
6211
252b5132 6212
979273e3
NN
6213
6214
6215
6216for ac_header in string.h strings.h stdlib.h
252b5132 6217do
979273e3
NN
6218as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
6219if eval "test \"\${$as_ac_Header+set}\" = set"; then
6220 echo "$as_me:$LINENO: checking for $ac_header" >&5
6221echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
6222if eval "test \"\${$as_ac_Header+set}\" = set"; then
6223 echo $ECHO_N "(cached) $ECHO_C" >&6
6224fi
6225echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
6226echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
6227else
6228 # Is the header compilable?
6229echo "$as_me:$LINENO: checking $ac_header usability" >&5
6230echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
6231cat >conftest.$ac_ext <<_ACEOF
6232/* confdefs.h. */
6233_ACEOF
6234cat confdefs.h >>conftest.$ac_ext
6235cat >>conftest.$ac_ext <<_ACEOF
6236/* end confdefs.h. */
6237$ac_includes_default
6238#include <$ac_header>
6239_ACEOF
6240rm -f conftest.$ac_objext
6241if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6242 (eval $ac_compile) 2>conftest.er1
6243 ac_status=$?
6244 grep -v '^ *+' conftest.er1 >conftest.err
6245 rm -f conftest.er1
6246 cat conftest.err >&5
6247 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6248 (exit $ac_status); } &&
8ae85421
AM
6249 { ac_try='test -z "$ac_c_werror_flag"
6250 || test ! -s conftest.err'
979273e3
NN
6251 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6252 (eval $ac_try) 2>&5
6253 ac_status=$?
6254 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6255 (exit $ac_status); }; } &&
6256 { ac_try='test -s conftest.$ac_objext'
6257 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6258 (eval $ac_try) 2>&5
6259 ac_status=$?
6260 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6261 (exit $ac_status); }; }; then
6262 ac_header_compiler=yes
6263else
6264 echo "$as_me: failed program was:" >&5
6265sed 's/^/| /' conftest.$ac_ext >&5
6266
6267ac_header_compiler=no
6268fi
6269rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
6270echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
6271echo "${ECHO_T}$ac_header_compiler" >&6
6272
6273# Is the header present?
6274echo "$as_me:$LINENO: checking $ac_header presence" >&5
6275echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
6276cat >conftest.$ac_ext <<_ACEOF
6277/* confdefs.h. */
6278_ACEOF
6279cat confdefs.h >>conftest.$ac_ext
6280cat >>conftest.$ac_ext <<_ACEOF
6281/* end confdefs.h. */
6282#include <$ac_header>
6283_ACEOF
6284if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
6285 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
6286 ac_status=$?
6287 grep -v '^ *+' conftest.er1 >conftest.err
6288 rm -f conftest.er1
6289 cat conftest.err >&5
6290 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6291 (exit $ac_status); } >/dev/null; then
6292 if test -s conftest.err; then
6293 ac_cpp_err=$ac_c_preproc_warn_flag
6294 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
6295 else
6296 ac_cpp_err=
6297 fi
252b5132 6298else
979273e3 6299 ac_cpp_err=yes
252b5132 6300fi
979273e3
NN
6301if test -z "$ac_cpp_err"; then
6302 ac_header_preproc=yes
6303else
6304 echo "$as_me: failed program was:" >&5
6305sed 's/^/| /' conftest.$ac_ext >&5
6306
6307 ac_header_preproc=no
252b5132 6308fi
979273e3
NN
6309rm -f conftest.err conftest.$ac_ext
6310echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
6311echo "${ECHO_T}$ac_header_preproc" >&6
6312
6313# So? What about this header?
6314case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
6315 yes:no: )
6316 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
6317echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
6318 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
6319echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
6320 ac_header_preproc=yes
6321 ;;
6322 no:yes:* )
6323 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
6324echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
6325 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
6326echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
6327 { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
6328echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
6329 { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5
6330echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}
6331 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
6332echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
6333 { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
6334echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
6335 (
6336 cat <<\_ASBOX
6337## ------------------------------------------ ##
6338## Report this to the AC_PACKAGE_NAME lists. ##
6339## ------------------------------------------ ##
6340_ASBOX
6341 ) |
6342 sed "s/^/$as_me: WARNING: /" >&2
6343 ;;
6344esac
6345echo "$as_me:$LINENO: checking for $ac_header" >&5
6346echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
6347if eval "test \"\${$as_ac_Header+set}\" = set"; then
6348 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 6349else
979273e3
NN
6350 eval "$as_ac_Header=\$ac_header_preproc"
6351fi
6352echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
6353echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
6354
6355fi
6356if test `eval echo '${'$as_ac_Header'}'` = yes; then
6357 cat >>confdefs.h <<_ACEOF
6358#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
6359_ACEOF
6360
252b5132 6361fi
979273e3 6362
252b5132
RH
6363done
6364
6365
4bd60896
JG
6366echo "$as_me:$LINENO: checking whether basename is declared" >&5
6367echo $ECHO_N "checking whether basename is declared... $ECHO_C" >&6
6368if test "${ac_cv_have_decl_basename+set}" = set; then
6369 echo $ECHO_N "(cached) $ECHO_C" >&6
6370else
6371 cat >conftest.$ac_ext <<_ACEOF
6372/* confdefs.h. */
6373_ACEOF
6374cat confdefs.h >>conftest.$ac_ext
6375cat >>conftest.$ac_ext <<_ACEOF
6376/* end confdefs.h. */
db5152b4 6377$ac_includes_default
4bd60896
JG
6378int
6379main ()
6380{
6381#ifndef basename
6382 char *p = (char *) basename;
6383#endif
6384
6385 ;
6386 return 0;
6387}
6388_ACEOF
6389rm -f conftest.$ac_objext
6390if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6391 (eval $ac_compile) 2>conftest.er1
6392 ac_status=$?
6393 grep -v '^ *+' conftest.er1 >conftest.err
6394 rm -f conftest.er1
6395 cat conftest.err >&5
6396 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6397 (exit $ac_status); } &&
6398 { ac_try='test -z "$ac_c_werror_flag"
6399 || test ! -s conftest.err'
6400 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6401 (eval $ac_try) 2>&5
6402 ac_status=$?
6403 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6404 (exit $ac_status); }; } &&
6405 { ac_try='test -s conftest.$ac_objext'
6406 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6407 (eval $ac_try) 2>&5
6408 ac_status=$?
6409 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6410 (exit $ac_status); }; }; then
6411 ac_cv_have_decl_basename=yes
6412else
6413 echo "$as_me: failed program was:" >&5
6414sed 's/^/| /' conftest.$ac_ext >&5
6415
6416ac_cv_have_decl_basename=no
6417fi
6418rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
6419fi
6420echo "$as_me:$LINENO: result: $ac_cv_have_decl_basename" >&5
6421echo "${ECHO_T}$ac_cv_have_decl_basename" >&6
6422if test $ac_cv_have_decl_basename = yes; then
6423
6424cat >>confdefs.h <<_ACEOF
6425#define HAVE_DECL_BASENAME 1
6426_ACEOF
6427
6428
6429else
6430 cat >>confdefs.h <<_ACEOF
6431#define HAVE_DECL_BASENAME 0
6432_ACEOF
6433
6434
6435fi
6436
6437
6438
6e31aea3
BE
6439cgen_maint=no
6440cgendir='$(srcdir)/../cgen'
6441
6442# Check whether --enable-cgen-maint or --disable-cgen-maint was given.
6443if test "${enable_cgen_maint+set}" = set; then
6444 enableval="$enable_cgen_maint"
6445 case "${enableval}" in
6446 yes) cgen_maint=yes ;;
6447 no) cgen_maint=no ;;
6448 *)
6449 # argument is cgen install directory (not implemented yet).
6450 # Having a `share' directory might be more appropriate for the .scm,
6451 # .cpu, etc. files.
6452 cgen_maint=yes
6453 cgendir=${cgen_maint}/lib/cgen
6454 ;;
6455esac
979273e3 6456fi;
6e31aea3
BE
6457
6458if test x${cgen_maint} = xyes; then
6459 CGEN_MAINT_TRUE=
6460 CGEN_MAINT_FALSE='#'
6461else
6462 CGEN_MAINT_TRUE='#'
6463 CGEN_MAINT_FALSE=
6464fi
6465
252b5132 6466
8ae85421 6467
252b5132
RH
6468using_cgen=no
6469
6470# Horrible hacks to build DLLs on Windows.
6471WIN32LDFLAGS=
6472WIN32LIBADD=
6473case "${host}" in
6474*-*-cygwin*)
6475 if test "$enable_shared" = "yes"; then
6476 WIN32LDFLAGS="-no-undefined"
6477 WIN32LIBADD="-L`pwd`/../bfd -lbfd -L`pwd`/../libiberty -liberty -L`pwd`/../intl -lintl -lcygwin"
6478 fi
6479 ;;
6480esac
6481
6482
6483
6484# target-specific stuff:
6485
6486# Canonicalize the secondary target names.
6487if test -n "$enable_targets" ; then
6488 for targ in `echo $enable_targets | sed 's/,/ /g'`
6489 do
6d83c84b 6490 result=`$ac_config_sub $targ 2>/dev/null`
252b5132
RH
6491 if test -n "$result" ; then
6492 canon_targets="$canon_targets $result"
6493 else
6494 # Allow targets that config.sub doesn't recognize, like "all".
6495 canon_targets="$canon_targets $targ"
6496 fi
6497 done
6498fi
6499
6500all_targets=false
6501selarchs=
6502for targ in $target $canon_targets
6503do
6504 if test "x$targ" = "xall" ; then
6505 all_targets=true
6506 else
6507 . $srcdir/../bfd/config.bfd
6508 selarchs="$selarchs $targ_archs"
6509 fi
979273e3 6510done
252b5132
RH
6511
6512# Utility var, documents generic cgen support files.
6513
3609e0fe 6514cgen_files="cgen-opc.lo cgen-asm.lo cgen-dis.lo cgen-bitset.lo"
252b5132
RH
6515
6516# We don't do any links based on the target system, just makefile config.
6517
6518if test x${all_targets} = xfalse ; then
6519
6520 # Target architecture .o files.
6521 ta=
6522
6523 for arch in $selarchs
6524 do
6525 ad=`echo $arch | sed -e s/bfd_//g -e s/_arch//g`
6526 archdefs="$archdefs -DARCH_$ad"
6527 case "$arch" in
252b5132 6528 bfd_alpha_arch) ta="$ta alpha-dis.lo alpha-opc.lo" ;;
0d2bcfaf 6529 bfd_arc_arch) ta="$ta arc-dis.lo arc-opc.lo arc-ext.lo" ;;
252b5132 6530 bfd_arm_arch) ta="$ta arm-dis.lo" ;;
adde6300 6531 bfd_avr_arch) ta="$ta avr-dis.lo" ;;
4b7f6baa 6532 bfd_bfin_arch) ta="$ta bfin-dis.lo" ;;
3609e0fe 6533 bfd_cris_arch) ta="$ta cris-dis.lo cris-opc.lo cgen-bitset.lo" ;;
1fe1f39c 6534 bfd_crx_arch) ta="$ta crx-dis.lo crx-opc.lo" ;;
252b5132
RH
6535 bfd_d10v_arch) ta="$ta d10v-dis.lo d10v-opc.lo" ;;
6536 bfd_d30v_arch) ta="$ta d30v-dis.lo d30v-opc.lo" ;;
d172d4ba 6537 bfd_dlx_arch) ta="$ta dlx-dis.lo" ;;
252b5132 6538 bfd_fr30_arch) ta="$ta fr30-asm.lo fr30-desc.lo fr30-dis.lo fr30-ibld.lo fr30-opc.lo" using_cgen=yes ;;
c5f5f1f4 6539 bfd_frv_arch) ta="$ta frv-asm.lo frv-desc.lo frv-dis.lo frv-ibld.lo frv-opc.lo" using_cgen=yes ;;
252b5132
RH
6540 bfd_h8300_arch) ta="$ta h8300-dis.lo" ;;
6541 bfd_h8500_arch) ta="$ta h8500-dis.lo" ;;
6542 bfd_hppa_arch) ta="$ta hppa-dis.lo" ;;
5b93d8bb 6543 bfd_i370_arch) ta="$ta i370-dis.lo i370-opc.lo" ;;
252b5132 6544 bfd_i386_arch) ta="$ta i386-dis.lo" ;;
9d751335 6545 bfd_i860_arch) ta="$ta i860-dis.lo" ;;
252b5132 6546 bfd_i960_arch) ta="$ta i960-dis.lo" ;;
800eeca4 6547 bfd_ia64_arch) ta="$ta ia64-dis.lo ia64-opc.lo" ;;
a40cbfa3 6548 bfd_ip2k_arch) ta="$ta ip2k-asm.lo ip2k-desc.lo ip2k-dis.lo ip2k-ibld.lo ip2k-opc.lo" using_cgen=yes ;;
47b1a55a 6549 bfd_iq2000_arch) ta="$ta iq2000-asm.lo iq2000-desc.lo iq2000-dis.lo iq2000-ibld.lo iq2000-opc.lo" using_cgen=yes ;;
c5f5f1f4 6550 bfd_m32c_arch) ta="$ta m32c-asm.lo m32c-desc.lo m32c-dis.lo m32c-ibld.lo m32c-opc.lo" using_cgen=yes ;;
252b5132 6551 bfd_m32r_arch) ta="$ta m32r-asm.lo m32r-desc.lo m32r-dis.lo m32r-ibld.lo m32r-opc.lo m32r-opinst.lo" using_cgen=yes ;;
60bcf0fa
NC
6552 bfd_m68hc11_arch) ta="$ta m68hc11-dis.lo m68hc11-opc.lo" ;;
6553 bfd_m68hc12_arch) ta="$ta m68hc11-dis.lo m68hc11-opc.lo" ;;
252b5132
RH
6554 bfd_m68k_arch) ta="$ta m68k-dis.lo m68k-opc.lo" ;;
6555 bfd_m88k_arch) ta="$ta m88k-dis.lo" ;;
7499d566 6556 bfd_maxq_arch) ta="$ta maxq-dis.lo" ;;
252b5132
RH
6557 bfd_mcore_arch) ta="$ta mcore-dis.lo" ;;
6558 bfd_mips_arch) ta="$ta mips-dis.lo mips-opc.lo mips16-opc.lo" ;;
3c3bdf30 6559 bfd_mmix_arch) ta="$ta mmix-dis.lo mmix-opc.lo" ;;
252b5132
RH
6560 bfd_mn10200_arch) ta="$ta m10200-dis.lo m10200-opc.lo" ;;
6561 bfd_mn10300_arch) ta="$ta m10300-dis.lo m10300-opc.lo" ;;
d031aafb 6562 bfd_mt_arch) ta="$ta mt-asm.lo mt-desc.lo mt-dis.lo mt-ibld.lo mt-opc.lo" using_cgen=yes ;;
2469cfa2 6563 bfd_msp430_arch) ta="$ta msp430-dis.lo" ;;
252b5132 6564 bfd_ns32k_arch) ta="$ta ns32k-dis.lo" ;;
87e6d782 6565 bfd_openrisc_arch) ta="$ta openrisc-asm.lo openrisc-desc.lo openrisc-dis.lo openrisc-ibld.lo openrisc-opc.lo" using_cgen=yes ;;
3b16e843 6566 bfd_or32_arch) ta="$ta or32-dis.lo or32-opc.lo" using_cgen=yes ;;
e135f41b 6567 bfd_pdp11_arch) ta="$ta pdp11-dis.lo pdp11-opc.lo" ;;
1e608f98 6568 bfd_pj_arch) ta="$ta pj-dis.lo pj-opc.lo" ;;
252b5132 6569 bfd_powerpc_arch) ta="$ta ppc-dis.lo ppc-opc.lo" ;;
a85d7ed0 6570 bfd_powerpc_64_arch) ta="$ta ppc-dis.lo ppc-opc.lo" ;;
5dd0794d 6571 bfd_pyramid_arch) ;;
252b5132
RH
6572 bfd_romp_arch) ;;
6573 bfd_rs6000_arch) ta="$ta ppc-dis.lo ppc-opc.lo" ;;
a85d7ed0 6574 bfd_s390_arch) ta="$ta s390-dis.lo s390-opc.lo" ;;
1c0d3aa6 6575 bfd_score_arch) ta="$ta score-dis.lo" ;;
09919455 6576 bfd_sh_arch)
d28847ce 6577 # We can't decide what we want just from the CPU family.
e8b872bb
AO
6578 # We want SH5 support unless a specific version of sh is
6579 # specified, as in sh3-elf, sh3b-linux-gnu, etc.
ca0f2ed6
HPN
6580 # Include it just for ELF targets, since the SH5 bfd:s are ELF only.
6581 for t in $target $canon_targets; do
6582 case $t in
5b0e55b6 6583 all | sh5*-* | sh64*-* | sh-*-*elf* | shl*-*-*elf* | \
942e7dd9 6584 sh-*-linux* | shl-*-linux*)
d28847ce 6585 ta="$ta sh64-dis.lo sh64-opc.lo"
ca0f2ed6
HPN
6586 archdefs="$archdefs -DINCLUDE_SHMEDIA"
6587 break;;
6588 esac;
6589 done
d3f1a427 6590 ta="$ta sh-dis.lo cgen-bitset.lo" ;;
252b5132 6591 bfd_sparc_arch) ta="$ta sparc-dis.lo sparc-opc.lo" ;;
e9f53129 6592 bfd_spu_arch) ta="$ta spu-dis.lo spu-opc.lo" ;;
252b5132
RH
6593 bfd_tahoe_arch) ;;
6594 bfd_tic30_arch) ta="$ta tic30-dis.lo" ;;
026df7c5 6595 bfd_tic4x_arch) ta="$ta tic4x-dis.lo" ;;
5c84d377 6596 bfd_tic54x_arch) ta="$ta tic54x-dis.lo tic54x-opc.lo" ;;
252b5132
RH
6597 bfd_tic80_arch) ta="$ta tic80-dis.lo tic80-opc.lo" ;;
6598 bfd_v850_arch) ta="$ta v850-opc.lo v850-dis.lo" ;;
6599 bfd_v850e_arch) ta="$ta v850-opc.lo v850-dis.lo" ;;
6600 bfd_v850ea_arch) ta="$ta v850-opc.lo v850-dis.lo" ;;
6601 bfd_vax_arch) ta="$ta vax-dis.lo" ;;
6602 bfd_w65_arch) ta="$ta w65-dis.lo" ;;
6603 bfd_we32k_arch) ;;
d70c5fc7 6604 bfd_xc16x_arch) ta="$ta xc16x-asm.lo xc16x-desc.lo xc16x-dis.lo xc16x-ibld.lo xc16x-opc.lo" using_cgen=yes ;;
93fbbb04 6605 bfd_xstormy16_arch) ta="$ta xstormy16-asm.lo xstormy16-desc.lo xstormy16-dis.lo xstormy16-ibld.lo xstormy16-opc.lo" using_cgen=yes ;;
e0001a05 6606 bfd_xtensa_arch) ta="$ta xtensa-dis.lo" ;;
3c9b82ba 6607 bfd_z80_arch) ta="$ta z80-dis.lo" ;;
252b5132
RH
6608 bfd_z8k_arch) ta="$ta z8k-dis.lo" ;;
6609
6610 "") ;;
979273e3
NN
6611 *) { { echo "$as_me:$LINENO: error: *** unknown target architecture $arch" >&5
6612echo "$as_me: error: *** unknown target architecture $arch" >&2;}
6613 { (exit 1); exit 1; }; } ;;
252b5132
RH
6614 esac
6615 done
6616
6617 if test $using_cgen = yes ; then
6618 ta="$ta $cgen_files"
6619 fi
6620
6621 # Weed out duplicate .o files.
6622 f=""
6623 for i in $ta ; do
6624 case " $f " in
6625 *" $i "*) ;;
6626 *) f="$f $i" ;;
6627 esac
6628 done
6629 ta="$f"
6630
6631 # And duplicate -D flags.
6632 f=""
6633 for i in $archdefs ; do
6634 case " $f " in
6635 *" $i "*) ;;
6636 *) f="$f $i" ;;
6637 esac
6638 done
6639 archdefs="$f"
6640
6641 BFD_MACHINES="$ta"
6642
6643else # all_targets is true
6644 archdefs=-DARCH_all
6645 BFD_MACHINES='$(ALL_MACHINES)'
6646fi
6647
6648
6649
6650
979273e3
NN
6651 ac_config_files="$ac_config_files Makefile po/Makefile.in:po/Make-in"
6652
979273e3 6653cat >confcache <<\_ACEOF
252b5132
RH
6654# This file is a shell script that caches the results of configure
6655# tests run on this system so they can be shared between configure
979273e3
NN
6656# scripts and configure runs, see configure's option --config-cache.
6657# It is not useful on other systems. If it contains results you don't
6658# want to keep, you may remove or edit it.
252b5132 6659#
979273e3
NN
6660# config.status only pays attention to the cache file if you give it
6661# the --recheck option to rerun configure.
252b5132 6662#
979273e3
NN
6663# `ac_cv_env_foo' variables (set or unset) will be overridden when
6664# loading this file, other *unset* `ac_cv_foo' will be assigned the
6665# following values.
6666
6667_ACEOF
6668
252b5132
RH
6669# The following way of writing the cache mishandles newlines in values,
6670# but we know of no workaround that is simple, portable, and efficient.
6671# So, don't put newlines in cache variables' values.
6672# Ultrix sh set writes to stderr and can't be redirected directly,
6673# and sets the high bit in the cache file unless we assign to the vars.
979273e3
NN
6674{
6675 (set) 2>&1 |
6676 case `(ac_space=' '; set | grep ac_space) 2>&1` in
6677 *ac_space=\ *)
6678 # `set' does not quote correctly, so add quotes (double-quote
6679 # substitution turns \\\\ into \\, and sed turns \\ into \).
6680 sed -n \
6681 "s/'/'\\\\''/g;
6682 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
6683 ;;
6684 *)
6685 # `set' quotes correctly as required by POSIX, so do not add quotes.
6686 sed -n \
6687 "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
6688 ;;
6689 esac;
6690} |
6691 sed '
6692 t clear
6693 : clear
6694 s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
6695 t end
6696 /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
6697 : end' >>confcache
6698if diff $cache_file confcache >/dev/null 2>&1; then :; else
252b5132 6699 if test -w $cache_file; then
979273e3
NN
6700 test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
6701 cat confcache >$cache_file
252b5132
RH
6702 else
6703 echo "not updating unwritable cache $cache_file"
6704 fi
6705fi
6706rm -f confcache
6707
252b5132
RH
6708test "x$prefix" = xNONE && prefix=$ac_default_prefix
6709# Let make expand exec_prefix.
6710test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
6711
979273e3
NN
6712# VPATH may cause trouble with some makes, so we remove $(srcdir),
6713# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
6714# trailing colons and then remove the whole line if VPATH becomes empty
6715# (actually we leave an empty line to preserve line numbers).
252b5132 6716if test "x$srcdir" = x.; then
979273e3
NN
6717 ac_vpsub='/^[ ]*VPATH[ ]*=/{
6718s/:*\$(srcdir):*/:/;
6719s/:*\${srcdir}:*/:/;
6720s/:*@srcdir@:*/:/;
6721s/^\([^=]*=[ ]*\):*/\1/;
6722s/:*$//;
6723s/^[^=]*=[ ]*$//;
6724}'
252b5132
RH
6725fi
6726
252b5132
RH
6727DEFS=-DHAVE_CONFIG_H
6728
979273e3
NN
6729ac_libobjs=
6730ac_ltlibobjs=
6731for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
6732 # 1. Remove the extension, and $U if already installed.
6733 ac_i=`echo "$ac_i" |
6734 sed 's/\$U\././;s/\.o$//;s/\.obj$//'`
6735 # 2. Add them.
6736 ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext"
6737 ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo'
6738done
6739LIBOBJS=$ac_libobjs
252b5132 6740
979273e3
NN
6741LTLIBOBJS=$ac_ltlibobjs
6742
6743
8ae85421
AM
6744if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
6745 { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined.
6746Usually this means the macro was only invoked conditionally." >&5
6747echo "$as_me: error: conditional \"AMDEP\" was never defined.
6748Usually this means the macro was only invoked conditionally." >&2;}
6749 { (exit 1); exit 1; }; }
6750fi
6751if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
6752 { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined.
6753Usually this means the macro was only invoked conditionally." >&5
6754echo "$as_me: error: conditional \"am__fastdepCC\" was never defined.
6755Usually this means the macro was only invoked conditionally." >&2;}
6756 { (exit 1); exit 1; }; }
6757fi
6758if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
6759 { { echo "$as_me:$LINENO: error: conditional \"MAINTAINER_MODE\" was never defined.
6760Usually this means the macro was only invoked conditionally." >&5
6761echo "$as_me: error: conditional \"MAINTAINER_MODE\" was never defined.
6762Usually this means the macro was only invoked conditionally." >&2;}
6763 { (exit 1); exit 1; }; }
6764fi
6765if test -z "${INSTALL_LIBBFD_TRUE}" && test -z "${INSTALL_LIBBFD_FALSE}"; then
6766 { { echo "$as_me:$LINENO: error: conditional \"INSTALL_LIBBFD\" was never defined.
6767Usually this means the macro was only invoked conditionally." >&5
6768echo "$as_me: error: conditional \"INSTALL_LIBBFD\" was never defined.
6769Usually this means the macro was only invoked conditionally." >&2;}
6770 { (exit 1); exit 1; }; }
6771fi
6772if test -z "${CGEN_MAINT_TRUE}" && test -z "${CGEN_MAINT_FALSE}"; then
6773 { { echo "$as_me:$LINENO: error: conditional \"CGEN_MAINT\" was never defined.
6774Usually this means the macro was only invoked conditionally." >&5
6775echo "$as_me: error: conditional \"CGEN_MAINT\" was never defined.
6776Usually this means the macro was only invoked conditionally." >&2;}
6777 { (exit 1); exit 1; }; }
6778fi
979273e3
NN
6779
6780: ${CONFIG_STATUS=./config.status}
6781ac_clean_files_save=$ac_clean_files
6782ac_clean_files="$ac_clean_files $CONFIG_STATUS"
6783{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
6784echo "$as_me: creating $CONFIG_STATUS" >&6;}
6785cat >$CONFIG_STATUS <<_ACEOF
6786#! $SHELL
6787# Generated by $as_me.
252b5132 6788# Run this file to recreate the current configuration.
252b5132 6789# Compiler output produced by configure, useful for debugging
979273e3 6790# configure, is in config.log if it exists.
252b5132 6791
979273e3
NN
6792debug=false
6793ac_cs_recheck=false
6794ac_cs_silent=false
6795SHELL=\${CONFIG_SHELL-$SHELL}
6796_ACEOF
6797
6798cat >>$CONFIG_STATUS <<\_ACEOF
6799## --------------------- ##
6800## M4sh Initialization. ##
6801## --------------------- ##
6802
6803# Be Bourne compatible
6804if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
6805 emulate sh
6806 NULLCMD=:
6807 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
6808 # is contrary to our usage. Disable this feature.
6809 alias -g '${1+"$@"}'='"$@"'
6810elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
6811 set -o posix
6812fi
6813DUALCASE=1; export DUALCASE # for MKS sh
6814
6815# Support unset when possible.
6816if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
6817 as_unset=unset
6818else
6819 as_unset=false
6820fi
6821
6822
6823# Work around bugs in pre-3.0 UWIN ksh.
6824$as_unset ENV MAIL MAILPATH
6825PS1='$ '
6826PS2='> '
6827PS4='+ '
6828
6829# NLS nuisances.
6830for as_var in \
6831 LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
6832 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
6833 LC_TELEPHONE LC_TIME
252b5132 6834do
979273e3
NN
6835 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
6836 eval $as_var=C; export $as_var
6837 else
6838 $as_unset $as_var
6839 fi
252b5132
RH
6840done
6841
979273e3
NN
6842# Required to use basename.
6843if expr a : '\(a\)' >/dev/null 2>&1; then
6844 as_expr=expr
6845else
6846 as_expr=false
6847fi
6848
6849if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
6850 as_basename=basename
6851else
6852 as_basename=false
6853fi
252b5132 6854
252b5132 6855
979273e3
NN
6856# Name of the executable.
6857as_me=`$as_basename "$0" ||
6858$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
6859 X"$0" : 'X\(//\)$' \| \
6860 X"$0" : 'X\(/\)$' \| \
6861 . : '\(.\)' 2>/dev/null ||
6862echo X/"$0" |
6863 sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
6864 /^X\/\(\/\/\)$/{ s//\1/; q; }
6865 /^X\/\(\/\).*/{ s//\1/; q; }
6866 s/.*/./; q'`
252b5132 6867
252b5132 6868
979273e3
NN
6869# PATH needs CR, and LINENO needs CR and PATH.
6870# Avoid depending upon Character Ranges.
6871as_cr_letters='abcdefghijklmnopqrstuvwxyz'
6872as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
6873as_cr_Letters=$as_cr_letters$as_cr_LETTERS
6874as_cr_digits='0123456789'
6875as_cr_alnum=$as_cr_Letters$as_cr_digits
6876
6877# The user is always right.
6878if test "${PATH_SEPARATOR+set}" != set; then
6879 echo "#! /bin/sh" >conf$$.sh
6880 echo "exit 0" >>conf$$.sh
6881 chmod +x conf$$.sh
6882 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
6883 PATH_SEPARATOR=';'
252b5132 6884 else
979273e3
NN
6885 PATH_SEPARATOR=:
6886 fi
6887 rm -f conf$$.sh
6888fi
6889
6890
6891 as_lineno_1=$LINENO
6892 as_lineno_2=$LINENO
6893 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
6894 test "x$as_lineno_1" != "x$as_lineno_2" &&
6895 test "x$as_lineno_3" = "x$as_lineno_2" || {
6896 # Find who we are. Look in the path if we contain no path at all
6897 # relative or not.
6898 case $0 in
6899 *[\\/]* ) as_myself=$0 ;;
6900 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6901for as_dir in $PATH
6902do
6903 IFS=$as_save_IFS
6904 test -z "$as_dir" && as_dir=.
6905 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
6906done
6907
6908 ;;
6909 esac
6910 # We did not find ourselves, most probably we were run as `sh COMMAND'
6911 # in which case we are not to be found in the path.
6912 if test "x$as_myself" = x; then
6913 as_myself=$0
6914 fi
6915 if test ! -f "$as_myself"; then
6916 { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
6917echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
6918 { (exit 1); exit 1; }; }
252b5132 6919 fi
979273e3
NN
6920 case $CONFIG_SHELL in
6921 '')
6922 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6923for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
6924do
6925 IFS=$as_save_IFS
6926 test -z "$as_dir" && as_dir=.
6927 for as_base in sh bash ksh sh5; do
6928 case $as_dir in
6929 /*)
6930 if ("$as_dir/$as_base" -c '
6931 as_lineno_1=$LINENO
6932 as_lineno_2=$LINENO
6933 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
6934 test "x$as_lineno_1" != "x$as_lineno_2" &&
6935 test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then
6936 $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
6937 $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
6938 CONFIG_SHELL=$as_dir/$as_base
6939 export CONFIG_SHELL
6940 exec "$CONFIG_SHELL" "$0" ${1+"$@"}
6941 fi;;
6942 esac
6943 done
6944done
6945;;
6946 esac
6947
6948 # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
6949 # uniformly replaced by the line number. The first 'sed' inserts a
6950 # line-number line before each line; the second 'sed' does the real
6951 # work. The second script uses 'N' to pair each line-number line
6952 # with the numbered line, and appends trailing '-' during
6953 # substitution so that $LINENO is not a special case at line end.
6954 # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
6955 # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-)
6956 sed '=' <$as_myself |
6957 sed '
6958 N
6959 s,$,-,
6960 : loop
6961 s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
6962 t loop
6963 s,-$,,
6964 s,^['$as_cr_digits']*\n,,
6965 ' >$as_me.lineno &&
6966 chmod +x $as_me.lineno ||
6967 { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
6968echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
6969 { (exit 1); exit 1; }; }
6970
6971 # Don't try to exec as it changes $[0], causing all sort of problems
6972 # (the dirname of $[0] is not the place where we might find the
6973 # original and so on. Autoconf is especially sensible to this).
6974 . ./$as_me.lineno
6975 # Exit status is that of the last command.
6976 exit
6977}
6978
6979
6980case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
6981 *c*,-n*) ECHO_N= ECHO_C='
6982' ECHO_T=' ' ;;
6983 *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;;
6984 *) ECHO_N= ECHO_C='\c' ECHO_T= ;;
6985esac
6986
6987if expr a : '\(a\)' >/dev/null 2>&1; then
6988 as_expr=expr
6989else
6990 as_expr=false
6991fi
6992
6993rm -f conf$$ conf$$.exe conf$$.file
6994echo >conf$$.file
6995if ln -s conf$$.file conf$$ 2>/dev/null; then
6996 # We could just check for DJGPP; but this test a) works b) is more generic
6997 # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
6998 if test -f conf$$.exe; then
6999 # Don't use ln at all; we don't have any links
7000 as_ln_s='cp -p'
252b5132 7001 else
979273e3 7002 as_ln_s='ln -s'
252b5132 7003 fi
979273e3
NN
7004elif ln conf$$.file conf$$ 2>/dev/null; then
7005 as_ln_s=ln
7006else
7007 as_ln_s='cp -p'
7008fi
7009rm -f conf$$ conf$$.exe conf$$.file
7010
7011if mkdir -p . 2>/dev/null; then
7012 as_mkdir_p=:
7013else
7014 test -d ./-p && rmdir ./-p
7015 as_mkdir_p=false
7016fi
7017
7018as_executable_p="test -f"
7019
7020# Sed expression to map a string onto a valid CPP name.
7021as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
7022
7023# Sed expression to map a string onto a valid variable name.
7024as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
7025
7026
7027# IFS
7028# We need space, tab and new line, in precisely that order.
7029as_nl='
7030'
7031IFS=" $as_nl"
7032
7033# CDPATH.
7034$as_unset CDPATH
7035
7036exec 6>&1
7037
7038# Open the log real soon, to keep \$[0] and so on meaningful, and to
7039# report actual input values of CONFIG_FILES etc. instead of their
7040# values after options handling. Logging --version etc. is OK.
7041exec 5>>config.log
7042{
7043 echo
7044 sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
7045## Running $as_me. ##
7046_ASBOX
7047} >&5
7048cat >&5 <<_CSEOF
7049
7050This file was extended by $as_me, which was
7051generated by GNU Autoconf 2.59. Invocation command line was
7052
7053 CONFIG_FILES = $CONFIG_FILES
7054 CONFIG_HEADERS = $CONFIG_HEADERS
7055 CONFIG_LINKS = $CONFIG_LINKS
7056 CONFIG_COMMANDS = $CONFIG_COMMANDS
7057 $ $0 $@
7058
7059_CSEOF
7060echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
7061echo >&5
7062_ACEOF
7063
7064# Files that config.status was made for.
7065if test -n "$ac_config_files"; then
7066 echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS
7067fi
7068
7069if test -n "$ac_config_headers"; then
7070 echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS
7071fi
7072
7073if test -n "$ac_config_links"; then
7074 echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS
7075fi
7076
7077if test -n "$ac_config_commands"; then
7078 echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
7079fi
7080
7081cat >>$CONFIG_STATUS <<\_ACEOF
7082
7083ac_cs_usage="\
7084\`$as_me' instantiates files from templates according to the
7085current configuration.
7086
7087Usage: $0 [OPTIONS] [FILE]...
7088
7089 -h, --help print this help, then exit
7090 -V, --version print version number, then exit
7091 -q, --quiet do not print progress messages
7092 -d, --debug don't remove temporary files
7093 --recheck update $as_me by reconfiguring in the same conditions
7094 --file=FILE[:TEMPLATE]
7095 instantiate the configuration file FILE
7096 --header=FILE[:TEMPLATE]
7097 instantiate the configuration header FILE
7098
7099Configuration files:
7100$config_files
7101
7102Configuration headers:
7103$config_headers
7104
7105Configuration commands:
7106$config_commands
7107
7108Report bugs to <bug-autoconf@gnu.org>."
7109_ACEOF
7110
7111cat >>$CONFIG_STATUS <<_ACEOF
7112ac_cs_version="\\
7113config.status
7114configured by $0, generated by GNU Autoconf 2.59,
7115 with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
7116
7117Copyright (C) 2003 Free Software Foundation, Inc.
7118This config.status script is free software; the Free Software Foundation
7119gives unlimited permission to copy, distribute and modify it."
7120srcdir=$srcdir
7121INSTALL="$INSTALL"
7122_ACEOF
7123
7124cat >>$CONFIG_STATUS <<\_ACEOF
7125# If no file are specified by the user, then we need to provide default
7126# value. By we need to know if files were specified by the user.
7127ac_need_defaults=:
7128while test $# != 0
7129do
7130 case $1 in
7131 --*=*)
7132 ac_option=`expr "x$1" : 'x\([^=]*\)='`
7133 ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
7134 ac_shift=:
7135 ;;
7136 -*)
7137 ac_option=$1
7138 ac_optarg=$2
7139 ac_shift=shift
7140 ;;
7141 *) # This is not an option, so the user has probably given explicit
7142 # arguments.
7143 ac_option=$1
7144 ac_need_defaults=false;;
7145 esac
7146
7147 case $ac_option in
7148 # Handling of the options.
7149_ACEOF
7150cat >>$CONFIG_STATUS <<\_ACEOF
7151 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
7152 ac_cs_recheck=: ;;
7153 --version | --vers* | -V )
7154 echo "$ac_cs_version"; exit 0 ;;
7155 --he | --h)
7156 # Conflict between --help and --header
7157 { { echo "$as_me:$LINENO: error: ambiguous option: $1
7158Try \`$0 --help' for more information." >&5
7159echo "$as_me: error: ambiguous option: $1
7160Try \`$0 --help' for more information." >&2;}
7161 { (exit 1); exit 1; }; };;
7162 --help | --hel | -h )
7163 echo "$ac_cs_usage"; exit 0 ;;
7164 --debug | --d* | -d )
7165 debug=: ;;
7166 --file | --fil | --fi | --f )
7167 $ac_shift
7168 CONFIG_FILES="$CONFIG_FILES $ac_optarg"
7169 ac_need_defaults=false;;
7170 --header | --heade | --head | --hea )
7171 $ac_shift
7172 CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
7173 ac_need_defaults=false;;
7174 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
7175 | -silent | --silent | --silen | --sile | --sil | --si | --s)
7176 ac_cs_silent=: ;;
7177
7178 # This is an error.
7179 -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1
7180Try \`$0 --help' for more information." >&5
7181echo "$as_me: error: unrecognized option: $1
7182Try \`$0 --help' for more information." >&2;}
7183 { (exit 1); exit 1; }; } ;;
7184
7185 *) ac_config_targets="$ac_config_targets $1" ;;
7186
7187 esac
7188 shift
252b5132 7189done
979273e3
NN
7190
7191ac_configure_extra_args=
7192
7193if $ac_cs_silent; then
7194 exec 6>/dev/null
7195 ac_configure_extra_args="$ac_configure_extra_args --silent"
252b5132 7196fi
252b5132 7197
979273e3
NN
7198_ACEOF
7199cat >>$CONFIG_STATUS <<_ACEOF
7200if \$ac_cs_recheck; then
7201 echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
7202 exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
7203fi
252b5132 7204
979273e3
NN
7205_ACEOF
7206
7207cat >>$CONFIG_STATUS <<_ACEOF
7208#
7209# INIT-COMMANDS section.
7210#
7211
8ae85421 7212AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
20e95c23
DJ
7213# Capture the value of obsolete ALL_LINGUAS because we need it to compute
7214 # POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES, CATALOGS. But hide it
7215 # from automake.
7216 eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"'
7217 # Capture the value of LINGUAS because we need it to compute CATALOGS.
7218 LINGUAS="${LINGUAS-%UNSET%}"
979273e3
NN
7219
7220
7221_ACEOF
7222
7223
7224
7225cat >>$CONFIG_STATUS <<\_ACEOF
7226for ac_config_target in $ac_config_targets
7227do
7228 case "$ac_config_target" in
7229 # Handling of arguments.
7230 "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
7231 "po/Makefile.in" ) CONFIG_FILES="$CONFIG_FILES po/Makefile.in:po/Make-in" ;;
8ae85421 7232 "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
20e95c23 7233 "default-1" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
979273e3
NN
7234 "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h:config.in" ;;
7235 *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
7236echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
7237 { (exit 1); exit 1; }; };;
252b5132 7238 esac
979273e3 7239done
252b5132 7240
979273e3
NN
7241# If the user did not use the arguments to specify the items to instantiate,
7242# then the envvar interface is used. Set only those that are not.
7243# We use the long form for the default assignment because of an extremely
7244# bizarre bug on SunOS 4.1.3.
7245if $ac_need_defaults; then
7246 test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
7247 test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
7248 test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
7249fi
7250
7251# Have a temporary directory for convenience. Make it in the build tree
7252# simply because there is no reason to put it here, and in addition,
7253# creating and moving files from /tmp can sometimes cause problems.
7254# Create a temporary directory, and hook for its removal unless debugging.
7255$debug ||
7256{
7257 trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
7258 trap '{ (exit 1); exit 1; }' 1 2 13 15
7259}
252b5132 7260
979273e3
NN
7261# Create a (secure) tmp directory for tmp files.
7262
7263{
7264 tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` &&
7265 test -n "$tmp" && test -d "$tmp"
7266} ||
7267{
7268 tmp=./confstat$$-$RANDOM
7269 (umask 077 && mkdir $tmp)
7270} ||
7271{
7272 echo "$me: cannot create a temporary directory in ." >&2
7273 { (exit 1); exit 1; }
7274}
7275
7276_ACEOF
7277
7278cat >>$CONFIG_STATUS <<_ACEOF
7279
7280#
7281# CONFIG_FILES section.
7282#
7283
7284# No need to generate the scripts if there are no CONFIG_FILES.
7285# This happens for instance when ./config.status config.h
7286if test -n "\$CONFIG_FILES"; then
7287 # Protect against being on the right side of a sed subst in config.status.
7288 sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g;
7289 s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF
7290s,@SHELL@,$SHELL,;t t
7291s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t
7292s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t
7293s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t
7294s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t
7295s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t
7296s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t
7297s,@exec_prefix@,$exec_prefix,;t t
7298s,@prefix@,$prefix,;t t
7299s,@program_transform_name@,$program_transform_name,;t t
7300s,@bindir@,$bindir,;t t
7301s,@sbindir@,$sbindir,;t t
7302s,@libexecdir@,$libexecdir,;t t
7303s,@datadir@,$datadir,;t t
7304s,@sysconfdir@,$sysconfdir,;t t
7305s,@sharedstatedir@,$sharedstatedir,;t t
7306s,@localstatedir@,$localstatedir,;t t
7307s,@libdir@,$libdir,;t t
7308s,@includedir@,$includedir,;t t
7309s,@oldincludedir@,$oldincludedir,;t t
7310s,@infodir@,$infodir,;t t
7311s,@mandir@,$mandir,;t t
7312s,@build_alias@,$build_alias,;t t
7313s,@host_alias@,$host_alias,;t t
7314s,@target_alias@,$target_alias,;t t
7315s,@DEFS@,$DEFS,;t t
7316s,@ECHO_C@,$ECHO_C,;t t
7317s,@ECHO_N@,$ECHO_N,;t t
7318s,@ECHO_T@,$ECHO_T,;t t
7319s,@LIBS@,$LIBS,;t t
7320s,@build@,$build,;t t
7321s,@build_cpu@,$build_cpu,;t t
7322s,@build_vendor@,$build_vendor,;t t
7323s,@build_os@,$build_os,;t t
7324s,@host@,$host,;t t
7325s,@host_cpu@,$host_cpu,;t t
7326s,@host_vendor@,$host_vendor,;t t
7327s,@host_os@,$host_os,;t t
7328s,@target@,$target,;t t
7329s,@target_cpu@,$target_cpu,;t t
7330s,@target_vendor@,$target_vendor,;t t
7331s,@target_os@,$target_os,;t t
7332s,@CC@,$CC,;t t
7333s,@CFLAGS@,$CFLAGS,;t t
7334s,@LDFLAGS@,$LDFLAGS,;t t
7335s,@CPPFLAGS@,$CPPFLAGS,;t t
7336s,@ac_ct_CC@,$ac_ct_CC,;t t
7337s,@EXEEXT@,$EXEEXT,;t t
7338s,@OBJEXT@,$OBJEXT,;t t
7339s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
7340s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
7341s,@INSTALL_DATA@,$INSTALL_DATA,;t t
8ae85421 7342s,@CYGPATH_W@,$CYGPATH_W,;t t
979273e3
NN
7343s,@PACKAGE@,$PACKAGE,;t t
7344s,@VERSION@,$VERSION,;t t
7345s,@ACLOCAL@,$ACLOCAL,;t t
7346s,@AUTOCONF@,$AUTOCONF,;t t
7347s,@AUTOMAKE@,$AUTOMAKE,;t t
7348s,@AUTOHEADER@,$AUTOHEADER,;t t
7349s,@MAKEINFO@,$MAKEINFO,;t t
8ae85421
AM
7350s,@install_sh@,$install_sh,;t t
7351s,@STRIP@,$STRIP,;t t
7352s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t
7353s,@INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t
7354s,@mkdir_p@,$mkdir_p,;t t
7355s,@AWK@,$AWK,;t t
979273e3 7356s,@SET_MAKE@,$SET_MAKE,;t t
8ae85421
AM
7357s,@am__leading_dot@,$am__leading_dot,;t t
7358s,@AMTAR@,$AMTAR,;t t
7359s,@am__tar@,$am__tar,;t t
7360s,@am__untar@,$am__untar,;t t
7361s,@DEPDIR@,$DEPDIR,;t t
7362s,@am__include@,$am__include,;t t
7363s,@am__quote@,$am__quote,;t t
7364s,@AMDEP_TRUE@,$AMDEP_TRUE,;t t
7365s,@AMDEP_FALSE@,$AMDEP_FALSE,;t t
7366s,@AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t
7367s,@CCDEPMODE@,$CCDEPMODE,;t t
7368s,@am__fastdepCC_TRUE@,$am__fastdepCC_TRUE,;t t
7369s,@am__fastdepCC_FALSE@,$am__fastdepCC_FALSE,;t t
979273e3
NN
7370s,@AR@,$AR,;t t
7371s,@ac_ct_AR@,$ac_ct_AR,;t t
7372s,@RANLIB@,$RANLIB,;t t
7373s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t
7374s,@LN_S@,$LN_S,;t t
979273e3
NN
7375s,@LIBTOOL@,$LIBTOOL,;t t
7376s,@WARN_CFLAGS@,$WARN_CFLAGS,;t t
9e9b66a9 7377s,@NO_WERROR@,$NO_WERROR,;t t
979273e3
NN
7378s,@MAINTAINER_MODE_TRUE@,$MAINTAINER_MODE_TRUE,;t t
7379s,@MAINTAINER_MODE_FALSE@,$MAINTAINER_MODE_FALSE,;t t
7380s,@MAINT@,$MAINT,;t t
7381s,@INSTALL_LIBBFD_TRUE@,$INSTALL_LIBBFD_TRUE,;t t
7382s,@INSTALL_LIBBFD_FALSE@,$INSTALL_LIBBFD_FALSE,;t t
24443139
AS
7383s,@host_noncanonical@,$host_noncanonical,;t t
7384s,@target_noncanonical@,$target_noncanonical,;t t
979273e3
NN
7385s,@bfdlibdir@,$bfdlibdir,;t t
7386s,@bfdincludedir@,$bfdincludedir,;t t
979273e3 7387s,@USE_NLS@,$USE_NLS,;t t
20e95c23
DJ
7388s,@LIBINTL@,$LIBINTL,;t t
7389s,@LIBINTL_DEP@,$LIBINTL_DEP,;t t
7390s,@INCINTL@,$INCINTL,;t t
979273e3 7391s,@XGETTEXT@,$XGETTEXT,;t t
20e95c23
DJ
7392s,@GMSGFMT@,$GMSGFMT,;t t
7393s,@POSUB@,$POSUB,;t t
979273e3 7394s,@CATALOGS@,$CATALOGS,;t t
979273e3 7395s,@DATADIRNAME@,$DATADIRNAME,;t t
979273e3 7396s,@INSTOBJEXT@,$INSTOBJEXT,;t t
20e95c23
DJ
7397s,@GENCAT@,$GENCAT,;t t
7398s,@CATOBJEXT@,$CATOBJEXT,;t t
979273e3 7399s,@MKINSTALLDIRS@,$MKINSTALLDIRS,;t t
20e95c23
DJ
7400s,@MSGFMT@,$MSGFMT,;t t
7401s,@MSGMERGE@,$MSGMERGE,;t t
979273e3
NN
7402s,@CC_FOR_BUILD@,$CC_FOR_BUILD,;t t
7403s,@EXEEXT_FOR_BUILD@,$EXEEXT_FOR_BUILD,;t t
7404s,@HDEFINES@,$HDEFINES,;t t
20e95c23
DJ
7405s,@CPP@,$CPP,;t t
7406s,@EGREP@,$EGREP,;t t
979273e3
NN
7407s,@CGEN_MAINT_TRUE@,$CGEN_MAINT_TRUE,;t t
7408s,@CGEN_MAINT_FALSE@,$CGEN_MAINT_FALSE,;t t
7409s,@cgendir@,$cgendir,;t t
7410s,@WIN32LDFLAGS@,$WIN32LDFLAGS,;t t
7411s,@WIN32LIBADD@,$WIN32LIBADD,;t t
7412s,@archdefs@,$archdefs,;t t
7413s,@BFD_MACHINES@,$BFD_MACHINES,;t t
7414s,@LIBOBJS@,$LIBOBJS,;t t
7415s,@LTLIBOBJS@,$LTLIBOBJS,;t t
7416CEOF
7417
7418_ACEOF
7419
7420 cat >>$CONFIG_STATUS <<\_ACEOF
7421 # Split the substitutions into bite-sized pieces for seds with
7422 # small command number limits, like on Digital OSF/1 and HP-UX.
7423 ac_max_sed_lines=48
7424 ac_sed_frag=1 # Number of current file.
7425 ac_beg=1 # First line for current file.
7426 ac_end=$ac_max_sed_lines # Line after last line for current file.
7427 ac_more_lines=:
7428 ac_sed_cmds=
7429 while $ac_more_lines; do
7430 if test $ac_beg -gt 1; then
7431 sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
7432 else
7433 sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
7434 fi
7435 if test ! -s $tmp/subs.frag; then
7436 ac_more_lines=false
7437 else
7438 # The purpose of the label and of the branching condition is to
7439 # speed up the sed processing (if there are no `@' at all, there
7440 # is no need to browse any of the substitutions).
7441 # These are the two extra sed commands mentioned above.
7442 (echo ':t
7443 /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
7444 if test -z "$ac_sed_cmds"; then
7445 ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
7446 else
7447 ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
7448 fi
7449 ac_sed_frag=`expr $ac_sed_frag + 1`
7450 ac_beg=$ac_end
7451 ac_end=`expr $ac_end + $ac_max_sed_lines`
7452 fi
7453 done
7454 if test -z "$ac_sed_cmds"; then
7455 ac_sed_cmds=cat
252b5132 7456 fi
979273e3 7457fi # test -n "$CONFIG_FILES"
252b5132 7458
979273e3
NN
7459_ACEOF
7460cat >>$CONFIG_STATUS <<\_ACEOF
7461for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
7462 # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
7463 case $ac_file in
7464 - | *:- | *:-:* ) # input from stdin
7465 cat >$tmp/stdin
7466 ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
7467 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
7468 *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
7469 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
7470 * ) ac_file_in=$ac_file.in ;;
252b5132
RH
7471 esac
7472
979273e3
NN
7473 # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
7474 ac_dir=`(dirname "$ac_file") 2>/dev/null ||
7475$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
7476 X"$ac_file" : 'X\(//\)[^/]' \| \
7477 X"$ac_file" : 'X\(//\)$' \| \
7478 X"$ac_file" : 'X\(/\)' \| \
7479 . : '\(.\)' 2>/dev/null ||
7480echo X"$ac_file" |
7481 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
7482 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
7483 /^X\(\/\/\)$/{ s//\1/; q; }
7484 /^X\(\/\).*/{ s//\1/; q; }
7485 s/.*/./; q'`
7486 { if $as_mkdir_p; then
7487 mkdir -p "$ac_dir"
7488 else
7489 as_dir="$ac_dir"
7490 as_dirs=
7491 while test ! -d "$as_dir"; do
7492 as_dirs="$as_dir $as_dirs"
7493 as_dir=`(dirname "$as_dir") 2>/dev/null ||
7494$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
7495 X"$as_dir" : 'X\(//\)[^/]' \| \
7496 X"$as_dir" : 'X\(//\)$' \| \
7497 X"$as_dir" : 'X\(/\)' \| \
7498 . : '\(.\)' 2>/dev/null ||
7499echo X"$as_dir" |
7500 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
7501 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
7502 /^X\(\/\/\)$/{ s//\1/; q; }
7503 /^X\(\/\).*/{ s//\1/; q; }
7504 s/.*/./; q'`
7505 done
7506 test ! -n "$as_dirs" || mkdir $as_dirs
7507 fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
7508echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
7509 { (exit 1); exit 1; }; }; }
7510
7511 ac_builddir=.
7512
7513if test "$ac_dir" != .; then
7514 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
7515 # A "../" for each directory in $ac_dir_suffix.
7516 ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
7517else
7518 ac_dir_suffix= ac_top_builddir=
7519fi
7520
7521case $srcdir in
7522 .) # No --srcdir option. We are building in place.
7523 ac_srcdir=.
7524 if test -z "$ac_top_builddir"; then
7525 ac_top_srcdir=.
7526 else
7527 ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
7528 fi ;;
7529 [\\/]* | ?:[\\/]* ) # Absolute path.
7530 ac_srcdir=$srcdir$ac_dir_suffix;
7531 ac_top_srcdir=$srcdir ;;
7532 *) # Relative path.
7533 ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
7534 ac_top_srcdir=$ac_top_builddir$srcdir ;;
7535esac
7536
7537# Do not use `cd foo && pwd` to compute absolute paths, because
7538# the directories may not exist.
7539case `pwd` in
7540.) ac_abs_builddir="$ac_dir";;
7541*)
7542 case "$ac_dir" in
7543 .) ac_abs_builddir=`pwd`;;
7544 [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
7545 *) ac_abs_builddir=`pwd`/"$ac_dir";;
7546 esac;;
7547esac
7548case $ac_abs_builddir in
7549.) ac_abs_top_builddir=${ac_top_builddir}.;;
7550*)
7551 case ${ac_top_builddir}. in
7552 .) ac_abs_top_builddir=$ac_abs_builddir;;
7553 [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
7554 *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
7555 esac;;
7556esac
7557case $ac_abs_builddir in
7558.) ac_abs_srcdir=$ac_srcdir;;
7559*)
7560 case $ac_srcdir in
7561 .) ac_abs_srcdir=$ac_abs_builddir;;
7562 [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
7563 *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
7564 esac;;
7565esac
7566case $ac_abs_builddir in
7567.) ac_abs_top_srcdir=$ac_top_srcdir;;
7568*)
7569 case $ac_top_srcdir in
7570 .) ac_abs_top_srcdir=$ac_abs_builddir;;
7571 [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
7572 *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
7573 esac;;
7574esac
252b5132 7575
979273e3
NN
7576
7577 case $INSTALL in
7578 [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
7579 *) ac_INSTALL=$ac_top_builddir$INSTALL ;;
252b5132
RH
7580 esac
7581
8ae85421
AM
7582 if test x"$ac_file" != x-; then
7583 { echo "$as_me:$LINENO: creating $ac_file" >&5
7584echo "$as_me: creating $ac_file" >&6;}
7585 rm -f "$ac_file"
7586 fi
979273e3
NN
7587 # Let's still pretend it is `configure' which instantiates (i.e., don't
7588 # use $as_me), people would be surprised to read:
7589 # /* config.h. Generated by config.status. */
7590 if test x"$ac_file" = x-; then
7591 configure_input=
7592 else
7593 configure_input="$ac_file. "
7594 fi
7595 configure_input=$configure_input"Generated from `echo $ac_file_in |
7596 sed 's,.*/,,'` by configure."
7597
7598 # First look for the input files in the build tree, otherwise in the
7599 # src tree.
7600 ac_file_inputs=`IFS=:
7601 for f in $ac_file_in; do
7602 case $f in
7603 -) echo $tmp/stdin ;;
7604 [\\/$]*)
7605 # Absolute (can't be DOS-style, as IFS=:)
7606 test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
7607echo "$as_me: error: cannot find input file: $f" >&2;}
7608 { (exit 1); exit 1; }; }
7609 echo "$f";;
7610 *) # Relative
7611 if test -f "$f"; then
7612 # Build tree
7613 echo "$f"
7614 elif test -f "$srcdir/$f"; then
7615 # Source tree
7616 echo "$srcdir/$f"
7617 else
7618 # /dev/null tree
7619 { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
7620echo "$as_me: error: cannot find input file: $f" >&2;}
7621 { (exit 1); exit 1; }; }
7622 fi;;
7623 esac
7624 done` || { (exit 1); exit 1; }
979273e3
NN
7625_ACEOF
7626cat >>$CONFIG_STATUS <<_ACEOF
7627 sed "$ac_vpsub
7628$extrasub
7629_ACEOF
7630cat >>$CONFIG_STATUS <<\_ACEOF
7631:t
7632/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
7633s,@configure_input@,$configure_input,;t t
7634s,@srcdir@,$ac_srcdir,;t t
7635s,@abs_srcdir@,$ac_abs_srcdir,;t t
7636s,@top_srcdir@,$ac_top_srcdir,;t t
7637s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t
7638s,@builddir@,$ac_builddir,;t t
7639s,@abs_builddir@,$ac_abs_builddir,;t t
7640s,@top_builddir@,$ac_top_builddir,;t t
7641s,@abs_top_builddir@,$ac_abs_top_builddir,;t t
7642s,@INSTALL@,$ac_INSTALL,;t t
7643" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
7644 rm -f $tmp/stdin
7645 if test x"$ac_file" != x-; then
7646 mv $tmp/out $ac_file
7647 else
7648 cat $tmp/out
7649 rm -f $tmp/out
7650 fi
7651
7652done
7653_ACEOF
7654cat >>$CONFIG_STATUS <<\_ACEOF
7655
7656#
7657# CONFIG_HEADER section.
7658#
252b5132
RH
7659
7660# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
7661# NAME is the cpp macro being defined and VALUE is the value it is being given.
7662#
7663# ac_d sets the value in "#define NAME VALUE" lines.
979273e3
NN
7664ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)'
7665ac_dB='[ ].*$,\1#\2'
7666ac_dC=' '
7667ac_dD=',;t'
7668# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
7669ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)'
7670ac_uB='$,\1#\2define\3'
252b5132 7671ac_uC=' '
979273e3
NN
7672ac_uD=',;t'
7673
7674for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
252b5132 7675 # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
979273e3
NN
7676 case $ac_file in
7677 - | *:- | *:-:* ) # input from stdin
7678 cat >$tmp/stdin
7679 ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
7680 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
7681 *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
7682 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
7683 * ) ac_file_in=$ac_file.in ;;
252b5132
RH
7684 esac
7685
979273e3
NN
7686 test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5
7687echo "$as_me: creating $ac_file" >&6;}
7688
7689 # First look for the input files in the build tree, otherwise in the
7690 # src tree.
7691 ac_file_inputs=`IFS=:
7692 for f in $ac_file_in; do
7693 case $f in
7694 -) echo $tmp/stdin ;;
7695 [\\/$]*)
7696 # Absolute (can't be DOS-style, as IFS=:)
7697 test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
7698echo "$as_me: error: cannot find input file: $f" >&2;}
7699 { (exit 1); exit 1; }; }
7700 # Do quote $f, to prevent DOS paths from being IFS'd.
7701 echo "$f";;
7702 *) # Relative
7703 if test -f "$f"; then
7704 # Build tree
7705 echo "$f"
7706 elif test -f "$srcdir/$f"; then
7707 # Source tree
7708 echo "$srcdir/$f"
7709 else
7710 # /dev/null tree
7711 { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
7712echo "$as_me: error: cannot find input file: $f" >&2;}
7713 { (exit 1); exit 1; }; }
7714 fi;;
7715 esac
7716 done` || { (exit 1); exit 1; }
7717 # Remove the trailing spaces.
7718 sed 's/[ ]*$//' $ac_file_inputs >$tmp/in
7719
7720_ACEOF
7721
7722# Transform confdefs.h into two sed scripts, `conftest.defines' and
7723# `conftest.undefs', that substitutes the proper values into
7724# config.h.in to produce config.h. The first handles `#define'
7725# templates, and the second `#undef' templates.
7726# And first: Protect against being on the right side of a sed subst in
7727# config.status. Protect against being in an unquoted here document
7728# in config.status.
7729rm -f conftest.defines conftest.undefs
7730# Using a here document instead of a string reduces the quoting nightmare.
7731# Putting comments in sed scripts is not portable.
7732#
7733# `end' is used to avoid that the second main sed command (meant for
7734# 0-ary CPP macros) applies to n-ary macro definitions.
7735# See the Autoconf documentation for `clear'.
7736cat >confdef2sed.sed <<\_ACEOF
7737s/[\\&,]/\\&/g
7738s,[\\$`],\\&,g
7739t clear
7740: clear
7741s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp
7742t end
7743s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp
7744: end
7745_ACEOF
7746# If some macros were called several times there might be several times
7747# the same #defines, which is useless. Nevertheless, we may not want to
7748# sort them, since we want the *last* AC-DEFINE to be honored.
7749uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines
7750sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs
7751rm -f confdef2sed.sed
252b5132
RH
7752
7753# This sed command replaces #undef with comments. This is necessary, for
7754# example, in the case of _POSIX_SOURCE, which is predefined and required
7755# on some systems where configure will not decide to define it.
979273e3
NN
7756cat >>conftest.undefs <<\_ACEOF
7757s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
7758_ACEOF
7759
7760# Break up conftest.defines because some shells have a limit on the size
7761# of here documents, and old seds have small limits too (100 cmds).
7762echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS
7763echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
7764echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS
7765echo ' :' >>$CONFIG_STATUS
7766rm -f conftest.tail
7767while grep . conftest.defines >/dev/null
7768do
7769 # Write a limited-size here document to $tmp/defines.sed.
7770 echo ' cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS
7771 # Speed up: don't consider the non `#define' lines.
7772 echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS
7773 # Work around the forget-to-reset-the-flag bug.
7774 echo 't clr' >>$CONFIG_STATUS
7775 echo ': clr' >>$CONFIG_STATUS
7776 sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS
7777 echo 'CEOF
7778 sed -f $tmp/defines.sed $tmp/in >$tmp/out
7779 rm -f $tmp/in
7780 mv $tmp/out $tmp/in
7781' >>$CONFIG_STATUS
7782 sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail
7783 rm -f conftest.defines
7784 mv conftest.tail conftest.defines
7785done
7786rm -f conftest.defines
7787echo ' fi # grep' >>$CONFIG_STATUS
7788echo >>$CONFIG_STATUS
252b5132 7789
979273e3
NN
7790# Break up conftest.undefs because some shells have a limit on the size
7791# of here documents, and old seds have small limits too (100 cmds).
7792echo ' # Handle all the #undef templates' >>$CONFIG_STATUS
252b5132 7793rm -f conftest.tail
979273e3 7794while grep . conftest.undefs >/dev/null
252b5132 7795do
979273e3
NN
7796 # Write a limited-size here document to $tmp/undefs.sed.
7797 echo ' cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS
7798 # Speed up: don't consider the non `#undef'
7799 echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS
7800 # Work around the forget-to-reset-the-flag bug.
7801 echo 't clr' >>$CONFIG_STATUS
7802 echo ': clr' >>$CONFIG_STATUS
7803 sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS
252b5132 7804 echo 'CEOF
979273e3
NN
7805 sed -f $tmp/undefs.sed $tmp/in >$tmp/out
7806 rm -f $tmp/in
7807 mv $tmp/out $tmp/in
7808' >>$CONFIG_STATUS
7809 sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail
7810 rm -f conftest.undefs
7811 mv conftest.tail conftest.undefs
252b5132 7812done
979273e3
NN
7813rm -f conftest.undefs
7814
7815cat >>$CONFIG_STATUS <<\_ACEOF
7816 # Let's still pretend it is `configure' which instantiates (i.e., don't
7817 # use $as_me), people would be surprised to read:
7818 # /* config.h. Generated by config.status. */
7819 if test x"$ac_file" = x-; then
7820 echo "/* Generated by configure. */" >$tmp/config.h
7821 else
7822 echo "/* $ac_file. Generated by configure. */" >$tmp/config.h
7823 fi
7824 cat $tmp/in >>$tmp/config.h
7825 rm -f $tmp/in
7826 if test x"$ac_file" != x-; then
7827 if diff $ac_file $tmp/config.h >/dev/null 2>&1; then
7828 { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
7829echo "$as_me: $ac_file is unchanged" >&6;}
7830 else
7831 ac_dir=`(dirname "$ac_file") 2>/dev/null ||
7832$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
7833 X"$ac_file" : 'X\(//\)[^/]' \| \
7834 X"$ac_file" : 'X\(//\)$' \| \
7835 X"$ac_file" : 'X\(/\)' \| \
7836 . : '\(.\)' 2>/dev/null ||
7837echo X"$ac_file" |
7838 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
7839 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
7840 /^X\(\/\/\)$/{ s//\1/; q; }
7841 /^X\(\/\).*/{ s//\1/; q; }
7842 s/.*/./; q'`
7843 { if $as_mkdir_p; then
7844 mkdir -p "$ac_dir"
252b5132 7845 else
979273e3
NN
7846 as_dir="$ac_dir"
7847 as_dirs=
7848 while test ! -d "$as_dir"; do
7849 as_dirs="$as_dir $as_dirs"
7850 as_dir=`(dirname "$as_dir") 2>/dev/null ||
7851$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
7852 X"$as_dir" : 'X\(//\)[^/]' \| \
7853 X"$as_dir" : 'X\(//\)$' \| \
7854 X"$as_dir" : 'X\(/\)' \| \
7855 . : '\(.\)' 2>/dev/null ||
7856echo X"$as_dir" |
7857 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
7858 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
7859 /^X\(\/\/\)$/{ s//\1/; q; }
7860 /^X\(\/\).*/{ s//\1/; q; }
7861 s/.*/./; q'`
7862 done
7863 test ! -n "$as_dirs" || mkdir $as_dirs
7864 fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
7865echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
7866 { (exit 1); exit 1; }; }; }
7867
7868 rm -f $ac_file
7869 mv $tmp/config.h $ac_file
252b5132 7870 fi
979273e3
NN
7871 else
7872 cat $tmp/config.h
7873 rm -f $tmp/config.h
252b5132 7874 fi
8ae85421
AM
7875# Compute $ac_file's index in $config_headers.
7876_am_stamp_count=1
7877for _am_header in $config_headers :; do
7878 case $_am_header in
7879 $ac_file | $ac_file:* )
7880 break ;;
7881 * )
7882 _am_stamp_count=`expr $_am_stamp_count + 1` ;;
7883 esac
7884done
7885echo "timestamp for $ac_file" >`(dirname $ac_file) 2>/dev/null ||
7886$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
7887 X$ac_file : 'X\(//\)[^/]' \| \
7888 X$ac_file : 'X\(//\)$' \| \
7889 X$ac_file : 'X\(/\)' \| \
7890 . : '\(.\)' 2>/dev/null ||
7891echo X$ac_file |
7892 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
7893 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
7894 /^X\(\/\/\)$/{ s//\1/; q; }
7895 /^X\(\/\).*/{ s//\1/; q; }
7896 s/.*/./; q'`/stamp-h$_am_stamp_count
979273e3
NN
7897done
7898_ACEOF
7899cat >>$CONFIG_STATUS <<\_ACEOF
252b5132 7900
979273e3
NN
7901#
7902# CONFIG_COMMANDS section.
7903#
7904for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue
7905 ac_dest=`echo "$ac_file" | sed 's,:.*,,'`
7906 ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`
7907 ac_dir=`(dirname "$ac_dest") 2>/dev/null ||
7908$as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
7909 X"$ac_dest" : 'X\(//\)[^/]' \| \
7910 X"$ac_dest" : 'X\(//\)$' \| \
7911 X"$ac_dest" : 'X\(/\)' \| \
7912 . : '\(.\)' 2>/dev/null ||
7913echo X"$ac_dest" |
7914 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
7915 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
7916 /^X\(\/\/\)$/{ s//\1/; q; }
7917 /^X\(\/\).*/{ s//\1/; q; }
7918 s/.*/./; q'`
7919 { if $as_mkdir_p; then
7920 mkdir -p "$ac_dir"
7921 else
7922 as_dir="$ac_dir"
7923 as_dirs=
7924 while test ! -d "$as_dir"; do
7925 as_dirs="$as_dir $as_dirs"
7926 as_dir=`(dirname "$as_dir") 2>/dev/null ||
7927$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
7928 X"$as_dir" : 'X\(//\)[^/]' \| \
7929 X"$as_dir" : 'X\(//\)$' \| \
7930 X"$as_dir" : 'X\(/\)' \| \
7931 . : '\(.\)' 2>/dev/null ||
7932echo X"$as_dir" |
7933 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
7934 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
7935 /^X\(\/\/\)$/{ s//\1/; q; }
7936 /^X\(\/\).*/{ s//\1/; q; }
7937 s/.*/./; q'`
7938 done
7939 test ! -n "$as_dirs" || mkdir $as_dirs
7940 fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
7941echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
7942 { (exit 1); exit 1; }; }; }
252b5132 7943
979273e3 7944 ac_builddir=.
252b5132 7945
979273e3
NN
7946if test "$ac_dir" != .; then
7947 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
7948 # A "../" for each directory in $ac_dir_suffix.
7949 ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
7950else
7951 ac_dir_suffix= ac_top_builddir=
7952fi
7953
7954case $srcdir in
7955 .) # No --srcdir option. We are building in place.
7956 ac_srcdir=.
7957 if test -z "$ac_top_builddir"; then
7958 ac_top_srcdir=.
7959 else
7960 ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
7961 fi ;;
7962 [\\/]* | ?:[\\/]* ) # Absolute path.
7963 ac_srcdir=$srcdir$ac_dir_suffix;
7964 ac_top_srcdir=$srcdir ;;
7965 *) # Relative path.
7966 ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
7967 ac_top_srcdir=$ac_top_builddir$srcdir ;;
7968esac
7969
7970# Do not use `cd foo && pwd` to compute absolute paths, because
7971# the directories may not exist.
7972case `pwd` in
7973.) ac_abs_builddir="$ac_dir";;
7974*)
7975 case "$ac_dir" in
7976 .) ac_abs_builddir=`pwd`;;
7977 [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
7978 *) ac_abs_builddir=`pwd`/"$ac_dir";;
7979 esac;;
7980esac
7981case $ac_abs_builddir in
7982.) ac_abs_top_builddir=${ac_top_builddir}.;;
7983*)
7984 case ${ac_top_builddir}. in
7985 .) ac_abs_top_builddir=$ac_abs_builddir;;
7986 [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
7987 *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
7988 esac;;
7989esac
7990case $ac_abs_builddir in
7991.) ac_abs_srcdir=$ac_srcdir;;
7992*)
7993 case $ac_srcdir in
7994 .) ac_abs_srcdir=$ac_abs_builddir;;
7995 [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
7996 *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
7997 esac;;
7998esac
7999case $ac_abs_builddir in
8000.) ac_abs_top_srcdir=$ac_top_srcdir;;
8001*)
8002 case $ac_top_srcdir in
8003 .) ac_abs_top_srcdir=$ac_abs_builddir;;
8004 [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
8005 *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
8006 esac;;
8007esac
8008
8009
8010 { echo "$as_me:$LINENO: executing $ac_dest commands" >&5
8011echo "$as_me: executing $ac_dest commands" >&6;}
8012 case $ac_dest in
8ae85421
AM
8013 depfiles ) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
8014 # Strip MF so we end up with the name of the file.
8015 mf=`echo "$mf" | sed -e 's/:.*$//'`
8016 # Check whether this is an Automake generated Makefile or not.
8017 # We used to match only the files named `Makefile.in', but
8018 # some people rename them; so instead we look at the file content.
8019 # Grep'ing the first line is not enough: some people post-process
8020 # each Makefile.in and add a new line on top of each file to say so.
8021 # So let's grep whole file.
8022 if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
8023 dirpart=`(dirname "$mf") 2>/dev/null ||
8024$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
8025 X"$mf" : 'X\(//\)[^/]' \| \
8026 X"$mf" : 'X\(//\)$' \| \
8027 X"$mf" : 'X\(/\)' \| \
8028 . : '\(.\)' 2>/dev/null ||
8029echo X"$mf" |
8030 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
8031 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
8032 /^X\(\/\/\)$/{ s//\1/; q; }
8033 /^X\(\/\).*/{ s//\1/; q; }
8034 s/.*/./; q'`
8035 else
8036 continue
8037 fi
8038 # Extract the definition of DEPDIR, am__include, and am__quote
8039 # from the Makefile without running `make'.
8040 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
8041 test -z "$DEPDIR" && continue
8042 am__include=`sed -n 's/^am__include = //p' < "$mf"`
8043 test -z "am__include" && continue
8044 am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
8045 # When using ansi2knr, U may be empty or an underscore; expand it
8046 U=`sed -n 's/^U = //p' < "$mf"`
8047 # Find all dependency output files, they are included files with
8048 # $(DEPDIR) in their names. We invoke sed twice because it is the
8049 # simplest approach to changing $(DEPDIR) to its actual value in the
8050 # expansion.
8051 for file in `sed -n "
8052 s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
8053 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
8054 # Make sure the directory exists.
8055 test -f "$dirpart/$file" && continue
8056 fdir=`(dirname "$file") 2>/dev/null ||
8057$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
8058 X"$file" : 'X\(//\)[^/]' \| \
8059 X"$file" : 'X\(//\)$' \| \
8060 X"$file" : 'X\(/\)' \| \
8061 . : '\(.\)' 2>/dev/null ||
8062echo X"$file" |
8063 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
8064 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
8065 /^X\(\/\/\)$/{ s//\1/; q; }
8066 /^X\(\/\).*/{ s//\1/; q; }
8067 s/.*/./; q'`
8068 { if $as_mkdir_p; then
8069 mkdir -p $dirpart/$fdir
8070 else
8071 as_dir=$dirpart/$fdir
8072 as_dirs=
8073 while test ! -d "$as_dir"; do
8074 as_dirs="$as_dir $as_dirs"
8075 as_dir=`(dirname "$as_dir") 2>/dev/null ||
8076$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
8077 X"$as_dir" : 'X\(//\)[^/]' \| \
8078 X"$as_dir" : 'X\(//\)$' \| \
8079 X"$as_dir" : 'X\(/\)' \| \
8080 . : '\(.\)' 2>/dev/null ||
8081echo X"$as_dir" |
8082 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
8083 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
8084 /^X\(\/\/\)$/{ s//\1/; q; }
8085 /^X\(\/\).*/{ s//\1/; q; }
8086 s/.*/./; q'`
8087 done
8088 test ! -n "$as_dirs" || mkdir $as_dirs
8089 fi || { { echo "$as_me:$LINENO: error: cannot create directory $dirpart/$fdir" >&5
8090echo "$as_me: error: cannot create directory $dirpart/$fdir" >&2;}
8091 { (exit 1); exit 1; }; }; }
8092
8093 # echo "creating $dirpart/$file"
8094 echo '# dummy' > "$dirpart/$file"
8095 done
8096done
8097 ;;
20e95c23
DJ
8098 default-1 )
8099 for ac_file in $CONFIG_FILES; do
8100 # Support "outfile[:infile[:infile...]]"
8101 case "$ac_file" in
8102 *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
8103 esac
8104 # PO directories have a Makefile.in generated from Makefile.in.in.
8105 case "$ac_file" in */Makefile.in)
8106 # Adjust a relative srcdir.
8107 ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
8108 ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`"
8109 ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
8110 # In autoconf-2.13 it is called $ac_given_srcdir.
8111 # In autoconf-2.50 it is called $srcdir.
8112 test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir"
8113 case "$ac_given_srcdir" in
8114 .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
8115 /*) top_srcdir="$ac_given_srcdir" ;;
8116 *) top_srcdir="$ac_dots$ac_given_srcdir" ;;
8117 esac
8118 if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then
8119 rm -f "$ac_dir/POTFILES"
8120 test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES"
8121 cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES"
8122 POMAKEFILEDEPS="POTFILES.in"
8123 # ALL_LINGUAS, POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES depend
8124 # on $ac_dir but don't depend on user-specified configuration
8125 # parameters.
8126 if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then
8127 # The LINGUAS file contains the set of available languages.
8128 if test -n "$OBSOLETE_ALL_LINGUAS"; then
8129 test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete"
8130 fi
8131 ALL_LINGUAS_=`sed -e "/^#/d" "$ac_given_srcdir/$ac_dir/LINGUAS"`
8132 # Hide the ALL_LINGUAS assigment from automake.
8133 eval 'ALL_LINGUAS''=$ALL_LINGUAS_'
8134 POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS"
8135 else
8136 # The set of available languages was given in configure.in.
8137 eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS'
8138 fi
8139 case "$ac_given_srcdir" in
8140 .) srcdirpre= ;;
8141 *) srcdirpre='$(srcdir)/' ;;
8142 esac
8143 POFILES=
8144 GMOFILES=
8145 UPDATEPOFILES=
8146 DUMMYPOFILES=
8147 for lang in $ALL_LINGUAS; do
8148 POFILES="$POFILES $srcdirpre$lang.po"
8149 GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
8150 UPDATEPOFILES="$UPDATEPOFILES $lang.po-update"
8151 DUMMYPOFILES="$DUMMYPOFILES $lang.nop"
8152 done
8153 # CATALOGS depends on both $ac_dir and the user's LINGUAS
8154 # environment variable.
8155 INST_LINGUAS=
8156 if test -n "$ALL_LINGUAS"; then
8157 for presentlang in $ALL_LINGUAS; do
8158 useit=no
8159 if test "%UNSET%" != "$LINGUAS"; then
8160 desiredlanguages="$LINGUAS"
8161 else
8162 desiredlanguages="$ALL_LINGUAS"
8163 fi
8164 for desiredlang in $desiredlanguages; do
8165 # Use the presentlang catalog if desiredlang is
8166 # a. equal to presentlang, or
8167 # b. a variant of presentlang (because in this case,
8168 # presentlang can be used as a fallback for messages
8169 # which are not translated in the desiredlang catalog).
8170 case "$desiredlang" in
8171 "$presentlang"*) useit=yes;;
8172 esac
8173 done
8174 if test $useit = yes; then
8175 INST_LINGUAS="$INST_LINGUAS $presentlang"
8176 fi
8177 done
8178 fi
8179 CATALOGS=
8180 if test -n "$INST_LINGUAS"; then
8181 for lang in $INST_LINGUAS; do
8182 CATALOGS="$CATALOGS $lang.gmo"
8183 done
8184 fi
8185 test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile"
8186 sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile"
8187 for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do
8188 if test -f "$f"; then
8189 case "$f" in
8190 *.orig | *.bak | *~) ;;
8191 *) cat "$f" >> "$ac_dir/Makefile" ;;
8192 esac
8193 fi
8194 done
8195 fi
8196 ;;
8197 esac
8198 done ;;
979273e3
NN
8199 esac
8200done
8201_ACEOF
8202
8203cat >>$CONFIG_STATUS <<\_ACEOF
8204
8205{ (exit 0); exit 0; }
8206_ACEOF
252b5132 8207chmod +x $CONFIG_STATUS
979273e3
NN
8208ac_clean_files=$ac_clean_files_save
8209
8210
8211# configure is writing to config.log, and then calls config.status.
8212# config.status does its own redirection, appending to config.log.
8213# Unfortunately, on DOS this fails, as config.log is still kept open
8214# by configure, so config.status won't be able to write to it; its
8215# output is simply discarded. So we exec the FD to /dev/null,
8216# effectively closing config.log, so it can be properly (re)opened and
8217# appended to by config.status. When coming back to configure, we
8218# need to make the FD available again.
8219if test "$no_create" != yes; then
8220 ac_cs_success=:
8221 ac_config_status_args=
8222 test "$silent" = yes &&
8223 ac_config_status_args="$ac_config_status_args --quiet"
8224 exec 5>/dev/null
8225 $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
8226 exec 5>>config.log
8227 # Use ||, not &&, to avoid exiting from the if with $? = 1, which
8228 # would make configure fail if this is the last instruction.
8229 $ac_cs_success || { (exit 1); exit 1; }
8230fi
252b5132 8231
This page took 0.865469 seconds and 4 git commands to generate.