bfd/
[deliverable/binutils-gdb.git] / binutils / configure
CommitLineData
252b5132 1#! /bin/sh
252b5132 2# Guess values for system-dependent variables and create Makefiles.
42ecbf5e 3# Generated by GNU Autoconf 2.59.
252b5132 4#
42ecbf5e 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.
42ecbf5e
DJ
8## --------------------- ##
9## M4sh Initialization. ##
10## --------------------- ##
11
12# Be Bourne compatible
13if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
14 emulate sh
15 NULLCMD=:
16 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
17 # is contrary to our usage. Disable this feature.
18 alias -g '${1+"$@"}'='"$@"'
19elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
20 set -o posix
21fi
22DUALCASE=1; export DUALCASE # for MKS sh
23
24# Support unset when possible.
25if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
26 as_unset=unset
27else
28 as_unset=false
29fi
30
31
32# Work around bugs in pre-3.0 UWIN ksh.
33$as_unset ENV MAIL MAILPATH
34PS1='$ '
35PS2='> '
36PS4='+ '
37
38# NLS nuisances.
39for as_var in \
40 LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
41 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
42 LC_TELEPHONE LC_TIME
43do
44 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
45 eval $as_var=C; export $as_var
46 else
47 $as_unset $as_var
48 fi
49done
50
51# Required to use basename.
52if expr a : '\(a\)' >/dev/null 2>&1; then
53 as_expr=expr
54else
55 as_expr=false
56fi
57
58if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
59 as_basename=basename
60else
61 as_basename=false
62fi
63
64
65# Name of the executable.
66as_me=`$as_basename "$0" ||
67$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
68 X"$0" : 'X\(//\)$' \| \
69 X"$0" : 'X\(/\)$' \| \
70 . : '\(.\)' 2>/dev/null ||
71echo X/"$0" |
72 sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
73 /^X\/\(\/\/\)$/{ s//\1/; q; }
74 /^X\/\(\/\).*/{ s//\1/; q; }
75 s/.*/./; q'`
76
77
78# PATH needs CR, and LINENO needs CR and PATH.
79# Avoid depending upon Character Ranges.
80as_cr_letters='abcdefghijklmnopqrstuvwxyz'
81as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
82as_cr_Letters=$as_cr_letters$as_cr_LETTERS
83as_cr_digits='0123456789'
84as_cr_alnum=$as_cr_Letters$as_cr_digits
85
86# The user is always right.
87if test "${PATH_SEPARATOR+set}" != set; then
88 echo "#! /bin/sh" >conf$$.sh
89 echo "exit 0" >>conf$$.sh
90 chmod +x conf$$.sh
91 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
92 PATH_SEPARATOR=';'
93 else
94 PATH_SEPARATOR=:
95 fi
96 rm -f conf$$.sh
97fi
98
99
100 as_lineno_1=$LINENO
101 as_lineno_2=$LINENO
102 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
103 test "x$as_lineno_1" != "x$as_lineno_2" &&
104 test "x$as_lineno_3" = "x$as_lineno_2" || {
105 # Find who we are. Look in the path if we contain no path at all
106 # relative or not.
107 case $0 in
108 *[\\/]* ) as_myself=$0 ;;
109 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
110for as_dir in $PATH
111do
112 IFS=$as_save_IFS
113 test -z "$as_dir" && as_dir=.
114 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
115done
116
117 ;;
118 esac
119 # We did not find ourselves, most probably we were run as `sh COMMAND'
120 # in which case we are not to be found in the path.
121 if test "x$as_myself" = x; then
122 as_myself=$0
123 fi
124 if test ! -f "$as_myself"; then
125 { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2
126 { (exit 1); exit 1; }; }
127 fi
128 case $CONFIG_SHELL in
129 '')
130 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
131for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
132do
133 IFS=$as_save_IFS
134 test -z "$as_dir" && as_dir=.
135 for as_base in sh bash ksh sh5; do
136 case $as_dir in
137 /*)
138 if ("$as_dir/$as_base" -c '
139 as_lineno_1=$LINENO
140 as_lineno_2=$LINENO
141 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
142 test "x$as_lineno_1" != "x$as_lineno_2" &&
143 test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then
144 $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
145 $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
146 CONFIG_SHELL=$as_dir/$as_base
147 export CONFIG_SHELL
148 exec "$CONFIG_SHELL" "$0" ${1+"$@"}
149 fi;;
150 esac
151 done
152done
153;;
154 esac
155
156 # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
157 # uniformly replaced by the line number. The first 'sed' inserts a
158 # line-number line before each line; the second 'sed' does the real
159 # work. The second script uses 'N' to pair each line-number line
160 # with the numbered line, and appends trailing '-' during
161 # substitution so that $LINENO is not a special case at line end.
162 # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
163 # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-)
164 sed '=' <$as_myself |
165 sed '
166 N
167 s,$,-,
168 : loop
169 s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
170 t loop
171 s,-$,,
172 s,^['$as_cr_digits']*\n,,
173 ' >$as_me.lineno &&
174 chmod +x $as_me.lineno ||
175 { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
176 { (exit 1); exit 1; }; }
177
178 # Don't try to exec as it changes $[0], causing all sort of problems
179 # (the dirname of $[0] is not the place where we might find the
180 # original and so on. Autoconf is especially sensible to this).
181 . ./$as_me.lineno
182 # Exit status is that of the last command.
183 exit
184}
185
186
187case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
188 *c*,-n*) ECHO_N= ECHO_C='
189' ECHO_T=' ' ;;
190 *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;;
191 *) ECHO_N= ECHO_C='\c' ECHO_T= ;;
192esac
193
194if expr a : '\(a\)' >/dev/null 2>&1; then
195 as_expr=expr
196else
197 as_expr=false
198fi
199
200rm -f conf$$ conf$$.exe conf$$.file
201echo >conf$$.file
202if ln -s conf$$.file conf$$ 2>/dev/null; then
203 # We could just check for DJGPP; but this test a) works b) is more generic
204 # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
205 if test -f conf$$.exe; then
206 # Don't use ln at all; we don't have any links
207 as_ln_s='cp -p'
208 else
209 as_ln_s='ln -s'
210 fi
211elif ln conf$$.file conf$$ 2>/dev/null; then
212 as_ln_s=ln
213else
214 as_ln_s='cp -p'
215fi
216rm -f conf$$ conf$$.exe conf$$.file
217
218if mkdir -p . 2>/dev/null; then
219 as_mkdir_p=:
220else
221 test -d ./-p && rmdir ./-p
222 as_mkdir_p=false
223fi
224
225as_executable_p="test -f"
226
227# Sed expression to map a string onto a valid CPP name.
228as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
229
230# Sed expression to map a string onto a valid variable name.
231as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
232
233
234# IFS
235# We need space, tab and new line, in precisely that order.
236as_nl='
237'
238IFS=" $as_nl"
239
240# CDPATH.
241$as_unset CDPATH
242
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
42ecbf5e
DJ
249exec 6>&1
250
251#
252# Initializations.
253#
252b5132 254ac_default_prefix=/usr/local
42ecbf5e
DJ
255ac_config_libobj_dir=.
256cross_compiling=no
257subdirs=
258MFLAGS=
259MAKEFLAGS=
260SHELL=${CONFIG_SHELL-/bin/sh}
261
262# Maximum number of lines to put in a shell here document.
263# This variable seems obsolete. It should probably be removed, and
264# only ac_max_sed_lines should be used.
265: ${ac_max_here_lines=38}
266
267# Identity of this package.
268PACKAGE_NAME=
269PACKAGE_TARNAME=
270PACKAGE_VERSION=
271PACKAGE_STRING=
272PACKAGE_BUGREPORT=
273
274ac_unique_file="ar.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
c428fa83 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 LN_S RANLIB ac_ct_RANLIB LIBTOOL WARN_CFLAGS NO_WERROR YACC LEX LEXLIB LEX_OUTPUT_ROOT USE_NLS LIBINTL LIBINTL_DEP INCINTL XGETTEXT GMSGFMT POSUB CATALOGS DATADIRNAME INSTOBJEXT GENCAT CATOBJEXT MKINSTALLDIRS MSGFMT MSGMERGE MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT GENINSRC_NEVER_TRUE GENINSRC_NEVER_FALSE HDEFINES AR CC_FOR_BUILD EXEEXT_FOR_BUILD DEMANGLER_NAME CPP EGREP ALLOCA NLMCONV_DEFS BUILD_NLMCONV BUILD_SRCONV BUILD_DLLTOOL DLLTOOL_DEFS BUILD_WINDRES BUILD_DLLWRAP BUILD_MISC BUILD_INSTALL_MISC OBJDUMP_DEFS EMULATION EMULATION_VECTOR datarootdir docdir htmldir LIBOBJS LTLIBOBJS'
42ecbf5e 313ac_subst_files=''
252b5132
RH
314
315# Initialize some variables set by options.
42ecbf5e
DJ
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.
42ecbf5e 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
42ecbf5e
DJ
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
42ecbf5e 363 ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
252b5132
RH
364
365 # Accept the important Cygnus configure options, so we can diagnose typos.
366
42ecbf5e 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=*)
42ecbf5e 372 bindir=$ac_optarg ;;
252b5132
RH
373
374 -build | --build | --buil | --bui | --bu)
42ecbf5e 375 ac_prev=build_alias ;;
252b5132 376 -build=* | --build=* | --buil=* | --bui=* | --bu=*)
42ecbf5e 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=*)
42ecbf5e
DJ
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=*)
42ecbf5e 393 datadir=$ac_optarg ;;
252b5132
RH
394
395 -disable-* | --disable-*)
42ecbf5e 396 ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
252b5132 397 # Reject names that are not valid shell variable names.
42ecbf5e
DJ
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-*)
42ecbf5e 405 ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
252b5132 406 # Reject names that are not valid shell variable names.
42ecbf5e
DJ
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
42ecbf5e 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=*)
42ecbf5e 424 exec_prefix=$ac_optarg ;;
252b5132
RH
425
426 -gas | --gas | --ga | --g)
427 # Obsolete; use --with-gas.
428 with_gas=yes ;;
429
42ecbf5e
DJ
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)
42ecbf5e 438 ac_prev=host_alias ;;
252b5132 439 -host=* | --host=* | --hos=* | --ho=*)
42ecbf5e 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=*)
42ecbf5e 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=*)
42ecbf5e 452 infodir=$ac_optarg ;;
252b5132
RH
453
454 -libdir | --libdir | --libdi | --libd)
455 ac_prev=libdir ;;
456 -libdir=* | --libdir=* | --libdi=* | --libd=*)
42ecbf5e 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=*)
42ecbf5e 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=*)
42ecbf5e 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=*)
42ecbf5e 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 \
42ecbf5e 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=*)
42ecbf5e 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=*)
42ecbf5e 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=*)
42ecbf5e 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=*)
42ecbf5e 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=*)
42ecbf5e 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=*)
42ecbf5e 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=*)
42ecbf5e 556 sharedstatedir=$ac_optarg ;;
252b5132
RH
557
558 -site | --site | --sit)
559 ac_prev=site ;;
560 -site=* | --site=* | --sit=*)
42ecbf5e 561 site=$ac_optarg ;;
252b5132
RH
562
563 -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
564 ac_prev=srcdir ;;
565 -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
42ecbf5e 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=*)
42ecbf5e 573 sysconfdir=$ac_optarg ;;
252b5132
RH
574
575 -target | --target | --targe | --targ | --tar | --ta | --t)
42ecbf5e 576 ac_prev=target_alias ;;
252b5132 577 -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
42ecbf5e 578 target_alias=$ac_optarg ;;
252b5132
RH
579
580 -v | -verbose | --verbose | --verbos | --verbo | --verb)
581 verbose=yes ;;
582
42ecbf5e
DJ
583 -version | --version | --versio | --versi | --vers | -V)
584 ac_init_version=: ;;
252b5132
RH
585
586 -with-* | --with-*)
42ecbf5e 587 ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
252b5132 588 # Reject names that are not valid shell variable names.
42ecbf5e
DJ
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'`
42ecbf5e
DJ
593 case $ac_option in
594 *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
252b5132
RH
595 *) ac_optarg=yes ;;
596 esac
42ecbf5e 597 eval "with_$ac_package='$ac_optarg'" ;;
252b5132
RH
598
599 -without-* | --without-*)
42ecbf5e 600 ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
252b5132 601 # Reject names that are not valid shell variable names.
42ecbf5e
DJ
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=*)
42ecbf5e 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=*)
42ecbf5e 624 x_libraries=$ac_optarg ;;
252b5132 625
42ecbf5e
DJ
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
42ecbf5e
DJ
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 *)
42ecbf5e
DJ
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
42ecbf5e
DJ
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
RH
656fi
657
42ecbf5e
DJ
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
42ecbf5e
DJ
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
42ecbf5e
DJ
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
42ecbf5e
DJ
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
e5a52504 698
42ecbf5e
DJ
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.
42ecbf5e
DJ
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
42ecbf5e
DJ
730 { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2
731 { (exit 1); exit 1; }; }
252b5132 732 else
42ecbf5e
DJ
733 { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
734 { (exit 1); exit 1; }; }
252b5132
RH
735 fi
736fi
42ecbf5e
DJ
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
42ecbf5e
DJ
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
42ecbf5e 783Usage: $0 [OPTION]... [VAR=VALUE]...
252b5132 784
42ecbf5e
DJ
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
42ecbf5e 788Defaults for the options are specified in brackets.
ac48eca1 789
42ecbf5e
DJ
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
42ecbf5e
DJ
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
42ecbf5e 815For better control, use the options below.
ac48eca1 816
42ecbf5e
DJ
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
42ecbf5e 832 cat <<\_ACEOF
252b5132 833
42ecbf5e
DJ
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
42ecbf5e
DJ
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
42ecbf5e 846if test -n "$ac_init_help"; then
252b5132 847
42ecbf5e 848 cat <<\_ACEOF
252b5132 849
42ecbf5e
DJ
850Optional Features:
851 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
852 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
853 --disable-dependency-tracking speeds up one-time build
854 --enable-dependency-tracking do not reject slow dependency extractors
855 --enable-shared=PKGS build shared libraries default=yes
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
42ecbf5e
DJ
863 --disable-nls do not use Native Language Support
864 --enable-maintainer-mode enable make rules and dependencies not useful
865 (and sometimes confusing) to the casual installer
866
867Optional Packages:
868 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
869 --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
870 --with-gnu-ld assume the C compiler uses GNU ld default=no
871 --with-pic try to use only PIC/non-PIC objects default=use both
252b5132 872
42ecbf5e
DJ
873Some influential environment variables:
874 CC C compiler command
875 CFLAGS C compiler flags
876 LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
877 nonstandard directory <lib dir>
878 CPPFLAGS C/C++ preprocessor flags, e.g. -I<include dir> if you have
879 headers in a nonstandard directory <include dir>
880 CPP C preprocessor
e5a52504 881
42ecbf5e
DJ
882Use these variables to override the choices made by `configure' or to help
883it to find libraries and programs with nonstandard names/locations.
884
885_ACEOF
252b5132
RH
886fi
887
42ecbf5e
DJ
888if test "$ac_init_help" = "recursive"; then
889 # If there are subdirs, report their specific --help.
890 ac_popdir=`pwd`
891 for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
892 test -d $ac_dir || continue
893 ac_builddir=.
894
895if test "$ac_dir" != .; then
896 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
897 # A "../" for each directory in $ac_dir_suffix.
898 ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
899else
900 ac_dir_suffix= ac_top_builddir=
901fi
252b5132 902
42ecbf5e
DJ
903case $srcdir in
904 .) # No --srcdir option. We are building in place.
905 ac_srcdir=.
906 if test -z "$ac_top_builddir"; then
907 ac_top_srcdir=.
908 else
909 ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
252b5132 910 fi ;;
42ecbf5e
DJ
911 [\\/]* | ?:[\\/]* ) # Absolute path.
912 ac_srcdir=$srcdir$ac_dir_suffix;
913 ac_top_srcdir=$srcdir ;;
914 *) # Relative path.
915 ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
916 ac_top_srcdir=$ac_top_builddir$srcdir ;;
252b5132
RH
917esac
918
42ecbf5e
DJ
919# Do not use `cd foo && pwd` to compute absolute paths, because
920# the directories may not exist.
921case `pwd` in
922.) ac_abs_builddir="$ac_dir";;
923*)
924 case "$ac_dir" in
925 .) ac_abs_builddir=`pwd`;;
926 [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
927 *) ac_abs_builddir=`pwd`/"$ac_dir";;
928 esac;;
252b5132 929esac
42ecbf5e
DJ
930case $ac_abs_builddir in
931.) ac_abs_top_builddir=${ac_top_builddir}.;;
932*)
933 case ${ac_top_builddir}. in
934 .) ac_abs_top_builddir=$ac_abs_builddir;;
935 [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
936 *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
937 esac;;
938esac
939case $ac_abs_builddir in
940.) ac_abs_srcdir=$ac_srcdir;;
941*)
942 case $ac_srcdir in
943 .) ac_abs_srcdir=$ac_abs_builddir;;
944 [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
945 *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
946 esac;;
947esac
948case $ac_abs_builddir in
949.) ac_abs_top_srcdir=$ac_top_srcdir;;
950*)
951 case $ac_top_srcdir in
952 .) ac_abs_top_srcdir=$ac_abs_builddir;;
953 [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
954 *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
955 esac;;
d15b04bd 956esac
5d64ca4e 957
42ecbf5e
DJ
958 cd $ac_dir
959 # Check for guested configure; otherwise get Cygnus style configure.
960 if test -f $ac_srcdir/configure.gnu; then
961 echo
962 $SHELL $ac_srcdir/configure.gnu --help=recursive
963 elif test -f $ac_srcdir/configure; then
964 echo
965 $SHELL $ac_srcdir/configure --help=recursive
966 elif test -f $ac_srcdir/configure.ac ||
967 test -f $ac_srcdir/configure.in; then
968 echo
969 $ac_configure --help
970 else
971 echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
972 fi
b7d4af3a 973 cd $ac_popdir
42ecbf5e
DJ
974 done
975fi
5d64ca4e 976
42ecbf5e
DJ
977test -n "$ac_init_help" && exit 0
978if $ac_init_version; then
979 cat <<\_ACEOF
5d64ca4e 980
42ecbf5e
DJ
981Copyright (C) 2003 Free Software Foundation, Inc.
982This configure script is free software; the Free Software Foundation
983gives unlimited permission to copy, distribute and modify it.
984_ACEOF
985 exit 0
986fi
987exec 5>config.log
988cat >&5 <<_ACEOF
989This file contains any messages produced by compilers while
990running configure, to aid debugging if configure makes a mistake.
429cc0ae 991
42ecbf5e
DJ
992It was created by $as_me, which was
993generated by GNU Autoconf 2.59. Invocation command line was
252b5132 994
42ecbf5e 995 $ $0 $@
e5a52504 996
42ecbf5e
DJ
997_ACEOF
998{
999cat <<_ASUNAME
1000## --------- ##
1001## Platform. ##
1002## --------- ##
1003
1004hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
1005uname -m = `(uname -m) 2>/dev/null || echo unknown`
1006uname -r = `(uname -r) 2>/dev/null || echo unknown`
1007uname -s = `(uname -s) 2>/dev/null || echo unknown`
1008uname -v = `(uname -v) 2>/dev/null || echo unknown`
1009
1010/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
1011/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
1012
1013/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
1014/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
1015/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
1016hostinfo = `(hostinfo) 2>/dev/null || echo unknown`
1017/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
1018/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
1019/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
1020
1021_ASUNAME
1022
1023as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1024for as_dir in $PATH
1025do
1026 IFS=$as_save_IFS
1027 test -z "$as_dir" && as_dir=.
1028 echo "PATH: $as_dir"
1029done
e5a52504 1030
42ecbf5e 1031} >&5
ceae3e33 1032
42ecbf5e 1033cat >&5 <<_ACEOF
e5a52504 1034
42ecbf5e
DJ
1035
1036## ----------- ##
1037## Core tests. ##
1038## ----------- ##
1039
1040_ACEOF
1041
1042
1043# Keep a trace of the command line.
1044# Strip out --no-create and --no-recursion so they do not pile up.
1045# Strip out --silent because we don't want to record it for future runs.
1046# Also quote any args containing shell meta-characters.
1047# Make two passes to allow for proper duplicate-argument suppression.
1048ac_configure_args=
1049ac_configure_args0=
1050ac_configure_args1=
1051ac_sep=
1052ac_must_keep_next=false
1053for ac_pass in 1 2
1054do
1055 for ac_arg
1056 do
1057 case $ac_arg in
1058 -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
1059 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1060 | -silent | --silent | --silen | --sile | --sil)
1061 continue ;;
1062 *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
1063 ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1064 esac
1065 case $ac_pass in
1066 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
1067 2)
1068 ac_configure_args1="$ac_configure_args1 '$ac_arg'"
1069 if test $ac_must_keep_next = true; then
1070 ac_must_keep_next=false # Got value, back to normal.
1071 else
1072 case $ac_arg in
1073 *=* | --config-cache | -C | -disable-* | --disable-* \
1074 | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
1075 | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
1076 | -with-* | --with-* | -without-* | --without-* | --x)
1077 case "$ac_configure_args0 " in
1078 "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
1079 esac
1080 ;;
1081 -* ) ac_must_keep_next=true ;;
1082 esac
1083 fi
1084 ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
1085 # Get rid of the leading space.
1086 ac_sep=" "
1087 ;;
1088 esac
1089 done
1090done
1091$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; }
1092$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; }
1093
1094# When interrupted or exit'd, cleanup temporary files, and complete
1095# config.log. We remove comments because anyway the quotes in there
1096# would cause problems or look ugly.
1097# WARNING: Be sure not to use single quotes in there, as some shells,
1098# such as our DU 5.0 friend, will then `close' the trap.
1099trap 'exit_status=$?
1100 # Save into config.log some information that might help in debugging.
1101 {
1102 echo
1103
1104 cat <<\_ASBOX
1105## ---------------- ##
1106## Cache variables. ##
1107## ---------------- ##
1108_ASBOX
1109 echo
1110 # The following way of writing the cache mishandles newlines in values,
1111{
1112 (set) 2>&1 |
1113 case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
1114 *ac_space=\ *)
1115 sed -n \
1116 "s/'"'"'/'"'"'\\\\'"'"''"'"'/g;
1117 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p"
1118 ;;
1119 *)
1120 sed -n \
1121 "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
1122 ;;
1123 esac;
1124}
1125 echo
1126
1127 cat <<\_ASBOX
1128## ----------------- ##
1129## Output variables. ##
1130## ----------------- ##
1131_ASBOX
1132 echo
1133 for ac_var in $ac_subst_vars
1134 do
1135 eval ac_val=$`echo $ac_var`
1136 echo "$ac_var='"'"'$ac_val'"'"'"
1137 done | sort
1138 echo
1139
1140 if test -n "$ac_subst_files"; then
1141 cat <<\_ASBOX
1142## ------------- ##
1143## Output files. ##
1144## ------------- ##
1145_ASBOX
1146 echo
1147 for ac_var in $ac_subst_files
1148 do
1149 eval ac_val=$`echo $ac_var`
1150 echo "$ac_var='"'"'$ac_val'"'"'"
1151 done | sort
1152 echo
1153 fi
1154
1155 if test -s confdefs.h; then
1156 cat <<\_ASBOX
1157## ----------- ##
1158## confdefs.h. ##
1159## ----------- ##
1160_ASBOX
1161 echo
1162 sed "/^$/d" confdefs.h | sort
1163 echo
1164 fi
1165 test "$ac_signal" != 0 &&
1166 echo "$as_me: caught signal $ac_signal"
1167 echo "$as_me: exit $exit_status"
1168 } >&5
1169 rm -f core *.core &&
1170 rm -rf conftest* confdefs* conf$$* $ac_clean_files &&
1171 exit $exit_status
1172 ' 0
1173for ac_signal in 1 2 13 15; do
1174 trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
1175done
1176ac_signal=0
1177
1178# confdefs.h avoids OS command line length limits that DEFS can exceed.
1179rm -rf conftest* confdefs.h
1180# AIX cpp loses on an empty file, so make sure it contains at least a newline.
1181echo >confdefs.h
1182
1183# Predefined preprocessor variables.
1184
1185cat >>confdefs.h <<_ACEOF
1186#define PACKAGE_NAME "$PACKAGE_NAME"
1187_ACEOF
1188
1189
1190cat >>confdefs.h <<_ACEOF
1191#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
1192_ACEOF
1193
1194
1195cat >>confdefs.h <<_ACEOF
1196#define PACKAGE_VERSION "$PACKAGE_VERSION"
1197_ACEOF
1198
1199
1200cat >>confdefs.h <<_ACEOF
1201#define PACKAGE_STRING "$PACKAGE_STRING"
1202_ACEOF
1203
1204
1205cat >>confdefs.h <<_ACEOF
1206#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
1207_ACEOF
1208
1209
1210# Let the site file select an alternate cache file if it wants to.
1211# Prefer explicitly selected file to automatically selected ones.
1212if test -z "$CONFIG_SITE"; then
1213 if test "x$prefix" != xNONE; then
1214 CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
1215 else
1216 CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
1217 fi
1218fi
1219for ac_site_file in $CONFIG_SITE; do
1220 if test -r "$ac_site_file"; then
1221 { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
1222echo "$as_me: loading site script $ac_site_file" >&6;}
1223 sed 's/^/| /' "$ac_site_file" >&5
1224 . "$ac_site_file"
1225 fi
1226done
1227
1228if test -r "$cache_file"; then
1229 # Some versions of bash will fail to source /dev/null (special
1230 # files actually), so we avoid doing that.
1231 if test -f "$cache_file"; then
1232 { echo "$as_me:$LINENO: loading cache $cache_file" >&5
1233echo "$as_me: loading cache $cache_file" >&6;}
1234 case $cache_file in
1235 [\\/]* | ?:[\\/]* ) . $cache_file;;
1236 *) . ./$cache_file;;
1237 esac
1238 fi
1239else
1240 { echo "$as_me:$LINENO: creating cache $cache_file" >&5
1241echo "$as_me: creating cache $cache_file" >&6;}
1242 >$cache_file
1243fi
1244
1245# Check that the precious variables saved in the cache have kept the same
1246# value.
1247ac_cache_corrupted=false
1248for ac_var in `(set) 2>&1 |
1249 sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
1250 eval ac_old_set=\$ac_cv_env_${ac_var}_set
1251 eval ac_new_set=\$ac_env_${ac_var}_set
1252 eval ac_old_val="\$ac_cv_env_${ac_var}_value"
1253 eval ac_new_val="\$ac_env_${ac_var}_value"
1254 case $ac_old_set,$ac_new_set in
1255 set,)
1256 { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
1257echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
1258 ac_cache_corrupted=: ;;
1259 ,set)
1260 { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
1261echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
1262 ac_cache_corrupted=: ;;
1263 ,);;
1264 *)
1265 if test "x$ac_old_val" != "x$ac_new_val"; then
1266 { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
1267echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
1268 { echo "$as_me:$LINENO: former value: $ac_old_val" >&5
1269echo "$as_me: former value: $ac_old_val" >&2;}
1270 { echo "$as_me:$LINENO: current value: $ac_new_val" >&5
1271echo "$as_me: current value: $ac_new_val" >&2;}
1272 ac_cache_corrupted=:
1273 fi;;
1274 esac
1275 # Pass precious variables to config.status.
1276 if test "$ac_new_set" = set; then
1277 case $ac_new_val in
1278 *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
1279 ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
1280 *) ac_arg=$ac_var=$ac_new_val ;;
1281 esac
1282 case " $ac_configure_args " in
1283 *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
1284 *) ac_configure_args="$ac_configure_args '$ac_arg'" ;;
1285 esac
1286 fi
1287done
1288if $ac_cache_corrupted; then
1289 { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
1290echo "$as_me: error: changes in the environment can compromise the build" >&2;}
1291 { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
1292echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
1293 { (exit 1); exit 1; }; }
1294fi
1295
1296ac_ext=c
1297ac_cpp='$CPP $CPPFLAGS'
1298ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1299ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1300ac_compiler_gnu=$ac_cv_c_compiler_gnu
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321ac_aux_dir=
1322for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
1323 if test -f $ac_dir/install-sh; then
1324 ac_aux_dir=$ac_dir
1325 ac_install_sh="$ac_aux_dir/install-sh -c"
1326 break
1327 elif test -f $ac_dir/install.sh; then
1328 ac_aux_dir=$ac_dir
1329 ac_install_sh="$ac_aux_dir/install.sh -c"
1330 break
1331 elif test -f $ac_dir/shtool; then
1332 ac_aux_dir=$ac_dir
1333 ac_install_sh="$ac_aux_dir/shtool install -c"
1334 break
1335 fi
1336done
1337if test -z "$ac_aux_dir"; then
1338 { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
1339echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
1340 { (exit 1); exit 1; }; }
1341fi
1342ac_config_guess="$SHELL $ac_aux_dir/config.guess"
1343ac_config_sub="$SHELL $ac_aux_dir/config.sub"
1344ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
1345
1346# Make sure we can run config.sub.
1347$ac_config_sub sun4 >/dev/null 2>&1 ||
1348 { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5
1349echo "$as_me: error: cannot run $ac_config_sub" >&2;}
1350 { (exit 1); exit 1; }; }
1351
1352echo "$as_me:$LINENO: checking build system type" >&5
1353echo $ECHO_N "checking build system type... $ECHO_C" >&6
1354if test "${ac_cv_build+set}" = set; then
1355 echo $ECHO_N "(cached) $ECHO_C" >&6
1356else
1357 ac_cv_build_alias=$build_alias
1358test -z "$ac_cv_build_alias" &&
1359 ac_cv_build_alias=`$ac_config_guess`
1360test -z "$ac_cv_build_alias" &&
1361 { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
1362echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
1363 { (exit 1); exit 1; }; }
1364ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
1365 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5
1366echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;}
1367 { (exit 1); exit 1; }; }
1368
1369fi
1370echo "$as_me:$LINENO: result: $ac_cv_build" >&5
1371echo "${ECHO_T}$ac_cv_build" >&6
1372build=$ac_cv_build
1373build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
1374build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
1375build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
1376
1377
1378echo "$as_me:$LINENO: checking host system type" >&5
1379echo $ECHO_N "checking host system type... $ECHO_C" >&6
1380if test "${ac_cv_host+set}" = set; then
1381 echo $ECHO_N "(cached) $ECHO_C" >&6
1382else
1383 ac_cv_host_alias=$host_alias
1384test -z "$ac_cv_host_alias" &&
1385 ac_cv_host_alias=$ac_cv_build_alias
1386ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
1387 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5
1388echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
1389 { (exit 1); exit 1; }; }
1390
1391fi
1392echo "$as_me:$LINENO: result: $ac_cv_host" >&5
1393echo "${ECHO_T}$ac_cv_host" >&6
1394host=$ac_cv_host
1395host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
1396host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
1397host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
1398
1399
1400echo "$as_me:$LINENO: checking target system type" >&5
1401echo $ECHO_N "checking target system type... $ECHO_C" >&6
1402if test "${ac_cv_target+set}" = set; then
1403 echo $ECHO_N "(cached) $ECHO_C" >&6
1404else
1405 ac_cv_target_alias=$target_alias
1406test "x$ac_cv_target_alias" = "x" &&
1407 ac_cv_target_alias=$ac_cv_host_alias
1408ac_cv_target=`$ac_config_sub $ac_cv_target_alias` ||
1409 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_target_alias failed" >&5
1410echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;}
1411 { (exit 1); exit 1; }; }
1412
1413fi
1414echo "$as_me:$LINENO: result: $ac_cv_target" >&5
1415echo "${ECHO_T}$ac_cv_target" >&6
1416target=$ac_cv_target
1417target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
1418target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
1419target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
1420
1421
1422# The aliases save the names the user supplied, while $host etc.
1423# will get canonicalized.
1424test -n "$target_alias" &&
1425 test "$program_prefix$program_suffix$program_transform_name" = \
1426 NONENONEs,x,x, &&
1427 program_prefix=${target_alias}-
1428ac_ext=c
1429ac_cpp='$CPP $CPPFLAGS'
1430ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1431ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1432ac_compiler_gnu=$ac_cv_c_compiler_gnu
1433if test -n "$ac_tool_prefix"; then
1434 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
1435set dummy ${ac_tool_prefix}gcc; ac_word=$2
1436echo "$as_me:$LINENO: checking for $ac_word" >&5
1437echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1438if test "${ac_cv_prog_CC+set}" = set; then
1439 echo $ECHO_N "(cached) $ECHO_C" >&6
1440else
1441 if test -n "$CC"; then
1442 ac_cv_prog_CC="$CC" # Let the user override the test.
1443else
1444as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1445for as_dir in $PATH
1446do
1447 IFS=$as_save_IFS
1448 test -z "$as_dir" && as_dir=.
1449 for ac_exec_ext in '' $ac_executable_extensions; do
1450 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1451 ac_cv_prog_CC="${ac_tool_prefix}gcc"
1452 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1453 break 2
1454 fi
1455done
1456done
1457
1458fi
1459fi
1460CC=$ac_cv_prog_CC
1461if test -n "$CC"; then
1462 echo "$as_me:$LINENO: result: $CC" >&5
1463echo "${ECHO_T}$CC" >&6
1464else
1465 echo "$as_me:$LINENO: result: no" >&5
1466echo "${ECHO_T}no" >&6
1467fi
1468
1469fi
1470if test -z "$ac_cv_prog_CC"; then
1471 ac_ct_CC=$CC
1472 # Extract the first word of "gcc", so it can be a program name with args.
1473set dummy gcc; ac_word=$2
1474echo "$as_me:$LINENO: checking for $ac_word" >&5
1475echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1476if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
1477 echo $ECHO_N "(cached) $ECHO_C" >&6
1478else
1479 if test -n "$ac_ct_CC"; then
1480 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
1481else
1482as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1483for as_dir in $PATH
1484do
1485 IFS=$as_save_IFS
1486 test -z "$as_dir" && as_dir=.
1487 for ac_exec_ext in '' $ac_executable_extensions; do
1488 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1489 ac_cv_prog_ac_ct_CC="gcc"
1490 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1491 break 2
1492 fi
1493done
1494done
1495
1496fi
1497fi
1498ac_ct_CC=$ac_cv_prog_ac_ct_CC
1499if test -n "$ac_ct_CC"; then
1500 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
1501echo "${ECHO_T}$ac_ct_CC" >&6
1502else
1503 echo "$as_me:$LINENO: result: no" >&5
1504echo "${ECHO_T}no" >&6
1505fi
1506
1507 CC=$ac_ct_CC
1508else
1509 CC="$ac_cv_prog_CC"
1510fi
1511
1512if test -z "$CC"; then
1513 if test -n "$ac_tool_prefix"; then
1514 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
1515set dummy ${ac_tool_prefix}cc; ac_word=$2
1516echo "$as_me:$LINENO: checking for $ac_word" >&5
1517echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1518if test "${ac_cv_prog_CC+set}" = set; then
1519 echo $ECHO_N "(cached) $ECHO_C" >&6
1520else
1521 if test -n "$CC"; then
1522 ac_cv_prog_CC="$CC" # Let the user override the test.
1523else
1524as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1525for as_dir in $PATH
1526do
1527 IFS=$as_save_IFS
1528 test -z "$as_dir" && as_dir=.
1529 for ac_exec_ext in '' $ac_executable_extensions; do
1530 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1531 ac_cv_prog_CC="${ac_tool_prefix}cc"
1532 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1533 break 2
1534 fi
1535done
1536done
1537
1538fi
1539fi
1540CC=$ac_cv_prog_CC
1541if test -n "$CC"; then
1542 echo "$as_me:$LINENO: result: $CC" >&5
1543echo "${ECHO_T}$CC" >&6
1544else
1545 echo "$as_me:$LINENO: result: no" >&5
1546echo "${ECHO_T}no" >&6
1547fi
1548
1549fi
1550if test -z "$ac_cv_prog_CC"; then
1551 ac_ct_CC=$CC
1552 # Extract the first word of "cc", so it can be a program name with args.
1553set dummy cc; ac_word=$2
1554echo "$as_me:$LINENO: checking for $ac_word" >&5
1555echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1556if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
1557 echo $ECHO_N "(cached) $ECHO_C" >&6
1558else
1559 if test -n "$ac_ct_CC"; then
1560 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
1561else
1562as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1563for as_dir in $PATH
1564do
1565 IFS=$as_save_IFS
1566 test -z "$as_dir" && as_dir=.
1567 for ac_exec_ext in '' $ac_executable_extensions; do
1568 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1569 ac_cv_prog_ac_ct_CC="cc"
1570 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1571 break 2
1572 fi
1573done
1574done
1575
1576fi
1577fi
1578ac_ct_CC=$ac_cv_prog_ac_ct_CC
1579if test -n "$ac_ct_CC"; then
1580 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
1581echo "${ECHO_T}$ac_ct_CC" >&6
1582else
1583 echo "$as_me:$LINENO: result: no" >&5
1584echo "${ECHO_T}no" >&6
1585fi
1586
1587 CC=$ac_ct_CC
1588else
1589 CC="$ac_cv_prog_CC"
1590fi
1591
1592fi
1593if test -z "$CC"; then
1594 # Extract the first word of "cc", so it can be a program name with args.
1595set dummy cc; ac_word=$2
1596echo "$as_me:$LINENO: checking for $ac_word" >&5
1597echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1598if test "${ac_cv_prog_CC+set}" = set; then
1599 echo $ECHO_N "(cached) $ECHO_C" >&6
1600else
1601 if test -n "$CC"; then
1602 ac_cv_prog_CC="$CC" # Let the user override the test.
1603else
1604 ac_prog_rejected=no
1605as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1606for as_dir in $PATH
1607do
1608 IFS=$as_save_IFS
1609 test -z "$as_dir" && as_dir=.
1610 for ac_exec_ext in '' $ac_executable_extensions; do
1611 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1612 if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
1613 ac_prog_rejected=yes
1614 continue
1615 fi
1616 ac_cv_prog_CC="cc"
1617 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1618 break 2
1619 fi
1620done
1621done
1622
1623if test $ac_prog_rejected = yes; then
1624 # We found a bogon in the path, so make sure we never use it.
1625 set dummy $ac_cv_prog_CC
1626 shift
1627 if test $# != 0; then
1628 # We chose a different compiler from the bogus one.
1629 # However, it has the same basename, so the bogon will be chosen
1630 # first if we set CC to just the basename; use the full file name.
1631 shift
1632 ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
1633 fi
1634fi
1635fi
1636fi
1637CC=$ac_cv_prog_CC
1638if test -n "$CC"; then
1639 echo "$as_me:$LINENO: result: $CC" >&5
1640echo "${ECHO_T}$CC" >&6
1641else
1642 echo "$as_me:$LINENO: result: no" >&5
1643echo "${ECHO_T}no" >&6
1644fi
1645
1646fi
1647if test -z "$CC"; then
1648 if test -n "$ac_tool_prefix"; then
1649 for ac_prog in cl
1650 do
1651 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
1652set dummy $ac_tool_prefix$ac_prog; ac_word=$2
1653echo "$as_me:$LINENO: checking for $ac_word" >&5
1654echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1655if test "${ac_cv_prog_CC+set}" = set; then
1656 echo $ECHO_N "(cached) $ECHO_C" >&6
1657else
1658 if test -n "$CC"; then
1659 ac_cv_prog_CC="$CC" # Let the user override the test.
1660else
1661as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1662for as_dir in $PATH
1663do
1664 IFS=$as_save_IFS
1665 test -z "$as_dir" && as_dir=.
1666 for ac_exec_ext in '' $ac_executable_extensions; do
1667 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1668 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
1669 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1670 break 2
1671 fi
1672done
1673done
1674
1675fi
1676fi
1677CC=$ac_cv_prog_CC
1678if test -n "$CC"; then
1679 echo "$as_me:$LINENO: result: $CC" >&5
1680echo "${ECHO_T}$CC" >&6
1681else
1682 echo "$as_me:$LINENO: result: no" >&5
1683echo "${ECHO_T}no" >&6
1684fi
1685
1686 test -n "$CC" && break
1687 done
1688fi
1689if test -z "$CC"; then
1690 ac_ct_CC=$CC
1691 for ac_prog in cl
1692do
1693 # Extract the first word of "$ac_prog", so it can be a program name with args.
1694set dummy $ac_prog; ac_word=$2
1695echo "$as_me:$LINENO: checking for $ac_word" >&5
1696echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1697if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
1698 echo $ECHO_N "(cached) $ECHO_C" >&6
1699else
1700 if test -n "$ac_ct_CC"; then
1701 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
1702else
1703as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1704for as_dir in $PATH
1705do
1706 IFS=$as_save_IFS
1707 test -z "$as_dir" && as_dir=.
1708 for ac_exec_ext in '' $ac_executable_extensions; do
1709 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1710 ac_cv_prog_ac_ct_CC="$ac_prog"
1711 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1712 break 2
1713 fi
1714done
1715done
1716
1717fi
1718fi
1719ac_ct_CC=$ac_cv_prog_ac_ct_CC
1720if test -n "$ac_ct_CC"; then
1721 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
1722echo "${ECHO_T}$ac_ct_CC" >&6
1723else
1724 echo "$as_me:$LINENO: result: no" >&5
1725echo "${ECHO_T}no" >&6
1726fi
1727
1728 test -n "$ac_ct_CC" && break
1729done
1730
1731 CC=$ac_ct_CC
1732fi
1733
1734fi
1735
1736
1737test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
1738See \`config.log' for more details." >&5
1739echo "$as_me: error: no acceptable C compiler found in \$PATH
1740See \`config.log' for more details." >&2;}
1741 { (exit 1); exit 1; }; }
1742
1743# Provide some information about the compiler.
1744echo "$as_me:$LINENO:" \
1745 "checking for C compiler version" >&5
1746ac_compiler=`set X $ac_compile; echo $2`
1747{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
1748 (eval $ac_compiler --version </dev/null >&5) 2>&5
1749 ac_status=$?
1750 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1751 (exit $ac_status); }
1752{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
1753 (eval $ac_compiler -v </dev/null >&5) 2>&5
1754 ac_status=$?
1755 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1756 (exit $ac_status); }
1757{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
1758 (eval $ac_compiler -V </dev/null >&5) 2>&5
1759 ac_status=$?
1760 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1761 (exit $ac_status); }
1762
1763cat >conftest.$ac_ext <<_ACEOF
1764/* confdefs.h. */
1765_ACEOF
1766cat confdefs.h >>conftest.$ac_ext
1767cat >>conftest.$ac_ext <<_ACEOF
1768/* end confdefs.h. */
1769
1770int
1771main ()
1772{
1773
1774 ;
1775 return 0;
1776}
1777_ACEOF
1778ac_clean_files_save=$ac_clean_files
1779ac_clean_files="$ac_clean_files a.out a.exe b.out"
1780# Try to create an executable without -o first, disregard a.out.
1781# It will help us diagnose broken compilers, and finding out an intuition
1782# of exeext.
1783echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
1784echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6
1785ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
1786if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5
1787 (eval $ac_link_default) 2>&5
1788 ac_status=$?
1789 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1790 (exit $ac_status); }; then
1791 # Find the output, starting from the most likely. This scheme is
1792# not robust to junk in `.', hence go to wildcards (a.*) only as a last
1793# resort.
1794
1795# Be careful to initialize this variable, since it used to be cached.
1796# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile.
1797ac_cv_exeext=
1798# b.out is created by i960 compilers.
1799for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out
1800do
1801 test -f "$ac_file" || continue
1802 case $ac_file in
1803 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj )
1804 ;;
1805 conftest.$ac_ext )
1806 # This is the source file.
1807 ;;
1808 [ab].out )
1809 # We found the default executable, but exeext='' is most
1810 # certainly right.
1811 break;;
1812 *.* )
1813 ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
1814 # FIXME: I believe we export ac_cv_exeext for Libtool,
1815 # but it would be cool to find out if it's true. Does anybody
1816 # maintain Libtool? --akim.
1817 export ac_cv_exeext
1818 break;;
1819 * )
1820 break;;
1821 esac
1822done
1823else
1824 echo "$as_me: failed program was:" >&5
1825sed 's/^/| /' conftest.$ac_ext >&5
1826
1827{ { echo "$as_me:$LINENO: error: C compiler cannot create executables
1828See \`config.log' for more details." >&5
1829echo "$as_me: error: C compiler cannot create executables
1830See \`config.log' for more details." >&2;}
1831 { (exit 77); exit 77; }; }
1832fi
1833
1834ac_exeext=$ac_cv_exeext
1835echo "$as_me:$LINENO: result: $ac_file" >&5
1836echo "${ECHO_T}$ac_file" >&6
1837
1838# Check the compiler produces executables we can run. If not, either
1839# the compiler is broken, or we cross compile.
1840echo "$as_me:$LINENO: checking whether the C compiler works" >&5
1841echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
1842# FIXME: These cross compiler hacks should be removed for Autoconf 3.0
1843# If not cross compiling, check that we can run a simple program.
1844if test "$cross_compiling" != yes; then
1845 if { ac_try='./$ac_file'
1846 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1847 (eval $ac_try) 2>&5
1848 ac_status=$?
1849 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1850 (exit $ac_status); }; }; then
1851 cross_compiling=no
1852 else
1853 if test "$cross_compiling" = maybe; then
1854 cross_compiling=yes
1855 else
1856 { { echo "$as_me:$LINENO: error: cannot run C compiled programs.
1857If you meant to cross compile, use \`--host'.
1858See \`config.log' for more details." >&5
1859echo "$as_me: error: cannot run C compiled programs.
1860If you meant to cross compile, use \`--host'.
1861See \`config.log' for more details." >&2;}
1862 { (exit 1); exit 1; }; }
1863 fi
1864 fi
1865fi
1866echo "$as_me:$LINENO: result: yes" >&5
1867echo "${ECHO_T}yes" >&6
1868
1869rm -f a.out a.exe conftest$ac_cv_exeext b.out
1870ac_clean_files=$ac_clean_files_save
1871# Check the compiler produces executables we can run. If not, either
1872# the compiler is broken, or we cross compile.
1873echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
1874echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
1875echo "$as_me:$LINENO: result: $cross_compiling" >&5
1876echo "${ECHO_T}$cross_compiling" >&6
1877
1878echo "$as_me:$LINENO: checking for suffix of executables" >&5
1879echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6
1880if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
1881 (eval $ac_link) 2>&5
1882 ac_status=$?
1883 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1884 (exit $ac_status); }; then
1885 # If both `conftest.exe' and `conftest' are `present' (well, observable)
1886# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
1887# work properly (i.e., refer to `conftest.exe'), while it won't with
1888# `rm'.
1889for ac_file in conftest.exe conftest conftest.*; do
1890 test -f "$ac_file" || continue
1891 case $ac_file in
1892 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;;
1893 *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
1894 export ac_cv_exeext
1895 break;;
1896 * ) break;;
1897 esac
1898done
1899else
1900 { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
1901See \`config.log' for more details." >&5
1902echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
1903See \`config.log' for more details." >&2;}
1904 { (exit 1); exit 1; }; }
1905fi
1906
1907rm -f conftest$ac_cv_exeext
1908echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
1909echo "${ECHO_T}$ac_cv_exeext" >&6
1910
1911rm -f conftest.$ac_ext
1912EXEEXT=$ac_cv_exeext
1913ac_exeext=$EXEEXT
1914echo "$as_me:$LINENO: checking for suffix of object files" >&5
1915echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6
1916if test "${ac_cv_objext+set}" = set; then
1917 echo $ECHO_N "(cached) $ECHO_C" >&6
1918else
1919 cat >conftest.$ac_ext <<_ACEOF
1920/* confdefs.h. */
1921_ACEOF
1922cat confdefs.h >>conftest.$ac_ext
1923cat >>conftest.$ac_ext <<_ACEOF
1924/* end confdefs.h. */
1925
1926int
1927main ()
1928{
1929
1930 ;
1931 return 0;
1932}
1933_ACEOF
1934rm -f conftest.o conftest.obj
1935if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1936 (eval $ac_compile) 2>&5
1937 ac_status=$?
1938 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1939 (exit $ac_status); }; then
1940 for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
1941 case $ac_file in
1942 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;;
1943 *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
1944 break;;
1945 esac
1946done
1947else
1948 echo "$as_me: failed program was:" >&5
1949sed 's/^/| /' conftest.$ac_ext >&5
1950
1951{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
1952See \`config.log' for more details." >&5
1953echo "$as_me: error: cannot compute suffix of object files: cannot compile
1954See \`config.log' for more details." >&2;}
1955 { (exit 1); exit 1; }; }
1956fi
1957
1958rm -f conftest.$ac_cv_objext conftest.$ac_ext
1959fi
1960echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
1961echo "${ECHO_T}$ac_cv_objext" >&6
1962OBJEXT=$ac_cv_objext
1963ac_objext=$OBJEXT
1964echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
1965echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
1966if test "${ac_cv_c_compiler_gnu+set}" = set; then
1967 echo $ECHO_N "(cached) $ECHO_C" >&6
1968else
1969 cat >conftest.$ac_ext <<_ACEOF
1970/* confdefs.h. */
1971_ACEOF
1972cat confdefs.h >>conftest.$ac_ext
1973cat >>conftest.$ac_ext <<_ACEOF
1974/* end confdefs.h. */
1975
1976int
1977main ()
1978{
1979#ifndef __GNUC__
1980 choke me
1981#endif
1982
1983 ;
1984 return 0;
1985}
1986_ACEOF
1987rm -f conftest.$ac_objext
1988if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1989 (eval $ac_compile) 2>conftest.er1
1990 ac_status=$?
1991 grep -v '^ *+' conftest.er1 >conftest.err
1992 rm -f conftest.er1
1993 cat conftest.err >&5
1994 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1995 (exit $ac_status); } &&
b7d4af3a
JW
1996 { ac_try='test -z "$ac_c_werror_flag"
1997 || test ! -s conftest.err'
42ecbf5e
DJ
1998 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1999 (eval $ac_try) 2>&5
2000 ac_status=$?
2001 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2002 (exit $ac_status); }; } &&
2003 { ac_try='test -s conftest.$ac_objext'
2004 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2005 (eval $ac_try) 2>&5
2006 ac_status=$?
2007 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2008 (exit $ac_status); }; }; then
2009 ac_compiler_gnu=yes
2010else
2011 echo "$as_me: failed program was:" >&5
2012sed 's/^/| /' conftest.$ac_ext >&5
2013
2014ac_compiler_gnu=no
2015fi
2016rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
2017ac_cv_c_compiler_gnu=$ac_compiler_gnu
2018
2019fi
2020echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
2021echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
2022GCC=`test $ac_compiler_gnu = yes && echo yes`
2023ac_test_CFLAGS=${CFLAGS+set}
2024ac_save_CFLAGS=$CFLAGS
2025CFLAGS="-g"
2026echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
2027echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
2028if test "${ac_cv_prog_cc_g+set}" = set; then
2029 echo $ECHO_N "(cached) $ECHO_C" >&6
2030else
2031 cat >conftest.$ac_ext <<_ACEOF
2032/* confdefs.h. */
2033_ACEOF
2034cat confdefs.h >>conftest.$ac_ext
2035cat >>conftest.$ac_ext <<_ACEOF
2036/* end confdefs.h. */
2037
2038int
2039main ()
2040{
2041
2042 ;
2043 return 0;
2044}
2045_ACEOF
2046rm -f conftest.$ac_objext
2047if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2048 (eval $ac_compile) 2>conftest.er1
2049 ac_status=$?
2050 grep -v '^ *+' conftest.er1 >conftest.err
2051 rm -f conftest.er1
2052 cat conftest.err >&5
2053 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2054 (exit $ac_status); } &&
b7d4af3a
JW
2055 { ac_try='test -z "$ac_c_werror_flag"
2056 || test ! -s conftest.err'
42ecbf5e
DJ
2057 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2058 (eval $ac_try) 2>&5
2059 ac_status=$?
2060 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2061 (exit $ac_status); }; } &&
2062 { ac_try='test -s conftest.$ac_objext'
2063 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2064 (eval $ac_try) 2>&5
2065 ac_status=$?
2066 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2067 (exit $ac_status); }; }; then
2068 ac_cv_prog_cc_g=yes
2069else
2070 echo "$as_me: failed program was:" >&5
2071sed 's/^/| /' conftest.$ac_ext >&5
2072
2073ac_cv_prog_cc_g=no
2074fi
2075rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
2076fi
2077echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
2078echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
2079if test "$ac_test_CFLAGS" = set; then
2080 CFLAGS=$ac_save_CFLAGS
2081elif test $ac_cv_prog_cc_g = yes; then
2082 if test "$GCC" = yes; then
2083 CFLAGS="-g -O2"
2084 else
2085 CFLAGS="-g"
2086 fi
2087else
2088 if test "$GCC" = yes; then
2089 CFLAGS="-O2"
2090 else
2091 CFLAGS=
2092 fi
2093fi
2094echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
2095echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
2096if test "${ac_cv_prog_cc_stdc+set}" = set; then
2097 echo $ECHO_N "(cached) $ECHO_C" >&6
2098else
2099 ac_cv_prog_cc_stdc=no
2100ac_save_CC=$CC
2101cat >conftest.$ac_ext <<_ACEOF
2102/* confdefs.h. */
2103_ACEOF
2104cat confdefs.h >>conftest.$ac_ext
2105cat >>conftest.$ac_ext <<_ACEOF
2106/* end confdefs.h. */
2107#include <stdarg.h>
2108#include <stdio.h>
2109#include <sys/types.h>
2110#include <sys/stat.h>
2111/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
2112struct buf { int x; };
2113FILE * (*rcsopen) (struct buf *, struct stat *, int);
2114static char *e (p, i)
2115 char **p;
2116 int i;
2117{
2118 return p[i];
2119}
2120static char *f (char * (*g) (char **, int), char **p, ...)
2121{
2122 char *s;
2123 va_list v;
2124 va_start (v,p);
2125 s = g (p, va_arg (v,int));
2126 va_end (v);
2127 return s;
2128}
2129
2130/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
2131 function prototypes and stuff, but not '\xHH' hex character constants.
2132 These don't provoke an error unfortunately, instead are silently treated
2133 as 'x'. The following induces an error, until -std1 is added to get
2134 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
2135 array size at least. It's necessary to write '\x00'==0 to get something
2136 that's true only with -std1. */
2137int osf4_cc_array ['\x00' == 0 ? 1 : -1];
2138
2139int test (int i, double x);
2140struct s1 {int (*f) (int a);};
2141struct s2 {int (*f) (double a);};
2142int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
2143int argc;
2144char **argv;
2145int
2146main ()
2147{
2148return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
2149 ;
2150 return 0;
2151}
2152_ACEOF
2153# Don't try gcc -ansi; that turns off useful extensions and
2154# breaks some systems' header files.
2155# AIX -qlanglvl=ansi
2156# Ultrix and OSF/1 -std1
2157# HP-UX 10.20 and later -Ae
2158# HP-UX older versions -Aa -D_HPUX_SOURCE
2159# SVR4 -Xc -D__EXTENSIONS__
2160for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
2161do
2162 CC="$ac_save_CC $ac_arg"
2163 rm -f conftest.$ac_objext
2164if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2165 (eval $ac_compile) 2>conftest.er1
2166 ac_status=$?
2167 grep -v '^ *+' conftest.er1 >conftest.err
2168 rm -f conftest.er1
2169 cat conftest.err >&5
2170 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2171 (exit $ac_status); } &&
b7d4af3a
JW
2172 { ac_try='test -z "$ac_c_werror_flag"
2173 || test ! -s conftest.err'
42ecbf5e
DJ
2174 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2175 (eval $ac_try) 2>&5
2176 ac_status=$?
2177 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2178 (exit $ac_status); }; } &&
2179 { ac_try='test -s conftest.$ac_objext'
2180 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2181 (eval $ac_try) 2>&5
2182 ac_status=$?
2183 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2184 (exit $ac_status); }; }; then
2185 ac_cv_prog_cc_stdc=$ac_arg
2186break
2187else
2188 echo "$as_me: failed program was:" >&5
2189sed 's/^/| /' conftest.$ac_ext >&5
2190
2191fi
2192rm -f conftest.err conftest.$ac_objext
2193done
2194rm -f conftest.$ac_ext conftest.$ac_objext
2195CC=$ac_save_CC
2196
2197fi
2198
2199case "x$ac_cv_prog_cc_stdc" in
2200 x|xno)
2201 echo "$as_me:$LINENO: result: none needed" >&5
2202echo "${ECHO_T}none needed" >&6 ;;
2203 *)
2204 echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
2205echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
2206 CC="$CC $ac_cv_prog_cc_stdc" ;;
2207esac
2208
2209# Some people use a C++ compiler to compile C. Since we use `exit',
2210# in C++ we need to declare it. In case someone uses the same compiler
2211# for both compiling C and C++ we need to have the C++ compiler decide
2212# the declaration of exit, since it's the most demanding environment.
2213cat >conftest.$ac_ext <<_ACEOF
2214#ifndef __cplusplus
2215 choke me
2216#endif
2217_ACEOF
2218rm -f conftest.$ac_objext
2219if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2220 (eval $ac_compile) 2>conftest.er1
2221 ac_status=$?
2222 grep -v '^ *+' conftest.er1 >conftest.err
2223 rm -f conftest.er1
2224 cat conftest.err >&5
2225 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2226 (exit $ac_status); } &&
b7d4af3a
JW
2227 { ac_try='test -z "$ac_c_werror_flag"
2228 || test ! -s conftest.err'
42ecbf5e
DJ
2229 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2230 (eval $ac_try) 2>&5
2231 ac_status=$?
2232 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2233 (exit $ac_status); }; } &&
2234 { ac_try='test -s conftest.$ac_objext'
2235 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2236 (eval $ac_try) 2>&5
2237 ac_status=$?
2238 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2239 (exit $ac_status); }; }; then
2240 for ac_declaration in \
2241 '' \
2242 'extern "C" void std::exit (int) throw (); using std::exit;' \
2243 'extern "C" void std::exit (int); using std::exit;' \
2244 'extern "C" void exit (int) throw ();' \
2245 'extern "C" void exit (int);' \
2246 'void exit (int);'
2247do
2248 cat >conftest.$ac_ext <<_ACEOF
2249/* confdefs.h. */
2250_ACEOF
2251cat confdefs.h >>conftest.$ac_ext
2252cat >>conftest.$ac_ext <<_ACEOF
2253/* end confdefs.h. */
2254$ac_declaration
2255#include <stdlib.h>
2256int
2257main ()
2258{
2259exit (42);
2260 ;
2261 return 0;
2262}
2263_ACEOF
2264rm -f conftest.$ac_objext
2265if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2266 (eval $ac_compile) 2>conftest.er1
2267 ac_status=$?
2268 grep -v '^ *+' conftest.er1 >conftest.err
2269 rm -f conftest.er1
2270 cat conftest.err >&5
2271 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2272 (exit $ac_status); } &&
b7d4af3a
JW
2273 { ac_try='test -z "$ac_c_werror_flag"
2274 || test ! -s conftest.err'
42ecbf5e
DJ
2275 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2276 (eval $ac_try) 2>&5
2277 ac_status=$?
2278 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2279 (exit $ac_status); }; } &&
2280 { ac_try='test -s conftest.$ac_objext'
2281 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2282 (eval $ac_try) 2>&5
2283 ac_status=$?
2284 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2285 (exit $ac_status); }; }; then
2286 :
2287else
2288 echo "$as_me: failed program was:" >&5
2289sed 's/^/| /' conftest.$ac_ext >&5
2290
2291continue
2292fi
2293rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
2294 cat >conftest.$ac_ext <<_ACEOF
2295/* confdefs.h. */
2296_ACEOF
2297cat confdefs.h >>conftest.$ac_ext
2298cat >>conftest.$ac_ext <<_ACEOF
2299/* end confdefs.h. */
2300$ac_declaration
2301int
2302main ()
2303{
2304exit (42);
2305 ;
2306 return 0;
2307}
2308_ACEOF
2309rm -f conftest.$ac_objext
2310if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2311 (eval $ac_compile) 2>conftest.er1
2312 ac_status=$?
2313 grep -v '^ *+' conftest.er1 >conftest.err
2314 rm -f conftest.er1
2315 cat conftest.err >&5
2316 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2317 (exit $ac_status); } &&
b7d4af3a
JW
2318 { ac_try='test -z "$ac_c_werror_flag"
2319 || test ! -s conftest.err'
42ecbf5e
DJ
2320 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2321 (eval $ac_try) 2>&5
2322 ac_status=$?
2323 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2324 (exit $ac_status); }; } &&
2325 { ac_try='test -s conftest.$ac_objext'
2326 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2327 (eval $ac_try) 2>&5
2328 ac_status=$?
2329 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2330 (exit $ac_status); }; }; then
2331 break
2332else
2333 echo "$as_me: failed program was:" >&5
2334sed 's/^/| /' conftest.$ac_ext >&5
2335
2336fi
2337rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
2338done
2339rm -f conftest*
2340if test -n "$ac_declaration"; then
2341 echo '#ifdef __cplusplus' >>confdefs.h
2342 echo $ac_declaration >>confdefs.h
2343 echo '#endif' >>confdefs.h
2344fi
2345
2346else
2347 echo "$as_me: failed program was:" >&5
2348sed 's/^/| /' conftest.$ac_ext >&5
2349
2350fi
2351rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
2352ac_ext=c
2353ac_cpp='$CPP $CPPFLAGS'
2354ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
2355ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2356ac_compiler_gnu=$ac_cv_c_compiler_gnu
2357
2358
2359echo "$as_me:$LINENO: checking for library containing strerror" >&5
2360echo $ECHO_N "checking for library containing strerror... $ECHO_C" >&6
2361if test "${ac_cv_search_strerror+set}" = set; then
2362 echo $ECHO_N "(cached) $ECHO_C" >&6
2363else
2364 ac_func_search_save_LIBS=$LIBS
2365ac_cv_search_strerror=no
2366cat >conftest.$ac_ext <<_ACEOF
2367/* confdefs.h. */
2368_ACEOF
2369cat confdefs.h >>conftest.$ac_ext
2370cat >>conftest.$ac_ext <<_ACEOF
2371/* end confdefs.h. */
2372
2373/* Override any gcc2 internal prototype to avoid an error. */
2374#ifdef __cplusplus
2375extern "C"
2376#endif
2377/* We use char because int might match the return type of a gcc2
2378 builtin and then its argument prototype would still apply. */
2379char strerror ();
2380int
2381main ()
2382{
2383strerror ();
2384 ;
2385 return 0;
2386}
2387_ACEOF
2388rm -f conftest.$ac_objext conftest$ac_exeext
2389if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2390 (eval $ac_link) 2>conftest.er1
2391 ac_status=$?
2392 grep -v '^ *+' conftest.er1 >conftest.err
2393 rm -f conftest.er1
2394 cat conftest.err >&5
2395 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2396 (exit $ac_status); } &&
b7d4af3a
JW
2397 { ac_try='test -z "$ac_c_werror_flag"
2398 || test ! -s conftest.err'
42ecbf5e
DJ
2399 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2400 (eval $ac_try) 2>&5
2401 ac_status=$?
2402 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2403 (exit $ac_status); }; } &&
2404 { ac_try='test -s conftest$ac_exeext'
2405 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2406 (eval $ac_try) 2>&5
2407 ac_status=$?
2408 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2409 (exit $ac_status); }; }; then
2410 ac_cv_search_strerror="none required"
2411else
2412 echo "$as_me: failed program was:" >&5
2413sed 's/^/| /' conftest.$ac_ext >&5
2414
2415fi
2416rm -f conftest.err conftest.$ac_objext \
2417 conftest$ac_exeext conftest.$ac_ext
2418if test "$ac_cv_search_strerror" = no; then
2419 for ac_lib in cposix; do
2420 LIBS="-l$ac_lib $ac_func_search_save_LIBS"
2421 cat >conftest.$ac_ext <<_ACEOF
2422/* confdefs.h. */
2423_ACEOF
2424cat confdefs.h >>conftest.$ac_ext
2425cat >>conftest.$ac_ext <<_ACEOF
2426/* end confdefs.h. */
2427
2428/* Override any gcc2 internal prototype to avoid an error. */
2429#ifdef __cplusplus
2430extern "C"
2431#endif
2432/* We use char because int might match the return type of a gcc2
2433 builtin and then its argument prototype would still apply. */
2434char strerror ();
2435int
2436main ()
2437{
2438strerror ();
2439 ;
2440 return 0;
2441}
2442_ACEOF
2443rm -f conftest.$ac_objext conftest$ac_exeext
2444if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2445 (eval $ac_link) 2>conftest.er1
2446 ac_status=$?
2447 grep -v '^ *+' conftest.er1 >conftest.err
2448 rm -f conftest.er1
2449 cat conftest.err >&5
2450 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2451 (exit $ac_status); } &&
b7d4af3a
JW
2452 { ac_try='test -z "$ac_c_werror_flag"
2453 || test ! -s conftest.err'
42ecbf5e
DJ
2454 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2455 (eval $ac_try) 2>&5
2456 ac_status=$?
2457 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2458 (exit $ac_status); }; } &&
2459 { ac_try='test -s conftest$ac_exeext'
2460 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2461 (eval $ac_try) 2>&5
2462 ac_status=$?
2463 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2464 (exit $ac_status); }; }; then
2465 ac_cv_search_strerror="-l$ac_lib"
2466break
2467else
2468 echo "$as_me: failed program was:" >&5
2469sed 's/^/| /' conftest.$ac_ext >&5
2470
2471fi
2472rm -f conftest.err conftest.$ac_objext \
2473 conftest$ac_exeext conftest.$ac_ext
2474 done
2475fi
2476LIBS=$ac_func_search_save_LIBS
2477fi
2478echo "$as_me:$LINENO: result: $ac_cv_search_strerror" >&5
2479echo "${ECHO_T}$ac_cv_search_strerror" >&6
2480if test "$ac_cv_search_strerror" != no; then
2481 test "$ac_cv_search_strerror" = "none required" || LIBS="$ac_cv_search_strerror $LIBS"
2482
2483fi
2484
2485
2486BFD_VERSION=`sed -n -e 's/^.._INIT_AUTOMAKE.*,[ ]*\([^ ]*\)[ ]*).*/\1/p' < ${srcdir}/../bfd/configure.in`
2487am__api_version="1.9"
2488# Find a good install program. We prefer a C program (faster),
2489# so one script is as good as another. But avoid the broken or
2490# incompatible versions:
2491# SysV /etc/install, /usr/sbin/install
2492# SunOS /usr/etc/install
2493# IRIX /sbin/install
2494# AIX /bin/install
2495# AmigaOS /C/install, which installs bootblocks on floppy discs
2496# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
2497# AFS /usr/afsws/bin/install, which mishandles nonexistent args
2498# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
2499# OS/2's system install, which has a completely different semantic
2500# ./install, which can be erroneously created by make from ./install.sh.
2501echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
2502echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
2503if test -z "$INSTALL"; then
2504if test "${ac_cv_path_install+set}" = set; then
2505 echo $ECHO_N "(cached) $ECHO_C" >&6
2506else
2507 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2508for as_dir in $PATH
2509do
2510 IFS=$as_save_IFS
2511 test -z "$as_dir" && as_dir=.
2512 # Account for people who put trailing slashes in PATH elements.
2513case $as_dir/ in
2514 ./ | .// | /cC/* | \
2515 /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
2516 ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \
2517 /usr/ucb/* ) ;;
2518 *)
2519 # OSF1 and SCO ODT 3.0 have their own names for install.
2520 # Don't use installbsd from OSF since it installs stuff as root
2521 # by default.
2522 for ac_prog in ginstall scoinst install; do
2523 for ac_exec_ext in '' $ac_executable_extensions; do
2524 if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
2525 if test $ac_prog = install &&
2526 grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
252b5132
RH
2527 # AIX install. It has an incompatible calling convention.
2528 :
42ecbf5e
DJ
2529 elif test $ac_prog = install &&
2530 grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
2531 # program-specific install script used by HP pwplus--don't use.
2532 :
252b5132 2533 else
42ecbf5e
DJ
2534 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
2535 break 3
252b5132
RH
2536 fi
2537 fi
d15b04bd 2538 done
42ecbf5e
DJ
2539 done
2540 ;;
2541esac
2542done
2543
252b5132
RH
2544
2545fi
2546 if test "${ac_cv_path_install+set}" = set; then
42ecbf5e 2547 INSTALL=$ac_cv_path_install
252b5132
RH
2548 else
2549 # As a last resort, use the slow shell script. We don't cache a
2550 # path for INSTALL within a source directory, because that will
2551 # break other packages using the cache if that directory is
2552 # removed, or if the path is relative.
42ecbf5e 2553 INSTALL=$ac_install_sh
252b5132
RH
2554 fi
2555fi
42ecbf5e
DJ
2556echo "$as_me:$LINENO: result: $INSTALL" >&5
2557echo "${ECHO_T}$INSTALL" >&6
252b5132
RH
2558
2559# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
2560# It thinks the first close brace ends the variable substitution.
2561test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
2562
42ecbf5e 2563test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
252b5132
RH
2564
2565test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
2566
42ecbf5e
DJ
2567echo "$as_me:$LINENO: checking whether build environment is sane" >&5
2568echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6
252b5132
RH
2569# Just in case
2570sleep 1
42ecbf5e 2571echo timestamp > conftest.file
252b5132
RH
2572# Do `set' in a subshell so we don't clobber the current shell's
2573# arguments. Must try -L first in case configure is actually a
2574# symlink; some systems play weird games with the mod time of symlinks
2575# (eg FreeBSD returns the mod time of the symlink's containing
2576# directory).
2577if (
42ecbf5e 2578 set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
252b5132
RH
2579 if test "$*" = "X"; then
2580 # -L didn't work.
42ecbf5e 2581 set X `ls -t $srcdir/configure conftest.file`
252b5132 2582 fi
42ecbf5e
DJ
2583 rm -f conftest.file
2584 if test "$*" != "X $srcdir/configure conftest.file" \
2585 && test "$*" != "X conftest.file $srcdir/configure"; then
252b5132
RH
2586
2587 # If neither matched, then we have a broken ls. This can happen
2588 # if, for instance, CONFIG_SHELL is bash and it inherits a
2589 # broken ls alias from the environment. This has actually
2590 # happened. Such a system could not be considered "sane".
42ecbf5e
DJ
2591 { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken
2592alias in your environment" >&5
2593echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken
2594alias in your environment" >&2;}
2595 { (exit 1); exit 1; }; }
252b5132
RH
2596 fi
2597
42ecbf5e 2598 test "$2" = conftest.file
252b5132
RH
2599 )
2600then
2601 # Ok.
2602 :
2603else
42ecbf5e
DJ
2604 { { echo "$as_me:$LINENO: error: newly created file is older than distributed files!
2605Check your system clock" >&5
2606echo "$as_me: error: newly created file is older than distributed files!
2607Check your system clock" >&2;}
2608 { (exit 1); exit 1; }; }
2609fi
2610echo "$as_me:$LINENO: result: yes" >&5
2611echo "${ECHO_T}yes" >&6
2612test "$program_prefix" != NONE &&
2613 program_transform_name="s,^,$program_prefix,;$program_transform_name"
2614# Use a double $ so make ignores it.
2615test "$program_suffix" != NONE &&
2616 program_transform_name="s,\$,$program_suffix,;$program_transform_name"
2617# Double any \ or $. echo might interpret backslashes.
2618# By default was `s,x,x', remove it if useless.
2619cat <<\_ACEOF >conftest.sed
2620s/[\\$]/&&/g;s/;s,x,x,$//
2621_ACEOF
2622program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
2623rm conftest.sed
2624
2625# expand $ac_aux_dir to an absolute path
2626am_aux_dir=`cd $ac_aux_dir && pwd`
2627
2628test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
2629# Use eval to expand $SHELL
2630if eval "$MISSING --run true"; then
2631 am_missing_run="$MISSING --run "
2632else
2633 am_missing_run=
2634 { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5
2635echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
2636fi
2637
2638if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
2639 # We used to keeping the `.' as first argument, in order to
2640 # allow $(mkdir_p) to be used without argument. As in
2641 # $(mkdir_p) $(somedir)
2642 # where $(somedir) is conditionally defined. However this is wrong
2643 # for two reasons:
2644 # 1. if the package is installed by a user who cannot write `.'
2645 # make install will fail,
2646 # 2. the above comment should most certainly read
2647 # $(mkdir_p) $(DESTDIR)$(somedir)
2648 # so it does not work when $(somedir) is undefined and
2649 # $(DESTDIR) is not.
2650 # To support the latter case, we have to write
2651 # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
2652 # so the `.' trick is pointless.
2653 mkdir_p='mkdir -p --'
2654else
2655 # On NextStep and OpenStep, the `mkdir' command does not
2656 # recognize any option. It will interpret all options as
2657 # directories to create, and then abort because `.' already
2658 # exists.
2659 for d in ./-p ./--version;
2660 do
2661 test -d $d && rmdir $d
2662 done
2663 # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
2664 if test -f "$ac_aux_dir/mkinstalldirs"; then
2665 mkdir_p='$(mkinstalldirs)'
2666 else
2667 mkdir_p='$(install_sh) -d'
2668 fi
2669fi
2670
2671for ac_prog in gawk mawk nawk awk
2672do
2673 # Extract the first word of "$ac_prog", so it can be a program name with args.
2674set dummy $ac_prog; ac_word=$2
2675echo "$as_me:$LINENO: checking for $ac_word" >&5
2676echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
2677if test "${ac_cv_prog_AWK+set}" = set; then
2678 echo $ECHO_N "(cached) $ECHO_C" >&6
2679else
2680 if test -n "$AWK"; then
2681 ac_cv_prog_AWK="$AWK" # Let the user override the test.
2682else
2683as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2684for as_dir in $PATH
2685do
2686 IFS=$as_save_IFS
2687 test -z "$as_dir" && as_dir=.
2688 for ac_exec_ext in '' $ac_executable_extensions; do
2689 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2690 ac_cv_prog_AWK="$ac_prog"
2691 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2692 break 2
2693 fi
2694done
2695done
2696
2697fi
2698fi
2699AWK=$ac_cv_prog_AWK
2700if test -n "$AWK"; then
2701 echo "$as_me:$LINENO: result: $AWK" >&5
2702echo "${ECHO_T}$AWK" >&6
2703else
2704 echo "$as_me:$LINENO: result: no" >&5
2705echo "${ECHO_T}no" >&6
2706fi
2707
2708 test -n "$AWK" && break
2709done
2710
2711echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
2712echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6
2713set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'`
2714if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
2715 echo $ECHO_N "(cached) $ECHO_C" >&6
2716else
2717 cat >conftest.make <<\_ACEOF
2718all:
2719 @echo 'ac_maketemp="$(MAKE)"'
2720_ACEOF
2721# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
2722eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
2723if test -n "$ac_maketemp"; then
2724 eval ac_cv_prog_make_${ac_make}_set=yes
2725else
2726 eval ac_cv_prog_make_${ac_make}_set=no
2727fi
2728rm -f conftest.make
2729fi
2730if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
2731 echo "$as_me:$LINENO: result: yes" >&5
2732echo "${ECHO_T}yes" >&6
2733 SET_MAKE=
2734else
2735 echo "$as_me:$LINENO: result: no" >&5
2736echo "${ECHO_T}no" >&6
2737 SET_MAKE="MAKE=${MAKE-make}"
2738fi
2739
2740rm -rf .tst 2>/dev/null
2741mkdir .tst 2>/dev/null
2742if test -d .tst; then
2743 am__leading_dot=.
2744else
2745 am__leading_dot=_
2746fi
2747rmdir .tst 2>/dev/null
2748
2749DEPDIR="${am__leading_dot}deps"
2750
2751 ac_config_commands="$ac_config_commands depfiles"
2752
2753
2754am_make=${MAKE-make}
2755cat > confinc << 'END'
2756am__doit:
2757 @echo done
2758.PHONY: am__doit
2759END
2760# If we don't find an include directive, just comment out the code.
2761echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5
2762echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6
2763am__include="#"
2764am__quote=
2765_am_result=none
2766# First try GNU make style include.
2767echo "include confinc" > confmf
2768# We grep out `Entering directory' and `Leaving directory'
2769# messages which can occur if `w' ends up in MAKEFLAGS.
2770# In particular we don't look at `^make:' because GNU make might
2771# be invoked under some other name (usually "gmake"), in which
2772# case it prints its new name instead of `make'.
2773if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
2774 am__include=include
2775 am__quote=
2776 _am_result=GNU
2777fi
2778# Now try BSD make style include.
2779if test "$am__include" = "#"; then
2780 echo '.include "confinc"' > confmf
2781 if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
2782 am__include=.include
2783 am__quote="\""
2784 _am_result=BSD
2785 fi
2786fi
2787
2788
2789echo "$as_me:$LINENO: result: $_am_result" >&5
2790echo "${ECHO_T}$_am_result" >&6
2791rm -f confinc confmf
2792
2793# Check whether --enable-dependency-tracking or --disable-dependency-tracking was given.
2794if test "${enable_dependency_tracking+set}" = set; then
2795 enableval="$enable_dependency_tracking"
2796
2797fi;
2798if test "x$enable_dependency_tracking" != xno; then
2799 am_depcomp="$ac_aux_dir/depcomp"
2800 AMDEPBACKSLASH='\'
2801fi
2802
2803
2804if test "x$enable_dependency_tracking" != xno; then
2805 AMDEP_TRUE=
2806 AMDEP_FALSE='#'
2807else
2808 AMDEP_TRUE='#'
2809 AMDEP_FALSE=
2810fi
2811
2812
2813
2814# test to see if srcdir already configured
2815if test "`cd $srcdir && pwd`" != "`pwd`" &&
2816 test -f $srcdir/config.status; then
2817 { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
2818echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
2819 { (exit 1); exit 1; }; }
2820fi
2821
2822# test whether we have cygpath
2823if test -z "$CYGPATH_W"; then
2824 if (cygpath --version) >/dev/null 2>/dev/null; then
2825 CYGPATH_W='cygpath -w'
2826 else
2827 CYGPATH_W=echo
2828 fi
2829fi
2830
2831
2832# Define the identity of the package.
2833 PACKAGE=binutils
2834 VERSION=${BFD_VERSION}
2835
2836
2837cat >>confdefs.h <<_ACEOF
2838#define PACKAGE "$PACKAGE"
2839_ACEOF
2840
2841
2842cat >>confdefs.h <<_ACEOF
2843#define VERSION "$VERSION"
2844_ACEOF
2845
2846# Some tools Automake needs.
2847
2848ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
2849
2850
2851AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
2852
2853
2854AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
2855
2856
2857AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
2858
2859
2860MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
2861
2862install_sh=${install_sh-"$am_aux_dir/install-sh"}
2863
2864# Installed binaries are usually stripped using `strip' when the user
2865# run `make install-strip'. However `strip' might not be the right
2866# tool to use in cross-compilation environments, therefore Automake
2867# will honor the `STRIP' environment variable to overrule this program.
2868if test "$cross_compiling" != no; then
2869 if test -n "$ac_tool_prefix"; then
2870 # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
2871set dummy ${ac_tool_prefix}strip; ac_word=$2
2872echo "$as_me:$LINENO: checking for $ac_word" >&5
2873echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
2874if test "${ac_cv_prog_STRIP+set}" = set; then
2875 echo $ECHO_N "(cached) $ECHO_C" >&6
2876else
2877 if test -n "$STRIP"; then
2878 ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
2879else
2880as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2881for as_dir in $PATH
2882do
2883 IFS=$as_save_IFS
2884 test -z "$as_dir" && as_dir=.
2885 for ac_exec_ext in '' $ac_executable_extensions; do
2886 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2887 ac_cv_prog_STRIP="${ac_tool_prefix}strip"
2888 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2889 break 2
2890 fi
2891done
2892done
2893
252b5132 2894fi
42ecbf5e
DJ
2895fi
2896STRIP=$ac_cv_prog_STRIP
2897if test -n "$STRIP"; then
2898 echo "$as_me:$LINENO: result: $STRIP" >&5
2899echo "${ECHO_T}$STRIP" >&6
d15b04bd 2900else
42ecbf5e
DJ
2901 echo "$as_me:$LINENO: result: no" >&5
2902echo "${ECHO_T}no" >&6
d15b04bd 2903fi
d15b04bd 2904
42ecbf5e
DJ
2905fi
2906if test -z "$ac_cv_prog_STRIP"; then
2907 ac_ct_STRIP=$STRIP
2908 # Extract the first word of "strip", so it can be a program name with args.
2909set dummy strip; ac_word=$2
2910echo "$as_me:$LINENO: checking for $ac_word" >&5
2911echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
2912if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
2913 echo $ECHO_N "(cached) $ECHO_C" >&6
d15b04bd 2914else
42ecbf5e
DJ
2915 if test -n "$ac_ct_STRIP"; then
2916 ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
252b5132 2917else
42ecbf5e
DJ
2918as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2919for as_dir in $PATH
2920do
2921 IFS=$as_save_IFS
2922 test -z "$as_dir" && as_dir=.
2923 for ac_exec_ext in '' $ac_executable_extensions; do
2924 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2925 ac_cv_prog_ac_ct_STRIP="strip"
2926 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2927 break 2
2928 fi
2929done
2930done
2931
2932 test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":"
252b5132 2933fi
252b5132 2934fi
42ecbf5e
DJ
2935ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
2936if test -n "$ac_ct_STRIP"; then
2937 echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
2938echo "${ECHO_T}$ac_ct_STRIP" >&6
252b5132 2939else
42ecbf5e
DJ
2940 echo "$as_me:$LINENO: result: no" >&5
2941echo "${ECHO_T}no" >&6
252b5132
RH
2942fi
2943
42ecbf5e
DJ
2944 STRIP=$ac_ct_STRIP
2945else
2946 STRIP="$ac_cv_prog_STRIP"
2947fi
252b5132 2948
42ecbf5e
DJ
2949fi
2950INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
252b5132 2951
42ecbf5e
DJ
2952# We need awk for the "check" target. The system "awk" is bad on
2953# some platforms.
2954# Always define AMTAR for backward compatibility.
252b5132 2955
42ecbf5e 2956AMTAR=${AMTAR-"${am_missing_run}tar"}
252b5132 2957
42ecbf5e 2958am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
252b5132
RH
2959
2960
2961
252b5132 2962
42ecbf5e
DJ
2963depcc="$CC" am_compiler_list=
2964
2965echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
2966echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6
2967if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
2968 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 2969else
42ecbf5e
DJ
2970 if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
2971 # We make a subdir and do the tests there. Otherwise we can end up
2972 # making bogus files that we don't know about and never remove. For
2973 # instance it was reported that on HP-UX the gcc test will end up
2974 # making a dummy file named `D' -- because `-MD' means `put the output
2975 # in D'.
2976 mkdir conftest.dir
2977 # Copy depcomp to subdir because otherwise we won't find it if we're
2978 # using a relative directory.
2979 cp "$am_depcomp" conftest.dir
2980 cd conftest.dir
2981 # We will build objects and dependencies in a subdirectory because
2982 # it helps to detect inapplicable dependency modes. For instance
2983 # both Tru64's cc and ICC support -MD to output dependencies as a
2984 # side effect of compilation, but ICC will put the dependencies in
2985 # the current directory while Tru64 will put them in the object
2986 # directory.
2987 mkdir sub
252b5132 2988
42ecbf5e
DJ
2989 am_cv_CC_dependencies_compiler_type=none
2990 if test "$am_compiler_list" = ""; then
2991 am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
2992 fi
2993 for depmode in $am_compiler_list; do
2994 # Setup a source with many dependencies, because some compilers
2995 # like to wrap large dependency lists on column 80 (with \), and
2996 # we should not choose a depcomp mode which is confused by this.
2997 #
2998 # We need to recreate these files for each test, as the compiler may
2999 # overwrite some of them when testing with obscure command lines.
3000 # This happens at least with the AIX C compiler.
3001 : > sub/conftest.c
3002 for i in 1 2 3 4 5 6; do
3003 echo '#include "conftst'$i'.h"' >> sub/conftest.c
3004 # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
3005 # Solaris 8's {/usr,}/bin/sh.
3006 touch sub/conftst$i.h
3007 done
3008 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
3009
3010 case $depmode in
3011 nosideeffect)
3012 # after this tag, mechanisms are not by side-effect, so they'll
3013 # only be used when explicitly requested
3014 if test "x$enable_dependency_tracking" = xyes; then
3015 continue
3016 else
3017 break
3018 fi
3019 ;;
3020 none) break ;;
3021 esac
3022 # We check with `-c' and `-o' for the sake of the "dashmstdout"
3023 # mode. It turns out that the SunPro C++ compiler does not properly
3024 # handle `-M -o', and we need to detect this.
3025 if depmode=$depmode \
3026 source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
3027 depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
3028 $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
3029 >/dev/null 2>conftest.err &&
3030 grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
3031 grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
3032 ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
3033 # icc doesn't choke on unknown options, it will just issue warnings
3034 # or remarks (even with -Werror). So we grep stderr for any message
3035 # that says an option was ignored or not supported.
3036 # When given -MP, icc 7.0 and 7.1 complain thusly:
3037 # icc: Command line warning: ignoring option '-M'; no argument required
3038 # The diagnosis changed in icc 8.0:
3039 # icc: Command line remark: option '-MP' not supported
3040 if (grep 'ignoring option' conftest.err ||
3041 grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
3042 am_cv_CC_dependencies_compiler_type=$depmode
3043 break
3044 fi
3045 fi
3046 done
3047
3048 cd ..
3049 rm -rf conftest.dir
252b5132 3050else
42ecbf5e 3051 am_cv_CC_dependencies_compiler_type=none
252b5132
RH
3052fi
3053
252b5132 3054fi
42ecbf5e
DJ
3055echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
3056echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6
3057CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
3058
3059
252b5132 3060
42ecbf5e
DJ
3061if
3062 test "x$enable_dependency_tracking" != xno \
3063 && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
3064 am__fastdepCC_TRUE=
3065 am__fastdepCC_FALSE='#'
252b5132 3066else
42ecbf5e
DJ
3067 am__fastdepCC_TRUE='#'
3068 am__fastdepCC_FALSE=
252b5132
RH
3069fi
3070
3071
3072
42ecbf5e 3073
252b5132
RH
3074# Check whether --enable-shared or --disable-shared was given.
3075if test "${enable_shared+set}" = set; then
3076 enableval="$enable_shared"
3077 p=${PACKAGE-default}
6be7c12c 3078case $enableval in
252b5132
RH
3079yes) enable_shared=yes ;;
3080no) enable_shared=no ;;
3081*)
3082 enable_shared=no
3083 # Look at the argument we got. We use all the common list separators.
3084 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
3085 for pkg in $enableval; do
3086 if test "X$pkg" = "X$p"; then
3087 enable_shared=yes
3088 fi
3089 done
3090 IFS="$ac_save_ifs"
3091 ;;
3092esac
3093else
3094 enable_shared=yes
42ecbf5e 3095fi;
252b5132
RH
3096# Check whether --enable-static or --disable-static was given.
3097if test "${enable_static+set}" = set; then
3098 enableval="$enable_static"
3099 p=${PACKAGE-default}
6be7c12c 3100case $enableval in
252b5132
RH
3101yes) enable_static=yes ;;
3102no) enable_static=no ;;
3103*)
3104 enable_static=no
3105 # Look at the argument we got. We use all the common list separators.
3106 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
3107 for pkg in $enableval; do
3108 if test "X$pkg" = "X$p"; then
3109 enable_static=yes
3110 fi
3111 done
3112 IFS="$ac_save_ifs"
3113 ;;
3114esac
3115else
3116 enable_static=yes
42ecbf5e 3117fi;
252b5132
RH
3118# Check whether --enable-fast-install or --disable-fast-install was given.
3119if test "${enable_fast_install+set}" = set; then
3120 enableval="$enable_fast_install"
3121 p=${PACKAGE-default}
6be7c12c 3122case $enableval in
252b5132
RH
3123yes) enable_fast_install=yes ;;
3124no) enable_fast_install=no ;;
3125*)
3126 enable_fast_install=no
3127 # Look at the argument we got. We use all the common list separators.
e5a52504
MM
3128 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
3129 for pkg in $enableval; do
3130 if test "X$pkg" = "X$p"; then
3131 enable_fast_install=yes
1a09a22c
NC
3132 fi
3133 done
3134 IFS="$ac_save_ifs"
e5a52504
MM
3135 ;;
3136esac
1a09a22c 3137else
e5a52504 3138 enable_fast_install=yes
42ecbf5e 3139fi;
ceae3e33 3140
252b5132
RH
3141# Check whether --with-gnu-ld or --without-gnu-ld was given.
3142if test "${with_gnu_ld+set}" = set; then
3143 withval="$with_gnu_ld"
3144 test "$withval" = no || with_gnu_ld=yes
3145else
3146 with_gnu_ld=no
42ecbf5e 3147fi;
252b5132 3148ac_prog=ld
6be7c12c 3149if test "$GCC" = yes; then
252b5132 3150 # Check if gcc -print-prog-name=ld gives a path.
42ecbf5e
DJ
3151 echo "$as_me:$LINENO: checking for ld used by GCC" >&5
3152echo $ECHO_N "checking for ld used by GCC... $ECHO_C" >&6
ac48eca1
AO
3153 case $host in
3154 *-*-mingw*)
3155 # gcc leaves a trailing carriage return which upsets mingw
3156 ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
3157 *)
3158 ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
3159 esac
6be7c12c 3160 case $ac_prog in
252b5132 3161 # Accept absolute paths.
a74801ba 3162 [\\/]* | [A-Za-z]:[\\/]*)
252b5132
RH
3163 re_direlt='/[^/][^/]*/\.\./'
3164 # Canonicalize the path of ld
3165 ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
3166 while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
3167 ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
3168 done
3169 test -z "$LD" && LD="$ac_prog"
3170 ;;
3171 "")
3172 # If it fails, then pretend we aren't using GCC.
3173 ac_prog=ld
3174 ;;
3175 *)
3176 # If it is relative, then search for the first ld in PATH.
3177 with_gnu_ld=unknown
3178 ;;
3179 esac
3180elif test "$with_gnu_ld" = yes; then
42ecbf5e
DJ
3181 echo "$as_me:$LINENO: checking for GNU ld" >&5
3182echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6
252b5132 3183else
42ecbf5e
DJ
3184 echo "$as_me:$LINENO: checking for non-GNU ld" >&5
3185echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6
252b5132 3186fi
42ecbf5e
DJ
3187if test "${lt_cv_path_LD+set}" = set; then
3188 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
3189else
3190 if test -z "$LD"; then
a74801ba 3191 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
252b5132
RH
3192 for ac_dir in $PATH; do
3193 test -z "$ac_dir" && ac_dir=.
a74801ba 3194 if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
6be7c12c 3195 lt_cv_path_LD="$ac_dir/$ac_prog"
252b5132
RH
3196 # Check to see if the program is GNU ld. I'd rather use --version,
3197 # but apparently some GNU ld's only accept -v.
3198 # Break only if it was the GNU/non-GNU ld that we prefer.
6be7c12c 3199 if "$lt_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
252b5132
RH
3200 test "$with_gnu_ld" != no && break
3201 else
3202 test "$with_gnu_ld" != yes && break
3203 fi
3204 fi
3205 done
3206 IFS="$ac_save_ifs"
3207else
6be7c12c 3208 lt_cv_path_LD="$LD" # Let the user override the test with a path.
252b5132
RH
3209fi
3210fi
3211
6be7c12c 3212LD="$lt_cv_path_LD"
252b5132 3213if test -n "$LD"; then
42ecbf5e
DJ
3214 echo "$as_me:$LINENO: result: $LD" >&5
3215echo "${ECHO_T}$LD" >&6
252b5132 3216else
42ecbf5e
DJ
3217 echo "$as_me:$LINENO: result: no" >&5
3218echo "${ECHO_T}no" >&6
252b5132 3219fi
42ecbf5e
DJ
3220test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5
3221echo "$as_me: error: no acceptable ld found in \$PATH" >&2;}
3222 { (exit 1); exit 1; }; }
3223echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5
3224echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6
3225if test "${lt_cv_prog_gnu_ld+set}" = set; then
3226 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
3227else
3228 # I'd rather use --version here, but apparently some GNU ld's only accept -v.
3229if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
6be7c12c 3230 lt_cv_prog_gnu_ld=yes
252b5132 3231else
6be7c12c 3232 lt_cv_prog_gnu_ld=no
252b5132
RH
3233fi
3234fi
42ecbf5e
DJ
3235echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5
3236echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6
6be7c12c 3237with_gnu_ld=$lt_cv_prog_gnu_ld
252b5132
RH
3238
3239
42ecbf5e
DJ
3240echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5
3241echo $ECHO_N "checking for $LD option to reload object files... $ECHO_C" >&6
3242if test "${lt_cv_ld_reload_flag+set}" = set; then
3243 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1
AO
3244else
3245 lt_cv_ld_reload_flag='-r'
3246fi
42ecbf5e
DJ
3247echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5
3248echo "${ECHO_T}$lt_cv_ld_reload_flag" >&6
ac48eca1
AO
3249reload_flag=$lt_cv_ld_reload_flag
3250test -n "$reload_flag" && reload_flag=" $reload_flag"
3251
42ecbf5e
DJ
3252echo "$as_me:$LINENO: checking for BSD-compatible nm" >&5
3253echo $ECHO_N "checking for BSD-compatible nm... $ECHO_C" >&6
3254if test "${lt_cv_path_NM+set}" = set; then
3255 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
3256else
3257 if test -n "$NM"; then
3258 # Let the user override the test.
6be7c12c 3259 lt_cv_path_NM="$NM"
252b5132 3260else
a74801ba 3261 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
252b5132
RH
3262 for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do
3263 test -z "$ac_dir" && ac_dir=.
ac48eca1
AO
3264 tmp_nm=$ac_dir/${ac_tool_prefix}nm
3265 if test -f $tmp_nm || test -f $tmp_nm$ac_exeext ; then
252b5132
RH
3266 # Check to see if the nm accepts a BSD-compat flag.
3267 # Adding the `sed 1q' prevents false positives on HP-UX, which says:
3268 # nm: unknown option "B" ignored
58cccadb
AO
3269 # Tru64's nm complains that /dev/null is an invalid object file
3270 if ($tmp_nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep '(/dev/null|Invalid file or object type)' >/dev/null; then
6be7c12c 3271 lt_cv_path_NM="$tmp_nm -B"
252b5132 3272 break
ac48eca1 3273 elif ($tmp_nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
6be7c12c 3274 lt_cv_path_NM="$tmp_nm -p"
252b5132
RH
3275 break
3276 else
6be7c12c 3277 lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
252b5132
RH
3278 continue # so that we can try to find one that supports BSD flags
3279 fi
3280 fi
3281 done
3282 IFS="$ac_save_ifs"
6be7c12c 3283 test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm
252b5132
RH
3284fi
3285fi
3286
6be7c12c 3287NM="$lt_cv_path_NM"
42ecbf5e
DJ
3288echo "$as_me:$LINENO: result: $NM" >&5
3289echo "${ECHO_T}$NM" >&6
252b5132 3290
42ecbf5e
DJ
3291echo "$as_me:$LINENO: checking whether ln -s works" >&5
3292echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6
3293LN_S=$as_ln_s
3294if test "$LN_S" = "ln -s"; then
3295 echo "$as_me:$LINENO: result: yes" >&5
3296echo "${ECHO_T}yes" >&6
252b5132 3297else
42ecbf5e
DJ
3298 echo "$as_me:$LINENO: result: no, using $LN_S" >&5
3299echo "${ECHO_T}no, using $LN_S" >&6
252b5132
RH
3300fi
3301
42ecbf5e
DJ
3302echo "$as_me:$LINENO: checking how to recognise dependant libraries" >&5
3303echo $ECHO_N "checking how to recognise dependant libraries... $ECHO_C" >&6
3304if test "${lt_cv_deplibs_check_method+set}" = set; then
3305 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1 3306else
d64552c5 3307 lt_cv_file_magic_cmd='$MAGIC_CMD'
ac48eca1
AO
3308lt_cv_file_magic_test_file=
3309lt_cv_deplibs_check_method='unknown'
3310# Need to set the preceding variable on all platforms that support
3311# interlibrary dependencies.
3312# 'none' -- dependencies not supported.
3313# `unknown' -- same as none, but documents that we really don't know.
3314# 'pass_all' -- all dependencies passed with no checks.
3315# 'test_compile' -- check by making test program.
3316# 'file_magic [regex]' -- check by looking for files in library path
3317# which responds to the $file_magic_cmd with a given egrep regex.
3318# If you have `file' or equivalent on your system and you're not sure
3319# whether `pass_all' will *always* work, you probably want this one.
3320
6be7c12c
AO
3321case $host_os in
3322aix*)
ac48eca1
AO
3323 lt_cv_deplibs_check_method=pass_all
3324 ;;
3325
3326beos*)
3327 lt_cv_deplibs_check_method=pass_all
3328 ;;
3329
3330bsdi4*)
6be7c12c
AO
3331 lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)'
3332 lt_cv_file_magic_cmd='/usr/bin/file -L'
ac48eca1
AO
3333 lt_cv_file_magic_test_file=/shlib/libc.so
3334 ;;
3335
d64552c5 3336cygwin* | mingw* |pw32*)
ac48eca1 3337 lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
d64552c5 3338 lt_cv_file_magic_cmd='$OBJDUMP -f'
ac48eca1
AO
3339 ;;
3340
6be7c12c 3341darwin* | rhapsody*)
bdcfeba5 3342 # this will be overwritten by pass_all, but leave it in just in case
6be7c12c
AO
3343 lt_cv_deplibs_check_method='file_magic Mach-O dynamically linked shared library'
3344 lt_cv_file_magic_cmd='/usr/bin/file -L'
3345 case "$host_os" in
3346 rhapsody* | darwin1.012)
3347 lt_cv_file_magic_test_file='/System/Library/Frameworks/System.framework/System'
3348 ;;
3349 *) # Darwin 1.3 on
3350 lt_cv_file_magic_test_file='/usr/lib/libSystem.dylib'
3351 ;;
3352 esac
bdcfeba5 3353 lt_cv_deplibs_check_method=pass_all
6be7c12c
AO
3354 ;;
3355
d15b04bd 3356freebsd* | kfreebsd*-gnu)
ac48eca1 3357 if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
6be7c12c 3358 case $host_cpu in
ac48eca1 3359 i*86 )
58cccadb
AO
3360 # Not sure whether the presence of OpenBSD here was a mistake.
3361 # Let's accept both of them until this is cleared up.
6be7c12c
AO
3362 lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD)/i[3-9]86 (compact )?demand paged shared library'
3363 lt_cv_file_magic_cmd=/usr/bin/file
ac48eca1
AO
3364 lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
3365 ;;
3366 esac
3367 else
3368 lt_cv_deplibs_check_method=pass_all
3369 fi
3370 ;;
3371
3372gnu*)
3373 lt_cv_deplibs_check_method=pass_all
3374 ;;
3375
6be7c12c 3376hpux10.20*|hpux11*)
4867be41
DJ
3377 case $host_cpu in
3378 hppa*)
3379 lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library'
3380 lt_cv_file_magic_cmd=/usr/bin/file
3381 lt_cv_file_magic_test_file=/usr/lib/libc.sl
3382 ;;
3383 ia64*)
3384 lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64'
3385 lt_cv_file_magic_cmd=/usr/bin/file
3386 lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
3387 ;;
3388 esac
ac48eca1
AO
3389 ;;
3390
3391irix5* | irix6*)
6be7c12c 3392 case $host_os in
ac48eca1
AO
3393 irix5*)
3394 # this will be overridden with pass_all, but let us keep it just in case
3395 lt_cv_deplibs_check_method="file_magic ELF 32-bit MSB dynamic lib MIPS - version 1"
3396 ;;
3397 *)
6be7c12c 3398 case $LD in
ac48eca1
AO
3399 *-32|*"-32 ") libmagic=32-bit;;
3400 *-n32|*"-n32 ") libmagic=N32;;
3401 *-64|*"-64 ") libmagic=64-bit;;
3402 *) libmagic=never-match;;
3403 esac
3404 # this will be overridden with pass_all, but let us keep it just in case
6be7c12c
AO
3405 lt_cv_deplibs_check_method="file_magic ELF ${libmagic} MSB mips-[1234] dynamic lib MIPS - version 1"
3406 ;;
ac48eca1
AO
3407 esac
3408 lt_cv_file_magic_test_file=`echo /lib${libsuff}/libc.so*`
3409 lt_cv_deplibs_check_method=pass_all
3410 ;;
3411
3412# This must be Linux ELF.
58cccadb 3413linux-gnu*)
bdcfeba5 3414 lt_cv_deplibs_check_method=pass_all
ac48eca1
AO
3415 ;;
3416
d15b04bd 3417netbsd* | knetbsd*-gnu)
6be7c12c
AO
3418 if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
3419 lt_cv_deplibs_check_method='match_pattern /lib[^/\.]+\.so\.[0-9]+\.[0-9]+$'
ac48eca1 3420 else
6be7c12c 3421 lt_cv_deplibs_check_method='match_pattern /lib[^/\.]+\.so$'
ac48eca1
AO
3422 fi
3423 ;;
3424
6be7c12c
AO
3425newsos6)
3426 lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)'
3427 lt_cv_file_magic_cmd=/usr/bin/file
3428 lt_cv_file_magic_test_file=/usr/lib/libnls.so
3429 ;;
3430
ac48eca1
AO
3431osf3* | osf4* | osf5*)
3432 # this will be overridden with pass_all, but let us keep it just in case
3433 lt_cv_deplibs_check_method='file_magic COFF format alpha shared library'
3434 lt_cv_file_magic_test_file=/shlib/libc.so
3435 lt_cv_deplibs_check_method=pass_all
3436 ;;
3437
3438sco3.2v5*)
3439 lt_cv_deplibs_check_method=pass_all
3440 ;;
3441
3442solaris*)
3443 lt_cv_deplibs_check_method=pass_all
3444 lt_cv_file_magic_test_file=/lib/libc.so
3445 ;;
3446
6be7c12c
AO
3447sysv5uw[78]* | sysv4*uw2*)
3448 lt_cv_deplibs_check_method=pass_all
3449 ;;
3450
ac48eca1 3451sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
6be7c12c 3452 case $host_vendor in
ac48eca1
AO
3453 ncr)
3454 lt_cv_deplibs_check_method=pass_all
3455 ;;
3456 motorola)
6be7c12c
AO
3457 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]'
3458 lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
ac48eca1
AO
3459 ;;
3460 esac
3461 ;;
3462esac
3463
3464fi
42ecbf5e
DJ
3465echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5
3466echo "${ECHO_T}$lt_cv_deplibs_check_method" >&6
ac48eca1
AO
3467file_magic_cmd=$lt_cv_file_magic_cmd
3468deplibs_check_method=$lt_cv_deplibs_check_method
3469
ac48eca1 3470
ac48eca1 3471
ac48eca1
AO
3472
3473# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers!
3474
bdcfeba5
NC
3475# find the maximum length of command line arguments
3476echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5
3477echo $ECHO_N "checking the maximum length of command line arguments... $ECHO_C" >&6
3478if test "${lt_cv_sys_max_cmd_len+set}" = set; then
3479 echo $ECHO_N "(cached) $ECHO_C" >&6
3480else
3481 i=0
3482 teststring="ABCD"
3483
3484 case $build_os in
3485 msdosdjgpp*)
3486 # On DJGPP, this test can blow up pretty badly due to problems in libc
3487 # (any single argument exceeding 2000 bytes causes a buffer overrun
3488 # during glob expansion). Even if it were fixed, the result of this
3489 # check would be larger than it should be.
3490 lt_cv_sys_max_cmd_len=12288; # 12K is about right
3491 ;;
3492
3493 cygwin* | mingw*)
3494 # On Win9x/ME, this test blows up -- it succeeds, but takes
3495 # about 5 minutes as the teststring grows exponentially.
3496 # Worse, since 9x/ME are not pre-emptively multitasking,
3497 # you end up with a "frozen" computer, even though with patience
3498 # the test eventually succeeds (with a max line length of 256k).
3499 # Instead, let's just punt: use the minimum linelength reported by
3500 # all of the supported platforms: 8192 (on NT/2K/XP).
3501 lt_cv_sys_max_cmd_len=8192;
3502 ;;
3503
3504 amigaos*)
3505 # On AmigaOS with pdksh, this test takes hours, literally.
3506 # So we just punt and use a minimum line length of 8192.
3507 lt_cv_sys_max_cmd_len=8192;
3508 ;;
3509
3510 netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
3511 # This has been around since 386BSD, at least. Likely further.
3512 if test -x /sbin/sysctl; then
3513 lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
3514 elif test -x /usr/sbin/sysctl; then
3515 lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
3516 else
3517 lt_cv_sys_max_cmd_len=65536 # usable default for *BSD
3518 fi
3519 # And add a safety zone
3520 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
3521 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
3522 ;;
3523 esac
3524
3525fi
3526
3527if test -n "$lt_cv_sys_max_cmd_len" ; then
3528 echo "$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len" >&5
3529echo "${ECHO_T}$lt_cv_sys_max_cmd_len" >&6
3530else
3531 echo "$as_me:$LINENO: result: none" >&5
3532echo "${ECHO_T}none" >&6
3533fi
3534
3535
ac48eca1 3536# Only perform the check for file, if the check method requires it
6be7c12c 3537case $deplibs_check_method in
ac48eca1 3538file_magic*)
d64552c5 3539 if test "$file_magic_cmd" = '$MAGIC_CMD'; then
42ecbf5e
DJ
3540 echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5
3541echo $ECHO_N "checking for ${ac_tool_prefix}file... $ECHO_C" >&6
3542if test "${lt_cv_path_MAGIC_CMD+set}" = set; then
3543 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1 3544else
6be7c12c 3545 case $MAGIC_CMD in
ac48eca1 3546 /*)
d64552c5 3547 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
ac48eca1
AO
3548 ;;
3549 ?:/*)
d64552c5 3550 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a dos path.
ac48eca1
AO
3551 ;;
3552 *)
d64552c5 3553 ac_save_MAGIC_CMD="$MAGIC_CMD"
ac48eca1
AO
3554 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
3555 ac_dummy="/usr/bin:$PATH"
3556 for ac_dir in $ac_dummy; do
3557 test -z "$ac_dir" && ac_dir=.
3558 if test -f $ac_dir/${ac_tool_prefix}file; then
d64552c5 3559 lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file"
ac48eca1 3560 if test -n "$file_magic_test_file"; then
6be7c12c 3561 case $deplibs_check_method in
ac48eca1
AO
3562 "file_magic "*)
3563 file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`"
d64552c5 3564 MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
ac48eca1
AO
3565 if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
3566 egrep "$file_magic_regex" > /dev/null; then
3567 :
3568 else
3569 cat <<EOF 1>&2
3570
3571*** Warning: the command libtool uses to detect shared libraries,
3572*** $file_magic_cmd, produces output that libtool cannot recognize.
3573*** The result is that libtool may fail to recognize shared libraries
3574*** as such. This will affect the creation of libtool libraries that
3575*** depend on shared libraries, but programs linked with such libtool
3576*** libraries will work regardless of this problem. Nevertheless, you
3577*** may want to report the problem to your system manager and/or to
3578*** bug-libtool@gnu.org
3579
3580EOF
3581 fi ;;
3582 esac
3583 fi
3584 break
3585 fi
3586 done
3587 IFS="$ac_save_ifs"
d64552c5 3588 MAGIC_CMD="$ac_save_MAGIC_CMD"
ac48eca1
AO
3589 ;;
3590esac
3591fi
3592
d64552c5
AO
3593MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
3594if test -n "$MAGIC_CMD"; then
42ecbf5e
DJ
3595 echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5
3596echo "${ECHO_T}$MAGIC_CMD" >&6
ac48eca1 3597else
42ecbf5e
DJ
3598 echo "$as_me:$LINENO: result: no" >&5
3599echo "${ECHO_T}no" >&6
ac48eca1
AO
3600fi
3601
d64552c5 3602if test -z "$lt_cv_path_MAGIC_CMD"; then
ac48eca1 3603 if test -n "$ac_tool_prefix"; then
42ecbf5e
DJ
3604 echo "$as_me:$LINENO: checking for file" >&5
3605echo $ECHO_N "checking for file... $ECHO_C" >&6
3606if test "${lt_cv_path_MAGIC_CMD+set}" = set; then
3607 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1 3608else
6be7c12c 3609 case $MAGIC_CMD in
ac48eca1 3610 /*)
d64552c5 3611 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
ac48eca1
AO
3612 ;;
3613 ?:/*)
d64552c5 3614 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a dos path.
ac48eca1
AO
3615 ;;
3616 *)
d64552c5 3617 ac_save_MAGIC_CMD="$MAGIC_CMD"
ac48eca1
AO
3618 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
3619 ac_dummy="/usr/bin:$PATH"
3620 for ac_dir in $ac_dummy; do
3621 test -z "$ac_dir" && ac_dir=.
3622 if test -f $ac_dir/file; then
d64552c5 3623 lt_cv_path_MAGIC_CMD="$ac_dir/file"
ac48eca1 3624 if test -n "$file_magic_test_file"; then
6be7c12c 3625 case $deplibs_check_method in
ac48eca1
AO
3626 "file_magic "*)
3627 file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`"
d64552c5 3628 MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
ac48eca1
AO
3629 if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
3630 egrep "$file_magic_regex" > /dev/null; then
3631 :
3632 else
3633 cat <<EOF 1>&2
3634
3635*** Warning: the command libtool uses to detect shared libraries,
3636*** $file_magic_cmd, produces output that libtool cannot recognize.
3637*** The result is that libtool may fail to recognize shared libraries
3638*** as such. This will affect the creation of libtool libraries that
3639*** depend on shared libraries, but programs linked with such libtool
3640*** libraries will work regardless of this problem. Nevertheless, you
3641*** may want to report the problem to your system manager and/or to
3642*** bug-libtool@gnu.org
3643
3644EOF
3645 fi ;;
3646 esac
3647 fi
3648 break
3649 fi
3650 done
3651 IFS="$ac_save_ifs"
d64552c5 3652 MAGIC_CMD="$ac_save_MAGIC_CMD"
ac48eca1
AO
3653 ;;
3654esac
3655fi
3656
d64552c5
AO
3657MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
3658if test -n "$MAGIC_CMD"; then
42ecbf5e
DJ
3659 echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5
3660echo "${ECHO_T}$MAGIC_CMD" >&6
ac48eca1 3661else
42ecbf5e
DJ
3662 echo "$as_me:$LINENO: result: no" >&5
3663echo "${ECHO_T}no" >&6
ac48eca1
AO
3664fi
3665
3666 else
d64552c5 3667 MAGIC_CMD=:
ac48eca1
AO
3668 fi
3669fi
252b5132 3670
ac48eca1
AO
3671 fi
3672 ;;
a74801ba 3673esac
252b5132 3674
42ecbf5e
DJ
3675if test -n "$ac_tool_prefix"; then
3676 # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
ac48eca1 3677set dummy ${ac_tool_prefix}ranlib; ac_word=$2
42ecbf5e
DJ
3678echo "$as_me:$LINENO: checking for $ac_word" >&5
3679echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3680if test "${ac_cv_prog_RANLIB+set}" = set; then
3681 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1
AO
3682else
3683 if test -n "$RANLIB"; then
3684 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
3685else
42ecbf5e
DJ
3686as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3687for as_dir in $PATH
3688do
3689 IFS=$as_save_IFS
3690 test -z "$as_dir" && as_dir=.
3691 for ac_exec_ext in '' $ac_executable_extensions; do
3692 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3693 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
3694 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3695 break 2
3696 fi
3697done
3698done
3699
ac48eca1
AO
3700fi
3701fi
42ecbf5e 3702RANLIB=$ac_cv_prog_RANLIB
ac48eca1 3703if test -n "$RANLIB"; then
42ecbf5e
DJ
3704 echo "$as_me:$LINENO: result: $RANLIB" >&5
3705echo "${ECHO_T}$RANLIB" >&6
ac48eca1 3706else
42ecbf5e
DJ
3707 echo "$as_me:$LINENO: result: no" >&5
3708echo "${ECHO_T}no" >&6
ac48eca1
AO
3709fi
3710
42ecbf5e 3711fi
ac48eca1 3712if test -z "$ac_cv_prog_RANLIB"; then
42ecbf5e 3713 ac_ct_RANLIB=$RANLIB
ac48eca1
AO
3714 # Extract the first word of "ranlib", so it can be a program name with args.
3715set dummy ranlib; ac_word=$2
42ecbf5e
DJ
3716echo "$as_me:$LINENO: checking for $ac_word" >&5
3717echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3718if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
3719 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1 3720else
42ecbf5e
DJ
3721 if test -n "$ac_ct_RANLIB"; then
3722 ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
3723else
3724as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3725for as_dir in $PATH
3726do
3727 IFS=$as_save_IFS
3728 test -z "$as_dir" && as_dir=.
3729 for ac_exec_ext in '' $ac_executable_extensions; do
3730 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3731 ac_cv_prog_ac_ct_RANLIB="ranlib"
3732 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3733 break 2
3734 fi
3735done
3736done
3737
3738 test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":"
ac48eca1
AO
3739fi
3740fi
42ecbf5e
DJ
3741ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
3742if test -n "$ac_ct_RANLIB"; then
3743 echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
3744echo "${ECHO_T}$ac_ct_RANLIB" >&6
ac48eca1 3745else
42ecbf5e
DJ
3746 echo "$as_me:$LINENO: result: no" >&5
3747echo "${ECHO_T}no" >&6
ac48eca1
AO
3748fi
3749
42ecbf5e 3750 RANLIB=$ac_ct_RANLIB
ac48eca1 3751else
42ecbf5e 3752 RANLIB="$ac_cv_prog_RANLIB"
ac48eca1
AO
3753fi
3754
42ecbf5e
DJ
3755if test -n "$ac_tool_prefix"; then
3756 # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
ac48eca1 3757set dummy ${ac_tool_prefix}strip; ac_word=$2
42ecbf5e
DJ
3758echo "$as_me:$LINENO: checking for $ac_word" >&5
3759echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3760if test "${ac_cv_prog_STRIP+set}" = set; then
3761 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1
AO
3762else
3763 if test -n "$STRIP"; then
3764 ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
3765else
42ecbf5e
DJ
3766as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3767for as_dir in $PATH
3768do
3769 IFS=$as_save_IFS
3770 test -z "$as_dir" && as_dir=.
3771 for ac_exec_ext in '' $ac_executable_extensions; do
3772 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3773 ac_cv_prog_STRIP="${ac_tool_prefix}strip"
3774 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3775 break 2
3776 fi
3777done
3778done
3779
ac48eca1
AO
3780fi
3781fi
42ecbf5e 3782STRIP=$ac_cv_prog_STRIP
ac48eca1 3783if test -n "$STRIP"; then
42ecbf5e
DJ
3784 echo "$as_me:$LINENO: result: $STRIP" >&5
3785echo "${ECHO_T}$STRIP" >&6
ac48eca1 3786else
42ecbf5e
DJ
3787 echo "$as_me:$LINENO: result: no" >&5
3788echo "${ECHO_T}no" >&6
ac48eca1
AO
3789fi
3790
42ecbf5e 3791fi
ac48eca1 3792if test -z "$ac_cv_prog_STRIP"; then
42ecbf5e 3793 ac_ct_STRIP=$STRIP
ac48eca1
AO
3794 # Extract the first word of "strip", so it can be a program name with args.
3795set dummy strip; ac_word=$2
42ecbf5e
DJ
3796echo "$as_me:$LINENO: checking for $ac_word" >&5
3797echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3798if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
3799 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1 3800else
42ecbf5e
DJ
3801 if test -n "$ac_ct_STRIP"; then
3802 ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
ac48eca1 3803else
42ecbf5e
DJ
3804as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3805for as_dir in $PATH
3806do
3807 IFS=$as_save_IFS
3808 test -z "$as_dir" && as_dir=.
3809 for ac_exec_ext in '' $ac_executable_extensions; do
3810 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3811 ac_cv_prog_ac_ct_STRIP="strip"
3812 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3813 break 2
3814 fi
3815done
3816done
3817
3818 test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":"
ac48eca1
AO
3819fi
3820fi
42ecbf5e
DJ
3821ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
3822if test -n "$ac_ct_STRIP"; then
3823 echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
3824echo "${ECHO_T}$ac_ct_STRIP" >&6
ac48eca1 3825else
42ecbf5e
DJ
3826 echo "$as_me:$LINENO: result: no" >&5
3827echo "${ECHO_T}no" >&6
ac48eca1
AO
3828fi
3829
42ecbf5e 3830 STRIP=$ac_ct_STRIP
ac48eca1 3831else
42ecbf5e 3832 STRIP="$ac_cv_prog_STRIP"
ac48eca1
AO
3833fi
3834
3835
252b5132
RH
3836# Check for any special flags to pass to ltconfig.
3837libtool_flags="--cache-file=$cache_file"
3838test "$enable_shared" = no && libtool_flags="$libtool_flags --disable-shared"
3839test "$enable_static" = no && libtool_flags="$libtool_flags --disable-static"
3840test "$enable_fast_install" = no && libtool_flags="$libtool_flags --disable-fast-install"
6be7c12c
AO
3841test "$GCC" = yes && libtool_flags="$libtool_flags --with-gcc"
3842test "$lt_cv_prog_gnu_ld" = yes && libtool_flags="$libtool_flags --with-gnu-ld"
252b5132 3843
a74801ba
ILT
3844
3845# Check whether --enable-libtool-lock or --disable-libtool-lock was given.
3846if test "${enable_libtool_lock+set}" = set; then
3847 enableval="$enable_libtool_lock"
a74801ba 3848
42ecbf5e 3849fi;
a74801ba
ILT
3850test "x$enable_libtool_lock" = xno && libtool_flags="$libtool_flags --disable-lock"
3851test x"$silent" = xyes && libtool_flags="$libtool_flags --silent"
3852
42ecbf5e 3853
ac48eca1
AO
3854# Check whether --with-pic or --without-pic was given.
3855if test "${with_pic+set}" = set; then
3856 withval="$with_pic"
3857 pic_mode="$withval"
3858else
3859 pic_mode=default
42ecbf5e 3860fi;
ac48eca1
AO
3861test x"$pic_mode" = xyes && libtool_flags="$libtool_flags --prefer-pic"
3862test x"$pic_mode" = xno && libtool_flags="$libtool_flags --prefer-non-pic"
3863
252b5132
RH
3864# Some flags need to be propagated to the compiler or linker for good
3865# libtool support.
6be7c12c 3866case $host in
252b5132
RH
3867*-*-irix6*)
3868 # Find out which ABI we are using.
c428fa83 3869 echo '#line 3869 "configure"' > conftest.$ac_ext
42ecbf5e
DJ
3870 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3871 (eval $ac_compile) 2>&5
3872 ac_status=$?
3873 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3874 (exit $ac_status); }; then
27a710e5
NC
3875 if test "$lt_cv_prog_gnu_ld" = yes; then
3876 case `/usr/bin/file conftest.$ac_objext` in
3877 *32-bit*)
3878 LD="${LD-ld} -melf32bsmip"
3879 ;;
3880 *N32*)
3881 LD="${LD-ld} -melf32bmipn32"
3882 ;;
3883 *64-bit*)
3884 LD="${LD-ld} -melf64bmip"
3885 ;;
3886 esac
3887 else
6be7c12c 3888 case `/usr/bin/file conftest.$ac_objext` in
252b5132
RH
3889 *32-bit*)
3890 LD="${LD-ld} -32"
3891 ;;
3892 *N32*)
3893 LD="${LD-ld} -n32"
3894 ;;
3895 *64-bit*)
3896 LD="${LD-ld} -64"
3897 ;;
3898 esac
27a710e5 3899 fi
252b5132
RH
3900 fi
3901 rm -rf conftest*
3902 ;;
3903
4867be41
DJ
3904ia64-*-hpux*)
3905 # Find out which ABI we are using.
3906 echo 'int i;' > conftest.$ac_ext
42ecbf5e
DJ
3907 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3908 (eval $ac_compile) 2>&5
3909 ac_status=$?
3910 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3911 (exit $ac_status); }; then
4867be41
DJ
3912 case "`/usr/bin/file conftest.o`" in
3913 *ELF-32*)
3914 HPUX_IA64_MODE="32"
3915 ;;
3916 *ELF-64*)
3917 HPUX_IA64_MODE="64"
3918 ;;
3919 esac
3920 fi
3921 rm -rf conftest*
3922 ;;
3923
bdcfeba5
NC
3924x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*)
3925 # Find out which ABI we are using.
3926 echo 'int i;' > conftest.$ac_ext
3927 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3928 (eval $ac_compile) 2>&5
3929 ac_status=$?
3930 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3931 (exit $ac_status); }; then
3932 case "`/usr/bin/file conftest.o`" in
3933 *32-bit*)
3934 case $host in
3935 x86_64-*linux*)
3936 LD="${LD-ld} -m elf_i386"
3937 ;;
3938 ppc64-*linux*|powerpc64-*linux*)
3939 LD="${LD-ld} -m elf32ppclinux"
3940 ;;
3941 s390x-*linux*)
3942 LD="${LD-ld} -m elf_s390"
3943 ;;
3944 sparc64-*linux*)
3945 LD="${LD-ld} -m elf32_sparc"
3946 ;;
3947 esac
3948 ;;
3949 *64-bit*)
3950 case $host in
3951 x86_64-*linux*)
3952 LD="${LD-ld} -m elf_x86_64"
3953 ;;
3954 ppc*-*linux*|powerpc*-*linux*)
3955 LD="${LD-ld} -m elf64ppc"
3956 ;;
3957 s390*-*linux*)
3958 LD="${LD-ld} -m elf64_s390"
3959 ;;
3960 sparc*-*linux*)
3961 LD="${LD-ld} -m elf64_sparc"
3962 ;;
3963 esac
3964 ;;
3965 esac
3966 fi
3967 rm -rf conftest*
3968 ;;
3969
252b5132
RH
3970*-*-sco3.2v5*)
3971 # On SCO OpenServer 5, we need -belf to get full-featured binaries.
3972 SAVE_CFLAGS="$CFLAGS"
3973 CFLAGS="$CFLAGS -belf"
42ecbf5e
DJ
3974 echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5
3975echo $ECHO_N "checking whether the C compiler needs -belf... $ECHO_C" >&6
3976if test "${lt_cv_cc_needs_belf+set}" = set; then
3977 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 3978else
42ecbf5e
DJ
3979
3980
ac48eca1 3981 ac_ext=c
ac48eca1 3982ac_cpp='$CPP $CPPFLAGS'
42ecbf5e
DJ
3983ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
3984ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
3985ac_compiler_gnu=$ac_cv_c_compiler_gnu
ac48eca1 3986
42ecbf5e
DJ
3987 cat >conftest.$ac_ext <<_ACEOF
3988/* confdefs.h. */
3989_ACEOF
3990cat confdefs.h >>conftest.$ac_ext
3991cat >>conftest.$ac_ext <<_ACEOF
3992/* end confdefs.h. */
252b5132 3993
42ecbf5e
DJ
3994int
3995main ()
3996{
252b5132 3997
42ecbf5e
DJ
3998 ;
3999 return 0;
4000}
4001_ACEOF
4002rm -f conftest.$ac_objext conftest$ac_exeext
4003if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4004 (eval $ac_link) 2>conftest.er1
4005 ac_status=$?
4006 grep -v '^ *+' conftest.er1 >conftest.err
4007 rm -f conftest.er1
4008 cat conftest.err >&5
4009 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4010 (exit $ac_status); } &&
b7d4af3a
JW
4011 { ac_try='test -z "$ac_c_werror_flag"
4012 || test ! -s conftest.err'
42ecbf5e
DJ
4013 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4014 (eval $ac_try) 2>&5
4015 ac_status=$?
4016 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4017 (exit $ac_status); }; } &&
4018 { ac_try='test -s conftest$ac_exeext'
4019 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4020 (eval $ac_try) 2>&5
4021 ac_status=$?
4022 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4023 (exit $ac_status); }; }; then
252b5132
RH
4024 lt_cv_cc_needs_belf=yes
4025else
42ecbf5e
DJ
4026 echo "$as_me: failed program was:" >&5
4027sed 's/^/| /' conftest.$ac_ext >&5
4028
4029lt_cv_cc_needs_belf=no
252b5132 4030fi
42ecbf5e
DJ
4031rm -f conftest.err conftest.$ac_objext \
4032 conftest$ac_exeext conftest.$ac_ext
ac48eca1 4033 ac_ext=c
ac48eca1 4034ac_cpp='$CPP $CPPFLAGS'
42ecbf5e
DJ
4035ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
4036ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
4037ac_compiler_gnu=$ac_cv_c_compiler_gnu
ac48eca1 4038
252b5132 4039fi
42ecbf5e
DJ
4040echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5
4041echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6
252b5132
RH
4042 if test x"$lt_cv_cc_needs_belf" != x"yes"; then
4043 # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
4044 CFLAGS="$SAVE_CFLAGS"
4045 fi
4046 ;;
4047
252b5132
RH
4048
4049esac
4050
252b5132
RH
4051
4052# Save cache, so that ltconfig can load it
42ecbf5e 4053cat >confcache <<\_ACEOF
252b5132
RH
4054# This file is a shell script that caches the results of configure
4055# tests run on this system so they can be shared between configure
42ecbf5e
DJ
4056# scripts and configure runs, see configure's option --config-cache.
4057# It is not useful on other systems. If it contains results you don't
4058# want to keep, you may remove or edit it.
252b5132 4059#
42ecbf5e
DJ
4060# config.status only pays attention to the cache file if you give it
4061# the --recheck option to rerun configure.
252b5132 4062#
42ecbf5e
DJ
4063# `ac_cv_env_foo' variables (set or unset) will be overridden when
4064# loading this file, other *unset* `ac_cv_foo' will be assigned the
4065# following values.
4066
4067_ACEOF
4068
252b5132
RH
4069# The following way of writing the cache mishandles newlines in values,
4070# but we know of no workaround that is simple, portable, and efficient.
4071# So, don't put newlines in cache variables' values.
4072# Ultrix sh set writes to stderr and can't be redirected directly,
4073# and sets the high bit in the cache file unless we assign to the vars.
42ecbf5e
DJ
4074{
4075 (set) 2>&1 |
4076 case `(ac_space=' '; set | grep ac_space) 2>&1` in
4077 *ac_space=\ *)
4078 # `set' does not quote correctly, so add quotes (double-quote
4079 # substitution turns \\\\ into \\, and sed turns \\ into \).
4080 sed -n \
4081 "s/'/'\\\\''/g;
4082 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
4083 ;;
4084 *)
4085 # `set' quotes correctly as required by POSIX, so do not add quotes.
4086 sed -n \
4087 "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
4088 ;;
4089 esac;
4090} |
4091 sed '
4092 t clear
4093 : clear
4094 s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
4095 t end
4096 /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
4097 : end' >>confcache
4098if diff $cache_file confcache >/dev/null 2>&1; then :; else
252b5132 4099 if test -w $cache_file; then
42ecbf5e
DJ
4100 test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
4101 cat confcache >$cache_file
252b5132
RH
4102 else
4103 echo "not updating unwritable cache $cache_file"
4104 fi
4105fi
4106rm -f confcache
4107
252b5132 4108# Actually configure libtool. ac_aux_dir is where install-sh is found.
ac48eca1 4109AR="$AR" LTCC="$CC" CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \
d64552c5 4110MAGIC_CMD="$MAGIC_CMD" LD="$LD" LDFLAGS="$LDFLAGS" LIBS="$LIBS" \
ac48eca1
AO
4111LN_S="$LN_S" NM="$NM" RANLIB="$RANLIB" STRIP="$STRIP" \
4112AS="$AS" DLLTOOL="$DLLTOOL" OBJDUMP="$OBJDUMP" \
4113objext="$OBJEXT" exeext="$EXEEXT" reload_flag="$reload_flag" \
4114deplibs_check_method="$deplibs_check_method" file_magic_cmd="$file_magic_cmd" \
252b5132 4115${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \
ac48eca1 4116$libtool_flags --no-verify --build="$build" $ac_aux_dir/ltmain.sh $host \
42ecbf5e
DJ
4117|| { { echo "$as_me:$LINENO: error: libtool configure failed" >&5
4118echo "$as_me: error: libtool configure failed" >&2;}
4119 { (exit 1); exit 1; }; }
252b5132
RH
4120
4121# Reload cache, that may have been modified by ltconfig
4122if test -r "$cache_file"; then
42ecbf5e
DJ
4123 # Some versions of bash will fail to source /dev/null (special
4124 # files actually), so we avoid doing that.
4125 if test -f "$cache_file"; then
4126 { echo "$as_me:$LINENO: loading cache $cache_file" >&5
4127echo "$as_me: loading cache $cache_file" >&6;}
4128 case $cache_file in
4129 [\\/]* | ?:[\\/]* ) . $cache_file;;
4130 *) . ./$cache_file;;
4131 esac
4132 fi
252b5132 4133else
42ecbf5e
DJ
4134 { echo "$as_me:$LINENO: creating cache $cache_file" >&5
4135echo "$as_me: creating cache $cache_file" >&6;}
4136 >$cache_file
252b5132
RH
4137fi
4138
4139
4140# This can be used to rebuild libtool when needed
ac48eca1 4141LIBTOOL_DEPS="$ac_aux_dir/ltconfig $ac_aux_dir/ltmain.sh $ac_aux_dir/ltcf-c.sh"
252b5132
RH
4142
4143# Always use our own libtool.
4144LIBTOOL='$(SHELL) $(top_builddir)/libtool'
4145
4146# Redirect the config.log output again, so that the ltconfig log is not
4147# clobbered by the next message.
4148exec 5>>./config.log
4149
ac48eca1 4150
42ecbf5e
DJ
4151
4152
4153
4154
ac48eca1 4155
252b5132
RH
4156# Check whether --enable-targets or --disable-targets was given.
4157if test "${enable_targets+set}" = set; then
4158 enableval="$enable_targets"
4159 case "${enableval}" in
42ecbf5e
DJ
4160 yes | "") { { echo "$as_me:$LINENO: error: enable-targets option must specify target names or 'all'" >&5
4161echo "$as_me: error: enable-targets option must specify target names or 'all'" >&2;}
4162 { (exit 1); exit 1; }; }
252b5132
RH
4163 ;;
4164 no) enable_targets= ;;
4165 *) enable_targets=$enableval ;;
4166esac
42ecbf5e 4167fi; # Check whether --enable-commonbfdlib or --disable-commonbfdlib was given.
252b5132
RH
4168if test "${enable_commonbfdlib+set}" = set; then
4169 enableval="$enable_commonbfdlib"
4170 case "${enableval}" in
4171 yes) commonbfdlib=true ;;
4172 no) commonbfdlib=false ;;
42ecbf5e
DJ
4173 *) { { echo "$as_me:$LINENO: error: bad value ${enableval} for BFD commonbfdlib option" >&5
4174echo "$as_me: error: bad value ${enableval} for BFD commonbfdlib option" >&2;}
4175 { (exit 1); exit 1; }; } ;;
252b5132 4176esac
42ecbf5e 4177fi;
ad22bfe8 4178
a541e3ce 4179GCC_WARN_CFLAGS="-W -Wall -Wstrict-prototypes -Wmissing-prototypes"
1ad12f97 4180
569acd2c
NC
4181# Check whether --enable-werror or --disable-werror was given.
4182if test "${enable_werror+set}" = set; then
4183 enableval="$enable_werror"
1ad12f97
NC
4184 case "${enableval}" in
4185 yes | y) ERROR_ON_WARNING="yes" ;;
4186 no | n) ERROR_ON_WARNING="no" ;;
42ecbf5e
DJ
4187 *) { { echo "$as_me:$LINENO: error: bad value ${enableval} for --enable-werror" >&5
4188echo "$as_me: error: bad value ${enableval} for --enable-werror" >&2;}
4189 { (exit 1); exit 1; }; } ;;
1ad12f97 4190 esac
42ecbf5e 4191fi;
1ad12f97 4192
9e9b66a9
AM
4193# Enable -Werror by default when using gcc
4194if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
4195 ERROR_ON_WARNING=yes
1ad12f97 4196fi
569acd2c 4197
9e9b66a9
AM
4198NO_WERROR=
4199if test "${ERROR_ON_WARNING}" = yes ; then
a541e3ce 4200 GCC_WARN_CFLAGS="$GCC_WARN_CFLAGS -Werror"
9e9b66a9
AM
4201 NO_WERROR="-Wno-error"
4202fi
42ecbf5e 4203
a541e3ce
SE
4204if test "${GCC}" = yes ; then
4205 WARN_CFLAGS="${GCC_WARN_CFLAGS}"
4206fi
4207
a2d91340
AC
4208# Check whether --enable-build-warnings or --disable-build-warnings was given.
4209if test "${enable_build_warnings+set}" = set; then
4210 enableval="$enable_build_warnings"
4211 case "${enableval}" in
a541e3ce
SE
4212 yes) WARN_CFLAGS="${GCC_WARN_CFLAGS}";;
4213 no) if test "${GCC}" = yes ; then
4214 WARN_CFLAGS="-w"
4215 fi;;
a2d91340 4216 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
a541e3ce 4217 WARN_CFLAGS="${GCC_WARN_CFLAGS} ${t}";;
a2d91340 4218 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
a541e3ce 4219 WARN_CFLAGS="${t} ${GCC_WARN_CFLAGS}";;
9e9b66a9 4220 *) WARN_CFLAGS=`echo "${enableval}" | sed -e "s/,/ /g"`;;
d15b04bd 4221esac
42ecbf5e 4222fi;
9e9b66a9
AM
4223
4224if test x"$silent" != x"yes" && test x"$WARN_CFLAGS" != x""; then
4225 echo "Setting warning flags = $WARN_CFLAGS" 6>&1
d15b04bd 4226fi
9e9b66a9
AM
4227
4228
e5a52504 4229
e5a52504 4230
398ee8f1 4231
42ecbf5e 4232 ac_config_headers="$ac_config_headers config.h:config.in"
d15b04bd
L
4233
4234
4235if test -z "$target" ; then
42ecbf5e
DJ
4236 { { echo "$as_me:$LINENO: error: Unrecognized target system type; please check config.sub." >&5
4237echo "$as_me: error: Unrecognized target system type; please check config.sub." >&2;}
4238 { (exit 1); exit 1; }; }
d15b04bd
L
4239fi
4240if test -z "$host" ; then
42ecbf5e
DJ
4241 { { echo "$as_me:$LINENO: error: Unrecognized host system type; please check config.sub." >&5
4242echo "$as_me: error: Unrecognized host system type; please check config.sub." >&2;}
4243 { (exit 1); exit 1; }; }
4244fi
4245
4246ac_ext=c
4247ac_cpp='$CPP $CPPFLAGS'
4248ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
4249ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
4250ac_compiler_gnu=$ac_cv_c_compiler_gnu
4251if test -n "$ac_tool_prefix"; then
4252 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
4253set dummy ${ac_tool_prefix}gcc; ac_word=$2
4254echo "$as_me:$LINENO: checking for $ac_word" >&5
4255echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4256if test "${ac_cv_prog_CC+set}" = set; then
4257 echo $ECHO_N "(cached) $ECHO_C" >&6
4258else
4259 if test -n "$CC"; then
4260 ac_cv_prog_CC="$CC" # Let the user override the test.
4261else
4262as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4263for as_dir in $PATH
4264do
4265 IFS=$as_save_IFS
4266 test -z "$as_dir" && as_dir=.
4267 for ac_exec_ext in '' $ac_executable_extensions; do
4268 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4269 ac_cv_prog_CC="${ac_tool_prefix}gcc"
4270 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4271 break 2
4272 fi
4273done
4274done
4275
4276fi
4277fi
4278CC=$ac_cv_prog_CC
4279if test -n "$CC"; then
4280 echo "$as_me:$LINENO: result: $CC" >&5
4281echo "${ECHO_T}$CC" >&6
4282else
4283 echo "$as_me:$LINENO: result: no" >&5
4284echo "${ECHO_T}no" >&6
d15b04bd
L
4285fi
4286
42ecbf5e
DJ
4287fi
4288if test -z "$ac_cv_prog_CC"; then
4289 ac_ct_CC=$CC
4290 # Extract the first word of "gcc", so it can be a program name with args.
d15b04bd 4291set dummy gcc; ac_word=$2
42ecbf5e
DJ
4292echo "$as_me:$LINENO: checking for $ac_word" >&5
4293echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4294if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
4295 echo $ECHO_N "(cached) $ECHO_C" >&6
4296else
4297 if test -n "$ac_ct_CC"; then
4298 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
4299else
4300as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4301for as_dir in $PATH
4302do
4303 IFS=$as_save_IFS
4304 test -z "$as_dir" && as_dir=.
4305 for ac_exec_ext in '' $ac_executable_extensions; do
4306 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4307 ac_cv_prog_ac_ct_CC="gcc"
4308 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4309 break 2
4310 fi
4311done
4312done
4313
4314fi
4315fi
4316ac_ct_CC=$ac_cv_prog_ac_ct_CC
4317if test -n "$ac_ct_CC"; then
4318 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
4319echo "${ECHO_T}$ac_ct_CC" >&6
4320else
4321 echo "$as_me:$LINENO: result: no" >&5
4322echo "${ECHO_T}no" >&6
4323fi
4324
4325 CC=$ac_ct_CC
4326else
4327 CC="$ac_cv_prog_CC"
4328fi
4329
4330if test -z "$CC"; then
4331 if test -n "$ac_tool_prefix"; then
4332 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
4333set dummy ${ac_tool_prefix}cc; ac_word=$2
4334echo "$as_me:$LINENO: checking for $ac_word" >&5
4335echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4336if test "${ac_cv_prog_CC+set}" = set; then
4337 echo $ECHO_N "(cached) $ECHO_C" >&6
e5a52504 4338else
d15b04bd
L
4339 if test -n "$CC"; then
4340 ac_cv_prog_CC="$CC" # Let the user override the test.
e5a52504 4341else
42ecbf5e
DJ
4342as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4343for as_dir in $PATH
4344do
4345 IFS=$as_save_IFS
4346 test -z "$as_dir" && as_dir=.
4347 for ac_exec_ext in '' $ac_executable_extensions; do
4348 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4349 ac_cv_prog_CC="${ac_tool_prefix}cc"
4350 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4351 break 2
4352 fi
4353done
4354done
4355
252b5132 4356fi
e5a52504 4357fi
42ecbf5e 4358CC=$ac_cv_prog_CC
d15b04bd 4359if test -n "$CC"; then
42ecbf5e
DJ
4360 echo "$as_me:$LINENO: result: $CC" >&5
4361echo "${ECHO_T}$CC" >&6
4362else
4363 echo "$as_me:$LINENO: result: no" >&5
4364echo "${ECHO_T}no" >&6
4365fi
4366
4367fi
4368if test -z "$ac_cv_prog_CC"; then
4369 ac_ct_CC=$CC
4370 # Extract the first word of "cc", so it can be a program name with args.
4371set dummy cc; ac_word=$2
4372echo "$as_me:$LINENO: checking for $ac_word" >&5
4373echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4374if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
4375 echo $ECHO_N "(cached) $ECHO_C" >&6
4376else
4377 if test -n "$ac_ct_CC"; then
4378 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
4379else
4380as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4381for as_dir in $PATH
4382do
4383 IFS=$as_save_IFS
4384 test -z "$as_dir" && as_dir=.
4385 for ac_exec_ext in '' $ac_executable_extensions; do
4386 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4387 ac_cv_prog_ac_ct_CC="cc"
4388 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4389 break 2
4390 fi
4391done
4392done
4393
4394fi
4395fi
4396ac_ct_CC=$ac_cv_prog_ac_ct_CC
4397if test -n "$ac_ct_CC"; then
4398 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
4399echo "${ECHO_T}$ac_ct_CC" >&6
4400else
4401 echo "$as_me:$LINENO: result: no" >&5
4402echo "${ECHO_T}no" >&6
4403fi
4404
4405 CC=$ac_ct_CC
252b5132 4406else
42ecbf5e 4407 CC="$ac_cv_prog_CC"
252b5132 4408fi
e5a52504 4409
42ecbf5e 4410fi
d15b04bd
L
4411if test -z "$CC"; then
4412 # Extract the first word of "cc", so it can be a program name with args.
4413set dummy cc; ac_word=$2
42ecbf5e
DJ
4414echo "$as_me:$LINENO: checking for $ac_word" >&5
4415echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4416if test "${ac_cv_prog_CC+set}" = set; then
4417 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 4418else
d15b04bd
L
4419 if test -n "$CC"; then
4420 ac_cv_prog_CC="$CC" # Let the user override the test.
252b5132 4421else
d15b04bd 4422 ac_prog_rejected=no
42ecbf5e
DJ
4423as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4424for as_dir in $PATH
4425do
4426 IFS=$as_save_IFS
4427 test -z "$as_dir" && as_dir=.
4428 for ac_exec_ext in '' $ac_executable_extensions; do
4429 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4430 if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
4431 ac_prog_rejected=yes
4432 continue
4433 fi
4434 ac_cv_prog_CC="cc"
4435 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4436 break 2
4437 fi
4438done
4439done
4440
d15b04bd
L
4441if test $ac_prog_rejected = yes; then
4442 # We found a bogon in the path, so make sure we never use it.
4443 set dummy $ac_cv_prog_CC
4444 shift
42ecbf5e 4445 if test $# != 0; then
d15b04bd
L
4446 # We chose a different compiler from the bogus one.
4447 # However, it has the same basename, so the bogon will be chosen
4448 # first if we set CC to just the basename; use the full file name.
4449 shift
42ecbf5e 4450 ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
e5a52504 4451 fi
252b5132
RH
4452fi
4453fi
d15b04bd 4454fi
42ecbf5e 4455CC=$ac_cv_prog_CC
d15b04bd 4456if test -n "$CC"; then
42ecbf5e
DJ
4457 echo "$as_me:$LINENO: result: $CC" >&5
4458echo "${ECHO_T}$CC" >&6
252b5132 4459else
42ecbf5e
DJ
4460 echo "$as_me:$LINENO: result: no" >&5
4461echo "${ECHO_T}no" >&6
252b5132
RH
4462fi
4463
42ecbf5e
DJ
4464fi
4465if test -z "$CC"; then
4466 if test -n "$ac_tool_prefix"; then
4467 for ac_prog in cl
4468 do
4469 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
4470set dummy $ac_tool_prefix$ac_prog; ac_word=$2
4471echo "$as_me:$LINENO: checking for $ac_word" >&5
4472echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4473if test "${ac_cv_prog_CC+set}" = set; then
4474 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 4475else
d15b04bd
L
4476 if test -n "$CC"; then
4477 ac_cv_prog_CC="$CC" # Let the user override the test.
252b5132 4478else
42ecbf5e
DJ
4479as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4480for as_dir in $PATH
4481do
4482 IFS=$as_save_IFS
4483 test -z "$as_dir" && as_dir=.
4484 for ac_exec_ext in '' $ac_executable_extensions; do
4485 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4486 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
4487 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4488 break 2
4489 fi
4490done
4491done
4492
252b5132
RH
4493fi
4494fi
42ecbf5e 4495CC=$ac_cv_prog_CC
d15b04bd 4496if test -n "$CC"; then
42ecbf5e
DJ
4497 echo "$as_me:$LINENO: result: $CC" >&5
4498echo "${ECHO_T}$CC" >&6
252b5132 4499else
42ecbf5e
DJ
4500 echo "$as_me:$LINENO: result: no" >&5
4501echo "${ECHO_T}no" >&6
d15b04bd 4502fi
42ecbf5e
DJ
4503
4504 test -n "$CC" && break
4505 done
4506fi
4507if test -z "$CC"; then
4508 ac_ct_CC=$CC
4509 for ac_prog in cl
4510do
4511 # Extract the first word of "$ac_prog", so it can be a program name with args.
4512set dummy $ac_prog; ac_word=$2
4513echo "$as_me:$LINENO: checking for $ac_word" >&5
4514echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4515if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
4516 echo $ECHO_N "(cached) $ECHO_C" >&6
4517else
4518 if test -n "$ac_ct_CC"; then
4519 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
4520else
4521as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4522for as_dir in $PATH
4523do
4524 IFS=$as_save_IFS
4525 test -z "$as_dir" && as_dir=.
4526 for ac_exec_ext in '' $ac_executable_extensions; do
4527 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4528 ac_cv_prog_ac_ct_CC="$ac_prog"
4529 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4530 break 2
d15b04bd 4531 fi
42ecbf5e
DJ
4532done
4533done
4534
4535fi
4536fi
4537ac_ct_CC=$ac_cv_prog_ac_ct_CC
4538if test -n "$ac_ct_CC"; then
4539 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
4540echo "${ECHO_T}$ac_ct_CC" >&6
4541else
4542 echo "$as_me:$LINENO: result: no" >&5
4543echo "${ECHO_T}no" >&6
252b5132
RH
4544fi
4545
42ecbf5e
DJ
4546 test -n "$ac_ct_CC" && break
4547done
e5a52504 4548
42ecbf5e
DJ
4549 CC=$ac_ct_CC
4550fi
4551
4552fi
4553
4554
4555test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
4556See \`config.log' for more details." >&5
4557echo "$as_me: error: no acceptable C compiler found in \$PATH
4558See \`config.log' for more details." >&2;}
4559 { (exit 1); exit 1; }; }
4560
4561# Provide some information about the compiler.
4562echo "$as_me:$LINENO:" \
4563 "checking for C compiler version" >&5
4564ac_compiler=`set X $ac_compile; echo $2`
4565{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
4566 (eval $ac_compiler --version </dev/null >&5) 2>&5
4567 ac_status=$?
4568 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4569 (exit $ac_status); }
4570{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
4571 (eval $ac_compiler -v </dev/null >&5) 2>&5
4572 ac_status=$?
4573 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4574 (exit $ac_status); }
4575{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
4576 (eval $ac_compiler -V </dev/null >&5) 2>&5
4577 ac_status=$?
4578 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4579 (exit $ac_status); }
4580
4581echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
4582echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
4583if test "${ac_cv_c_compiler_gnu+set}" = set; then
4584 echo $ECHO_N "(cached) $ECHO_C" >&6
4585else
4586 cat >conftest.$ac_ext <<_ACEOF
4587/* confdefs.h. */
4588_ACEOF
4589cat confdefs.h >>conftest.$ac_ext
4590cat >>conftest.$ac_ext <<_ACEOF
4591/* end confdefs.h. */
4592
4593int
4594main ()
4595{
4596#ifndef __GNUC__
4597 choke me
4598#endif
e5a52504 4599
42ecbf5e
DJ
4600 ;
4601 return 0;
4602}
4603_ACEOF
4604rm -f conftest.$ac_objext
4605if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4606 (eval $ac_compile) 2>conftest.er1
4607 ac_status=$?
4608 grep -v '^ *+' conftest.er1 >conftest.err
4609 rm -f conftest.er1
4610 cat conftest.err >&5
4611 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4612 (exit $ac_status); } &&
b7d4af3a
JW
4613 { ac_try='test -z "$ac_c_werror_flag"
4614 || test ! -s conftest.err'
42ecbf5e
DJ
4615 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4616 (eval $ac_try) 2>&5
4617 ac_status=$?
4618 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4619 (exit $ac_status); }; } &&
4620 { ac_try='test -s conftest.$ac_objext'
4621 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4622 (eval $ac_try) 2>&5
4623 ac_status=$?
4624 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4625 (exit $ac_status); }; }; then
4626 ac_compiler_gnu=yes
4627else
4628 echo "$as_me: failed program was:" >&5
4629sed 's/^/| /' conftest.$ac_ext >&5
4630
4631ac_compiler_gnu=no
4632fi
4633rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4634ac_cv_c_compiler_gnu=$ac_compiler_gnu
4635
4636fi
4637echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
4638echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
4639GCC=`test $ac_compiler_gnu = yes && echo yes`
4640ac_test_CFLAGS=${CFLAGS+set}
4641ac_save_CFLAGS=$CFLAGS
4642CFLAGS="-g"
4643echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
4644echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
4645if test "${ac_cv_prog_cc_g+set}" = set; then
4646 echo $ECHO_N "(cached) $ECHO_C" >&6
4647else
4648 cat >conftest.$ac_ext <<_ACEOF
4649/* confdefs.h. */
4650_ACEOF
4651cat confdefs.h >>conftest.$ac_ext
4652cat >>conftest.$ac_ext <<_ACEOF
4653/* end confdefs.h. */
252b5132 4654
42ecbf5e
DJ
4655int
4656main ()
4657{
d15b04bd 4658
42ecbf5e
DJ
4659 ;
4660 return 0;
4661}
4662_ACEOF
4663rm -f conftest.$ac_objext
4664if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4665 (eval $ac_compile) 2>conftest.er1
4666 ac_status=$?
4667 grep -v '^ *+' conftest.er1 >conftest.err
4668 rm -f conftest.er1
4669 cat conftest.err >&5
4670 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4671 (exit $ac_status); } &&
b7d4af3a
JW
4672 { ac_try='test -z "$ac_c_werror_flag"
4673 || test ! -s conftest.err'
42ecbf5e
DJ
4674 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4675 (eval $ac_try) 2>&5
4676 ac_status=$?
4677 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4678 (exit $ac_status); }; } &&
4679 { ac_try='test -s conftest.$ac_objext'
4680 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4681 (eval $ac_try) 2>&5
4682 ac_status=$?
4683 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4684 (exit $ac_status); }; }; then
4685 ac_cv_prog_cc_g=yes
4686else
4687 echo "$as_me: failed program was:" >&5
4688sed 's/^/| /' conftest.$ac_ext >&5
4689
4690ac_cv_prog_cc_g=no
4691fi
4692rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4693fi
4694echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
4695echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
4696if test "$ac_test_CFLAGS" = set; then
4697 CFLAGS=$ac_save_CFLAGS
4698elif test $ac_cv_prog_cc_g = yes; then
4699 if test "$GCC" = yes; then
4700 CFLAGS="-g -O2"
d15b04bd 4701 else
42ecbf5e 4702 CFLAGS="-g"
d15b04bd 4703 fi
252b5132 4704else
42ecbf5e
DJ
4705 if test "$GCC" = yes; then
4706 CFLAGS="-O2"
4707 else
4708 CFLAGS=
4709 fi
252b5132 4710fi
42ecbf5e
DJ
4711echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
4712echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
4713if test "${ac_cv_prog_cc_stdc+set}" = set; then
4714 echo $ECHO_N "(cached) $ECHO_C" >&6
4715else
4716 ac_cv_prog_cc_stdc=no
4717ac_save_CC=$CC
4718cat >conftest.$ac_ext <<_ACEOF
4719/* confdefs.h. */
4720_ACEOF
4721cat confdefs.h >>conftest.$ac_ext
4722cat >>conftest.$ac_ext <<_ACEOF
4723/* end confdefs.h. */
4724#include <stdarg.h>
4725#include <stdio.h>
4726#include <sys/types.h>
4727#include <sys/stat.h>
4728/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
4729struct buf { int x; };
4730FILE * (*rcsopen) (struct buf *, struct stat *, int);
4731static char *e (p, i)
4732 char **p;
4733 int i;
4734{
4735 return p[i];
4736}
4737static char *f (char * (*g) (char **, int), char **p, ...)
4738{
4739 char *s;
4740 va_list v;
4741 va_start (v,p);
4742 s = g (p, va_arg (v,int));
4743 va_end (v);
4744 return s;
4745}
252b5132 4746
42ecbf5e
DJ
4747/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
4748 function prototypes and stuff, but not '\xHH' hex character constants.
4749 These don't provoke an error unfortunately, instead are silently treated
4750 as 'x'. The following induces an error, until -std1 is added to get
4751 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
4752 array size at least. It's necessary to write '\x00'==0 to get something
4753 that's true only with -std1. */
4754int osf4_cc_array ['\x00' == 0 ? 1 : -1];
4755
4756int test (int i, double x);
4757struct s1 {int (*f) (int a);};
4758struct s2 {int (*f) (double a);};
4759int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
4760int argc;
4761char **argv;
4762int
4763main ()
4764{
4765return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
4766 ;
4767 return 0;
4768}
4769_ACEOF
4770# Don't try gcc -ansi; that turns off useful extensions and
4771# breaks some systems' header files.
4772# AIX -qlanglvl=ansi
4773# Ultrix and OSF/1 -std1
4774# HP-UX 10.20 and later -Ae
4775# HP-UX older versions -Aa -D_HPUX_SOURCE
4776# SVR4 -Xc -D__EXTENSIONS__
4777for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
4778do
4779 CC="$ac_save_CC $ac_arg"
4780 rm -f conftest.$ac_objext
4781if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4782 (eval $ac_compile) 2>conftest.er1
4783 ac_status=$?
4784 grep -v '^ *+' conftest.er1 >conftest.err
4785 rm -f conftest.er1
4786 cat conftest.err >&5
4787 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4788 (exit $ac_status); } &&
b7d4af3a
JW
4789 { ac_try='test -z "$ac_c_werror_flag"
4790 || test ! -s conftest.err'
42ecbf5e
DJ
4791 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4792 (eval $ac_try) 2>&5
4793 ac_status=$?
4794 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4795 (exit $ac_status); }; } &&
4796 { ac_try='test -s conftest.$ac_objext'
4797 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4798 (eval $ac_try) 2>&5
4799 ac_status=$?
4800 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4801 (exit $ac_status); }; }; then
4802 ac_cv_prog_cc_stdc=$ac_arg
4803break
252b5132 4804else
42ecbf5e
DJ
4805 echo "$as_me: failed program was:" >&5
4806sed 's/^/| /' conftest.$ac_ext >&5
4807
252b5132 4808fi
42ecbf5e
DJ
4809rm -f conftest.err conftest.$ac_objext
4810done
4811rm -f conftest.$ac_ext conftest.$ac_objext
4812CC=$ac_save_CC
4813
252b5132 4814fi
e5a52504 4815
42ecbf5e
DJ
4816case "x$ac_cv_prog_cc_stdc" in
4817 x|xno)
4818 echo "$as_me:$LINENO: result: none needed" >&5
4819echo "${ECHO_T}none needed" >&6 ;;
4820 *)
4821 echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
4822echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
4823 CC="$CC $ac_cv_prog_cc_stdc" ;;
4824esac
e5a52504 4825
42ecbf5e
DJ
4826# Some people use a C++ compiler to compile C. Since we use `exit',
4827# in C++ we need to declare it. In case someone uses the same compiler
4828# for both compiling C and C++ we need to have the C++ compiler decide
4829# the declaration of exit, since it's the most demanding environment.
4830cat >conftest.$ac_ext <<_ACEOF
4831#ifndef __cplusplus
4832 choke me
4833#endif
4834_ACEOF
4835rm -f conftest.$ac_objext
4836if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4837 (eval $ac_compile) 2>conftest.er1
4838 ac_status=$?
4839 grep -v '^ *+' conftest.er1 >conftest.err
4840 rm -f conftest.er1
4841 cat conftest.err >&5
4842 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4843 (exit $ac_status); } &&
b7d4af3a
JW
4844 { ac_try='test -z "$ac_c_werror_flag"
4845 || test ! -s conftest.err'
42ecbf5e
DJ
4846 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4847 (eval $ac_try) 2>&5
4848 ac_status=$?
4849 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4850 (exit $ac_status); }; } &&
4851 { ac_try='test -s conftest.$ac_objext'
4852 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4853 (eval $ac_try) 2>&5
4854 ac_status=$?
4855 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4856 (exit $ac_status); }; }; then
4857 for ac_declaration in \
4858 '' \
4859 'extern "C" void std::exit (int) throw (); using std::exit;' \
4860 'extern "C" void std::exit (int); using std::exit;' \
4861 'extern "C" void exit (int) throw ();' \
4862 'extern "C" void exit (int);' \
4863 'void exit (int);'
4864do
4865 cat >conftest.$ac_ext <<_ACEOF
4866/* confdefs.h. */
4867_ACEOF
4868cat confdefs.h >>conftest.$ac_ext
4869cat >>conftest.$ac_ext <<_ACEOF
4870/* end confdefs.h. */
4871$ac_declaration
4872#include <stdlib.h>
4873int
4874main ()
4875{
4876exit (42);
4877 ;
4878 return 0;
4879}
4880_ACEOF
4881rm -f conftest.$ac_objext
4882if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4883 (eval $ac_compile) 2>conftest.er1
4884 ac_status=$?
4885 grep -v '^ *+' conftest.er1 >conftest.err
4886 rm -f conftest.er1
4887 cat conftest.err >&5
4888 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4889 (exit $ac_status); } &&
b7d4af3a
JW
4890 { ac_try='test -z "$ac_c_werror_flag"
4891 || test ! -s conftest.err'
42ecbf5e
DJ
4892 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4893 (eval $ac_try) 2>&5
4894 ac_status=$?
4895 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4896 (exit $ac_status); }; } &&
4897 { ac_try='test -s conftest.$ac_objext'
4898 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4899 (eval $ac_try) 2>&5
4900 ac_status=$?
4901 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4902 (exit $ac_status); }; }; then
4903 :
d15b04bd 4904else
42ecbf5e
DJ
4905 echo "$as_me: failed program was:" >&5
4906sed 's/^/| /' conftest.$ac_ext >&5
252b5132 4907
42ecbf5e
DJ
4908continue
4909fi
4910rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4911 cat >conftest.$ac_ext <<_ACEOF
4912/* confdefs.h. */
4913_ACEOF
4914cat confdefs.h >>conftest.$ac_ext
4915cat >>conftest.$ac_ext <<_ACEOF
4916/* end confdefs.h. */
4917$ac_declaration
4918int
4919main ()
4920{
4921exit (42);
4922 ;
4923 return 0;
4924}
4925_ACEOF
4926rm -f conftest.$ac_objext
4927if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4928 (eval $ac_compile) 2>conftest.er1
4929 ac_status=$?
4930 grep -v '^ *+' conftest.er1 >conftest.err
4931 rm -f conftest.er1
4932 cat conftest.err >&5
4933 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4934 (exit $ac_status); } &&
b7d4af3a
JW
4935 { ac_try='test -z "$ac_c_werror_flag"
4936 || test ! -s conftest.err'
42ecbf5e
DJ
4937 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4938 (eval $ac_try) 2>&5
4939 ac_status=$?
4940 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4941 (exit $ac_status); }; } &&
4942 { ac_try='test -s conftest.$ac_objext'
4943 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4944 (eval $ac_try) 2>&5
4945 ac_status=$?
4946 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4947 (exit $ac_status); }; }; then
4948 break
d15b04bd 4949else
42ecbf5e
DJ
4950 echo "$as_me: failed program was:" >&5
4951sed 's/^/| /' conftest.$ac_ext >&5
4952
252b5132 4953fi
42ecbf5e
DJ
4954rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4955done
d15b04bd 4956rm -f conftest*
42ecbf5e
DJ
4957if test -n "$ac_declaration"; then
4958 echo '#ifdef __cplusplus' >>confdefs.h
4959 echo $ac_declaration >>confdefs.h
4960 echo '#endif' >>confdefs.h
d15b04bd 4961fi
252b5132 4962
ac48eca1 4963else
42ecbf5e
DJ
4964 echo "$as_me: failed program was:" >&5
4965sed 's/^/| /' conftest.$ac_ext >&5
4966
d15b04bd 4967fi
42ecbf5e
DJ
4968rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4969ac_ext=c
4970ac_cpp='$CPP $CPPFLAGS'
4971ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
4972ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
4973ac_compiler_gnu=$ac_cv_c_compiler_gnu
e5a52504 4974
d15b04bd 4975
3e321448
L
4976cat >>confdefs.h <<\_ACEOF
4977#define _GNU_SOURCE 1
4978_ACEOF
4979
4980
4981
d15b04bd
L
4982for ac_prog in 'bison -y' byacc
4983do
42ecbf5e 4984 # Extract the first word of "$ac_prog", so it can be a program name with args.
d15b04bd 4985set dummy $ac_prog; ac_word=$2
42ecbf5e
DJ
4986echo "$as_me:$LINENO: checking for $ac_word" >&5
4987echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4988if test "${ac_cv_prog_YACC+set}" = set; then
4989 echo $ECHO_N "(cached) $ECHO_C" >&6
d15b04bd
L
4990else
4991 if test -n "$YACC"; then
4992 ac_cv_prog_YACC="$YACC" # Let the user override the test.
4993else
42ecbf5e
DJ
4994as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4995for as_dir in $PATH
4996do
4997 IFS=$as_save_IFS
4998 test -z "$as_dir" && as_dir=.
4999 for ac_exec_ext in '' $ac_executable_extensions; do
5000 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5001 ac_cv_prog_YACC="$ac_prog"
5002 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5003 break 2
5004 fi
5005done
5006done
5007
ac48eca1
AO
5008fi
5009fi
42ecbf5e 5010YACC=$ac_cv_prog_YACC
d15b04bd 5011if test -n "$YACC"; then
42ecbf5e
DJ
5012 echo "$as_me:$LINENO: result: $YACC" >&5
5013echo "${ECHO_T}$YACC" >&6
e5a52504 5014else
42ecbf5e
DJ
5015 echo "$as_me:$LINENO: result: no" >&5
5016echo "${ECHO_T}no" >&6
e5a52504
MM
5017fi
5018
42ecbf5e 5019 test -n "$YACC" && break
d15b04bd
L
5020done
5021test -n "$YACC" || YACC="yacc"
5022
d15b04bd
L
5023for ac_prog in flex lex
5024do
42ecbf5e 5025 # Extract the first word of "$ac_prog", so it can be a program name with args.
d15b04bd 5026set dummy $ac_prog; ac_word=$2
42ecbf5e
DJ
5027echo "$as_me:$LINENO: checking for $ac_word" >&5
5028echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
5029if test "${ac_cv_prog_LEX+set}" = set; then
5030 echo $ECHO_N "(cached) $ECHO_C" >&6
d15b04bd
L
5031else
5032 if test -n "$LEX"; then
5033 ac_cv_prog_LEX="$LEX" # Let the user override the test.
5034else
42ecbf5e
DJ
5035as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5036for as_dir in $PATH
5037do
5038 IFS=$as_save_IFS
5039 test -z "$as_dir" && as_dir=.
5040 for ac_exec_ext in '' $ac_executable_extensions; do
5041 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5042 ac_cv_prog_LEX="$ac_prog"
5043 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5044 break 2
5045 fi
5046done
d15b04bd 5047done
d15b04bd 5048
d15b04bd 5049fi
e5a52504 5050fi
42ecbf5e 5051LEX=$ac_cv_prog_LEX
d15b04bd 5052if test -n "$LEX"; then
42ecbf5e
DJ
5053 echo "$as_me:$LINENO: result: $LEX" >&5
5054echo "${ECHO_T}$LEX" >&6
e5a52504 5055else
42ecbf5e
DJ
5056 echo "$as_me:$LINENO: result: no" >&5
5057echo "${ECHO_T}no" >&6
e5a52504 5058fi
e5a52504 5059
42ecbf5e
DJ
5060 test -n "$LEX" && break
5061done
5062test -n "$LEX" || LEX=":"
5063
d15b04bd
L
5064if test -z "$LEXLIB"
5065then
42ecbf5e
DJ
5066 echo "$as_me:$LINENO: checking for yywrap in -lfl" >&5
5067echo $ECHO_N "checking for yywrap in -lfl... $ECHO_C" >&6
5068if test "${ac_cv_lib_fl_yywrap+set}" = set; then
5069 echo $ECHO_N "(cached) $ECHO_C" >&6
5070else
5071 ac_check_lib_save_LIBS=$LIBS
5072LIBS="-lfl $LIBS"
5073cat >conftest.$ac_ext <<_ACEOF
5074/* confdefs.h. */
5075_ACEOF
5076cat confdefs.h >>conftest.$ac_ext
5077cat >>conftest.$ac_ext <<_ACEOF
5078/* end confdefs.h. */
5079
d15b04bd 5080/* Override any gcc2 internal prototype to avoid an error. */
42ecbf5e
DJ
5081#ifdef __cplusplus
5082extern "C"
5083#endif
d15b04bd 5084/* We use char because int might match the return type of a gcc2
42ecbf5e
DJ
5085 builtin and then its argument prototype would still apply. */
5086char yywrap ();
5087int
5088main ()
5089{
5090yywrap ();
5091 ;
5092 return 0;
5093}
5094_ACEOF
5095rm -f conftest.$ac_objext conftest$ac_exeext
5096if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5097 (eval $ac_link) 2>conftest.er1
5098 ac_status=$?
5099 grep -v '^ *+' conftest.er1 >conftest.err
5100 rm -f conftest.er1
5101 cat conftest.err >&5
5102 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5103 (exit $ac_status); } &&
b7d4af3a
JW
5104 { ac_try='test -z "$ac_c_werror_flag"
5105 || test ! -s conftest.err'
42ecbf5e
DJ
5106 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5107 (eval $ac_try) 2>&5
5108 ac_status=$?
5109 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5110 (exit $ac_status); }; } &&
5111 { ac_try='test -s conftest$ac_exeext'
5112 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5113 (eval $ac_try) 2>&5
5114 ac_status=$?
5115 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5116 (exit $ac_status); }; }; then
5117 ac_cv_lib_fl_yywrap=yes
5118else
5119 echo "$as_me: failed program was:" >&5
5120sed 's/^/| /' conftest.$ac_ext >&5
5121
5122ac_cv_lib_fl_yywrap=no
5123fi
5124rm -f conftest.err conftest.$ac_objext \
5125 conftest$ac_exeext conftest.$ac_ext
5126LIBS=$ac_check_lib_save_LIBS
5127fi
5128echo "$as_me:$LINENO: result: $ac_cv_lib_fl_yywrap" >&5
5129echo "${ECHO_T}$ac_cv_lib_fl_yywrap" >&6
5130if test $ac_cv_lib_fl_yywrap = yes; then
5131 LEXLIB="-lfl"
5132else
5133 echo "$as_me:$LINENO: checking for yywrap in -ll" >&5
5134echo $ECHO_N "checking for yywrap in -ll... $ECHO_C" >&6
5135if test "${ac_cv_lib_l_yywrap+set}" = set; then
5136 echo $ECHO_N "(cached) $ECHO_C" >&6
5137else
5138 ac_check_lib_save_LIBS=$LIBS
5139LIBS="-ll $LIBS"
5140cat >conftest.$ac_ext <<_ACEOF
5141/* confdefs.h. */
5142_ACEOF
5143cat confdefs.h >>conftest.$ac_ext
5144cat >>conftest.$ac_ext <<_ACEOF
5145/* end confdefs.h. */
d15b04bd 5146
42ecbf5e
DJ
5147/* Override any gcc2 internal prototype to avoid an error. */
5148#ifdef __cplusplus
5149extern "C"
5150#endif
5151/* We use char because int might match the return type of a gcc2
5152 builtin and then its argument prototype would still apply. */
5153char yywrap ();
5154int
5155main ()
5156{
5157yywrap ();
5158 ;
5159 return 0;
5160}
5161_ACEOF
5162rm -f conftest.$ac_objext conftest$ac_exeext
5163if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5164 (eval $ac_link) 2>conftest.er1
5165 ac_status=$?
5166 grep -v '^ *+' conftest.er1 >conftest.err
5167 rm -f conftest.er1
5168 cat conftest.err >&5
5169 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5170 (exit $ac_status); } &&
b7d4af3a
JW
5171 { ac_try='test -z "$ac_c_werror_flag"
5172 || test ! -s conftest.err'
42ecbf5e
DJ
5173 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5174 (eval $ac_try) 2>&5
5175 ac_status=$?
5176 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5177 (exit $ac_status); }; } &&
5178 { ac_try='test -s conftest$ac_exeext'
5179 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5180 (eval $ac_try) 2>&5
5181 ac_status=$?
5182 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5183 (exit $ac_status); }; }; then
5184 ac_cv_lib_l_yywrap=yes
5185else
5186 echo "$as_me: failed program was:" >&5
5187sed 's/^/| /' conftest.$ac_ext >&5
5188
5189ac_cv_lib_l_yywrap=no
5190fi
5191rm -f conftest.err conftest.$ac_objext \
5192 conftest$ac_exeext conftest.$ac_ext
5193LIBS=$ac_check_lib_save_LIBS
5194fi
5195echo "$as_me:$LINENO: result: $ac_cv_lib_l_yywrap" >&5
5196echo "${ECHO_T}$ac_cv_lib_l_yywrap" >&6
5197if test $ac_cv_lib_l_yywrap = yes; then
5198 LEXLIB="-ll"
5199fi
5200
5201fi
5202
5203fi
5204
5205if test "x$LEX" != "x:"; then
5206 echo "$as_me:$LINENO: checking lex output file root" >&5
5207echo $ECHO_N "checking lex output file root... $ECHO_C" >&6
5208if test "${ac_cv_prog_lex_root+set}" = set; then
5209 echo $ECHO_N "(cached) $ECHO_C" >&6
e5a52504 5210else
d15b04bd
L
5211 # The minimal lex program is just a single line: %%. But some broken lexes
5212# (Solaris, I think it was) want two %% lines, so accommodate them.
42ecbf5e
DJ
5213cat >conftest.l <<_ACEOF
5214%%
5215%%
5216_ACEOF
5217{ (eval echo "$as_me:$LINENO: \"$LEX conftest.l\"") >&5
5218 (eval $LEX conftest.l) 2>&5
5219 ac_status=$?
5220 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5221 (exit $ac_status); }
d15b04bd
L
5222if test -f lex.yy.c; then
5223 ac_cv_prog_lex_root=lex.yy
5224elif test -f lexyy.c; then
5225 ac_cv_prog_lex_root=lexyy
e5a52504 5226else
42ecbf5e
DJ
5227 { { echo "$as_me:$LINENO: error: cannot find output from $LEX; giving up" >&5
5228echo "$as_me: error: cannot find output from $LEX; giving up" >&2;}
5229 { (exit 1); exit 1; }; }
e5a52504 5230fi
d15b04bd 5231fi
42ecbf5e
DJ
5232echo "$as_me:$LINENO: result: $ac_cv_prog_lex_root" >&5
5233echo "${ECHO_T}$ac_cv_prog_lex_root" >&6
5234rm -f conftest.l
d15b04bd
L
5235LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root
5236
42ecbf5e
DJ
5237echo "$as_me:$LINENO: checking whether yytext is a pointer" >&5
5238echo $ECHO_N "checking whether yytext is a pointer... $ECHO_C" >&6
5239if test "${ac_cv_prog_lex_yytext_pointer+set}" = set; then
5240 echo $ECHO_N "(cached) $ECHO_C" >&6
e5a52504 5241else
d15b04bd
L
5242 # POSIX says lex can declare yytext either as a pointer or an array; the
5243# default is implementation-dependent. Figure out which it is, since
5244# not all implementations provide the %pointer and %array declarations.
5245ac_cv_prog_lex_yytext_pointer=no
5246echo 'extern char *yytext;' >>$LEX_OUTPUT_ROOT.c
42ecbf5e 5247ac_save_LIBS=$LIBS
d15b04bd 5248LIBS="$LIBS $LEXLIB"
42ecbf5e 5249cat >conftest.$ac_ext <<_ACEOF
d15b04bd 5250`cat $LEX_OUTPUT_ROOT.c`
42ecbf5e
DJ
5251_ACEOF
5252rm -f conftest.$ac_objext conftest$ac_exeext
5253if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5254 (eval $ac_link) 2>conftest.er1
5255 ac_status=$?
5256 grep -v '^ *+' conftest.er1 >conftest.err
5257 rm -f conftest.er1
5258 cat conftest.err >&5
5259 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5260 (exit $ac_status); } &&
b7d4af3a
JW
5261 { ac_try='test -z "$ac_c_werror_flag"
5262 || test ! -s conftest.err'
42ecbf5e
DJ
5263 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5264 (eval $ac_try) 2>&5
5265 ac_status=$?
5266 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5267 (exit $ac_status); }; } &&
5268 { ac_try='test -s conftest$ac_exeext'
5269 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5270 (eval $ac_try) 2>&5
5271 ac_status=$?
5272 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5273 (exit $ac_status); }; }; then
d15b04bd
L
5274 ac_cv_prog_lex_yytext_pointer=yes
5275else
42ecbf5e
DJ
5276 echo "$as_me: failed program was:" >&5
5277sed 's/^/| /' conftest.$ac_ext >&5
5278
e5a52504 5279fi
42ecbf5e
DJ
5280rm -f conftest.err conftest.$ac_objext \
5281 conftest$ac_exeext conftest.$ac_ext
5282LIBS=$ac_save_LIBS
d15b04bd 5283rm -f "${LEX_OUTPUT_ROOT}.c"
e5a52504 5284
e5a52504 5285fi
42ecbf5e
DJ
5286echo "$as_me:$LINENO: result: $ac_cv_prog_lex_yytext_pointer" >&5
5287echo "${ECHO_T}$ac_cv_prog_lex_yytext_pointer" >&6
d15b04bd 5288if test $ac_cv_prog_lex_yytext_pointer = yes; then
42ecbf5e
DJ
5289
5290cat >>confdefs.h <<\_ACEOF
d15b04bd 5291#define YYTEXT_POINTER 1
42ecbf5e 5292_ACEOF
d15b04bd
L
5293
5294fi
e5a52504 5295
42ecbf5e
DJ
5296fi
5297if test "$LEX" = :; then
5298 LEX=${am_missing_run}flex
5299fi
e5a52504 5300
bdcfeba5 5301ALL_LINGUAS="fr tr ja es sv da zh_CN ru ro rw zh_TW fi vi"
20e95c23
DJ
5302# If we haven't got the data from the intl directory,
5303# assume NLS is disabled.
5304USE_NLS=no
5305LIBINTL=
5306LIBINTL_DEP=
5307INCINTL=
5308XGETTEXT=
5309GMSGFMT=
5310POSUB=
7148cc28
NC
5311
5312if test -f ../intl/config.intl; then
5313 . ../intl/config.intl
20e95c23
DJ
5314fi
5315echo "$as_me:$LINENO: checking whether NLS is requested" >&5
5316echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6
5317if test x"$USE_NLS" != xyes; then
5318 echo "$as_me:$LINENO: result: no" >&5
5319echo "${ECHO_T}no" >&6
e5a52504 5320else
20e95c23
DJ
5321 echo "$as_me:$LINENO: result: yes" >&5
5322echo "${ECHO_T}yes" >&6
5323
5324cat >>confdefs.h <<\_ACEOF
5325#define ENABLE_NLS 1
5326_ACEOF
5327
5328
5329 echo "$as_me:$LINENO: checking for catalogs to be installed" >&5
5330echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6
5331 # Look for .po and .gmo files in the source directory.
5332 CATALOGS=
5333 XLINGUAS=
5334 for cat in $srcdir/po/*.gmo $srcdir/po/*.po; do
5335 # If there aren't any .gmo files the shell will give us the
5336 # literal string "../path/to/srcdir/po/*.gmo" which has to be
5337 # weeded out.
5338 case "$cat" in *\**)
5339 continue;;
5340 esac
5341 # The quadruple backslash is collapsed to a double backslash
5342 # by the backticks, then collapsed again by the double quotes,
5343 # leaving us with one backslash in the sed expression (right
5344 # before the dot that mustn't act as a wildcard).
5345 cat=`echo $cat | sed -e "s!$srcdir/po/!!" -e "s!\\\\.po!.gmo!"`
5346 lang=`echo $cat | sed -e "s!\\\\.gmo!!"`
5347 # The user is allowed to set LINGUAS to a list of languages to
5348 # install catalogs for. If it's empty that means "all of them."
5349 if test "x$LINGUAS" = x; then
5350 CATALOGS="$CATALOGS $cat"
5351 XLINGUAS="$XLINGUAS $lang"
5352 else
5353 case "$LINGUAS" in *$lang*)
5354 CATALOGS="$CATALOGS $cat"
5355 XLINGUAS="$XLINGUAS $lang"
5356 ;;
5357 esac
5358 fi
5359 done
5360 LINGUAS="$XLINGUAS"
5361 echo "$as_me:$LINENO: result: $LINGUAS" >&5
5362echo "${ECHO_T}$LINGUAS" >&6
5363
5364
5365 DATADIRNAME=share
5366
5367 INSTOBJEXT=.mo
5368
5369 GENCAT=gencat
5370
5371 CATOBJEXT=.gmo
5372
5373fi
5374
5375 MKINSTALLDIRS=
5376 if test -n "$ac_aux_dir"; then
5377 case "$ac_aux_dir" in
5378 /*) MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" ;;
5379 *) MKINSTALLDIRS="\$(top_builddir)/$ac_aux_dir/mkinstalldirs" ;;
5380 esac
5381 fi
5382 if test -z "$MKINSTALLDIRS"; then
5383 MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs"
5384 fi
5385
5386
5387
5388 echo "$as_me:$LINENO: checking whether NLS is requested" >&5
5389echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6
5390 # Check whether --enable-nls or --disable-nls was given.
5391if test "${enable_nls+set}" = set; then
5392 enableval="$enable_nls"
5393 USE_NLS=$enableval
d15b04bd 5394else
20e95c23
DJ
5395 USE_NLS=yes
5396fi;
5397 echo "$as_me:$LINENO: result: $USE_NLS" >&5
5398echo "${ECHO_T}$USE_NLS" >&6
5399
5400
5401
5402
5403
5404
5405# Prepare PATH_SEPARATOR.
5406# The user is always right.
5407if test "${PATH_SEPARATOR+set}" != set; then
5408 echo "#! /bin/sh" >conf$$.sh
5409 echo "exit 0" >>conf$$.sh
5410 chmod +x conf$$.sh
5411 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
5412 PATH_SEPARATOR=';'
5413 else
5414 PATH_SEPARATOR=:
42ecbf5e 5415 fi
20e95c23
DJ
5416 rm -f conf$$.sh
5417fi
42ecbf5e 5418
20e95c23
DJ
5419# Find out how to test for executable files. Don't use a zero-byte file,
5420# as systems may use methods other than mode bits to determine executability.
5421cat >conf$$.file <<_ASEOF
5422#! /bin/sh
5423exit 0
5424_ASEOF
5425chmod +x conf$$.file
5426if test -x conf$$.file >/dev/null 2>&1; then
5427 ac_executable_p="test -x"
5428else
5429 ac_executable_p="test -f"
d15b04bd 5430fi
20e95c23
DJ
5431rm -f conf$$.file
5432
5433# Extract the first word of "msgfmt", so it can be a program name with args.
5434set dummy msgfmt; ac_word=$2
5435echo "$as_me:$LINENO: checking for $ac_word" >&5
5436echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
5437if test "${ac_cv_path_MSGFMT+set}" = set; then
5438 echo $ECHO_N "(cached) $ECHO_C" >&6
5439else
5440 case "$MSGFMT" in
5441 [\\/]* | ?:[\\/]*)
5442 ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path.
5443 ;;
5444 *)
5445 ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR
5446 for ac_dir in $PATH; do
5447 IFS="$ac_save_IFS"
5448 test -z "$ac_dir" && ac_dir=.
5449 for ac_exec_ext in '' $ac_executable_extensions; do
5450 if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then
5451 if $ac_dir/$ac_word --statistics /dev/null >/dev/null 2>&1 &&
5452 (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
5453 ac_cv_path_MSGFMT="$ac_dir/$ac_word$ac_exec_ext"
5454 break 2
5455 fi
5456 fi
5457 done
5458 done
5459 IFS="$ac_save_IFS"
5460 test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":"
5461 ;;
5462esac
d15b04bd 5463fi
20e95c23
DJ
5464MSGFMT="$ac_cv_path_MSGFMT"
5465if test "$MSGFMT" != ":"; then
5466 echo "$as_me:$LINENO: result: $MSGFMT" >&5
5467echo "${ECHO_T}$MSGFMT" >&6
42ecbf5e
DJ
5468else
5469 echo "$as_me:$LINENO: result: no" >&5
5470echo "${ECHO_T}no" >&6
5471fi
5472
20e95c23
DJ
5473 # Extract the first word of "gmsgfmt", so it can be a program name with args.
5474set dummy gmsgfmt; ac_word=$2
42ecbf5e
DJ
5475echo "$as_me:$LINENO: checking for $ac_word" >&5
5476echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
20e95c23 5477if test "${ac_cv_path_GMSGFMT+set}" = set; then
42ecbf5e
DJ
5478 echo $ECHO_N "(cached) $ECHO_C" >&6
5479else
20e95c23
DJ
5480 case $GMSGFMT in
5481 [\\/]* | ?:[\\/]*)
5482 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path.
5483 ;;
5484 *)
5485 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
42ecbf5e
DJ
5486for as_dir in $PATH
5487do
5488 IFS=$as_save_IFS
5489 test -z "$as_dir" && as_dir=.
5490 for ac_exec_ext in '' $ac_executable_extensions; do
5491 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
20e95c23 5492 ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext"
42ecbf5e
DJ
5493 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5494 break 2
5495 fi
5496done
5497done
5498
20e95c23
DJ
5499 test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT"
5500 ;;
5501esac
42ecbf5e 5502fi
20e95c23
DJ
5503GMSGFMT=$ac_cv_path_GMSGFMT
5504
5505if test -n "$GMSGFMT"; then
5506 echo "$as_me:$LINENO: result: $GMSGFMT" >&5
5507echo "${ECHO_T}$GMSGFMT" >&6
42ecbf5e
DJ
5508else
5509 echo "$as_me:$LINENO: result: no" >&5
5510echo "${ECHO_T}no" >&6
5511fi
5512
20e95c23
DJ
5513
5514
5515# Prepare PATH_SEPARATOR.
5516# The user is always right.
5517if test "${PATH_SEPARATOR+set}" != set; then
5518 echo "#! /bin/sh" >conf$$.sh
5519 echo "exit 0" >>conf$$.sh
5520 chmod +x conf$$.sh
5521 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
5522 PATH_SEPARATOR=';'
5523 else
5524 PATH_SEPARATOR=:
5525 fi
5526 rm -f conf$$.sh
42ecbf5e
DJ
5527fi
5528
20e95c23
DJ
5529# Find out how to test for executable files. Don't use a zero-byte file,
5530# as systems may use methods other than mode bits to determine executability.
5531cat >conf$$.file <<_ASEOF
5532#! /bin/sh
5533exit 0
5534_ASEOF
5535chmod +x conf$$.file
5536if test -x conf$$.file >/dev/null 2>&1; then
5537 ac_executable_p="test -x"
5538else
5539 ac_executable_p="test -f"
42ecbf5e 5540fi
20e95c23
DJ
5541rm -f conf$$.file
5542
5543# Extract the first word of "xgettext", so it can be a program name with args.
5544set dummy xgettext; ac_word=$2
5545echo "$as_me:$LINENO: checking for $ac_word" >&5
5546echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
5547if test "${ac_cv_path_XGETTEXT+set}" = set; then
42ecbf5e
DJ
5548 echo $ECHO_N "(cached) $ECHO_C" >&6
5549else
20e95c23
DJ
5550 case "$XGETTEXT" in
5551 [\\/]* | ?:[\\/]*)
5552 ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path.
5553 ;;
5554 *)
5555 ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR
5556 for ac_dir in $PATH; do
5557 IFS="$ac_save_IFS"
5558 test -z "$ac_dir" && ac_dir=.
5559 for ac_exec_ext in '' $ac_executable_extensions; do
5560 if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then
5561 if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 &&
5562 (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
5563 ac_cv_path_XGETTEXT="$ac_dir/$ac_word$ac_exec_ext"
5564 break 2
5565 fi
5566 fi
5567 done
5568 done
5569 IFS="$ac_save_IFS"
5570 test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":"
5571 ;;
5572esac
5573fi
5574XGETTEXT="$ac_cv_path_XGETTEXT"
5575if test "$XGETTEXT" != ":"; then
5576 echo "$as_me:$LINENO: result: $XGETTEXT" >&5
5577echo "${ECHO_T}$XGETTEXT" >&6
5578else
5579 echo "$as_me:$LINENO: result: no" >&5
5580echo "${ECHO_T}no" >&6
5581fi
5582
5583 rm -f messages.po
5584
5585
5586# Prepare PATH_SEPARATOR.
5587# The user is always right.
5588if test "${PATH_SEPARATOR+set}" != set; then
5589 echo "#! /bin/sh" >conf$$.sh
5590 echo "exit 0" >>conf$$.sh
5591 chmod +x conf$$.sh
5592 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
5593 PATH_SEPARATOR=';'
42ecbf5e 5594 else
20e95c23 5595 PATH_SEPARATOR=:
42ecbf5e 5596 fi
20e95c23 5597 rm -f conf$$.sh
42ecbf5e 5598fi
42ecbf5e 5599
20e95c23
DJ
5600# Find out how to test for executable files. Don't use a zero-byte file,
5601# as systems may use methods other than mode bits to determine executability.
5602cat >conf$$.file <<_ASEOF
5603#! /bin/sh
5604exit 0
5605_ASEOF
5606chmod +x conf$$.file
5607if test -x conf$$.file >/dev/null 2>&1; then
5608 ac_executable_p="test -x"
5609else
5610 ac_executable_p="test -f"
42ecbf5e 5611fi
20e95c23 5612rm -f conf$$.file
42ecbf5e 5613
20e95c23
DJ
5614# Extract the first word of "msgmerge", so it can be a program name with args.
5615set dummy msgmerge; ac_word=$2
5616echo "$as_me:$LINENO: checking for $ac_word" >&5
5617echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
5618if test "${ac_cv_path_MSGMERGE+set}" = set; then
5619 echo $ECHO_N "(cached) $ECHO_C" >&6
42ecbf5e 5620else
20e95c23
DJ
5621 case "$MSGMERGE" in
5622 [\\/]* | ?:[\\/]*)
5623 ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path.
5624 ;;
5625 *)
5626 ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR
5627 for ac_dir in $PATH; do
5628 IFS="$ac_save_IFS"
5629 test -z "$ac_dir" && ac_dir=.
5630 for ac_exec_ext in '' $ac_executable_extensions; do
5631 if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then
5632 if $ac_dir/$ac_word --update -q /dev/null /dev/null >/dev/null 2>&1; then
5633 ac_cv_path_MSGMERGE="$ac_dir/$ac_word$ac_exec_ext"
5634 break 2
5635 fi
5636 fi
5637 done
5638 done
5639 IFS="$ac_save_IFS"
5640 test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":"
5641 ;;
5642esac
42ecbf5e 5643fi
20e95c23
DJ
5644MSGMERGE="$ac_cv_path_MSGMERGE"
5645if test "$MSGMERGE" != ":"; then
5646 echo "$as_me:$LINENO: result: $MSGMERGE" >&5
5647echo "${ECHO_T}$MSGMERGE" >&6
42ecbf5e 5648else
20e95c23
DJ
5649 echo "$as_me:$LINENO: result: no" >&5
5650echo "${ECHO_T}no" >&6
42ecbf5e 5651fi
42ecbf5e 5652
42ecbf5e 5653
20e95c23
DJ
5654 if test "$GMSGFMT" != ":"; then
5655 if $GMSGFMT --statistics /dev/null >/dev/null 2>&1 &&
5656 (if $GMSGFMT --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
5657 : ;
5658 else
5659 GMSGFMT=`echo "$GMSGFMT" | sed -e 's,^.*/,,'`
5660 echo "$as_me:$LINENO: result: found $GMSGFMT program is not GNU msgfmt; ignore it" >&5
5661echo "${ECHO_T}found $GMSGFMT program is not GNU msgfmt; ignore it" >&6
5662 GMSGFMT=":"
5663 fi
5664 fi
42ecbf5e 5665
20e95c23
DJ
5666 if test "$XGETTEXT" != ":"; then
5667 if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 &&
5668 (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
5669 : ;
5670 else
5671 echo "$as_me:$LINENO: result: found xgettext program is not GNU xgettext; ignore it" >&5
5672echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6
5673 XGETTEXT=":"
5674 fi
5675 rm -f messages.po
42ecbf5e 5676 fi
42ecbf5e 5677
20e95c23 5678 ac_config_commands="$ac_config_commands default-1"
42ecbf5e 5679
42ecbf5e 5680
42ecbf5e 5681
20e95c23
DJ
5682echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5
5683echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6
5684 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
5685if test "${enable_maintainer_mode+set}" = set; then
5686 enableval="$enable_maintainer_mode"
5687 USE_MAINTAINER_MODE=$enableval
42ecbf5e 5688else
20e95c23
DJ
5689 USE_MAINTAINER_MODE=no
5690fi;
5691 echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5
5692echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6
42ecbf5e
DJ
5693
5694
20e95c23
DJ
5695if test $USE_MAINTAINER_MODE = yes; then
5696 MAINTAINER_MODE_TRUE=
5697 MAINTAINER_MODE_FALSE='#'
d15b04bd 5698else
20e95c23
DJ
5699 MAINTAINER_MODE_TRUE='#'
5700 MAINTAINER_MODE_FALSE=
e5a52504 5701fi
42ecbf5e 5702
20e95c23 5703 MAINT=$MAINTAINER_MODE_TRUE
ac48eca1 5704
42ecbf5e 5705
42ecbf5e 5706
d5fbea21
DJ
5707
5708if false; then
5709 GENINSRC_NEVER_TRUE=
5710 GENINSRC_NEVER_FALSE='#'
5711else
5712 GENINSRC_NEVER_TRUE='#'
5713 GENINSRC_NEVER_FALSE=
5714fi
5715
5716
20e95c23
DJ
5717if test -n "$EXEEXT"; then
5718
5719cat >>confdefs.h <<\_ACEOF
5720#define HAVE_EXECUTABLE_SUFFIX 1
42ecbf5e 5721_ACEOF
42ecbf5e 5722
252b5132 5723fi
252b5132 5724
20e95c23
DJ
5725cat >>confdefs.h <<_ACEOF
5726#define EXECUTABLE_SUFFIX "${EXEEXT}"
42ecbf5e 5727_ACEOF
42ecbf5e 5728
252b5132 5729
20e95c23 5730# host-specific stuff:
252b5132 5731
20e95c23 5732HDEFINES=
42ecbf5e 5733
20e95c23 5734. ${srcdir}/../bfd/configure.host
252b5132 5735
252b5132 5736
20e95c23 5737AR=${AR-ar}
d15b04bd 5738
20e95c23
DJ
5739if test -n "$ac_tool_prefix"; then
5740 # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
5741set dummy ${ac_tool_prefix}ranlib; ac_word=$2
5742echo "$as_me:$LINENO: checking for $ac_word" >&5
5743echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
5744if test "${ac_cv_prog_RANLIB+set}" = set; then
5745 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 5746else
20e95c23
DJ
5747 if test -n "$RANLIB"; then
5748 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
5749else
5750as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5751for as_dir in $PATH
5752do
5753 IFS=$as_save_IFS
5754 test -z "$as_dir" && as_dir=.
5755 for ac_exec_ext in '' $ac_executable_extensions; do
5756 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5757 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
5758 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5759 break 2
5760 fi
5761done
5762done
42ecbf5e 5763
252b5132 5764fi
252b5132 5765fi
20e95c23
DJ
5766RANLIB=$ac_cv_prog_RANLIB
5767if test -n "$RANLIB"; then
5768 echo "$as_me:$LINENO: result: $RANLIB" >&5
5769echo "${ECHO_T}$RANLIB" >&6
5770else
5771 echo "$as_me:$LINENO: result: no" >&5
5772echo "${ECHO_T}no" >&6
252b5132 5773fi
252b5132
RH
5774
5775fi
20e95c23
DJ
5776if test -z "$ac_cv_prog_RANLIB"; then
5777 ac_ct_RANLIB=$RANLIB
5778 # Extract the first word of "ranlib", so it can be a program name with args.
5779set dummy ranlib; ac_word=$2
5780echo "$as_me:$LINENO: checking for $ac_word" >&5
5781echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
5782if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
42ecbf5e
DJ
5783 echo $ECHO_N "(cached) $ECHO_C" >&6
5784else
20e95c23
DJ
5785 if test -n "$ac_ct_RANLIB"; then
5786 ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
252b5132 5787else
20e95c23
DJ
5788as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5789for as_dir in $PATH
5790do
5791 IFS=$as_save_IFS
5792 test -z "$as_dir" && as_dir=.
5793 for ac_exec_ext in '' $ac_executable_extensions; do
5794 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5795 ac_cv_prog_ac_ct_RANLIB="ranlib"
5796 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5797 break 2
5798 fi
5799done
5800done
42ecbf5e 5801
20e95c23 5802 test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":"
252b5132 5803fi
252b5132 5804fi
20e95c23
DJ
5805ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
5806if test -n "$ac_ct_RANLIB"; then
5807 echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
5808echo "${ECHO_T}$ac_ct_RANLIB" >&6
252b5132 5809else
20e95c23
DJ
5810 echo "$as_me:$LINENO: result: no" >&5
5811echo "${ECHO_T}no" >&6
252b5132 5812fi
252b5132 5813
20e95c23
DJ
5814 RANLIB=$ac_ct_RANLIB
5815else
5816 RANLIB="$ac_cv_prog_RANLIB"
252b5132 5817fi
42ecbf5e 5818
20e95c23
DJ
5819# Find a good install program. We prefer a C program (faster),
5820# so one script is as good as another. But avoid the broken or
5821# incompatible versions:
5822# SysV /etc/install, /usr/sbin/install
5823# SunOS /usr/etc/install
5824# IRIX /sbin/install
5825# AIX /bin/install
5826# AmigaOS /C/install, which installs bootblocks on floppy discs
5827# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
5828# AFS /usr/afsws/bin/install, which mishandles nonexistent args
5829# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
5830# OS/2's system install, which has a completely different semantic
5831# ./install, which can be erroneously created by make from ./install.sh.
5832echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
5833echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
5834if test -z "$INSTALL"; then
5835if test "${ac_cv_path_install+set}" = set; then
5836 echo $ECHO_N "(cached) $ECHO_C" >&6
42ecbf5e 5837else
20e95c23
DJ
5838 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5839for as_dir in $PATH
5840do
5841 IFS=$as_save_IFS
5842 test -z "$as_dir" && as_dir=.
5843 # Account for people who put trailing slashes in PATH elements.
5844case $as_dir/ in
5845 ./ | .// | /cC/* | \
5846 /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
5847 ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \
5848 /usr/ucb/* ) ;;
5849 *)
5850 # OSF1 and SCO ODT 3.0 have their own names for install.
5851 # Don't use installbsd from OSF since it installs stuff as root
5852 # by default.
5853 for ac_prog in ginstall scoinst install; do
5854 for ac_exec_ext in '' $ac_executable_extensions; do
5855 if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
5856 if test $ac_prog = install &&
5857 grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
5858 # AIX install. It has an incompatible calling convention.
5859 :
5860 elif test $ac_prog = install &&
5861 grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
5862 # program-specific install script used by HP pwplus--don't use.
5863 :
5864 else
5865 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
5866 break 3
5867 fi
5868 fi
5869 done
5870 done
42ecbf5e
DJ
5871 ;;
5872esac
20e95c23 5873done
42ecbf5e 5874
42ecbf5e 5875
42ecbf5e 5876fi
20e95c23
DJ
5877 if test "${ac_cv_path_install+set}" = set; then
5878 INSTALL=$ac_cv_path_install
5879 else
5880 # As a last resort, use the slow shell script. We don't cache a
5881 # path for INSTALL within a source directory, because that will
5882 # break other packages using the cache if that directory is
5883 # removed, or if the path is relative.
5884 INSTALL=$ac_install_sh
5885 fi
42ecbf5e 5886fi
20e95c23
DJ
5887echo "$as_me:$LINENO: result: $INSTALL" >&5
5888echo "${ECHO_T}$INSTALL" >&6
42ecbf5e 5889
20e95c23
DJ
5890# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
5891# It thinks the first close brace ends the variable substitution.
5892test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
252b5132 5893
20e95c23 5894test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
252b5132 5895
20e95c23 5896test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
42ecbf5e 5897
252b5132 5898
20e95c23
DJ
5899# Put a plausible default for CC_FOR_BUILD in Makefile.
5900if test -z "$CC_FOR_BUILD"; then
5901 if test "x$cross_compiling" = "xno"; then
5902 CC_FOR_BUILD='$(CC)'
5903 else
5904 CC_FOR_BUILD=gcc
5905 fi
5906fi
5907
5908# Also set EXEEXT_FOR_BUILD.
5909if test "x$cross_compiling" = "xno"; then
5910 EXEEXT_FOR_BUILD='$(EXEEXT)'
5911else
5912 echo "$as_me:$LINENO: checking for build system executable suffix" >&5
5913echo $ECHO_N "checking for build system executable suffix... $ECHO_C" >&6
5914if test "${bfd_cv_build_exeext+set}" = set; then
42ecbf5e 5915 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 5916else
20e95c23
DJ
5917 rm -f conftest*
5918 echo 'int main () { return 0; }' > conftest.c
5919 bfd_cv_build_exeext=
5920 ${CC_FOR_BUILD} -o conftest conftest.c 1>&5 2>&5
5921 for file in conftest.*; do
5922 case $file in
5923 *.c | *.o | *.obj | *.ilk | *.pdb) ;;
5924 *) bfd_cv_build_exeext=`echo $file | sed -e s/conftest//` ;;
5925 esac
5926 done
5927 rm -f conftest*
5928 test x"${bfd_cv_build_exeext}" = x && bfd_cv_build_exeext=no
252b5132 5929fi
20e95c23
DJ
5930echo "$as_me:$LINENO: result: $bfd_cv_build_exeext" >&5
5931echo "${ECHO_T}$bfd_cv_build_exeext" >&6
5932 EXEEXT_FOR_BUILD=""
5933 test x"${bfd_cv_build_exeext}" != xno && EXEEXT_FOR_BUILD=${bfd_cv_build_exeext}
252b5132 5934fi
42ecbf5e 5935
20e95c23
DJ
5936
5937DEMANGLER_NAME=c++filt
5938case "${host}" in
5939 *-*-go32* | *-*-msdos*)
5940 DEMANGLER_NAME=cxxfilt
5941esac
5942
5943
5944ac_ext=c
5945ac_cpp='$CPP $CPPFLAGS'
5946ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
5947ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
5948ac_compiler_gnu=$ac_cv_c_compiler_gnu
5949echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
5950echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
5951# On Suns, sometimes $CPP names a directory.
5952if test -n "$CPP" && test -d "$CPP"; then
5953 CPP=
5954fi
5955if test -z "$CPP"; then
5956 if test "${ac_cv_prog_CPP+set}" = set; then
42ecbf5e
DJ
5957 echo $ECHO_N "(cached) $ECHO_C" >&6
5958else
20e95c23
DJ
5959 # Double quotes because CPP needs to be expanded
5960 for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
5961 do
5962 ac_preproc_ok=false
5963for ac_c_preproc_warn_flag in '' yes
5964do
5965 # Use a header file that comes with gcc, so configuring glibc
5966 # with a fresh cross-compiler works.
5967 # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
5968 # <limits.h> exists even on freestanding compilers.
5969 # On the NeXT, cc -E runs the code through the compiler's parser,
5970 # not just through cpp. "Syntax error" is here to catch this case.
42ecbf5e
DJ
5971 cat >conftest.$ac_ext <<_ACEOF
5972/* confdefs.h. */
5973_ACEOF
5974cat confdefs.h >>conftest.$ac_ext
5975cat >>conftest.$ac_ext <<_ACEOF
5976/* end confdefs.h. */
42ecbf5e
DJ
5977#ifdef __STDC__
5978# include <limits.h>
5979#else
5980# include <assert.h>
5981#endif
20e95c23 5982 Syntax error
42ecbf5e 5983_ACEOF
20e95c23
DJ
5984if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
5985 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
42ecbf5e
DJ
5986 ac_status=$?
5987 grep -v '^ *+' conftest.er1 >conftest.err
5988 rm -f conftest.er1
5989 cat conftest.err >&5
5990 echo "$as_me:$LINENO: \$? = $ac_status" >&5
20e95c23
DJ
5991 (exit $ac_status); } >/dev/null; then
5992 if test -s conftest.err; then
5993 ac_cpp_err=$ac_c_preproc_warn_flag
5994 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
5995 else
5996 ac_cpp_err=
42ecbf5e 5997 fi
252b5132 5998else
20e95c23 5999 ac_cpp_err=yes
252b5132 6000fi
20e95c23
DJ
6001if test -z "$ac_cpp_err"; then
6002 :
252b5132 6003else
20e95c23
DJ
6004 echo "$as_me: failed program was:" >&5
6005sed 's/^/| /' conftest.$ac_ext >&5
6006
6007 # Broken: fails on valid input.
6008continue
252b5132 6009fi
20e95c23 6010rm -f conftest.err conftest.$ac_ext
252b5132 6011
20e95c23
DJ
6012 # OK, works on sane cases. Now check whether non-existent headers
6013 # can be detected and how.
6014 cat >conftest.$ac_ext <<_ACEOF
42ecbf5e
DJ
6015/* confdefs.h. */
6016_ACEOF
6017cat confdefs.h >>conftest.$ac_ext
6018cat >>conftest.$ac_ext <<_ACEOF
6019/* end confdefs.h. */
20e95c23 6020#include <ac_nonexistent.h>
42ecbf5e 6021_ACEOF
20e95c23
DJ
6022if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
6023 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
42ecbf5e
DJ
6024 ac_status=$?
6025 grep -v '^ *+' conftest.er1 >conftest.err
6026 rm -f conftest.er1
6027 cat conftest.err >&5
6028 echo "$as_me:$LINENO: \$? = $ac_status" >&5
20e95c23
DJ
6029 (exit $ac_status); } >/dev/null; then
6030 if test -s conftest.err; then
6031 ac_cpp_err=$ac_c_preproc_warn_flag
6032 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
6033 else
6034 ac_cpp_err=
6035 fi
6036else
6037 ac_cpp_err=yes
6038fi
6039if test -z "$ac_cpp_err"; then
6040 # Broken: success on invalid input.
6041continue
252b5132 6042else
42ecbf5e
DJ
6043 echo "$as_me: failed program was:" >&5
6044sed 's/^/| /' conftest.$ac_ext >&5
6045
20e95c23
DJ
6046 # Passes both tests.
6047ac_preproc_ok=:
6048break
252b5132 6049fi
20e95c23 6050rm -f conftest.err conftest.$ac_ext
42ecbf5e 6051
20e95c23
DJ
6052done
6053# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
6054rm -f conftest.err conftest.$ac_ext
6055if $ac_preproc_ok; then
6056 break
252b5132
RH
6057fi
6058
20e95c23
DJ
6059 done
6060 ac_cv_prog_CPP=$CPP
252b5132 6061
252b5132 6062fi
20e95c23 6063 CPP=$ac_cv_prog_CPP
252b5132 6064else
20e95c23 6065 ac_cv_prog_CPP=$CPP
252b5132 6066fi
20e95c23
DJ
6067echo "$as_me:$LINENO: result: $CPP" >&5
6068echo "${ECHO_T}$CPP" >&6
6069ac_preproc_ok=false
6070for ac_c_preproc_warn_flag in '' yes
42ecbf5e 6071do
20e95c23
DJ
6072 # Use a header file that comes with gcc, so configuring glibc
6073 # with a fresh cross-compiler works.
6074 # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6075 # <limits.h> exists even on freestanding compilers.
6076 # On the NeXT, cc -E runs the code through the compiler's parser,
6077 # not just through cpp. "Syntax error" is here to catch this case.
6078 cat >conftest.$ac_ext <<_ACEOF
6079/* confdefs.h. */
6080_ACEOF
6081cat confdefs.h >>conftest.$ac_ext
6082cat >>conftest.$ac_ext <<_ACEOF
6083/* end confdefs.h. */
6084#ifdef __STDC__
6085# include <limits.h>
6086#else
6087# include <assert.h>
6088#endif
6089 Syntax error
6090_ACEOF
6091if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
6092 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
6093 ac_status=$?
6094 grep -v '^ *+' conftest.er1 >conftest.err
6095 rm -f conftest.er1
6096 cat conftest.err >&5
6097 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6098 (exit $ac_status); } >/dev/null; then
6099 if test -s conftest.err; then
6100 ac_cpp_err=$ac_c_preproc_warn_flag
6101 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
6102 else
6103 ac_cpp_err=
42ecbf5e 6104 fi
20e95c23
DJ
6105else
6106 ac_cpp_err=yes
252b5132 6107fi
20e95c23
DJ
6108if test -z "$ac_cpp_err"; then
6109 :
252b5132 6110else
20e95c23
DJ
6111 echo "$as_me: failed program was:" >&5
6112sed 's/^/| /' conftest.$ac_ext >&5
6113
6114 # Broken: fails on valid input.
6115continue
252b5132 6116fi
20e95c23 6117rm -f conftest.err conftest.$ac_ext
252b5132 6118
20e95c23
DJ
6119 # OK, works on sane cases. Now check whether non-existent headers
6120 # can be detected and how.
6121 cat >conftest.$ac_ext <<_ACEOF
6122/* confdefs.h. */
6123_ACEOF
6124cat confdefs.h >>conftest.$ac_ext
6125cat >>conftest.$ac_ext <<_ACEOF
6126/* end confdefs.h. */
6127#include <ac_nonexistent.h>
6128_ACEOF
6129if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
6130 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
6131 ac_status=$?
6132 grep -v '^ *+' conftest.er1 >conftest.err
6133 rm -f conftest.er1
6134 cat conftest.err >&5
6135 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6136 (exit $ac_status); } >/dev/null; then
6137 if test -s conftest.err; then
6138 ac_cpp_err=$ac_c_preproc_warn_flag
6139 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
6140 else
6141 ac_cpp_err=
6142 fi
252b5132 6143else
20e95c23 6144 ac_cpp_err=yes
252b5132 6145fi
20e95c23
DJ
6146if test -z "$ac_cpp_err"; then
6147 # Broken: success on invalid input.
6148continue
252b5132 6149else
20e95c23
DJ
6150 echo "$as_me: failed program was:" >&5
6151sed 's/^/| /' conftest.$ac_ext >&5
c46f8c51 6152
20e95c23
DJ
6153 # Passes both tests.
6154ac_preproc_ok=:
6155break
6156fi
6157rm -f conftest.err conftest.$ac_ext
42ecbf5e 6158
20e95c23
DJ
6159done
6160# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
6161rm -f conftest.err conftest.$ac_ext
6162if $ac_preproc_ok; then
6163 :
6164else
6165 { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
6166See \`config.log' for more details." >&5
6167echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check
6168See \`config.log' for more details." >&2;}
6169 { (exit 1); exit 1; }; }
6170fi
252b5132 6171
20e95c23
DJ
6172ac_ext=c
6173ac_cpp='$CPP $CPPFLAGS'
6174ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
6175ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
6176ac_compiler_gnu=$ac_cv_c_compiler_gnu
252b5132 6177
252b5132 6178
20e95c23
DJ
6179echo "$as_me:$LINENO: checking for egrep" >&5
6180echo $ECHO_N "checking for egrep... $ECHO_C" >&6
6181if test "${ac_cv_prog_egrep+set}" = set; then
6182 echo $ECHO_N "(cached) $ECHO_C" >&6
6183else
6184 if echo a | (grep -E '(a|b)') >/dev/null 2>&1
6185 then ac_cv_prog_egrep='grep -E'
6186 else ac_cv_prog_egrep='egrep'
6187 fi
6188fi
6189echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5
6190echo "${ECHO_T}$ac_cv_prog_egrep" >&6
6191 EGREP=$ac_cv_prog_egrep
42ecbf5e 6192
252b5132 6193
20e95c23
DJ
6194echo "$as_me:$LINENO: checking for ANSI C header files" >&5
6195echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
6196if test "${ac_cv_header_stdc+set}" = set; then
42ecbf5e 6197 echo $ECHO_N "(cached) $ECHO_C" >&6
42ecbf5e 6198else
20e95c23 6199 cat >conftest.$ac_ext <<_ACEOF
42ecbf5e
DJ
6200/* confdefs.h. */
6201_ACEOF
6202cat confdefs.h >>conftest.$ac_ext
6203cat >>conftest.$ac_ext <<_ACEOF
6204/* end confdefs.h. */
20e95c23
DJ
6205#include <stdlib.h>
6206#include <stdarg.h>
6207#include <string.h>
6208#include <float.h>
6209
6210int
6211main ()
6212{
6213
6214 ;
6215 return 0;
6216}
42ecbf5e
DJ
6217_ACEOF
6218rm -f conftest.$ac_objext
6219if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6220 (eval $ac_compile) 2>conftest.er1
6221 ac_status=$?
6222 grep -v '^ *+' conftest.er1 >conftest.err
6223 rm -f conftest.er1
6224 cat conftest.err >&5
6225 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6226 (exit $ac_status); } &&
b7d4af3a
JW
6227 { ac_try='test -z "$ac_c_werror_flag"
6228 || test ! -s conftest.err'
42ecbf5e
DJ
6229 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6230 (eval $ac_try) 2>&5
6231 ac_status=$?
6232 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6233 (exit $ac_status); }; } &&
6234 { ac_try='test -s conftest.$ac_objext'
6235 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6236 (eval $ac_try) 2>&5
6237 ac_status=$?
6238 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6239 (exit $ac_status); }; }; then
20e95c23 6240 ac_cv_header_stdc=yes
42ecbf5e
DJ
6241else
6242 echo "$as_me: failed program was:" >&5
6243sed 's/^/| /' conftest.$ac_ext >&5
6244
20e95c23 6245ac_cv_header_stdc=no
42ecbf5e
DJ
6246fi
6247rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
42ecbf5e 6248
20e95c23
DJ
6249if test $ac_cv_header_stdc = yes; then
6250 # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
6251 cat >conftest.$ac_ext <<_ACEOF
42ecbf5e
DJ
6252/* confdefs.h. */
6253_ACEOF
6254cat confdefs.h >>conftest.$ac_ext
6255cat >>conftest.$ac_ext <<_ACEOF
6256/* end confdefs.h. */
20e95c23 6257#include <string.h>
42ecbf5e 6258
20e95c23
DJ
6259_ACEOF
6260if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
6261 $EGREP "memchr" >/dev/null 2>&1; then
6262 :
42ecbf5e 6263else
20e95c23 6264 ac_cv_header_stdc=no
e5a52504 6265fi
20e95c23 6266rm -f conftest*
42ecbf5e
DJ
6267
6268fi
252b5132 6269
20e95c23
DJ
6270if test $ac_cv_header_stdc = yes; then
6271 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
6272 cat >conftest.$ac_ext <<_ACEOF
6273/* confdefs.h. */
6274_ACEOF
6275cat confdefs.h >>conftest.$ac_ext
6276cat >>conftest.$ac_ext <<_ACEOF
6277/* end confdefs.h. */
6278#include <stdlib.h>
252b5132 6279
20e95c23
DJ
6280_ACEOF
6281if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
6282 $EGREP "free" >/dev/null 2>&1; then
6283 :
252b5132 6284else
20e95c23 6285 ac_cv_header_stdc=no
252b5132 6286fi
20e95c23 6287rm -f conftest*
2481e6a2
ILT
6288
6289fi
42ecbf5e 6290
20e95c23
DJ
6291if test $ac_cv_header_stdc = yes; then
6292 # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
6293 if test "$cross_compiling" = yes; then
6294 :
252b5132 6295else
20e95c23
DJ
6296 cat >conftest.$ac_ext <<_ACEOF
6297/* confdefs.h. */
6298_ACEOF
6299cat confdefs.h >>conftest.$ac_ext
6300cat >>conftest.$ac_ext <<_ACEOF
6301/* end confdefs.h. */
6302#include <ctype.h>
6303#if ((' ' & 0x0FF) == 0x020)
6304# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
6305# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
6306#else
6307# define ISLOWER(c) \
6308 (('a' <= (c) && (c) <= 'i') \
6309 || ('j' <= (c) && (c) <= 'r') \
6310 || ('s' <= (c) && (c) <= 'z'))
6311# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
6312#endif
42ecbf5e 6313
20e95c23
DJ
6314#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
6315int
6316main ()
6317{
6318 int i;
6319 for (i = 0; i < 256; i++)
6320 if (XOR (islower (i), ISLOWER (i))
6321 || toupper (i) != TOUPPER (i))
6322 exit(2);
6323 exit (0);
6324}
6325_ACEOF
6326rm -f conftest$ac_exeext
6327if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6328 (eval $ac_link) 2>&5
6329 ac_status=$?
6330 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6331 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
6332 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6333 (eval $ac_try) 2>&5
6334 ac_status=$?
6335 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6336 (exit $ac_status); }; }; then
6337 :
42ecbf5e 6338else
20e95c23
DJ
6339 echo "$as_me: program exited with status $ac_status" >&5
6340echo "$as_me: failed program was:" >&5
6341sed 's/^/| /' conftest.$ac_ext >&5
42ecbf5e 6342
20e95c23
DJ
6343( exit $ac_status )
6344ac_cv_header_stdc=no
42ecbf5e 6345fi
20e95c23 6346rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
42ecbf5e
DJ
6347fi
6348fi
42ecbf5e 6349fi
20e95c23
DJ
6350echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
6351echo "${ECHO_T}$ac_cv_header_stdc" >&6
6352if test $ac_cv_header_stdc = yes; then
6353
6354cat >>confdefs.h <<\_ACEOF
6355#define STDC_HEADERS 1
6356_ACEOF
42ecbf5e 6357
252b5132
RH
6358fi
6359
20e95c23 6360# On IRIX 5.3, sys/types and inttypes.h are conflicting.
42ecbf5e 6361
252b5132 6362
252b5132 6363
252b5132 6364
252b5132 6365
252b5132
RH
6366
6367
252b5132 6368
20e95c23
DJ
6369
6370for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
6371 inttypes.h stdint.h unistd.h
6372do
6373as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
6374echo "$as_me:$LINENO: checking for $ac_header" >&5
6375echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
6376if eval "test \"\${$as_ac_Header+set}\" = set"; then
42ecbf5e 6377 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 6378else
20e95c23
DJ
6379 cat >conftest.$ac_ext <<_ACEOF
6380/* confdefs.h. */
6381_ACEOF
6382cat confdefs.h >>conftest.$ac_ext
6383cat >>conftest.$ac_ext <<_ACEOF
6384/* end confdefs.h. */
6385$ac_includes_default
6386
6387#include <$ac_header>
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 eval "$as_ac_Header=yes"
6412else
6413 echo "$as_me: failed program was:" >&5
6414sed 's/^/| /' conftest.$ac_ext >&5
6415
6416eval "$as_ac_Header=no"
252b5132 6417fi
20e95c23 6418rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132 6419fi
20e95c23
DJ
6420echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
6421echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
6422if test `eval echo '${'$as_ac_Header'}'` = yes; then
6423 cat >>confdefs.h <<_ACEOF
6424#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
6425_ACEOF
252b5132 6426
20e95c23 6427fi
252b5132 6428
20e95c23 6429done
8a965946
ILT
6430
6431
42ecbf5e
DJ
6432
6433
6434
6435
6436
6437
f8eae8b2
L
6438
6439
6440for ac_header in string.h strings.h stdlib.h unistd.h fcntl.h sys/file.h limits.h sys/param.h
252b5132 6441do
42ecbf5e
DJ
6442as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
6443if eval "test \"\${$as_ac_Header+set}\" = set"; then
6444 echo "$as_me:$LINENO: checking for $ac_header" >&5
6445echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
6446if eval "test \"\${$as_ac_Header+set}\" = set"; then
6447 echo $ECHO_N "(cached) $ECHO_C" >&6
6448fi
6449echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
6450echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
6451else
6452 # Is the header compilable?
6453echo "$as_me:$LINENO: checking $ac_header usability" >&5
6454echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
6455cat >conftest.$ac_ext <<_ACEOF
6456/* confdefs.h. */
6457_ACEOF
6458cat confdefs.h >>conftest.$ac_ext
6459cat >>conftest.$ac_ext <<_ACEOF
6460/* end confdefs.h. */
6461$ac_includes_default
6462#include <$ac_header>
6463_ACEOF
6464rm -f conftest.$ac_objext
6465if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6466 (eval $ac_compile) 2>conftest.er1
6467 ac_status=$?
6468 grep -v '^ *+' conftest.er1 >conftest.err
6469 rm -f conftest.er1
6470 cat conftest.err >&5
6471 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6472 (exit $ac_status); } &&
b7d4af3a
JW
6473 { ac_try='test -z "$ac_c_werror_flag"
6474 || test ! -s conftest.err'
42ecbf5e
DJ
6475 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6476 (eval $ac_try) 2>&5
6477 ac_status=$?
6478 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6479 (exit $ac_status); }; } &&
6480 { ac_try='test -s conftest.$ac_objext'
6481 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6482 (eval $ac_try) 2>&5
6483 ac_status=$?
6484 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6485 (exit $ac_status); }; }; then
6486 ac_header_compiler=yes
6487else
6488 echo "$as_me: failed program was:" >&5
6489sed 's/^/| /' conftest.$ac_ext >&5
6490
6491ac_header_compiler=no
6492fi
6493rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
6494echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
6495echo "${ECHO_T}$ac_header_compiler" >&6
6496
6497# Is the header present?
6498echo "$as_me:$LINENO: checking $ac_header presence" >&5
6499echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
6500cat >conftest.$ac_ext <<_ACEOF
6501/* confdefs.h. */
6502_ACEOF
6503cat confdefs.h >>conftest.$ac_ext
6504cat >>conftest.$ac_ext <<_ACEOF
6505/* end confdefs.h. */
6506#include <$ac_header>
6507_ACEOF
6508if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
6509 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
6510 ac_status=$?
6511 grep -v '^ *+' conftest.er1 >conftest.err
6512 rm -f conftest.er1
6513 cat conftest.err >&5
6514 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6515 (exit $ac_status); } >/dev/null; then
6516 if test -s conftest.err; then
6517 ac_cpp_err=$ac_c_preproc_warn_flag
6518 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
6519 else
6520 ac_cpp_err=
6521 fi
252b5132 6522else
42ecbf5e 6523 ac_cpp_err=yes
252b5132 6524fi
42ecbf5e
DJ
6525if test -z "$ac_cpp_err"; then
6526 ac_header_preproc=yes
6527else
6528 echo "$as_me: failed program was:" >&5
6529sed 's/^/| /' conftest.$ac_ext >&5
6530
6531 ac_header_preproc=no
252b5132 6532fi
42ecbf5e
DJ
6533rm -f conftest.err conftest.$ac_ext
6534echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
6535echo "${ECHO_T}$ac_header_preproc" >&6
6536
6537# So? What about this header?
6538case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
6539 yes:no: )
6540 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
6541echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
6542 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
6543echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
6544 ac_header_preproc=yes
6545 ;;
6546 no:yes:* )
6547 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
6548echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
6549 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
6550echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
6551 { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
6552echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
6553 { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5
6554echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}
6555 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
6556echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
6557 { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
6558echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
6559 (
6560 cat <<\_ASBOX
6561## ------------------------------------------ ##
6562## Report this to the AC_PACKAGE_NAME lists. ##
6563## ------------------------------------------ ##
6564_ASBOX
6565 ) |
6566 sed "s/^/$as_me: WARNING: /" >&2
6567 ;;
6568esac
6569echo "$as_me:$LINENO: checking for $ac_header" >&5
6570echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
6571if eval "test \"\${$as_ac_Header+set}\" = set"; then
6572 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 6573else
42ecbf5e
DJ
6574 eval "$as_ac_Header=\$ac_header_preproc"
6575fi
6576echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
6577echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
6578
252b5132 6579fi
42ecbf5e
DJ
6580if test `eval echo '${'$as_ac_Header'}'` = yes; then
6581 cat >>confdefs.h <<_ACEOF
6582#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
6583_ACEOF
6584
6585fi
6586
252b5132
RH
6587done
6588
42ecbf5e
DJ
6589echo "$as_me:$LINENO: checking for sys/wait.h that is POSIX.1 compatible" >&5
6590echo $ECHO_N "checking for sys/wait.h that is POSIX.1 compatible... $ECHO_C" >&6
6591if test "${ac_cv_header_sys_wait_h+set}" = set; then
6592 echo $ECHO_N "(cached) $ECHO_C" >&6
6593else
6594 cat >conftest.$ac_ext <<_ACEOF
6595/* confdefs.h. */
6596_ACEOF
6597cat confdefs.h >>conftest.$ac_ext
6598cat >>conftest.$ac_ext <<_ACEOF
6599/* end confdefs.h. */
252b5132
RH
6600#include <sys/types.h>
6601#include <sys/wait.h>
6602#ifndef WEXITSTATUS
42ecbf5e 6603# define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
252b5132
RH
6604#endif
6605#ifndef WIFEXITED
42ecbf5e 6606# define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
252b5132 6607#endif
42ecbf5e
DJ
6608
6609int
6610main ()
6611{
6612 int s;
6613 wait (&s);
6614 s = WIFEXITED (s) ? WEXITSTATUS (s) : 1;
6615 ;
6616 return 0;
6617}
6618_ACEOF
6619rm -f conftest.$ac_objext
6620if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6621 (eval $ac_compile) 2>conftest.er1
6622 ac_status=$?
6623 grep -v '^ *+' conftest.er1 >conftest.err
6624 rm -f conftest.er1
6625 cat conftest.err >&5
6626 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6627 (exit $ac_status); } &&
b7d4af3a
JW
6628 { ac_try='test -z "$ac_c_werror_flag"
6629 || test ! -s conftest.err'
42ecbf5e
DJ
6630 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6631 (eval $ac_try) 2>&5
6632 ac_status=$?
6633 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6634 (exit $ac_status); }; } &&
6635 { ac_try='test -s conftest.$ac_objext'
6636 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6637 (eval $ac_try) 2>&5
6638 ac_status=$?
6639 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6640 (exit $ac_status); }; }; then
252b5132
RH
6641 ac_cv_header_sys_wait_h=yes
6642else
42ecbf5e
DJ
6643 echo "$as_me: failed program was:" >&5
6644sed 's/^/| /' conftest.$ac_ext >&5
6645
6646ac_cv_header_sys_wait_h=no
252b5132 6647fi
42ecbf5e 6648rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132 6649fi
42ecbf5e
DJ
6650echo "$as_me:$LINENO: result: $ac_cv_header_sys_wait_h" >&5
6651echo "${ECHO_T}$ac_cv_header_sys_wait_h" >&6
d15b04bd 6652if test $ac_cv_header_sys_wait_h = yes; then
42ecbf5e
DJ
6653
6654cat >>confdefs.h <<\_ACEOF
252b5132 6655#define HAVE_SYS_WAIT_H 1
42ecbf5e 6656_ACEOF
252b5132
RH
6657
6658fi
6659
6660# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
6661# for constant arguments. Useless!
42ecbf5e
DJ
6662echo "$as_me:$LINENO: checking for working alloca.h" >&5
6663echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6
6664if test "${ac_cv_working_alloca_h+set}" = set; then
6665 echo $ECHO_N "(cached) $ECHO_C" >&6
6666else
6667 cat >conftest.$ac_ext <<_ACEOF
6668/* confdefs.h. */
6669_ACEOF
6670cat confdefs.h >>conftest.$ac_ext
6671cat >>conftest.$ac_ext <<_ACEOF
6672/* end confdefs.h. */
252b5132 6673#include <alloca.h>
42ecbf5e
DJ
6674int
6675main ()
6676{
6677char *p = (char *) alloca (2 * sizeof (int));
6678 ;
6679 return 0;
6680}
6681_ACEOF
6682rm -f conftest.$ac_objext conftest$ac_exeext
6683if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6684 (eval $ac_link) 2>conftest.er1
6685 ac_status=$?
6686 grep -v '^ *+' conftest.er1 >conftest.err
6687 rm -f conftest.er1
6688 cat conftest.err >&5
6689 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6690 (exit $ac_status); } &&
b7d4af3a
JW
6691 { ac_try='test -z "$ac_c_werror_flag"
6692 || test ! -s conftest.err'
42ecbf5e
DJ
6693 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6694 (eval $ac_try) 2>&5
6695 ac_status=$?
6696 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6697 (exit $ac_status); }; } &&
6698 { ac_try='test -s conftest$ac_exeext'
6699 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6700 (eval $ac_try) 2>&5
6701 ac_status=$?
6702 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6703 (exit $ac_status); }; }; then
6704 ac_cv_working_alloca_h=yes
6705else
6706 echo "$as_me: failed program was:" >&5
6707sed 's/^/| /' conftest.$ac_ext >&5
6708
6709ac_cv_working_alloca_h=no
6710fi
6711rm -f conftest.err conftest.$ac_objext \
6712 conftest$ac_exeext conftest.$ac_ext
6713fi
6714echo "$as_me:$LINENO: result: $ac_cv_working_alloca_h" >&5
6715echo "${ECHO_T}$ac_cv_working_alloca_h" >&6
6716if test $ac_cv_working_alloca_h = yes; then
6717
6718cat >>confdefs.h <<\_ACEOF
252b5132 6719#define HAVE_ALLOCA_H 1
42ecbf5e 6720_ACEOF
252b5132
RH
6721
6722fi
6723
42ecbf5e
DJ
6724echo "$as_me:$LINENO: checking for alloca" >&5
6725echo $ECHO_N "checking for alloca... $ECHO_C" >&6
6726if test "${ac_cv_func_alloca_works+set}" = set; then
6727 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 6728else
42ecbf5e
DJ
6729 cat >conftest.$ac_ext <<_ACEOF
6730/* confdefs.h. */
6731_ACEOF
6732cat confdefs.h >>conftest.$ac_ext
6733cat >>conftest.$ac_ext <<_ACEOF
6734/* end confdefs.h. */
252b5132
RH
6735#ifdef __GNUC__
6736# define alloca __builtin_alloca
6737#else
6738# ifdef _MSC_VER
6739# include <malloc.h>
6740# define alloca _alloca
6741# else
6742# if HAVE_ALLOCA_H
6743# include <alloca.h>
6744# else
6745# ifdef _AIX
6746 #pragma alloca
6747# else
6748# ifndef alloca /* predefined by HP cc +Olibcalls */
6749char *alloca ();
6750# endif
6751# endif
6752# endif
6753# endif
6754#endif
6755
42ecbf5e
DJ
6756int
6757main ()
6758{
6759char *p = (char *) alloca (1);
6760 ;
6761 return 0;
6762}
6763_ACEOF
6764rm -f conftest.$ac_objext conftest$ac_exeext
6765if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6766 (eval $ac_link) 2>conftest.er1
6767 ac_status=$?
6768 grep -v '^ *+' conftest.er1 >conftest.err
6769 rm -f conftest.er1
6770 cat conftest.err >&5
6771 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6772 (exit $ac_status); } &&
b7d4af3a
JW
6773 { ac_try='test -z "$ac_c_werror_flag"
6774 || test ! -s conftest.err'
42ecbf5e
DJ
6775 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6776 (eval $ac_try) 2>&5
6777 ac_status=$?
6778 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6779 (exit $ac_status); }; } &&
6780 { ac_try='test -s conftest$ac_exeext'
6781 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6782 (eval $ac_try) 2>&5
6783 ac_status=$?
6784 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6785 (exit $ac_status); }; }; then
252b5132
RH
6786 ac_cv_func_alloca_works=yes
6787else
42ecbf5e
DJ
6788 echo "$as_me: failed program was:" >&5
6789sed 's/^/| /' conftest.$ac_ext >&5
6790
6791ac_cv_func_alloca_works=no
252b5132 6792fi
42ecbf5e
DJ
6793rm -f conftest.err conftest.$ac_objext \
6794 conftest$ac_exeext conftest.$ac_ext
252b5132 6795fi
42ecbf5e
DJ
6796echo "$as_me:$LINENO: result: $ac_cv_func_alloca_works" >&5
6797echo "${ECHO_T}$ac_cv_func_alloca_works" >&6
252b5132 6798
252b5132 6799if test $ac_cv_func_alloca_works = yes; then
e5a52504 6800
42ecbf5e
DJ
6801cat >>confdefs.h <<\_ACEOF
6802#define HAVE_ALLOCA 1
6803_ACEOF
e5a52504 6804
42ecbf5e 6805else
d15b04bd 6806 # The SVR3 libPW and SVR4 libucb both contain incompatible functions
42ecbf5e
DJ
6807# that cause trouble. Some versions do not even contain alloca or
6808# contain a buggy version. If you still want to use their alloca,
6809# use ar to extract alloca.o from them instead of compiling alloca.c.
6810
6811ALLOCA=alloca.$ac_objext
6812
6813cat >>confdefs.h <<\_ACEOF
252b5132 6814#define C_ALLOCA 1
42ecbf5e 6815_ACEOF
252b5132
RH
6816
6817
42ecbf5e
DJ
6818echo "$as_me:$LINENO: checking whether \`alloca.c' needs Cray hooks" >&5
6819echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6
6820if test "${ac_cv_os_cray+set}" = set; then
6821 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 6822else
42ecbf5e
DJ
6823 cat >conftest.$ac_ext <<_ACEOF
6824/* confdefs.h. */
6825_ACEOF
6826cat confdefs.h >>conftest.$ac_ext
6827cat >>conftest.$ac_ext <<_ACEOF
6828/* end confdefs.h. */
252b5132
RH
6829#if defined(CRAY) && ! defined(CRAY2)
6830webecray
6831#else
6832wenotbecray
6833#endif
6834
42ecbf5e 6835_ACEOF
252b5132 6836if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
42ecbf5e 6837 $EGREP "webecray" >/dev/null 2>&1; then
252b5132
RH
6838 ac_cv_os_cray=yes
6839else
252b5132
RH
6840 ac_cv_os_cray=no
6841fi
6842rm -f conftest*
6843
6844fi
42ecbf5e
DJ
6845echo "$as_me:$LINENO: result: $ac_cv_os_cray" >&5
6846echo "${ECHO_T}$ac_cv_os_cray" >&6
d15b04bd 6847if test $ac_cv_os_cray = yes; then
42ecbf5e
DJ
6848 for ac_func in _getb67 GETB67 getb67; do
6849 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
6850echo "$as_me:$LINENO: checking for $ac_func" >&5
6851echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
6852if eval "test \"\${$as_ac_var+set}\" = set"; then
6853 echo $ECHO_N "(cached) $ECHO_C" >&6
6854else
6855 cat >conftest.$ac_ext <<_ACEOF
6856/* confdefs.h. */
6857_ACEOF
6858cat confdefs.h >>conftest.$ac_ext
6859cat >>conftest.$ac_ext <<_ACEOF
6860/* end confdefs.h. */
6861/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
6862 For example, HP-UX 11i <limits.h> declares gettimeofday. */
6863#define $ac_func innocuous_$ac_func
6864
252b5132 6865/* System header to define __stub macros and hopefully few prototypes,
42ecbf5e
DJ
6866 which can conflict with char $ac_func (); below.
6867 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6868 <limits.h> exists even on freestanding compilers. */
6869
6870#ifdef __STDC__
6871# include <limits.h>
6872#else
6873# include <assert.h>
6874#endif
d15b04bd 6875
42ecbf5e 6876#undef $ac_func
d15b04bd 6877
42ecbf5e
DJ
6878/* Override any gcc2 internal prototype to avoid an error. */
6879#ifdef __cplusplus
6880extern "C"
6881{
6882#endif
6883/* We use char because int might match the return type of a gcc2
6884 builtin and then its argument prototype would still apply. */
6885char $ac_func ();
252b5132
RH
6886/* The GNU C library defines this for functions which it implements
6887 to always fail with ENOSYS. Some functions are actually named
6888 something starting with __ and the normal name is an alias. */
6889#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
6890choke me
6891#else
42ecbf5e
DJ
6892char (*f) () = $ac_func;
6893#endif
6894#ifdef __cplusplus
6895}
252b5132
RH
6896#endif
6897
42ecbf5e
DJ
6898int
6899main ()
6900{
6901return f != $ac_func;
6902 ;
6903 return 0;
6904}
6905_ACEOF
6906rm -f conftest.$ac_objext conftest$ac_exeext
6907if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6908 (eval $ac_link) 2>conftest.er1
6909 ac_status=$?
6910 grep -v '^ *+' conftest.er1 >conftest.err
6911 rm -f conftest.er1
6912 cat conftest.err >&5
6913 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6914 (exit $ac_status); } &&
b7d4af3a
JW
6915 { ac_try='test -z "$ac_c_werror_flag"
6916 || test ! -s conftest.err'
42ecbf5e
DJ
6917 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6918 (eval $ac_try) 2>&5
6919 ac_status=$?
6920 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6921 (exit $ac_status); }; } &&
6922 { ac_try='test -s conftest$ac_exeext'
6923 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6924 (eval $ac_try) 2>&5
6925 ac_status=$?
6926 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6927 (exit $ac_status); }; }; then
6928 eval "$as_ac_var=yes"
6929else
6930 echo "$as_me: failed program was:" >&5
6931sed 's/^/| /' conftest.$ac_ext >&5
6932
6933eval "$as_ac_var=no"
6934fi
6935rm -f conftest.err conftest.$ac_objext \
6936 conftest$ac_exeext conftest.$ac_ext
6937fi
6938echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
6939echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
6940if test `eval echo '${'$as_ac_var'}'` = yes; then
6941
6942cat >>confdefs.h <<_ACEOF
252b5132 6943#define CRAY_STACKSEG_END $ac_func
42ecbf5e 6944_ACEOF
252b5132 6945
42ecbf5e 6946 break
252b5132
RH
6947fi
6948
42ecbf5e 6949 done
252b5132
RH
6950fi
6951
42ecbf5e
DJ
6952echo "$as_me:$LINENO: checking stack direction for C alloca" >&5
6953echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6
6954if test "${ac_cv_c_stack_direction+set}" = set; then
6955 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
6956else
6957 if test "$cross_compiling" = yes; then
6958 ac_cv_c_stack_direction=0
6959else
42ecbf5e
DJ
6960 cat >conftest.$ac_ext <<_ACEOF
6961/* confdefs.h. */
6962_ACEOF
6963cat confdefs.h >>conftest.$ac_ext
6964cat >>conftest.$ac_ext <<_ACEOF
6965/* end confdefs.h. */
6966int
252b5132
RH
6967find_stack_direction ()
6968{
6969 static char *addr = 0;
6970 auto char dummy;
6971 if (addr == 0)
6972 {
6973 addr = &dummy;
6974 return find_stack_direction ();
6975 }
6976 else
6977 return (&dummy > addr) ? 1 : -1;
6978}
42ecbf5e
DJ
6979
6980int
252b5132
RH
6981main ()
6982{
42ecbf5e 6983 exit (find_stack_direction () < 0);
252b5132 6984}
42ecbf5e
DJ
6985_ACEOF
6986rm -f conftest$ac_exeext
6987if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6988 (eval $ac_link) 2>&5
6989 ac_status=$?
6990 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6991 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
6992 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6993 (eval $ac_try) 2>&5
6994 ac_status=$?
6995 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6996 (exit $ac_status); }; }; then
252b5132
RH
6997 ac_cv_c_stack_direction=1
6998else
42ecbf5e
DJ
6999 echo "$as_me: program exited with status $ac_status" >&5
7000echo "$as_me: failed program was:" >&5
7001sed 's/^/| /' conftest.$ac_ext >&5
7002
7003( exit $ac_status )
7004ac_cv_c_stack_direction=-1
252b5132 7005fi
42ecbf5e 7006rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
252b5132 7007fi
252b5132 7008fi
42ecbf5e
DJ
7009echo "$as_me:$LINENO: result: $ac_cv_c_stack_direction" >&5
7010echo "${ECHO_T}$ac_cv_c_stack_direction" >&6
252b5132 7011
42ecbf5e 7012cat >>confdefs.h <<_ACEOF
252b5132 7013#define STACK_DIRECTION $ac_cv_c_stack_direction
42ecbf5e
DJ
7014_ACEOF
7015
252b5132
RH
7016
7017fi
7018
42ecbf5e
DJ
7019
7020
7021
7022
7023
9710509e 7024for ac_func in sbrk utimes setmode getc_unlocked strcoll
252b5132 7025do
42ecbf5e
DJ
7026as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
7027echo "$as_me:$LINENO: checking for $ac_func" >&5
7028echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
7029if eval "test \"\${$as_ac_var+set}\" = set"; then
7030 echo $ECHO_N "(cached) $ECHO_C" >&6
7031else
7032 cat >conftest.$ac_ext <<_ACEOF
7033/* confdefs.h. */
7034_ACEOF
7035cat confdefs.h >>conftest.$ac_ext
7036cat >>conftest.$ac_ext <<_ACEOF
7037/* end confdefs.h. */
7038/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
7039 For example, HP-UX 11i <limits.h> declares gettimeofday. */
7040#define $ac_func innocuous_$ac_func
7041
252b5132 7042/* System header to define __stub macros and hopefully few prototypes,
42ecbf5e
DJ
7043 which can conflict with char $ac_func (); below.
7044 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
7045 <limits.h> exists even on freestanding compilers. */
7046
7047#ifdef __STDC__
7048# include <limits.h>
7049#else
7050# include <assert.h>
7051#endif
d15b04bd 7052
42ecbf5e 7053#undef $ac_func
d15b04bd 7054
42ecbf5e
DJ
7055/* Override any gcc2 internal prototype to avoid an error. */
7056#ifdef __cplusplus
7057extern "C"
7058{
7059#endif
7060/* We use char because int might match the return type of a gcc2
7061 builtin and then its argument prototype would still apply. */
7062char $ac_func ();
252b5132
RH
7063/* The GNU C library defines this for functions which it implements
7064 to always fail with ENOSYS. Some functions are actually named
7065 something starting with __ and the normal name is an alias. */
7066#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
7067choke me
7068#else
42ecbf5e
DJ
7069char (*f) () = $ac_func;
7070#endif
7071#ifdef __cplusplus
7072}
252b5132
RH
7073#endif
7074
42ecbf5e
DJ
7075int
7076main ()
7077{
7078return f != $ac_func;
7079 ;
7080 return 0;
7081}
7082_ACEOF
7083rm -f conftest.$ac_objext conftest$ac_exeext
7084if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7085 (eval $ac_link) 2>conftest.er1
7086 ac_status=$?
7087 grep -v '^ *+' conftest.er1 >conftest.err
7088 rm -f conftest.er1
7089 cat conftest.err >&5
7090 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7091 (exit $ac_status); } &&
b7d4af3a
JW
7092 { ac_try='test -z "$ac_c_werror_flag"
7093 || test ! -s conftest.err'
42ecbf5e
DJ
7094 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7095 (eval $ac_try) 2>&5
7096 ac_status=$?
7097 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7098 (exit $ac_status); }; } &&
7099 { ac_try='test -s conftest$ac_exeext'
7100 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7101 (eval $ac_try) 2>&5
7102 ac_status=$?
7103 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7104 (exit $ac_status); }; }; then
7105 eval "$as_ac_var=yes"
7106else
7107 echo "$as_me: failed program was:" >&5
7108sed 's/^/| /' conftest.$ac_ext >&5
7109
7110eval "$as_ac_var=no"
7111fi
7112rm -f conftest.err conftest.$ac_objext \
7113 conftest$ac_exeext conftest.$ac_ext
7114fi
7115echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
7116echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
7117if test `eval echo '${'$as_ac_var'}'` = yes; then
7118 cat >>confdefs.h <<_ACEOF
7119#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
7120_ACEOF
252b5132 7121
252b5132
RH
7122fi
7123done
7124
f9c026a8
NC
7125echo "$as_me:$LINENO: checking for mkstemp" >&5
7126echo $ECHO_N "checking for mkstemp... $ECHO_C" >&6
7127if test "${ac_cv_func_mkstemp+set}" = set; then
7128 echo $ECHO_N "(cached) $ECHO_C" >&6
7129else
7130 cat >conftest.$ac_ext <<_ACEOF
7131/* confdefs.h. */
7132_ACEOF
7133cat confdefs.h >>conftest.$ac_ext
7134cat >>conftest.$ac_ext <<_ACEOF
7135/* end confdefs.h. */
7136/* Define mkstemp to an innocuous variant, in case <limits.h> declares mkstemp.
7137 For example, HP-UX 11i <limits.h> declares gettimeofday. */
7138#define mkstemp innocuous_mkstemp
7139
7140/* System header to define __stub macros and hopefully few prototypes,
7141 which can conflict with char mkstemp (); below.
7142 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
7143 <limits.h> exists even on freestanding compilers. */
7144
7145#ifdef __STDC__
7146# include <limits.h>
7147#else
7148# include <assert.h>
7149#endif
7150
7151#undef mkstemp
7152
7153/* Override any gcc2 internal prototype to avoid an error. */
7154#ifdef __cplusplus
7155extern "C"
7156{
7157#endif
7158/* We use char because int might match the return type of a gcc2
7159 builtin and then its argument prototype would still apply. */
7160char mkstemp ();
7161/* The GNU C library defines this for functions which it implements
7162 to always fail with ENOSYS. Some functions are actually named
7163 something starting with __ and the normal name is an alias. */
7164#if defined (__stub_mkstemp) || defined (__stub___mkstemp)
7165choke me
7166#else
7167char (*f) () = mkstemp;
7168#endif
7169#ifdef __cplusplus
7170}
7171#endif
7172
7173int
7174main ()
7175{
7176return f != mkstemp;
7177 ;
7178 return 0;
7179}
7180_ACEOF
7181rm -f conftest.$ac_objext conftest$ac_exeext
7182if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7183 (eval $ac_link) 2>conftest.er1
7184 ac_status=$?
7185 grep -v '^ *+' conftest.er1 >conftest.err
7186 rm -f conftest.er1
7187 cat conftest.err >&5
7188 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7189 (exit $ac_status); } &&
7190 { ac_try='test -z "$ac_c_werror_flag"
7191 || test ! -s conftest.err'
7192 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7193 (eval $ac_try) 2>&5
7194 ac_status=$?
7195 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7196 (exit $ac_status); }; } &&
7197 { ac_try='test -s conftest$ac_exeext'
7198 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7199 (eval $ac_try) 2>&5
7200 ac_status=$?
7201 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7202 (exit $ac_status); }; }; then
7203 ac_cv_func_mkstemp=yes
7204else
7205 echo "$as_me: failed program was:" >&5
7206sed 's/^/| /' conftest.$ac_ext >&5
7207
7208ac_cv_func_mkstemp=no
7209fi
7210rm -f conftest.err conftest.$ac_objext \
7211 conftest$ac_exeext conftest.$ac_ext
7212fi
7213echo "$as_me:$LINENO: result: $ac_cv_func_mkstemp" >&5
7214echo "${ECHO_T}$ac_cv_func_mkstemp" >&6
7215if test $ac_cv_func_mkstemp = yes; then
7216
7217cat >>confdefs.h <<\_ACEOF
7218#define HAVE_MKSTEMP 1
7219_ACEOF
7220
7221fi
7222
7223echo "$as_me:$LINENO: checking for mkdtemp" >&5
7224echo $ECHO_N "checking for mkdtemp... $ECHO_C" >&6
7225if test "${ac_cv_func_mkdtemp+set}" = set; then
7226 echo $ECHO_N "(cached) $ECHO_C" >&6
7227else
7228 cat >conftest.$ac_ext <<_ACEOF
7229/* confdefs.h. */
7230_ACEOF
7231cat confdefs.h >>conftest.$ac_ext
7232cat >>conftest.$ac_ext <<_ACEOF
7233/* end confdefs.h. */
7234/* Define mkdtemp to an innocuous variant, in case <limits.h> declares mkdtemp.
7235 For example, HP-UX 11i <limits.h> declares gettimeofday. */
7236#define mkdtemp innocuous_mkdtemp
7237
7238/* System header to define __stub macros and hopefully few prototypes,
7239 which can conflict with char mkdtemp (); below.
7240 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
7241 <limits.h> exists even on freestanding compilers. */
7242
7243#ifdef __STDC__
7244# include <limits.h>
7245#else
7246# include <assert.h>
7247#endif
7248
7249#undef mkdtemp
7250
7251/* Override any gcc2 internal prototype to avoid an error. */
7252#ifdef __cplusplus
7253extern "C"
7254{
7255#endif
7256/* We use char because int might match the return type of a gcc2
7257 builtin and then its argument prototype would still apply. */
7258char mkdtemp ();
7259/* The GNU C library defines this for functions which it implements
7260 to always fail with ENOSYS. Some functions are actually named
7261 something starting with __ and the normal name is an alias. */
7262#if defined (__stub_mkdtemp) || defined (__stub___mkdtemp)
7263choke me
7264#else
7265char (*f) () = mkdtemp;
7266#endif
7267#ifdef __cplusplus
7268}
7269#endif
7270
7271int
7272main ()
7273{
7274return f != mkdtemp;
7275 ;
7276 return 0;
7277}
7278_ACEOF
7279rm -f conftest.$ac_objext conftest$ac_exeext
7280if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7281 (eval $ac_link) 2>conftest.er1
7282 ac_status=$?
7283 grep -v '^ *+' conftest.er1 >conftest.err
7284 rm -f conftest.er1
7285 cat conftest.err >&5
7286 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7287 (exit $ac_status); } &&
7288 { ac_try='test -z "$ac_c_werror_flag"
7289 || test ! -s conftest.err'
7290 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7291 (eval $ac_try) 2>&5
7292 ac_status=$?
7293 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7294 (exit $ac_status); }; } &&
7295 { ac_try='test -s conftest$ac_exeext'
7296 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7297 (eval $ac_try) 2>&5
7298 ac_status=$?
7299 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7300 (exit $ac_status); }; }; then
7301 ac_cv_func_mkdtemp=yes
7302else
7303 echo "$as_me: failed program was:" >&5
7304sed 's/^/| /' conftest.$ac_ext >&5
7305
7306ac_cv_func_mkdtemp=no
7307fi
7308rm -f conftest.err conftest.$ac_objext \
7309 conftest$ac_exeext conftest.$ac_ext
7310fi
7311echo "$as_me:$LINENO: result: $ac_cv_func_mkdtemp" >&5
7312echo "${ECHO_T}$ac_cv_func_mkdtemp" >&6
7313if test $ac_cv_func_mkdtemp = yes; then
7314
7315cat >>confdefs.h <<\_ACEOF
7316#define HAVE_MKDTEMP 1
7317_ACEOF
7318
7319fi
7320
252b5132 7321
cedd9a58
JJ
7322# Check whether fopen64 is available and whether _LARGEFILE64_SOURCE
7323# needs to be defined for it
42ecbf5e
DJ
7324echo "$as_me:$LINENO: checking for fopen64" >&5
7325echo $ECHO_N "checking for fopen64... $ECHO_C" >&6
7326if test "${bu_cv_have_fopen64+set}" = set; then
7327 echo $ECHO_N "(cached) $ECHO_C" >&6
7328else
7329 cat >conftest.$ac_ext <<_ACEOF
7330/* confdefs.h. */
7331_ACEOF
7332cat confdefs.h >>conftest.$ac_ext
7333cat >>conftest.$ac_ext <<_ACEOF
7334/* end confdefs.h. */
cedd9a58 7335#include <stdio.h>
42ecbf5e
DJ
7336int
7337main ()
7338{
cedd9a58 7339FILE *f = fopen64 ("/tmp/foo","r");
42ecbf5e
DJ
7340 ;
7341 return 0;
7342}
7343_ACEOF
7344rm -f conftest.$ac_objext conftest$ac_exeext
7345if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7346 (eval $ac_link) 2>conftest.er1
7347 ac_status=$?
7348 grep -v '^ *+' conftest.er1 >conftest.err
7349 rm -f conftest.er1
7350 cat conftest.err >&5
7351 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7352 (exit $ac_status); } &&
b7d4af3a
JW
7353 { ac_try='test -z "$ac_c_werror_flag"
7354 || test ! -s conftest.err'
42ecbf5e
DJ
7355 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7356 (eval $ac_try) 2>&5
7357 ac_status=$?
7358 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7359 (exit $ac_status); }; } &&
7360 { ac_try='test -s conftest$ac_exeext'
7361 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7362 (eval $ac_try) 2>&5
7363 ac_status=$?
7364 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7365 (exit $ac_status); }; }; then
cedd9a58
JJ
7366 bu_cv_have_fopen64=yes
7367else
42ecbf5e
DJ
7368 echo "$as_me: failed program was:" >&5
7369sed 's/^/| /' conftest.$ac_ext >&5
7370
7371saved_CPPFLAGS=$CPPFLAGS
cedd9a58 7372 CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
42ecbf5e
DJ
7373 cat >conftest.$ac_ext <<_ACEOF
7374/* confdefs.h. */
7375_ACEOF
7376cat confdefs.h >>conftest.$ac_ext
7377cat >>conftest.$ac_ext <<_ACEOF
7378/* end confdefs.h. */
cedd9a58 7379#include <stdio.h>
42ecbf5e
DJ
7380int
7381main ()
7382{
cedd9a58 7383FILE *f = fopen64 ("/tmp/foo","r");
42ecbf5e
DJ
7384 ;
7385 return 0;
7386}
7387_ACEOF
7388rm -f conftest.$ac_objext conftest$ac_exeext
7389if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7390 (eval $ac_link) 2>conftest.er1
7391 ac_status=$?
7392 grep -v '^ *+' conftest.er1 >conftest.err
7393 rm -f conftest.er1
7394 cat conftest.err >&5
7395 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7396 (exit $ac_status); } &&
b7d4af3a
JW
7397 { ac_try='test -z "$ac_c_werror_flag"
7398 || test ! -s conftest.err'
42ecbf5e
DJ
7399 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7400 (eval $ac_try) 2>&5
7401 ac_status=$?
7402 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7403 (exit $ac_status); }; } &&
7404 { ac_try='test -s conftest$ac_exeext'
7405 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7406 (eval $ac_try) 2>&5
7407 ac_status=$?
7408 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7409 (exit $ac_status); }; }; then
cedd9a58
JJ
7410 bu_cv_have_fopen64="need -D_LARGEFILE64_SOURCE"
7411else
42ecbf5e
DJ
7412 echo "$as_me: failed program was:" >&5
7413sed 's/^/| /' conftest.$ac_ext >&5
7414
7415bu_cv_have_fopen64=no
cedd9a58 7416fi
42ecbf5e
DJ
7417rm -f conftest.err conftest.$ac_objext \
7418 conftest$ac_exeext conftest.$ac_ext
17a5a5c3 7419 CPPFLAGS=$saved_CPPFLAGS
cedd9a58 7420fi
42ecbf5e
DJ
7421rm -f conftest.err conftest.$ac_objext \
7422 conftest$ac_exeext conftest.$ac_ext
cedd9a58 7423fi
cedd9a58 7424
42ecbf5e
DJ
7425echo "$as_me:$LINENO: result: $bu_cv_have_fopen64" >&5
7426echo "${ECHO_T}$bu_cv_have_fopen64" >&6
6db7a086 7427if test "$bu_cv_have_fopen64" != no; then
42ecbf5e
DJ
7428
7429cat >>confdefs.h <<\_ACEOF
cedd9a58 7430#define HAVE_FOPEN64 1
42ecbf5e 7431_ACEOF
cedd9a58 7432
fb5b5478 7433fi
42ecbf5e
DJ
7434echo "$as_me:$LINENO: checking for stat64" >&5
7435echo $ECHO_N "checking for stat64... $ECHO_C" >&6
7436if test "${bu_cv_have_stat64+set}" = set; then
7437 echo $ECHO_N "(cached) $ECHO_C" >&6
fb5b5478 7438else
42ecbf5e
DJ
7439 cat >conftest.$ac_ext <<_ACEOF
7440/* confdefs.h. */
7441_ACEOF
7442cat confdefs.h >>conftest.$ac_ext
7443cat >>conftest.$ac_ext <<_ACEOF
7444/* end confdefs.h. */
fb5b5478 7445#include <sys/stat.h>
42ecbf5e
DJ
7446int
7447main ()
7448{
fb5b5478 7449struct stat64 st; stat64 ("/tmp/foo", &st);
42ecbf5e
DJ
7450 ;
7451 return 0;
7452}
7453_ACEOF
7454rm -f conftest.$ac_objext conftest$ac_exeext
7455if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7456 (eval $ac_link) 2>conftest.er1
7457 ac_status=$?
7458 grep -v '^ *+' conftest.er1 >conftest.err
7459 rm -f conftest.er1
7460 cat conftest.err >&5
7461 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7462 (exit $ac_status); } &&
b7d4af3a
JW
7463 { ac_try='test -z "$ac_c_werror_flag"
7464 || test ! -s conftest.err'
42ecbf5e
DJ
7465 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7466 (eval $ac_try) 2>&5
7467 ac_status=$?
7468 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7469 (exit $ac_status); }; } &&
7470 { ac_try='test -s conftest$ac_exeext'
7471 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7472 (eval $ac_try) 2>&5
7473 ac_status=$?
7474 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7475 (exit $ac_status); }; }; then
fb5b5478
JJ
7476 bu_cv_have_stat64=yes
7477else
42ecbf5e
DJ
7478 echo "$as_me: failed program was:" >&5
7479sed 's/^/| /' conftest.$ac_ext >&5
7480
7481saved_CPPFLAGS=$CPPFLAGS
fb5b5478 7482 CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
42ecbf5e
DJ
7483 cat >conftest.$ac_ext <<_ACEOF
7484/* confdefs.h. */
7485_ACEOF
7486cat confdefs.h >>conftest.$ac_ext
7487cat >>conftest.$ac_ext <<_ACEOF
7488/* end confdefs.h. */
fb5b5478 7489#include <sys/stat.h>
42ecbf5e
DJ
7490int
7491main ()
7492{
fb5b5478 7493struct stat64 st; stat64 ("/tmp/foo", &st);
42ecbf5e
DJ
7494 ;
7495 return 0;
7496}
7497_ACEOF
7498rm -f conftest.$ac_objext conftest$ac_exeext
7499if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7500 (eval $ac_link) 2>conftest.er1
7501 ac_status=$?
7502 grep -v '^ *+' conftest.er1 >conftest.err
7503 rm -f conftest.er1
7504 cat conftest.err >&5
7505 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7506 (exit $ac_status); } &&
b7d4af3a
JW
7507 { ac_try='test -z "$ac_c_werror_flag"
7508 || test ! -s conftest.err'
42ecbf5e
DJ
7509 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7510 (eval $ac_try) 2>&5
7511 ac_status=$?
7512 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7513 (exit $ac_status); }; } &&
7514 { ac_try='test -s conftest$ac_exeext'
7515 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7516 (eval $ac_try) 2>&5
7517 ac_status=$?
7518 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7519 (exit $ac_status); }; }; then
fb5b5478
JJ
7520 bu_cv_have_stat64="need -D_LARGEFILE64_SOURCE"
7521else
42ecbf5e
DJ
7522 echo "$as_me: failed program was:" >&5
7523sed 's/^/| /' conftest.$ac_ext >&5
7524
7525bu_cv_have_stat64=no
fb5b5478 7526fi
42ecbf5e
DJ
7527rm -f conftest.err conftest.$ac_objext \
7528 conftest$ac_exeext conftest.$ac_ext
fb5b5478
JJ
7529 CPPFLAGS=$saved_CPPFLAGS
7530fi
42ecbf5e
DJ
7531rm -f conftest.err conftest.$ac_objext \
7532 conftest$ac_exeext conftest.$ac_ext
fb5b5478
JJ
7533fi
7534
42ecbf5e
DJ
7535echo "$as_me:$LINENO: result: $bu_cv_have_stat64" >&5
7536echo "${ECHO_T}$bu_cv_have_stat64" >&6
fb5b5478 7537if test "$bu_cv_have_stat64" != no; then
42ecbf5e
DJ
7538
7539cat >>confdefs.h <<\_ACEOF
fb5b5478 7540#define HAVE_STAT64 1
42ecbf5e 7541_ACEOF
fb5b5478
JJ
7542
7543fi
7544if test "$bu_cv_have_fopen64" = "need -D_LARGEFILE64_SOURCE" \
7545 || test "$bu_cv_have_stat64" = "need -D_LARGEFILE64_SOURCE"; then
42ecbf5e
DJ
7546
7547cat >>confdefs.h <<\_ACEOF
cedd9a58 7548#define _LARGEFILE64_SOURCE 1
42ecbf5e 7549_ACEOF
cedd9a58 7550
fb5b5478 7551 CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
cedd9a58
JJ
7552fi
7553
f353eb8a 7554# Some systems have frexp only in -lm, not in -lc.
42ecbf5e
DJ
7555echo "$as_me:$LINENO: checking for library containing frexp" >&5
7556echo $ECHO_N "checking for library containing frexp... $ECHO_C" >&6
7557if test "${ac_cv_search_frexp+set}" = set; then
7558 echo $ECHO_N "(cached) $ECHO_C" >&6
7559else
7560 ac_func_search_save_LIBS=$LIBS
7561ac_cv_search_frexp=no
7562cat >conftest.$ac_ext <<_ACEOF
7563/* confdefs.h. */
7564_ACEOF
7565cat confdefs.h >>conftest.$ac_ext
7566cat >>conftest.$ac_ext <<_ACEOF
7567/* end confdefs.h. */
f353eb8a 7568
f353eb8a 7569/* Override any gcc2 internal prototype to avoid an error. */
42ecbf5e
DJ
7570#ifdef __cplusplus
7571extern "C"
7572#endif
f353eb8a 7573/* We use char because int might match the return type of a gcc2
42ecbf5e
DJ
7574 builtin and then its argument prototype would still apply. */
7575char frexp ();
7576int
7577main ()
7578{
7579frexp ();
7580 ;
7581 return 0;
7582}
7583_ACEOF
7584rm -f conftest.$ac_objext conftest$ac_exeext
7585if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7586 (eval $ac_link) 2>conftest.er1
7587 ac_status=$?
7588 grep -v '^ *+' conftest.er1 >conftest.err
7589 rm -f conftest.er1
7590 cat conftest.err >&5
7591 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7592 (exit $ac_status); } &&
b7d4af3a
JW
7593 { ac_try='test -z "$ac_c_werror_flag"
7594 || test ! -s conftest.err'
42ecbf5e
DJ
7595 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7596 (eval $ac_try) 2>&5
7597 ac_status=$?
7598 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7599 (exit $ac_status); }; } &&
7600 { ac_try='test -s conftest$ac_exeext'
7601 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7602 (eval $ac_try) 2>&5
7603 ac_status=$?
7604 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7605 (exit $ac_status); }; }; then
f353eb8a
ILT
7606 ac_cv_search_frexp="none required"
7607else
42ecbf5e
DJ
7608 echo "$as_me: failed program was:" >&5
7609sed 's/^/| /' conftest.$ac_ext >&5
7610
f353eb8a 7611fi
42ecbf5e
DJ
7612rm -f conftest.err conftest.$ac_objext \
7613 conftest$ac_exeext conftest.$ac_ext
7614if test "$ac_cv_search_frexp" = no; then
7615 for ac_lib in m; do
7616 LIBS="-l$ac_lib $ac_func_search_save_LIBS"
7617 cat >conftest.$ac_ext <<_ACEOF
7618/* confdefs.h. */
7619_ACEOF
7620cat confdefs.h >>conftest.$ac_ext
7621cat >>conftest.$ac_ext <<_ACEOF
7622/* end confdefs.h. */
7623
f353eb8a 7624/* Override any gcc2 internal prototype to avoid an error. */
42ecbf5e
DJ
7625#ifdef __cplusplus
7626extern "C"
7627#endif
f353eb8a 7628/* We use char because int might match the return type of a gcc2
42ecbf5e
DJ
7629 builtin and then its argument prototype would still apply. */
7630char frexp ();
7631int
7632main ()
7633{
7634frexp ();
7635 ;
7636 return 0;
7637}
7638_ACEOF
7639rm -f conftest.$ac_objext conftest$ac_exeext
7640if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7641 (eval $ac_link) 2>conftest.er1
7642 ac_status=$?
7643 grep -v '^ *+' conftest.er1 >conftest.err
7644 rm -f conftest.er1
7645 cat conftest.err >&5
7646 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7647 (exit $ac_status); } &&
b7d4af3a
JW
7648 { ac_try='test -z "$ac_c_werror_flag"
7649 || test ! -s conftest.err'
42ecbf5e
DJ
7650 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7651 (eval $ac_try) 2>&5
7652 ac_status=$?
7653 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7654 (exit $ac_status); }; } &&
7655 { ac_try='test -s conftest$ac_exeext'
7656 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7657 (eval $ac_try) 2>&5
7658 ac_status=$?
7659 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7660 (exit $ac_status); }; }; then
7661 ac_cv_search_frexp="-l$ac_lib"
f353eb8a
ILT
7662break
7663else
42ecbf5e
DJ
7664 echo "$as_me: failed program was:" >&5
7665sed 's/^/| /' conftest.$ac_ext >&5
7666
f353eb8a 7667fi
42ecbf5e
DJ
7668rm -f conftest.err conftest.$ac_objext \
7669 conftest$ac_exeext conftest.$ac_ext
7670 done
e5a52504 7671fi
42ecbf5e
DJ
7672LIBS=$ac_func_search_save_LIBS
7673fi
7674echo "$as_me:$LINENO: result: $ac_cv_search_frexp" >&5
7675echo "${ECHO_T}$ac_cv_search_frexp" >&6
7676if test "$ac_cv_search_frexp" != no; then
d15b04bd 7677 test "$ac_cv_search_frexp" = "none required" || LIBS="$ac_cv_search_frexp $LIBS"
42ecbf5e 7678
f353eb8a
ILT
7679fi
7680
42ecbf5e
DJ
7681
7682echo "$as_me:$LINENO: checking for time_t in time.h" >&5
7683echo $ECHO_N "checking for time_t in time.h... $ECHO_C" >&6
7684if test "${bu_cv_decl_time_t_time_h+set}" = set; then
7685 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 7686else
42ecbf5e
DJ
7687 cat >conftest.$ac_ext <<_ACEOF
7688/* confdefs.h. */
7689_ACEOF
7690cat confdefs.h >>conftest.$ac_ext
7691cat >>conftest.$ac_ext <<_ACEOF
7692/* end confdefs.h. */
252b5132 7693#include <time.h>
42ecbf5e
DJ
7694int
7695main ()
7696{
252b5132 7697time_t i;
42ecbf5e
DJ
7698 ;
7699 return 0;
7700}
7701_ACEOF
7702rm -f conftest.$ac_objext
7703if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7704 (eval $ac_compile) 2>conftest.er1
7705 ac_status=$?
7706 grep -v '^ *+' conftest.er1 >conftest.err
7707 rm -f conftest.er1
7708 cat conftest.err >&5
7709 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7710 (exit $ac_status); } &&
b7d4af3a
JW
7711 { ac_try='test -z "$ac_c_werror_flag"
7712 || test ! -s conftest.err'
42ecbf5e
DJ
7713 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7714 (eval $ac_try) 2>&5
7715 ac_status=$?
7716 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7717 (exit $ac_status); }; } &&
7718 { ac_try='test -s conftest.$ac_objext'
7719 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7720 (eval $ac_try) 2>&5
7721 ac_status=$?
7722 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7723 (exit $ac_status); }; }; then
252b5132
RH
7724 bu_cv_decl_time_t_time_h=yes
7725else
42ecbf5e
DJ
7726 echo "$as_me: failed program was:" >&5
7727sed 's/^/| /' conftest.$ac_ext >&5
7728
7729bu_cv_decl_time_t_time_h=no
252b5132 7730fi
42ecbf5e 7731rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132
RH
7732fi
7733
42ecbf5e
DJ
7734echo "$as_me:$LINENO: result: $bu_cv_decl_time_t_time_h" >&5
7735echo "${ECHO_T}$bu_cv_decl_time_t_time_h" >&6
252b5132 7736if test $bu_cv_decl_time_t_time_h = yes; then
42ecbf5e
DJ
7737
7738cat >>confdefs.h <<\_ACEOF
252b5132 7739#define HAVE_TIME_T_IN_TIME_H 1
42ecbf5e 7740_ACEOF
252b5132
RH
7741
7742fi
7743
42ecbf5e
DJ
7744echo "$as_me:$LINENO: checking for time_t in sys/types.h" >&5
7745echo $ECHO_N "checking for time_t in sys/types.h... $ECHO_C" >&6
7746if test "${bu_cv_decl_time_t_types_h+set}" = set; then
7747 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 7748else
42ecbf5e
DJ
7749 cat >conftest.$ac_ext <<_ACEOF
7750/* confdefs.h. */
7751_ACEOF
7752cat confdefs.h >>conftest.$ac_ext
7753cat >>conftest.$ac_ext <<_ACEOF
7754/* end confdefs.h. */
252b5132 7755#include <sys/types.h>
42ecbf5e
DJ
7756int
7757main ()
7758{
252b5132 7759time_t i;
42ecbf5e
DJ
7760 ;
7761 return 0;
7762}
7763_ACEOF
7764rm -f conftest.$ac_objext
7765if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7766 (eval $ac_compile) 2>conftest.er1
7767 ac_status=$?
7768 grep -v '^ *+' conftest.er1 >conftest.err
7769 rm -f conftest.er1
7770 cat conftest.err >&5
7771 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7772 (exit $ac_status); } &&
b7d4af3a
JW
7773 { ac_try='test -z "$ac_c_werror_flag"
7774 || test ! -s conftest.err'
42ecbf5e
DJ
7775 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7776 (eval $ac_try) 2>&5
7777 ac_status=$?
7778 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7779 (exit $ac_status); }; } &&
7780 { ac_try='test -s conftest.$ac_objext'
7781 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7782 (eval $ac_try) 2>&5
7783 ac_status=$?
7784 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7785 (exit $ac_status); }; }; then
252b5132
RH
7786 bu_cv_decl_time_t_types_h=yes
7787else
42ecbf5e
DJ
7788 echo "$as_me: failed program was:" >&5
7789sed 's/^/| /' conftest.$ac_ext >&5
7790
7791bu_cv_decl_time_t_types_h=no
252b5132 7792fi
42ecbf5e 7793rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132
RH
7794fi
7795
42ecbf5e
DJ
7796echo "$as_me:$LINENO: result: $bu_cv_decl_time_t_types_h" >&5
7797echo "${ECHO_T}$bu_cv_decl_time_t_types_h" >&6
252b5132 7798if test $bu_cv_decl_time_t_types_h = yes; then
42ecbf5e
DJ
7799
7800cat >>confdefs.h <<\_ACEOF
252b5132 7801#define HAVE_TIME_T_IN_TYPES_H 1
42ecbf5e 7802_ACEOF
252b5132
RH
7803
7804fi
7805
42ecbf5e
DJ
7806echo "$as_me:$LINENO: checking for a known getopt prototype in unistd.h" >&5
7807echo $ECHO_N "checking for a known getopt prototype in unistd.h... $ECHO_C" >&6
7808if test "${bu_cv_decl_getopt_unistd_h+set}" = set; then
7809 echo $ECHO_N "(cached) $ECHO_C" >&6
e46eba98 7810else
42ecbf5e
DJ
7811 cat >conftest.$ac_ext <<_ACEOF
7812/* confdefs.h. */
7813_ACEOF
7814cat confdefs.h >>conftest.$ac_ext
7815cat >>conftest.$ac_ext <<_ACEOF
7816/* end confdefs.h. */
e46eba98 7817#include <unistd.h>
42ecbf5e
DJ
7818int
7819main ()
7820{
e46eba98 7821extern int getopt (int, char *const*, const char *);
42ecbf5e
DJ
7822 ;
7823 return 0;
7824}
7825_ACEOF
7826rm -f conftest.$ac_objext
7827if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7828 (eval $ac_compile) 2>conftest.er1
7829 ac_status=$?
7830 grep -v '^ *+' conftest.er1 >conftest.err
7831 rm -f conftest.er1
7832 cat conftest.err >&5
7833 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7834 (exit $ac_status); } &&
b7d4af3a
JW
7835 { ac_try='test -z "$ac_c_werror_flag"
7836 || test ! -s conftest.err'
42ecbf5e
DJ
7837 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7838 (eval $ac_try) 2>&5
7839 ac_status=$?
7840 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7841 (exit $ac_status); }; } &&
7842 { ac_try='test -s conftest.$ac_objext'
7843 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7844 (eval $ac_try) 2>&5
7845 ac_status=$?
7846 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7847 (exit $ac_status); }; }; then
e46eba98
NC
7848 bu_cv_decl_getopt_unistd_h=yes
7849else
42ecbf5e
DJ
7850 echo "$as_me: failed program was:" >&5
7851sed 's/^/| /' conftest.$ac_ext >&5
7852
7853bu_cv_decl_getopt_unistd_h=no
e46eba98 7854fi
42ecbf5e 7855rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
e46eba98
NC
7856fi
7857
42ecbf5e
DJ
7858echo "$as_me:$LINENO: result: $bu_cv_decl_getopt_unistd_h" >&5
7859echo "${ECHO_T}$bu_cv_decl_getopt_unistd_h" >&6
e46eba98 7860if test $bu_cv_decl_getopt_unistd_h = yes; then
42ecbf5e
DJ
7861
7862cat >>confdefs.h <<\_ACEOF
e46eba98 7863#define HAVE_DECL_GETOPT 1
42ecbf5e 7864_ACEOF
e46eba98
NC
7865
7866fi
7867
252b5132
RH
7868# Under Next 3.2 <utime.h> apparently does not define struct utimbuf
7869# by default.
42ecbf5e
DJ
7870echo "$as_me:$LINENO: checking for utime.h" >&5
7871echo $ECHO_N "checking for utime.h... $ECHO_C" >&6
7872if test "${bu_cv_header_utime_h+set}" = set; then
7873 echo $ECHO_N "(cached) $ECHO_C" >&6
7874else
7875 cat >conftest.$ac_ext <<_ACEOF
7876/* confdefs.h. */
7877_ACEOF
7878cat confdefs.h >>conftest.$ac_ext
7879cat >>conftest.$ac_ext <<_ACEOF
7880/* end confdefs.h. */
252b5132
RH
7881#include <sys/types.h>
7882#ifdef HAVE_TIME_H
7883#include <time.h>
7884#endif
7885#include <utime.h>
42ecbf5e
DJ
7886int
7887main ()
7888{
252b5132 7889struct utimbuf s;
42ecbf5e
DJ
7890 ;
7891 return 0;
7892}
7893_ACEOF
7894rm -f conftest.$ac_objext
7895if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7896 (eval $ac_compile) 2>conftest.er1
7897 ac_status=$?
7898 grep -v '^ *+' conftest.er1 >conftest.err
7899 rm -f conftest.er1
7900 cat conftest.err >&5
7901 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7902 (exit $ac_status); } &&
b7d4af3a
JW
7903 { ac_try='test -z "$ac_c_werror_flag"
7904 || test ! -s conftest.err'
42ecbf5e
DJ
7905 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7906 (eval $ac_try) 2>&5
7907 ac_status=$?
7908 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7909 (exit $ac_status); }; } &&
7910 { ac_try='test -s conftest.$ac_objext'
7911 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7912 (eval $ac_try) 2>&5
7913 ac_status=$?
7914 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7915 (exit $ac_status); }; }; then
252b5132
RH
7916 bu_cv_header_utime_h=yes
7917else
42ecbf5e
DJ
7918 echo "$as_me: failed program was:" >&5
7919sed 's/^/| /' conftest.$ac_ext >&5
7920
7921bu_cv_header_utime_h=no
252b5132 7922fi
42ecbf5e 7923rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132
RH
7924fi
7925
42ecbf5e
DJ
7926echo "$as_me:$LINENO: result: $bu_cv_header_utime_h" >&5
7927echo "${ECHO_T}$bu_cv_header_utime_h" >&6
252b5132 7928if test $bu_cv_header_utime_h = yes; then
42ecbf5e
DJ
7929
7930cat >>confdefs.h <<\_ACEOF
252b5132 7931#define HAVE_GOOD_UTIME_H 1
42ecbf5e 7932_ACEOF
252b5132
RH
7933
7934fi
7935
398ee8f1
SE
7936echo "$as_me:$LINENO: checking whether fprintf is declared" >&5
7937echo $ECHO_N "checking whether fprintf is declared... $ECHO_C" >&6
7938if test "${ac_cv_have_decl_fprintf+set}" = set; then
42ecbf5e 7939 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 7940else
42ecbf5e
DJ
7941 cat >conftest.$ac_ext <<_ACEOF
7942/* confdefs.h. */
7943_ACEOF
7944cat confdefs.h >>conftest.$ac_ext
7945cat >>conftest.$ac_ext <<_ACEOF
7946/* end confdefs.h. */
398ee8f1 7947$ac_includes_default
42ecbf5e
DJ
7948int
7949main ()
7950{
398ee8f1
SE
7951#ifndef fprintf
7952 char *p = (char *) fprintf;
7953#endif
7954
42ecbf5e
DJ
7955 ;
7956 return 0;
7957}
7958_ACEOF
7959rm -f conftest.$ac_objext
7960if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7961 (eval $ac_compile) 2>conftest.er1
7962 ac_status=$?
7963 grep -v '^ *+' conftest.er1 >conftest.err
7964 rm -f conftest.er1
7965 cat conftest.err >&5
7966 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7967 (exit $ac_status); } &&
b7d4af3a
JW
7968 { ac_try='test -z "$ac_c_werror_flag"
7969 || test ! -s conftest.err'
42ecbf5e
DJ
7970 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7971 (eval $ac_try) 2>&5
7972 ac_status=$?
7973 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7974 (exit $ac_status); }; } &&
7975 { ac_try='test -s conftest.$ac_objext'
7976 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7977 (eval $ac_try) 2>&5
7978 ac_status=$?
7979 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7980 (exit $ac_status); }; }; then
398ee8f1 7981 ac_cv_have_decl_fprintf=yes
252b5132 7982else
42ecbf5e
DJ
7983 echo "$as_me: failed program was:" >&5
7984sed 's/^/| /' conftest.$ac_ext >&5
7985
398ee8f1 7986ac_cv_have_decl_fprintf=no
252b5132 7987fi
42ecbf5e 7988rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132 7989fi
398ee8f1
SE
7990echo "$as_me:$LINENO: result: $ac_cv_have_decl_fprintf" >&5
7991echo "${ECHO_T}$ac_cv_have_decl_fprintf" >&6
7992if test $ac_cv_have_decl_fprintf = yes; then
252b5132 7993
398ee8f1
SE
7994cat >>confdefs.h <<_ACEOF
7995#define HAVE_DECL_FPRINTF 1
7996_ACEOF
42ecbf5e 7997
398ee8f1
SE
7998
7999else
8000 cat >>confdefs.h <<_ACEOF
8001#define HAVE_DECL_FPRINTF 0
42ecbf5e 8002_ACEOF
252b5132 8003
252b5132 8004
3e321448
L
8005fi
8006echo "$as_me:$LINENO: checking whether stpcpy is declared" >&5
8007echo $ECHO_N "checking whether stpcpy is declared... $ECHO_C" >&6
8008if test "${ac_cv_have_decl_stpcpy+set}" = set; then
8009 echo $ECHO_N "(cached) $ECHO_C" >&6
8010else
8011 cat >conftest.$ac_ext <<_ACEOF
8012/* confdefs.h. */
8013_ACEOF
8014cat confdefs.h >>conftest.$ac_ext
8015cat >>conftest.$ac_ext <<_ACEOF
8016/* end confdefs.h. */
8017$ac_includes_default
8018int
8019main ()
8020{
8021#ifndef stpcpy
8022 char *p = (char *) stpcpy;
8023#endif
8024
8025 ;
8026 return 0;
8027}
8028_ACEOF
8029rm -f conftest.$ac_objext
8030if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
8031 (eval $ac_compile) 2>conftest.er1
8032 ac_status=$?
8033 grep -v '^ *+' conftest.er1 >conftest.err
8034 rm -f conftest.er1
8035 cat conftest.err >&5
8036 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8037 (exit $ac_status); } &&
8038 { ac_try='test -z "$ac_c_werror_flag"
8039 || test ! -s conftest.err'
8040 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8041 (eval $ac_try) 2>&5
8042 ac_status=$?
8043 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8044 (exit $ac_status); }; } &&
8045 { ac_try='test -s conftest.$ac_objext'
8046 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8047 (eval $ac_try) 2>&5
8048 ac_status=$?
8049 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8050 (exit $ac_status); }; }; then
8051 ac_cv_have_decl_stpcpy=yes
8052else
8053 echo "$as_me: failed program was:" >&5
8054sed 's/^/| /' conftest.$ac_ext >&5
8055
8056ac_cv_have_decl_stpcpy=no
8057fi
8058rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
8059fi
8060echo "$as_me:$LINENO: result: $ac_cv_have_decl_stpcpy" >&5
8061echo "${ECHO_T}$ac_cv_have_decl_stpcpy" >&6
8062if test $ac_cv_have_decl_stpcpy = yes; then
8063
8064cat >>confdefs.h <<_ACEOF
8065#define HAVE_DECL_STPCPY 1
8066_ACEOF
8067
8068
8069else
8070 cat >>confdefs.h <<_ACEOF
8071#define HAVE_DECL_STPCPY 0
8072_ACEOF
8073
8074
398ee8f1
SE
8075fi
8076echo "$as_me:$LINENO: checking whether strstr is declared" >&5
8077echo $ECHO_N "checking whether strstr is declared... $ECHO_C" >&6
8078if test "${ac_cv_have_decl_strstr+set}" = set; then
42ecbf5e 8079 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 8080else
42ecbf5e
DJ
8081 cat >conftest.$ac_ext <<_ACEOF
8082/* confdefs.h. */
8083_ACEOF
8084cat confdefs.h >>conftest.$ac_ext
8085cat >>conftest.$ac_ext <<_ACEOF
8086/* end confdefs.h. */
398ee8f1 8087$ac_includes_default
42ecbf5e
DJ
8088int
8089main ()
8090{
398ee8f1
SE
8091#ifndef strstr
8092 char *p = (char *) strstr;
8093#endif
8094
42ecbf5e
DJ
8095 ;
8096 return 0;
8097}
8098_ACEOF
8099rm -f conftest.$ac_objext
8100if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
8101 (eval $ac_compile) 2>conftest.er1
8102 ac_status=$?
8103 grep -v '^ *+' conftest.er1 >conftest.err
8104 rm -f conftest.er1
8105 cat conftest.err >&5
8106 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8107 (exit $ac_status); } &&
b7d4af3a
JW
8108 { ac_try='test -z "$ac_c_werror_flag"
8109 || test ! -s conftest.err'
42ecbf5e
DJ
8110 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8111 (eval $ac_try) 2>&5
8112 ac_status=$?
8113 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8114 (exit $ac_status); }; } &&
8115 { ac_try='test -s conftest.$ac_objext'
8116 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8117 (eval $ac_try) 2>&5
8118 ac_status=$?
8119 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8120 (exit $ac_status); }; }; then
398ee8f1 8121 ac_cv_have_decl_strstr=yes
252b5132 8122else
42ecbf5e
DJ
8123 echo "$as_me: failed program was:" >&5
8124sed 's/^/| /' conftest.$ac_ext >&5
8125
398ee8f1 8126ac_cv_have_decl_strstr=no
252b5132 8127fi
42ecbf5e 8128rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132 8129fi
398ee8f1
SE
8130echo "$as_me:$LINENO: result: $ac_cv_have_decl_strstr" >&5
8131echo "${ECHO_T}$ac_cv_have_decl_strstr" >&6
8132if test $ac_cv_have_decl_strstr = yes; then
252b5132 8133
398ee8f1
SE
8134cat >>confdefs.h <<_ACEOF
8135#define HAVE_DECL_STRSTR 1
8136_ACEOF
42ecbf5e 8137
398ee8f1
SE
8138
8139else
8140 cat >>confdefs.h <<_ACEOF
8141#define HAVE_DECL_STRSTR 0
42ecbf5e 8142_ACEOF
252b5132 8143
252b5132 8144
398ee8f1
SE
8145fi
8146echo "$as_me:$LINENO: checking whether sbrk is declared" >&5
8147echo $ECHO_N "checking whether sbrk is declared... $ECHO_C" >&6
8148if test "${ac_cv_have_decl_sbrk+set}" = set; then
42ecbf5e 8149 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 8150else
42ecbf5e
DJ
8151 cat >conftest.$ac_ext <<_ACEOF
8152/* confdefs.h. */
8153_ACEOF
8154cat confdefs.h >>conftest.$ac_ext
8155cat >>conftest.$ac_ext <<_ACEOF
8156/* end confdefs.h. */
398ee8f1 8157$ac_includes_default
42ecbf5e
DJ
8158int
8159main ()
8160{
398ee8f1
SE
8161#ifndef sbrk
8162 char *p = (char *) sbrk;
8163#endif
8164
42ecbf5e
DJ
8165 ;
8166 return 0;
8167}
8168_ACEOF
8169rm -f conftest.$ac_objext
8170if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
8171 (eval $ac_compile) 2>conftest.er1
8172 ac_status=$?
8173 grep -v '^ *+' conftest.er1 >conftest.err
8174 rm -f conftest.er1
8175 cat conftest.err >&5
8176 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8177 (exit $ac_status); } &&
b7d4af3a
JW
8178 { ac_try='test -z "$ac_c_werror_flag"
8179 || test ! -s conftest.err'
42ecbf5e
DJ
8180 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8181 (eval $ac_try) 2>&5
8182 ac_status=$?
8183 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8184 (exit $ac_status); }; } &&
8185 { ac_try='test -s conftest.$ac_objext'
8186 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8187 (eval $ac_try) 2>&5
8188 ac_status=$?
8189 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8190 (exit $ac_status); }; }; then
398ee8f1 8191 ac_cv_have_decl_sbrk=yes
252b5132 8192else
42ecbf5e
DJ
8193 echo "$as_me: failed program was:" >&5
8194sed 's/^/| /' conftest.$ac_ext >&5
8195
398ee8f1 8196ac_cv_have_decl_sbrk=no
252b5132 8197fi
42ecbf5e 8198rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132 8199fi
398ee8f1
SE
8200echo "$as_me:$LINENO: result: $ac_cv_have_decl_sbrk" >&5
8201echo "${ECHO_T}$ac_cv_have_decl_sbrk" >&6
8202if test $ac_cv_have_decl_sbrk = yes; then
252b5132 8203
398ee8f1
SE
8204cat >>confdefs.h <<_ACEOF
8205#define HAVE_DECL_SBRK 1
8206_ACEOF
42ecbf5e 8207
398ee8f1
SE
8208
8209else
8210 cat >>confdefs.h <<_ACEOF
8211#define HAVE_DECL_SBRK 0
42ecbf5e 8212_ACEOF
252b5132 8213
252b5132 8214
398ee8f1
SE
8215fi
8216echo "$as_me:$LINENO: checking whether getenv is declared" >&5
8217echo $ECHO_N "checking whether getenv is declared... $ECHO_C" >&6
8218if test "${ac_cv_have_decl_getenv+set}" = set; then
42ecbf5e 8219 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 8220else
42ecbf5e
DJ
8221 cat >conftest.$ac_ext <<_ACEOF
8222/* confdefs.h. */
8223_ACEOF
8224cat confdefs.h >>conftest.$ac_ext
8225cat >>conftest.$ac_ext <<_ACEOF
8226/* end confdefs.h. */
398ee8f1 8227$ac_includes_default
42ecbf5e
DJ
8228int
8229main ()
8230{
398ee8f1
SE
8231#ifndef getenv
8232 char *p = (char *) getenv;
8233#endif
8234
42ecbf5e
DJ
8235 ;
8236 return 0;
8237}
8238_ACEOF
8239rm -f conftest.$ac_objext
8240if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
8241 (eval $ac_compile) 2>conftest.er1
8242 ac_status=$?
8243 grep -v '^ *+' conftest.er1 >conftest.err
8244 rm -f conftest.er1
8245 cat conftest.err >&5
8246 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8247 (exit $ac_status); } &&
b7d4af3a
JW
8248 { ac_try='test -z "$ac_c_werror_flag"
8249 || test ! -s conftest.err'
42ecbf5e
DJ
8250 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8251 (eval $ac_try) 2>&5
8252 ac_status=$?
8253 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8254 (exit $ac_status); }; } &&
8255 { ac_try='test -s conftest.$ac_objext'
8256 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8257 (eval $ac_try) 2>&5
8258 ac_status=$?
8259 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8260 (exit $ac_status); }; }; then
398ee8f1 8261 ac_cv_have_decl_getenv=yes
252b5132 8262else
42ecbf5e
DJ
8263 echo "$as_me: failed program was:" >&5
8264sed 's/^/| /' conftest.$ac_ext >&5
8265
398ee8f1 8266ac_cv_have_decl_getenv=no
252b5132 8267fi
42ecbf5e 8268rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132 8269fi
398ee8f1
SE
8270echo "$as_me:$LINENO: result: $ac_cv_have_decl_getenv" >&5
8271echo "${ECHO_T}$ac_cv_have_decl_getenv" >&6
8272if test $ac_cv_have_decl_getenv = yes; then
252b5132 8273
398ee8f1
SE
8274cat >>confdefs.h <<_ACEOF
8275#define HAVE_DECL_GETENV 1
8276_ACEOF
42ecbf5e 8277
398ee8f1
SE
8278
8279else
8280 cat >>confdefs.h <<_ACEOF
8281#define HAVE_DECL_GETENV 0
42ecbf5e 8282_ACEOF
252b5132 8283
252b5132 8284
398ee8f1
SE
8285fi
8286echo "$as_me:$LINENO: checking whether environ is declared" >&5
8287echo $ECHO_N "checking whether environ is declared... $ECHO_C" >&6
8288if test "${ac_cv_have_decl_environ+set}" = set; then
42ecbf5e 8289 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 8290else
42ecbf5e
DJ
8291 cat >conftest.$ac_ext <<_ACEOF
8292/* confdefs.h. */
8293_ACEOF
8294cat confdefs.h >>conftest.$ac_ext
8295cat >>conftest.$ac_ext <<_ACEOF
8296/* end confdefs.h. */
398ee8f1 8297$ac_includes_default
42ecbf5e
DJ
8298int
8299main ()
8300{
398ee8f1
SE
8301#ifndef environ
8302 char *p = (char *) environ;
8303#endif
8304
42ecbf5e
DJ
8305 ;
8306 return 0;
8307}
8308_ACEOF
8309rm -f conftest.$ac_objext
8310if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
8311 (eval $ac_compile) 2>conftest.er1
8312 ac_status=$?
8313 grep -v '^ *+' conftest.er1 >conftest.err
8314 rm -f conftest.er1
8315 cat conftest.err >&5
8316 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8317 (exit $ac_status); } &&
b7d4af3a
JW
8318 { ac_try='test -z "$ac_c_werror_flag"
8319 || test ! -s conftest.err'
42ecbf5e
DJ
8320 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8321 (eval $ac_try) 2>&5
8322 ac_status=$?
8323 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8324 (exit $ac_status); }; } &&
8325 { ac_try='test -s conftest.$ac_objext'
8326 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8327 (eval $ac_try) 2>&5
8328 ac_status=$?
8329 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8330 (exit $ac_status); }; }; then
398ee8f1 8331 ac_cv_have_decl_environ=yes
252b5132 8332else
42ecbf5e
DJ
8333 echo "$as_me: failed program was:" >&5
8334sed 's/^/| /' conftest.$ac_ext >&5
8335
398ee8f1 8336ac_cv_have_decl_environ=no
252b5132 8337fi
42ecbf5e 8338rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132 8339fi
398ee8f1
SE
8340echo "$as_me:$LINENO: result: $ac_cv_have_decl_environ" >&5
8341echo "${ECHO_T}$ac_cv_have_decl_environ" >&6
8342if test $ac_cv_have_decl_environ = yes; then
252b5132 8343
398ee8f1
SE
8344cat >>confdefs.h <<_ACEOF
8345#define HAVE_DECL_ENVIRON 1
8346_ACEOF
42ecbf5e 8347
398ee8f1
SE
8348
8349else
8350 cat >>confdefs.h <<_ACEOF
8351#define HAVE_DECL_ENVIRON 0
42ecbf5e 8352_ACEOF
252b5132 8353
252b5132 8354
398ee8f1 8355fi
b7d4af3a
JW
8356echo "$as_me:$LINENO: checking whether getc_unlocked is declared" >&5
8357echo $ECHO_N "checking whether getc_unlocked is declared... $ECHO_C" >&6
8358if test "${ac_cv_have_decl_getc_unlocked+set}" = set; then
8359 echo $ECHO_N "(cached) $ECHO_C" >&6
8360else
8361 cat >conftest.$ac_ext <<_ACEOF
8362/* confdefs.h. */
8363_ACEOF
8364cat confdefs.h >>conftest.$ac_ext
8365cat >>conftest.$ac_ext <<_ACEOF
8366/* end confdefs.h. */
8367$ac_includes_default
8368int
8369main ()
8370{
8371#ifndef getc_unlocked
8372 char *p = (char *) getc_unlocked;
8373#endif
8374
8375 ;
8376 return 0;
8377}
8378_ACEOF
8379rm -f conftest.$ac_objext
8380if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
8381 (eval $ac_compile) 2>conftest.er1
8382 ac_status=$?
8383 grep -v '^ *+' conftest.er1 >conftest.err
8384 rm -f conftest.er1
8385 cat conftest.err >&5
8386 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8387 (exit $ac_status); } &&
8388 { ac_try='test -z "$ac_c_werror_flag"
8389 || test ! -s conftest.err'
8390 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8391 (eval $ac_try) 2>&5
8392 ac_status=$?
8393 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8394 (exit $ac_status); }; } &&
8395 { ac_try='test -s conftest.$ac_objext'
8396 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8397 (eval $ac_try) 2>&5
8398 ac_status=$?
8399 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8400 (exit $ac_status); }; }; then
8401 ac_cv_have_decl_getc_unlocked=yes
8402else
8403 echo "$as_me: failed program was:" >&5
8404sed 's/^/| /' conftest.$ac_ext >&5
8405
8406ac_cv_have_decl_getc_unlocked=no
8407fi
8408rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
8409fi
8410echo "$as_me:$LINENO: result: $ac_cv_have_decl_getc_unlocked" >&5
8411echo "${ECHO_T}$ac_cv_have_decl_getc_unlocked" >&6
8412if test $ac_cv_have_decl_getc_unlocked = yes; then
8413
8414cat >>confdefs.h <<_ACEOF
8415#define HAVE_DECL_GETC_UNLOCKED 1
8416_ACEOF
8417
8418
8419else
8420 cat >>confdefs.h <<_ACEOF
8421#define HAVE_DECL_GETC_UNLOCKED 0
8422_ACEOF
8423
8424
db50c840
EB
8425fi
8426echo "$as_me:$LINENO: checking whether snprintf is declared" >&5
8427echo $ECHO_N "checking whether snprintf is declared... $ECHO_C" >&6
8428if test "${ac_cv_have_decl_snprintf+set}" = set; then
8429 echo $ECHO_N "(cached) $ECHO_C" >&6
8430else
8431 cat >conftest.$ac_ext <<_ACEOF
8432/* confdefs.h. */
8433_ACEOF
8434cat confdefs.h >>conftest.$ac_ext
8435cat >>conftest.$ac_ext <<_ACEOF
8436/* end confdefs.h. */
8437$ac_includes_default
8438int
8439main ()
8440{
8441#ifndef snprintf
8442 char *p = (char *) snprintf;
8443#endif
8444
8445 ;
8446 return 0;
8447}
8448_ACEOF
8449rm -f conftest.$ac_objext
8450if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
8451 (eval $ac_compile) 2>conftest.er1
8452 ac_status=$?
8453 grep -v '^ *+' conftest.er1 >conftest.err
8454 rm -f conftest.er1
8455 cat conftest.err >&5
8456 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8457 (exit $ac_status); } &&
8458 { ac_try='test -z "$ac_c_werror_flag"
8459 || test ! -s conftest.err'
8460 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8461 (eval $ac_try) 2>&5
8462 ac_status=$?
8463 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8464 (exit $ac_status); }; } &&
8465 { ac_try='test -s conftest.$ac_objext'
8466 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8467 (eval $ac_try) 2>&5
8468 ac_status=$?
8469 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8470 (exit $ac_status); }; }; then
8471 ac_cv_have_decl_snprintf=yes
8472else
8473 echo "$as_me: failed program was:" >&5
8474sed 's/^/| /' conftest.$ac_ext >&5
8475
8476ac_cv_have_decl_snprintf=no
8477fi
8478rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
8479fi
8480echo "$as_me:$LINENO: result: $ac_cv_have_decl_snprintf" >&5
8481echo "${ECHO_T}$ac_cv_have_decl_snprintf" >&6
8482if test $ac_cv_have_decl_snprintf = yes; then
8483
8484cat >>confdefs.h <<_ACEOF
8485#define HAVE_DECL_SNPRINTF 1
8486_ACEOF
8487
8488
8489else
8490 cat >>confdefs.h <<_ACEOF
8491#define HAVE_DECL_SNPRINTF 0
8492_ACEOF
8493
8494
8495fi
8496echo "$as_me:$LINENO: checking whether vsnprintf is declared" >&5
8497echo $ECHO_N "checking whether vsnprintf is declared... $ECHO_C" >&6
8498if test "${ac_cv_have_decl_vsnprintf+set}" = set; then
8499 echo $ECHO_N "(cached) $ECHO_C" >&6
8500else
8501 cat >conftest.$ac_ext <<_ACEOF
8502/* confdefs.h. */
8503_ACEOF
8504cat confdefs.h >>conftest.$ac_ext
8505cat >>conftest.$ac_ext <<_ACEOF
8506/* end confdefs.h. */
8507$ac_includes_default
8508int
8509main ()
8510{
8511#ifndef vsnprintf
8512 char *p = (char *) vsnprintf;
8513#endif
8514
8515 ;
8516 return 0;
8517}
8518_ACEOF
8519rm -f conftest.$ac_objext
8520if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
8521 (eval $ac_compile) 2>conftest.er1
8522 ac_status=$?
8523 grep -v '^ *+' conftest.er1 >conftest.err
8524 rm -f conftest.er1
8525 cat conftest.err >&5
8526 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8527 (exit $ac_status); } &&
8528 { ac_try='test -z "$ac_c_werror_flag"
8529 || test ! -s conftest.err'
8530 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8531 (eval $ac_try) 2>&5
8532 ac_status=$?
8533 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8534 (exit $ac_status); }; } &&
8535 { ac_try='test -s conftest.$ac_objext'
8536 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8537 (eval $ac_try) 2>&5
8538 ac_status=$?
8539 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8540 (exit $ac_status); }; }; then
8541 ac_cv_have_decl_vsnprintf=yes
8542else
8543 echo "$as_me: failed program was:" >&5
8544sed 's/^/| /' conftest.$ac_ext >&5
8545
8546ac_cv_have_decl_vsnprintf=no
8547fi
8548rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
8549fi
8550echo "$as_me:$LINENO: result: $ac_cv_have_decl_vsnprintf" >&5
8551echo "${ECHO_T}$ac_cv_have_decl_vsnprintf" >&6
8552if test $ac_cv_have_decl_vsnprintf = yes; then
8553
8554cat >>confdefs.h <<_ACEOF
8555#define HAVE_DECL_VSNPRINTF 1
8556_ACEOF
8557
8558
8559else
8560 cat >>confdefs.h <<_ACEOF
8561#define HAVE_DECL_VSNPRINTF 0
8562_ACEOF
8563
8564
b7d4af3a
JW
8565fi
8566
8567
252b5132
RH
8568
8569
8570case "${host}" in
8a965946 8571*-*-msdos* | *-*-go32* | *-*-mingw32* | *-*-cygwin* | *-*-windows*)
42ecbf5e
DJ
8572
8573cat >>confdefs.h <<\_ACEOF
252b5132 8574#define USE_BINARY_FOPEN 1
42ecbf5e 8575_ACEOF
252b5132
RH
8576 ;;
8577esac
8578
8579# target-specific stuff:
8580
8581# Canonicalize the secondary target names.
8582if test -n "$enable_targets"; then
8583 for targ in `echo $enable_targets | sed 's/,/ /g'`
8584 do
6d83c84b 8585 result=`$ac_config_sub $targ 2>/dev/null`
252b5132
RH
8586 if test -n "$result"; then
8587 canon_targets="$canon_targets $result"
8588 else
8589 # Allow targets that config.sub doesn't recognize, like "all".
8590 canon_targets="$canon_targets $targ"
8591 fi
8592 done
8593fi
8594
8595all_targets=false
8596BUILD_NLMCONV=
8597NLMCONV_DEFS=
8598BUILD_SRCONV=
8599BUILD_DLLTOOL=
8600DLLTOOL_DEFS=
7aad4c3d 8601DLLTOOL_DEFAULT=
252b5132
RH
8602BUILD_WINDRES=
8603BUILD_DLLWRAP=
8604BUILD_MISC=
1d97d67f 8605BUILD_INSTALL_MISC=
8b1e6df3 8606OBJDUMP_DEFS=
252b5132
RH
8607
8608for targ in $target $canon_targets
8609do
8610 if test "x$targ" = "xall"; then
8611 all_targets=true
8612 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
8613 BUILD_SRCONV='$(SRCONV_PROG)'
8614 NLMCONV_DEFS="-DNLMCONV_I386 -DNLMCONV_ALPHA -DNLMCONV_POWERPC -DNLMCONV_SPARC"
1d97d67f 8615 BUILD_MISC="${BUILD_MISC} "'bin2c$(EXEEXT_FOR_BUILD)'
252b5132
RH
8616 else
8617 case $targ in
42ecbf5e 8618 i[3-7]86*-*-netware*)
252b5132
RH
8619 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
8620 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_I386"
8621 ;;
8622 alpha*-*-netware*)
8623 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
8624 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_ALPHA"
8625 ;;
8626 powerpc*-*-netware*)
8627 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
8628 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_POWERPC"
8629 ;;
8630 sparc*-*-netware*)
8631 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
8632 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_SPARC"
8633 ;;
8634 esac
8635 case $targ in
8636 *-*-hms*) BUILD_SRCONV='$(SRCONV_PROG)' ;;
8637 esac
8638 case $targ in
a8c548cb
NC
8639 arm-epoc-pe*)
8640 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
7aad4c3d
L
8641 if test -z "$DLLTOOL_DEFAULT"; then
8642 DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_ARM_EPOC"
8643 fi
a8c548cb
NC
8644 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM_EPOC -DDLLTOOL_ARM"
8645 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
8646 ;;
7148cc28
NC
8647 arm-wince-pe* | arm-*-wince)
8648 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
7aad4c3d
L
8649 if test -z "$DLLTOOL_DEFAULT"; then
8650 DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_ARM_WINCE"
8651 fi
7148cc28
NC
8652 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM_WINCE -DDLLTOOL_ARM"
8653 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
8654 ;;
8655 arm-*-pe*)
252b5132 8656 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
7aad4c3d
L
8657 if test -z "$DLLTOOL_DEFAULT"; then
8658 DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_ARM"
8659 fi
252b5132
RH
8660 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
8661 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
7a7b06ef 8662 ;;
27a710e5 8663 thumb-*-pe*)
252b5132 8664 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
7aad4c3d
L
8665 if test -z "$DLLTOOL_DEFAULT"; then
8666 DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_ARM"
8667 fi
252b5132
RH
8668 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
8669 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
7a7b06ef 8670 ;;
42037fe5 8671 x86_64-*-mingw*)
99ad8390 8672 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
7aad4c3d
L
8673 if test -z "$DLLTOOL_DEFAULT"; then
8674 DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_MX86_64"
8675 fi
99ad8390
NC
8676 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MX86_64"
8677 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
8678 BUILD_DLLWRAP='$(DLLWRAP_PROG)$(EXEEXT)'
8679 ;;
80c7c40a 8680 i[3-7]86-*-pe* | i[3-7]86-*-cygwin* | i[3-7]86-*-mingw32** | i[3-7]86-*-netbsdpe*)
252b5132 8681 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
7aad4c3d
L
8682 if test -z "$DLLTOOL_DEFAULT"; then
8683 DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_I386"
8684 fi
252b5132
RH
8685 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
8686 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
8687 BUILD_DLLWRAP='$(DLLWRAP_PROG)$(EXEEXT)'
7a7b06ef 8688 ;;
80c7c40a 8689 i[3-7]86-*-interix)
7a7b06ef 8690 BUILD_DLLTOOL='$(DLLTOOL_PROG)'
7aad4c3d
L
8691 if test -z "$DLLTOOL_DEFAULT"; then
8692 DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_I386"
8693 fi
7a7b06ef
ILT
8694 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
8695 ;;
f0660b73
NC
8696 powerpc*-aix5.[01])
8697 ;;
8698 powerpc*-aix5.*)
8699 OBJDUMP_DEFS="-DAIX_WEAK_SUPPORT"
8700 ;;
e1d5b1e7 8701 powerpc*-*-pe* | powerpc*-*-cygwin*)
252b5132 8702 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
7aad4c3d
L
8703 if test -z "$DLLTOOL_DEFAULT"; then
8704 DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_PPC"
8705 fi
252b5132
RH
8706 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_PPC"
8707 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
8a0e0f38 8708 ;;
669a9a2a 8709 powerpc*-*-linux* | powerpc*-*-elf*)
1d97d67f 8710 BUILD_INSTALL_MISC="${BUILD_INSTALL_MISC} embedspu"
669a9a2a 8711 ;;
e1d5b1e7 8712 sh*-*-pe)
8a0e0f38 8713 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
7aad4c3d
L
8714 if test -z "$DLLTOOL_DEFAULT"; then
8715 DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_SH"
8716 fi
8a0e0f38
NC
8717 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_SH"
8718 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
8719 ;;
cd14b966 8720 spu-*-*)
1d97d67f 8721 BUILD_MISC="${BUILD_MISC} "'bin2c$(EXEEXT_FOR_BUILD)'
cd14b966 8722 ;;
e1d5b1e7 8723 mips*-*-pe)
8a0e0f38 8724 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
7aad4c3d
L
8725 if test -z "$DLLTOOL_DEFAULT"; then
8726 DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_MIPS"
8727 fi
8a0e0f38
NC
8728 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MIPS"
8729 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
7a7b06ef 8730 ;;
27a710e5 8731 mcore-*-pe)
661016bb 8732 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
7aad4c3d
L
8733 if test -z "$DLLTOOL_DEFAULT"; then
8734 DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_MCORE"
8735 fi
661016bb
NC
8736 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MCORE"
8737 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
7a7b06ef 8738 ;;
27a710e5 8739 mcore-*-elf)
661016bb 8740 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
7aad4c3d
L
8741 if test -z "$DLLTOOL_DEFAULT"; then
8742 DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_MCORE_ELF"
8743 fi
661016bb 8744 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MCORE_ELF"
7a7b06ef 8745 ;;
15ab5209
DB
8746 mep-*)
8747 OBJDUMP_DEFS="-DSKIP_ZEROES=256 -DSKIP_ZEROES_AT_END=0"
8748 ;;
252b5132
RH
8749 esac
8750 fi
8751done
8752
7aad4c3d
L
8753DLLTOOL_DEFS="$DLLTOOL_DEFS $DLLTOOL_DEFAULT"
8754
42ecbf5e
DJ
8755if test "${with_windres+set}" = set; then
8756 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
8757fi
8758
8759
8760
8761
8762
8763
8764
8765
8766
8767
8768
8769
1d97d67f 8770
42ecbf5e
DJ
8771cat >>confdefs.h <<_ACEOF
8772#define TARGET "${target}"
8773_ACEOF
8774
8775
8776targ=$target
8777. $srcdir/../bfd/config.bfd
8778if test "x$targ_underscore" = "xyes"; then
8779 UNDERSCORE=1
8780else
8781 UNDERSCORE=0
8782fi
8783
8784cat >>confdefs.h <<_ACEOF
8785#define TARGET_PREPENDS_UNDERSCORE $UNDERSCORE
8786_ACEOF
8787
8788
8789# Emulation
8790for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'`
8791do
8792 # Canonicalize the secondary target names.
8793 result=`$ac_config_sub $targ_alias 2>/dev/null`
8794 if test -n "$result"; then
8795 targ=$result
8796 else
8797 targ=$targ_alias
8798 fi
8799
8800 . ${srcdir}/configure.tgt
8801
8802 EMULATION=$targ_emul
8803 EMULATION_VECTOR=$targ_emul_vector
8804done
8805
8806
8807
8808
108a6f8e
CD
8809# Required for html and install-html
8810
8811
8812
8813
42ecbf5e 8814 ac_config_files="$ac_config_files Makefile doc/Makefile po/Makefile.in:po/Make-in"
42ecbf5e
DJ
8815cat >confcache <<\_ACEOF
8816# This file is a shell script that caches the results of configure
8817# tests run on this system so they can be shared between configure
8818# scripts and configure runs, see configure's option --config-cache.
8819# It is not useful on other systems. If it contains results you don't
8820# want to keep, you may remove or edit it.
8821#
8822# config.status only pays attention to the cache file if you give it
8823# the --recheck option to rerun configure.
8824#
8825# `ac_cv_env_foo' variables (set or unset) will be overridden when
8826# loading this file, other *unset* `ac_cv_foo' will be assigned the
8827# following values.
8828
8829_ACEOF
8830
8831# The following way of writing the cache mishandles newlines in values,
8832# but we know of no workaround that is simple, portable, and efficient.
8833# So, don't put newlines in cache variables' values.
8834# Ultrix sh set writes to stderr and can't be redirected directly,
8835# and sets the high bit in the cache file unless we assign to the vars.
8836{
8837 (set) 2>&1 |
8838 case `(ac_space=' '; set | grep ac_space) 2>&1` in
8839 *ac_space=\ *)
8840 # `set' does not quote correctly, so add quotes (double-quote
8841 # substitution turns \\\\ into \\, and sed turns \\ into \).
8842 sed -n \
8843 "s/'/'\\\\''/g;
8844 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
8845 ;;
8846 *)
8847 # `set' quotes correctly as required by POSIX, so do not add quotes.
8848 sed -n \
8849 "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
8850 ;;
8851 esac;
8852} |
8853 sed '
8854 t clear
8855 : clear
8856 s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
8857 t end
8858 /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
8859 : end' >>confcache
8860if diff $cache_file confcache >/dev/null 2>&1; then :; else
8861 if test -w $cache_file; then
8862 test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
8863 cat confcache >$cache_file
8864 else
8865 echo "not updating unwritable cache $cache_file"
8866 fi
8867fi
8868rm -f confcache
8869
8870test "x$prefix" = xNONE && prefix=$ac_default_prefix
8871# Let make expand exec_prefix.
8872test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
8873
8874# VPATH may cause trouble with some makes, so we remove $(srcdir),
8875# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
8876# trailing colons and then remove the whole line if VPATH becomes empty
8877# (actually we leave an empty line to preserve line numbers).
8878if test "x$srcdir" = x.; then
8879 ac_vpsub='/^[ ]*VPATH[ ]*=/{
8880s/:*\$(srcdir):*/:/;
8881s/:*\${srcdir}:*/:/;
8882s/:*@srcdir@:*/:/;
8883s/^\([^=]*=[ ]*\):*/\1/;
8884s/:*$//;
8885s/^[^=]*=[ ]*$//;
8886}'
8887fi
8888
8889DEFS=-DHAVE_CONFIG_H
8890
8891ac_libobjs=
8892ac_ltlibobjs=
8893for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
8894 # 1. Remove the extension, and $U if already installed.
8895 ac_i=`echo "$ac_i" |
8896 sed 's/\$U\././;s/\.o$//;s/\.obj$//'`
8897 # 2. Add them.
8898 ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext"
8899 ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo'
8900done
8901LIBOBJS=$ac_libobjs
8902
8903LTLIBOBJS=$ac_ltlibobjs
8904
8905
8906if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
8907 { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined.
8908Usually this means the macro was only invoked conditionally." >&5
8909echo "$as_me: error: conditional \"AMDEP\" was never defined.
8910Usually this means the macro was only invoked conditionally." >&2;}
8911 { (exit 1); exit 1; }; }
8912fi
8913if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
8914 { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined.
8915Usually this means the macro was only invoked conditionally." >&5
8916echo "$as_me: error: conditional \"am__fastdepCC\" was never defined.
8917Usually this means the macro was only invoked conditionally." >&2;}
8918 { (exit 1); exit 1; }; }
8919fi
8920if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
8921 { { echo "$as_me:$LINENO: error: conditional \"MAINTAINER_MODE\" was never defined.
8922Usually this means the macro was only invoked conditionally." >&5
8923echo "$as_me: error: conditional \"MAINTAINER_MODE\" was never defined.
8924Usually this means the macro was only invoked conditionally." >&2;}
8925 { (exit 1); exit 1; }; }
8926fi
d5fbea21
DJ
8927if test -z "${GENINSRC_NEVER_TRUE}" && test -z "${GENINSRC_NEVER_FALSE}"; then
8928 { { echo "$as_me:$LINENO: error: conditional \"GENINSRC_NEVER\" was never defined.
8929Usually this means the macro was only invoked conditionally." >&5
8930echo "$as_me: error: conditional \"GENINSRC_NEVER\" was never defined.
8931Usually this means the macro was only invoked conditionally." >&2;}
8932 { (exit 1); exit 1; }; }
8933fi
42ecbf5e
DJ
8934
8935: ${CONFIG_STATUS=./config.status}
8936ac_clean_files_save=$ac_clean_files
8937ac_clean_files="$ac_clean_files $CONFIG_STATUS"
8938{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
8939echo "$as_me: creating $CONFIG_STATUS" >&6;}
8940cat >$CONFIG_STATUS <<_ACEOF
8941#! $SHELL
8942# Generated by $as_me.
8943# Run this file to recreate the current configuration.
8944# Compiler output produced by configure, useful for debugging
8945# configure, is in config.log if it exists.
8946
8947debug=false
8948ac_cs_recheck=false
8949ac_cs_silent=false
8950SHELL=\${CONFIG_SHELL-$SHELL}
8951_ACEOF
252b5132 8952
42ecbf5e
DJ
8953cat >>$CONFIG_STATUS <<\_ACEOF
8954## --------------------- ##
8955## M4sh Initialization. ##
8956## --------------------- ##
252b5132 8957
42ecbf5e
DJ
8958# Be Bourne compatible
8959if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
8960 emulate sh
8961 NULLCMD=:
8962 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
8963 # is contrary to our usage. Disable this feature.
8964 alias -g '${1+"$@"}'='"$@"'
8965elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
8966 set -o posix
8967fi
8968DUALCASE=1; export DUALCASE # for MKS sh
252b5132 8969
42ecbf5e
DJ
8970# Support unset when possible.
8971if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
8972 as_unset=unset
8973else
8974 as_unset=false
8975fi
252b5132
RH
8976
8977
42ecbf5e
DJ
8978# Work around bugs in pre-3.0 UWIN ksh.
8979$as_unset ENV MAIL MAILPATH
8980PS1='$ '
8981PS2='> '
8982PS4='+ '
252b5132 8983
42ecbf5e
DJ
8984# NLS nuisances.
8985for as_var in \
8986 LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
8987 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
8988 LC_TELEPHONE LC_TIME
8989do
8990 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
8991 eval $as_var=C; export $as_var
8992 else
8993 $as_unset $as_var
8994 fi
8995done
252b5132 8996
42ecbf5e
DJ
8997# Required to use basename.
8998if expr a : '\(a\)' >/dev/null 2>&1; then
8999 as_expr=expr
9000else
9001 as_expr=false
9002fi
252b5132 9003
42ecbf5e
DJ
9004if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
9005 as_basename=basename
9006else
9007 as_basename=false
9008fi
252b5132 9009
8b1e6df3 9010
42ecbf5e
DJ
9011# Name of the executable.
9012as_me=`$as_basename "$0" ||
9013$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
9014 X"$0" : 'X\(//\)$' \| \
9015 X"$0" : 'X\(/\)$' \| \
9016 . : '\(.\)' 2>/dev/null ||
9017echo X/"$0" |
9018 sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
9019 /^X\/\(\/\/\)$/{ s//\1/; q; }
9020 /^X\/\(\/\).*/{ s//\1/; q; }
9021 s/.*/./; q'`
0218d1e4 9022
252b5132 9023
42ecbf5e
DJ
9024# PATH needs CR, and LINENO needs CR and PATH.
9025# Avoid depending upon Character Ranges.
9026as_cr_letters='abcdefghijklmnopqrstuvwxyz'
9027as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
9028as_cr_Letters=$as_cr_letters$as_cr_LETTERS
9029as_cr_digits='0123456789'
9030as_cr_alnum=$as_cr_Letters$as_cr_digits
252b5132 9031
42ecbf5e
DJ
9032# The user is always right.
9033if test "${PATH_SEPARATOR+set}" != set; then
9034 echo "#! /bin/sh" >conf$$.sh
9035 echo "exit 0" >>conf$$.sh
9036 chmod +x conf$$.sh
9037 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
9038 PATH_SEPARATOR=';'
9039 else
9040 PATH_SEPARATOR=:
9041 fi
9042 rm -f conf$$.sh
252b5132
RH
9043fi
9044
9045
42ecbf5e
DJ
9046 as_lineno_1=$LINENO
9047 as_lineno_2=$LINENO
9048 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
9049 test "x$as_lineno_1" != "x$as_lineno_2" &&
9050 test "x$as_lineno_3" = "x$as_lineno_2" || {
9051 # Find who we are. Look in the path if we contain no path at all
9052 # relative or not.
9053 case $0 in
9054 *[\\/]* ) as_myself=$0 ;;
9055 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9056for as_dir in $PATH
eb1e0e80 9057do
42ecbf5e
DJ
9058 IFS=$as_save_IFS
9059 test -z "$as_dir" && as_dir=.
9060 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
9061done
eb1e0e80 9062
42ecbf5e
DJ
9063 ;;
9064 esac
9065 # We did not find ourselves, most probably we were run as `sh COMMAND'
9066 # in which case we are not to be found in the path.
9067 if test "x$as_myself" = x; then
9068 as_myself=$0
9069 fi
9070 if test ! -f "$as_myself"; then
9071 { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
9072echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
9073 { (exit 1); exit 1; }; }
9074 fi
9075 case $CONFIG_SHELL in
9076 '')
9077 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9078for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
9079do
9080 IFS=$as_save_IFS
9081 test -z "$as_dir" && as_dir=.
9082 for as_base in sh bash ksh sh5; do
9083 case $as_dir in
9084 /*)
9085 if ("$as_dir/$as_base" -c '
9086 as_lineno_1=$LINENO
9087 as_lineno_2=$LINENO
9088 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
9089 test "x$as_lineno_1" != "x$as_lineno_2" &&
9090 test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then
9091 $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
9092 $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
9093 CONFIG_SHELL=$as_dir/$as_base
9094 export CONFIG_SHELL
9095 exec "$CONFIG_SHELL" "$0" ${1+"$@"}
9096 fi;;
9097 esac
9098 done
eb1e0e80 9099done
42ecbf5e
DJ
9100;;
9101 esac
eb1e0e80 9102
42ecbf5e
DJ
9103 # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
9104 # uniformly replaced by the line number. The first 'sed' inserts a
9105 # line-number line before each line; the second 'sed' does the real
9106 # work. The second script uses 'N' to pair each line-number line
9107 # with the numbered line, and appends trailing '-' during
9108 # substitution so that $LINENO is not a special case at line end.
9109 # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
9110 # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-)
9111 sed '=' <$as_myself |
9112 sed '
9113 N
9114 s,$,-,
9115 : loop
9116 s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
9117 t loop
9118 s,-$,,
9119 s,^['$as_cr_digits']*\n,,
9120 ' >$as_me.lineno &&
9121 chmod +x $as_me.lineno ||
9122 { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
9123echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
9124 { (exit 1); exit 1; }; }
9125
9126 # Don't try to exec as it changes $[0], causing all sort of problems
9127 # (the dirname of $[0] is not the place where we might find the
9128 # original and so on. Autoconf is especially sensible to this).
9129 . ./$as_me.lineno
9130 # Exit status is that of the last command.
9131 exit
9132}
eb1e0e80
NC
9133
9134
42ecbf5e
DJ
9135case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
9136 *c*,-n*) ECHO_N= ECHO_C='
9137' ECHO_T=' ' ;;
9138 *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;;
9139 *) ECHO_N= ECHO_C='\c' ECHO_T= ;;
9140esac
eb1e0e80 9141
42ecbf5e
DJ
9142if expr a : '\(a\)' >/dev/null 2>&1; then
9143 as_expr=expr
d15b04bd 9144else
42ecbf5e
DJ
9145 as_expr=false
9146fi
9147
9148rm -f conf$$ conf$$.exe conf$$.file
9149echo >conf$$.file
9150if ln -s conf$$.file conf$$ 2>/dev/null; then
9151 # We could just check for DJGPP; but this test a) works b) is more generic
9152 # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
9153 if test -f conf$$.exe; then
9154 # Don't use ln at all; we don't have any links
9155 as_ln_s='cp -p'
252b5132 9156 else
42ecbf5e 9157 as_ln_s='ln -s'
252b5132 9158 fi
42ecbf5e
DJ
9159elif ln conf$$.file conf$$ 2>/dev/null; then
9160 as_ln_s=ln
9161else
9162 as_ln_s='cp -p'
252b5132 9163fi
42ecbf5e 9164rm -f conf$$ conf$$.exe conf$$.file
252b5132 9165
42ecbf5e
DJ
9166if mkdir -p . 2>/dev/null; then
9167 as_mkdir_p=:
9168else
9169 test -d ./-p && rmdir ./-p
9170 as_mkdir_p=false
9171fi
d15b04bd 9172
42ecbf5e 9173as_executable_p="test -f"
252b5132 9174
42ecbf5e
DJ
9175# Sed expression to map a string onto a valid CPP name.
9176as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
9177
9178# Sed expression to map a string onto a valid variable name.
9179as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
9180
9181
9182# IFS
9183# We need space, tab and new line, in precisely that order.
9184as_nl='
9185'
9186IFS=" $as_nl"
9187
9188# CDPATH.
9189$as_unset CDPATH
9190
9191exec 6>&1
9192
9193# Open the log real soon, to keep \$[0] and so on meaningful, and to
9194# report actual input values of CONFIG_FILES etc. instead of their
9195# values after options handling. Logging --version etc. is OK.
9196exec 5>>config.log
9197{
9198 echo
9199 sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
9200## Running $as_me. ##
9201_ASBOX
9202} >&5
9203cat >&5 <<_CSEOF
9204
9205This file was extended by $as_me, which was
9206generated by GNU Autoconf 2.59. Invocation command line was
9207
9208 CONFIG_FILES = $CONFIG_FILES
9209 CONFIG_HEADERS = $CONFIG_HEADERS
9210 CONFIG_LINKS = $CONFIG_LINKS
9211 CONFIG_COMMANDS = $CONFIG_COMMANDS
9212 $ $0 $@
9213
9214_CSEOF
9215echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
9216echo >&5
9217_ACEOF
9218
9219# Files that config.status was made for.
9220if test -n "$ac_config_files"; then
9221 echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS
252b5132
RH
9222fi
9223
42ecbf5e
DJ
9224if test -n "$ac_config_headers"; then
9225 echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS
9226fi
e5a52504 9227
42ecbf5e
DJ
9228if test -n "$ac_config_links"; then
9229 echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS
9230fi
e5a52504 9231
42ecbf5e
DJ
9232if test -n "$ac_config_commands"; then
9233 echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
9234fi
d15b04bd 9235
42ecbf5e
DJ
9236cat >>$CONFIG_STATUS <<\_ACEOF
9237
9238ac_cs_usage="\
9239\`$as_me' instantiates files from templates according to the
9240current configuration.
9241
9242Usage: $0 [OPTIONS] [FILE]...
9243
9244 -h, --help print this help, then exit
9245 -V, --version print version number, then exit
9246 -q, --quiet do not print progress messages
9247 -d, --debug don't remove temporary files
9248 --recheck update $as_me by reconfiguring in the same conditions
9249 --file=FILE[:TEMPLATE]
9250 instantiate the configuration file FILE
9251 --header=FILE[:TEMPLATE]
9252 instantiate the configuration header FILE
9253
9254Configuration files:
9255$config_files
9256
9257Configuration headers:
9258$config_headers
9259
9260Configuration commands:
9261$config_commands
9262
9263Report bugs to <bug-autoconf@gnu.org>."
9264_ACEOF
9265
9266cat >>$CONFIG_STATUS <<_ACEOF
9267ac_cs_version="\\
9268config.status
9269configured by $0, generated by GNU Autoconf 2.59,
9270 with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
9271
9272Copyright (C) 2003 Free Software Foundation, Inc.
9273This config.status script is free software; the Free Software Foundation
9274gives unlimited permission to copy, distribute and modify it."
9275srcdir=$srcdir
9276INSTALL="$INSTALL"
9277_ACEOF
9278
9279cat >>$CONFIG_STATUS <<\_ACEOF
9280# If no file are specified by the user, then we need to provide default
9281# value. By we need to know if files were specified by the user.
9282ac_need_defaults=:
9283while test $# != 0
9284do
9285 case $1 in
9286 --*=*)
9287 ac_option=`expr "x$1" : 'x\([^=]*\)='`
9288 ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
9289 ac_shift=:
9290 ;;
9291 -*)
9292 ac_option=$1
9293 ac_optarg=$2
9294 ac_shift=shift
9295 ;;
9296 *) # This is not an option, so the user has probably given explicit
9297 # arguments.
9298 ac_option=$1
9299 ac_need_defaults=false;;
9300 esac
9301
9302 case $ac_option in
9303 # Handling of the options.
9304_ACEOF
9305cat >>$CONFIG_STATUS <<\_ACEOF
9306 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
9307 ac_cs_recheck=: ;;
9308 --version | --vers* | -V )
9309 echo "$ac_cs_version"; exit 0 ;;
9310 --he | --h)
9311 # Conflict between --help and --header
9312 { { echo "$as_me:$LINENO: error: ambiguous option: $1
9313Try \`$0 --help' for more information." >&5
9314echo "$as_me: error: ambiguous option: $1
9315Try \`$0 --help' for more information." >&2;}
9316 { (exit 1); exit 1; }; };;
9317 --help | --hel | -h )
9318 echo "$ac_cs_usage"; exit 0 ;;
9319 --debug | --d* | -d )
9320 debug=: ;;
9321 --file | --fil | --fi | --f )
9322 $ac_shift
9323 CONFIG_FILES="$CONFIG_FILES $ac_optarg"
9324 ac_need_defaults=false;;
9325 --header | --heade | --head | --hea )
9326 $ac_shift
9327 CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
9328 ac_need_defaults=false;;
9329 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
9330 | -silent | --silent | --silen | --sile | --sil | --si | --s)
9331 ac_cs_silent=: ;;
9332
9333 # This is an error.
9334 -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1
9335Try \`$0 --help' for more information." >&5
9336echo "$as_me: error: unrecognized option: $1
9337Try \`$0 --help' for more information." >&2;}
9338 { (exit 1); exit 1; }; } ;;
9339
9340 *) ac_config_targets="$ac_config_targets $1" ;;
9341
9342 esac
9343 shift
9344done
9345
9346ac_configure_extra_args=
9347
9348if $ac_cs_silent; then
9349 exec 6>/dev/null
9350 ac_configure_extra_args="$ac_configure_extra_args --silent"
9351fi
9352
9353_ACEOF
9354cat >>$CONFIG_STATUS <<_ACEOF
9355if \$ac_cs_recheck; then
9356 echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
9357 exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
9358fi
9359
9360_ACEOF
9361
9362cat >>$CONFIG_STATUS <<_ACEOF
d15b04bd 9363#
42ecbf5e 9364# INIT-COMMANDS section.
d15b04bd 9365#
e5a52504 9366
42ecbf5e 9367AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
20e95c23
DJ
9368# Capture the value of obsolete ALL_LINGUAS because we need it to compute
9369 # POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES, CATALOGS. But hide it
9370 # from automake.
9371 eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"'
9372 # Capture the value of LINGUAS because we need it to compute CATALOGS.
9373 LINGUAS="${LINGUAS-%UNSET%}"
9374
42ecbf5e
DJ
9375
9376_ACEOF
9377
9378
9379
9380cat >>$CONFIG_STATUS <<\_ACEOF
9381for ac_config_target in $ac_config_targets
252b5132 9382do
42ecbf5e
DJ
9383 case "$ac_config_target" in
9384 # Handling of arguments.
9385 "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
9386 "doc/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
9387 "po/Makefile.in" ) CONFIG_FILES="$CONFIG_FILES po/Makefile.in:po/Make-in" ;;
9388 "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
20e95c23 9389 "default-1" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
42ecbf5e
DJ
9390 "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h:config.in" ;;
9391 *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
9392echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
9393 { (exit 1); exit 1; }; };;
d15b04bd 9394 esac
252b5132
RH
9395done
9396
42ecbf5e
DJ
9397# If the user did not use the arguments to specify the items to instantiate,
9398# then the envvar interface is used. Set only those that are not.
9399# We use the long form for the default assignment because of an extremely
9400# bizarre bug on SunOS 4.1.3.
9401if $ac_need_defaults; then
9402 test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
9403 test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
9404 test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
9405fi
9406
9407# Have a temporary directory for convenience. Make it in the build tree
9408# simply because there is no reason to put it here, and in addition,
9409# creating and moving files from /tmp can sometimes cause problems.
9410# Create a temporary directory, and hook for its removal unless debugging.
9411$debug ||
9412{
9413 trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
9414 trap '{ (exit 1); exit 1; }' 1 2 13 15
9415}
252b5132 9416
42ecbf5e 9417# Create a (secure) tmp directory for tmp files.
e5a52504 9418
42ecbf5e
DJ
9419{
9420 tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` &&
9421 test -n "$tmp" && test -d "$tmp"
9422} ||
9423{
9424 tmp=./confstat$$-$RANDOM
9425 (umask 077 && mkdir $tmp)
9426} ||
9427{
9428 echo "$me: cannot create a temporary directory in ." >&2
9429 { (exit 1); exit 1; }
9430}
9431
9432_ACEOF
9433
9434cat >>$CONFIG_STATUS <<_ACEOF
9435
9436#
9437# CONFIG_FILES section.
9438#
e5a52504 9439
42ecbf5e
DJ
9440# No need to generate the scripts if there are no CONFIG_FILES.
9441# This happens for instance when ./config.status config.h
9442if test -n "\$CONFIG_FILES"; then
9443 # Protect against being on the right side of a sed subst in config.status.
9444 sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g;
9445 s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF
9446s,@SHELL@,$SHELL,;t t
9447s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t
9448s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t
9449s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t
9450s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t
9451s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t
9452s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t
9453s,@exec_prefix@,$exec_prefix,;t t
9454s,@prefix@,$prefix,;t t
9455s,@program_transform_name@,$program_transform_name,;t t
9456s,@bindir@,$bindir,;t t
9457s,@sbindir@,$sbindir,;t t
9458s,@libexecdir@,$libexecdir,;t t
9459s,@datadir@,$datadir,;t t
9460s,@sysconfdir@,$sysconfdir,;t t
9461s,@sharedstatedir@,$sharedstatedir,;t t
9462s,@localstatedir@,$localstatedir,;t t
9463s,@libdir@,$libdir,;t t
9464s,@includedir@,$includedir,;t t
9465s,@oldincludedir@,$oldincludedir,;t t
9466s,@infodir@,$infodir,;t t
9467s,@mandir@,$mandir,;t t
9468s,@build_alias@,$build_alias,;t t
9469s,@host_alias@,$host_alias,;t t
9470s,@target_alias@,$target_alias,;t t
9471s,@DEFS@,$DEFS,;t t
9472s,@ECHO_C@,$ECHO_C,;t t
9473s,@ECHO_N@,$ECHO_N,;t t
9474s,@ECHO_T@,$ECHO_T,;t t
9475s,@LIBS@,$LIBS,;t t
9476s,@build@,$build,;t t
9477s,@build_cpu@,$build_cpu,;t t
9478s,@build_vendor@,$build_vendor,;t t
9479s,@build_os@,$build_os,;t t
9480s,@host@,$host,;t t
9481s,@host_cpu@,$host_cpu,;t t
9482s,@host_vendor@,$host_vendor,;t t
9483s,@host_os@,$host_os,;t t
9484s,@target@,$target,;t t
9485s,@target_cpu@,$target_cpu,;t t
9486s,@target_vendor@,$target_vendor,;t t
9487s,@target_os@,$target_os,;t t
9488s,@CC@,$CC,;t t
9489s,@CFLAGS@,$CFLAGS,;t t
9490s,@LDFLAGS@,$LDFLAGS,;t t
9491s,@CPPFLAGS@,$CPPFLAGS,;t t
9492s,@ac_ct_CC@,$ac_ct_CC,;t t
9493s,@EXEEXT@,$EXEEXT,;t t
9494s,@OBJEXT@,$OBJEXT,;t t
9495s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
9496s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
9497s,@INSTALL_DATA@,$INSTALL_DATA,;t t
9498s,@CYGPATH_W@,$CYGPATH_W,;t t
9499s,@PACKAGE@,$PACKAGE,;t t
9500s,@VERSION@,$VERSION,;t t
9501s,@ACLOCAL@,$ACLOCAL,;t t
9502s,@AUTOCONF@,$AUTOCONF,;t t
9503s,@AUTOMAKE@,$AUTOMAKE,;t t
9504s,@AUTOHEADER@,$AUTOHEADER,;t t
9505s,@MAKEINFO@,$MAKEINFO,;t t
9506s,@install_sh@,$install_sh,;t t
9507s,@STRIP@,$STRIP,;t t
9508s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t
9509s,@INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t
9510s,@mkdir_p@,$mkdir_p,;t t
9511s,@AWK@,$AWK,;t t
9512s,@SET_MAKE@,$SET_MAKE,;t t
9513s,@am__leading_dot@,$am__leading_dot,;t t
9514s,@AMTAR@,$AMTAR,;t t
9515s,@am__tar@,$am__tar,;t t
9516s,@am__untar@,$am__untar,;t t
9517s,@DEPDIR@,$DEPDIR,;t t
9518s,@am__include@,$am__include,;t t
9519s,@am__quote@,$am__quote,;t t
9520s,@AMDEP_TRUE@,$AMDEP_TRUE,;t t
9521s,@AMDEP_FALSE@,$AMDEP_FALSE,;t t
9522s,@AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t
9523s,@CCDEPMODE@,$CCDEPMODE,;t t
9524s,@am__fastdepCC_TRUE@,$am__fastdepCC_TRUE,;t t
9525s,@am__fastdepCC_FALSE@,$am__fastdepCC_FALSE,;t t
9526s,@LN_S@,$LN_S,;t t
9527s,@RANLIB@,$RANLIB,;t t
9528s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t
9529s,@LIBTOOL@,$LIBTOOL,;t t
9530s,@WARN_CFLAGS@,$WARN_CFLAGS,;t t
9531s,@NO_WERROR@,$NO_WERROR,;t t
9532s,@YACC@,$YACC,;t t
9533s,@LEX@,$LEX,;t t
9534s,@LEXLIB@,$LEXLIB,;t t
9535s,@LEX_OUTPUT_ROOT@,$LEX_OUTPUT_ROOT,;t t
42ecbf5e 9536s,@USE_NLS@,$USE_NLS,;t t
20e95c23
DJ
9537s,@LIBINTL@,$LIBINTL,;t t
9538s,@LIBINTL_DEP@,$LIBINTL_DEP,;t t
9539s,@INCINTL@,$INCINTL,;t t
42ecbf5e 9540s,@XGETTEXT@,$XGETTEXT,;t t
20e95c23
DJ
9541s,@GMSGFMT@,$GMSGFMT,;t t
9542s,@POSUB@,$POSUB,;t t
42ecbf5e 9543s,@CATALOGS@,$CATALOGS,;t t
42ecbf5e 9544s,@DATADIRNAME@,$DATADIRNAME,;t t
42ecbf5e 9545s,@INSTOBJEXT@,$INSTOBJEXT,;t t
20e95c23
DJ
9546s,@GENCAT@,$GENCAT,;t t
9547s,@CATOBJEXT@,$CATOBJEXT,;t t
42ecbf5e 9548s,@MKINSTALLDIRS@,$MKINSTALLDIRS,;t t
20e95c23
DJ
9549s,@MSGFMT@,$MSGFMT,;t t
9550s,@MSGMERGE@,$MSGMERGE,;t t
42ecbf5e
DJ
9551s,@MAINTAINER_MODE_TRUE@,$MAINTAINER_MODE_TRUE,;t t
9552s,@MAINTAINER_MODE_FALSE@,$MAINTAINER_MODE_FALSE,;t t
9553s,@MAINT@,$MAINT,;t t
d5fbea21
DJ
9554s,@GENINSRC_NEVER_TRUE@,$GENINSRC_NEVER_TRUE,;t t
9555s,@GENINSRC_NEVER_FALSE@,$GENINSRC_NEVER_FALSE,;t t
42ecbf5e
DJ
9556s,@HDEFINES@,$HDEFINES,;t t
9557s,@AR@,$AR,;t t
9558s,@CC_FOR_BUILD@,$CC_FOR_BUILD,;t t
9559s,@EXEEXT_FOR_BUILD@,$EXEEXT_FOR_BUILD,;t t
9560s,@DEMANGLER_NAME@,$DEMANGLER_NAME,;t t
20e95c23
DJ
9561s,@CPP@,$CPP,;t t
9562s,@EGREP@,$EGREP,;t t
9563s,@ALLOCA@,$ALLOCA,;t t
42ecbf5e
DJ
9564s,@NLMCONV_DEFS@,$NLMCONV_DEFS,;t t
9565s,@BUILD_NLMCONV@,$BUILD_NLMCONV,;t t
9566s,@BUILD_SRCONV@,$BUILD_SRCONV,;t t
9567s,@BUILD_DLLTOOL@,$BUILD_DLLTOOL,;t t
9568s,@DLLTOOL_DEFS@,$DLLTOOL_DEFS,;t t
9569s,@BUILD_WINDRES@,$BUILD_WINDRES,;t t
9570s,@BUILD_DLLWRAP@,$BUILD_DLLWRAP,;t t
9571s,@BUILD_MISC@,$BUILD_MISC,;t t
1d97d67f 9572s,@BUILD_INSTALL_MISC@,$BUILD_INSTALL_MISC,;t t
42ecbf5e
DJ
9573s,@OBJDUMP_DEFS@,$OBJDUMP_DEFS,;t t
9574s,@EMULATION@,$EMULATION,;t t
9575s,@EMULATION_VECTOR@,$EMULATION_VECTOR,;t t
108a6f8e
CD
9576s,@datarootdir@,$datarootdir,;t t
9577s,@docdir@,$docdir,;t t
9578s,@htmldir@,$htmldir,;t t
42ecbf5e
DJ
9579s,@LIBOBJS@,$LIBOBJS,;t t
9580s,@LTLIBOBJS@,$LTLIBOBJS,;t t
d15b04bd 9581CEOF
252b5132 9582
42ecbf5e
DJ
9583_ACEOF
9584
9585 cat >>$CONFIG_STATUS <<\_ACEOF
9586 # Split the substitutions into bite-sized pieces for seds with
9587 # small command number limits, like on Digital OSF/1 and HP-UX.
9588 ac_max_sed_lines=48
9589 ac_sed_frag=1 # Number of current file.
9590 ac_beg=1 # First line for current file.
9591 ac_end=$ac_max_sed_lines # Line after last line for current file.
9592 ac_more_lines=:
9593 ac_sed_cmds=
9594 while $ac_more_lines; do
9595 if test $ac_beg -gt 1; then
9596 sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
9597 else
9598 sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
9599 fi
9600 if test ! -s $tmp/subs.frag; then
9601 ac_more_lines=false
d15b04bd 9602 else
42ecbf5e
DJ
9603 # The purpose of the label and of the branching condition is to
9604 # speed up the sed processing (if there are no `@' at all, there
9605 # is no need to browse any of the substitutions).
9606 # These are the two extra sed commands mentioned above.
9607 (echo ':t
9608 /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
9609 if test -z "$ac_sed_cmds"; then
9610 ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
9611 else
9612 ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
9613 fi
9614 ac_sed_frag=`expr $ac_sed_frag + 1`
9615 ac_beg=$ac_end
9616 ac_end=`expr $ac_end + $ac_max_sed_lines`
d15b04bd 9617 fi
42ecbf5e
DJ
9618 done
9619 if test -z "$ac_sed_cmds"; then
9620 ac_sed_cmds=cat
252b5132 9621 fi
42ecbf5e 9622fi # test -n "$CONFIG_FILES"
252b5132 9623
42ecbf5e
DJ
9624_ACEOF
9625cat >>$CONFIG_STATUS <<\_ACEOF
9626for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
e5a52504 9627 # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
42ecbf5e
DJ
9628 case $ac_file in
9629 - | *:- | *:-:* ) # input from stdin
9630 cat >$tmp/stdin
9631 ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
9632 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
9633 *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
9634 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
9635 * ) ac_file_in=$ac_file.in ;;
252b5132
RH
9636 esac
9637
42ecbf5e
DJ
9638 # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
9639 ac_dir=`(dirname "$ac_file") 2>/dev/null ||
9640$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
9641 X"$ac_file" : 'X\(//\)[^/]' \| \
9642 X"$ac_file" : 'X\(//\)$' \| \
9643 X"$ac_file" : 'X\(/\)' \| \
9644 . : '\(.\)' 2>/dev/null ||
9645echo X"$ac_file" |
9646 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
9647 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
9648 /^X\(\/\/\)$/{ s//\1/; q; }
9649 /^X\(\/\).*/{ s//\1/; q; }
9650 s/.*/./; q'`
9651 { if $as_mkdir_p; then
9652 mkdir -p "$ac_dir"
d15b04bd 9653 else
42ecbf5e
DJ
9654 as_dir="$ac_dir"
9655 as_dirs=
9656 while test ! -d "$as_dir"; do
9657 as_dirs="$as_dir $as_dirs"
9658 as_dir=`(dirname "$as_dir") 2>/dev/null ||
9659$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
9660 X"$as_dir" : 'X\(//\)[^/]' \| \
9661 X"$as_dir" : 'X\(//\)$' \| \
9662 X"$as_dir" : 'X\(/\)' \| \
9663 . : '\(.\)' 2>/dev/null ||
9664echo X"$as_dir" |
9665 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
9666 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
9667 /^X\(\/\/\)$/{ s//\1/; q; }
9668 /^X\(\/\).*/{ s//\1/; q; }
9669 s/.*/./; q'`
9670 done
9671 test ! -n "$as_dirs" || mkdir $as_dirs
9672 fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
9673echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
9674 { (exit 1); exit 1; }; }; }
9675
9676 ac_builddir=.
e5a52504 9677
42ecbf5e
DJ
9678if test "$ac_dir" != .; then
9679 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
9680 # A "../" for each directory in $ac_dir_suffix.
9681 ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
9682else
9683 ac_dir_suffix= ac_top_builddir=
9684fi
9685
9686case $srcdir in
9687 .) # No --srcdir option. We are building in place.
9688 ac_srcdir=.
9689 if test -z "$ac_top_builddir"; then
9690 ac_top_srcdir=.
9691 else
9692 ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
9693 fi ;;
9694 [\\/]* | ?:[\\/]* ) # Absolute path.
9695 ac_srcdir=$srcdir$ac_dir_suffix;
9696 ac_top_srcdir=$srcdir ;;
e5a52504 9697 *) # Relative path.
42ecbf5e
DJ
9698 ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
9699 ac_top_srcdir=$ac_top_builddir$srcdir ;;
9700esac
252b5132 9701
42ecbf5e
DJ
9702# Do not use `cd foo && pwd` to compute absolute paths, because
9703# the directories may not exist.
9704case `pwd` in
9705.) ac_abs_builddir="$ac_dir";;
9706*)
9707 case "$ac_dir" in
9708 .) ac_abs_builddir=`pwd`;;
9709 [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
9710 *) ac_abs_builddir=`pwd`/"$ac_dir";;
9711 esac;;
9712esac
9713case $ac_abs_builddir in
9714.) ac_abs_top_builddir=${ac_top_builddir}.;;
9715*)
9716 case ${ac_top_builddir}. in
9717 .) ac_abs_top_builddir=$ac_abs_builddir;;
9718 [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
9719 *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
9720 esac;;
9721esac
9722case $ac_abs_builddir in
9723.) ac_abs_srcdir=$ac_srcdir;;
9724*)
9725 case $ac_srcdir in
9726 .) ac_abs_srcdir=$ac_abs_builddir;;
9727 [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
9728 *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
9729 esac;;
9730esac
9731case $ac_abs_builddir in
9732.) ac_abs_top_srcdir=$ac_top_srcdir;;
9733*)
9734 case $ac_top_srcdir in
9735 .) ac_abs_top_srcdir=$ac_abs_builddir;;
9736 [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
9737 *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
9738 esac;;
9739esac
e5a52504 9740
42ecbf5e
DJ
9741
9742 case $INSTALL in
9743 [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
9744 *) ac_INSTALL=$ac_top_builddir$INSTALL ;;
d15b04bd 9745 esac
e5a52504 9746
b7d4af3a
JW
9747 if test x"$ac_file" != x-; then
9748 { echo "$as_me:$LINENO: creating $ac_file" >&5
9749echo "$as_me: creating $ac_file" >&6;}
9750 rm -f "$ac_file"
9751 fi
42ecbf5e
DJ
9752 # Let's still pretend it is `configure' which instantiates (i.e., don't
9753 # use $as_me), people would be surprised to read:
9754 # /* config.h. Generated by config.status. */
9755 if test x"$ac_file" = x-; then
9756 configure_input=
9757 else
9758 configure_input="$ac_file. "
9759 fi
9760 configure_input=$configure_input"Generated from `echo $ac_file_in |
9761 sed 's,.*/,,'` by configure."
9762
9763 # First look for the input files in the build tree, otherwise in the
9764 # src tree.
9765 ac_file_inputs=`IFS=:
9766 for f in $ac_file_in; do
9767 case $f in
9768 -) echo $tmp/stdin ;;
9769 [\\/$]*)
9770 # Absolute (can't be DOS-style, as IFS=:)
9771 test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
9772echo "$as_me: error: cannot find input file: $f" >&2;}
9773 { (exit 1); exit 1; }; }
9774 echo "$f";;
9775 *) # Relative
9776 if test -f "$f"; then
9777 # Build tree
9778 echo "$f"
9779 elif test -f "$srcdir/$f"; then
9780 # Source tree
9781 echo "$srcdir/$f"
9782 else
9783 # /dev/null tree
9784 { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
9785echo "$as_me: error: cannot find input file: $f" >&2;}
9786 { (exit 1); exit 1; }; }
9787 fi;;
9788 esac
9789 done` || { (exit 1); exit 1; }
42ecbf5e
DJ
9790_ACEOF
9791cat >>$CONFIG_STATUS <<_ACEOF
9792 sed "$ac_vpsub
9793$extrasub
9794_ACEOF
9795cat >>$CONFIG_STATUS <<\_ACEOF
9796:t
9797/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
9798s,@configure_input@,$configure_input,;t t
9799s,@srcdir@,$ac_srcdir,;t t
9800s,@abs_srcdir@,$ac_abs_srcdir,;t t
9801s,@top_srcdir@,$ac_top_srcdir,;t t
9802s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t
9803s,@builddir@,$ac_builddir,;t t
9804s,@abs_builddir@,$ac_abs_builddir,;t t
9805s,@top_builddir@,$ac_top_builddir,;t t
9806s,@abs_top_builddir@,$ac_abs_top_builddir,;t t
9807s,@INSTALL@,$ac_INSTALL,;t t
9808" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
9809 rm -f $tmp/stdin
9810 if test x"$ac_file" != x-; then
9811 mv $tmp/out $ac_file
9812 else
9813 cat $tmp/out
9814 rm -f $tmp/out
9815 fi
9816
9817done
9818_ACEOF
9819cat >>$CONFIG_STATUS <<\_ACEOF
9820
9821#
9822# CONFIG_HEADER section.
9823#
252b5132
RH
9824
9825# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
9826# NAME is the cpp macro being defined and VALUE is the value it is being given.
9827#
9828# ac_d sets the value in "#define NAME VALUE" lines.
42ecbf5e
DJ
9829ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)'
9830ac_dB='[ ].*$,\1#\2'
9831ac_dC=' '
9832ac_dD=',;t'
9833# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
9834ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)'
9835ac_uB='$,\1#\2define\3'
252b5132 9836ac_uC=' '
42ecbf5e
DJ
9837ac_uD=',;t'
9838
9839for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
252b5132 9840 # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
42ecbf5e
DJ
9841 case $ac_file in
9842 - | *:- | *:-:* ) # input from stdin
9843 cat >$tmp/stdin
9844 ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
9845 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
9846 *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
9847 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
9848 * ) ac_file_in=$ac_file.in ;;
252b5132
RH
9849 esac
9850
42ecbf5e
DJ
9851 test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5
9852echo "$as_me: creating $ac_file" >&6;}
9853
9854 # First look for the input files in the build tree, otherwise in the
9855 # src tree.
9856 ac_file_inputs=`IFS=:
9857 for f in $ac_file_in; do
9858 case $f in
9859 -) echo $tmp/stdin ;;
9860 [\\/$]*)
9861 # Absolute (can't be DOS-style, as IFS=:)
9862 test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
9863echo "$as_me: error: cannot find input file: $f" >&2;}
9864 { (exit 1); exit 1; }; }
9865 # Do quote $f, to prevent DOS paths from being IFS'd.
9866 echo "$f";;
9867 *) # Relative
9868 if test -f "$f"; then
9869 # Build tree
9870 echo "$f"
9871 elif test -f "$srcdir/$f"; then
9872 # Source tree
9873 echo "$srcdir/$f"
9874 else
9875 # /dev/null tree
9876 { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
9877echo "$as_me: error: cannot find input file: $f" >&2;}
9878 { (exit 1); exit 1; }; }
9879 fi;;
9880 esac
9881 done` || { (exit 1); exit 1; }
9882 # Remove the trailing spaces.
9883 sed 's/[ ]*$//' $ac_file_inputs >$tmp/in
9884
9885_ACEOF
9886
9887# Transform confdefs.h into two sed scripts, `conftest.defines' and
9888# `conftest.undefs', that substitutes the proper values into
9889# config.h.in to produce config.h. The first handles `#define'
9890# templates, and the second `#undef' templates.
9891# And first: Protect against being on the right side of a sed subst in
9892# config.status. Protect against being in an unquoted here document
9893# in config.status.
9894rm -f conftest.defines conftest.undefs
9895# Using a here document instead of a string reduces the quoting nightmare.
9896# Putting comments in sed scripts is not portable.
9897#
9898# `end' is used to avoid that the second main sed command (meant for
9899# 0-ary CPP macros) applies to n-ary macro definitions.
9900# See the Autoconf documentation for `clear'.
9901cat >confdef2sed.sed <<\_ACEOF
9902s/[\\&,]/\\&/g
9903s,[\\$`],\\&,g
9904t clear
9905: clear
9906s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp
9907t end
9908s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp
9909: end
9910_ACEOF
9911# If some macros were called several times there might be several times
9912# the same #defines, which is useless. Nevertheless, we may not want to
9913# sort them, since we want the *last* AC-DEFINE to be honored.
9914uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines
9915sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs
9916rm -f confdef2sed.sed
252b5132
RH
9917
9918# This sed command replaces #undef with comments. This is necessary, for
9919# example, in the case of _POSIX_SOURCE, which is predefined and required
9920# on some systems where configure will not decide to define it.
42ecbf5e
DJ
9921cat >>conftest.undefs <<\_ACEOF
9922s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
9923_ACEOF
9924
9925# Break up conftest.defines because some shells have a limit on the size
9926# of here documents, and old seds have small limits too (100 cmds).
9927echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS
9928echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
9929echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS
9930echo ' :' >>$CONFIG_STATUS
9931rm -f conftest.tail
9932while grep . conftest.defines >/dev/null
9933do
9934 # Write a limited-size here document to $tmp/defines.sed.
9935 echo ' cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS
9936 # Speed up: don't consider the non `#define' lines.
9937 echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS
9938 # Work around the forget-to-reset-the-flag bug.
9939 echo 't clr' >>$CONFIG_STATUS
9940 echo ': clr' >>$CONFIG_STATUS
9941 sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS
9942 echo 'CEOF
9943 sed -f $tmp/defines.sed $tmp/in >$tmp/out
9944 rm -f $tmp/in
9945 mv $tmp/out $tmp/in
9946' >>$CONFIG_STATUS
9947 sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail
9948 rm -f conftest.defines
9949 mv conftest.tail conftest.defines
9950done
9951rm -f conftest.defines
9952echo ' fi # grep' >>$CONFIG_STATUS
9953echo >>$CONFIG_STATUS
252b5132 9954
42ecbf5e
DJ
9955# Break up conftest.undefs because some shells have a limit on the size
9956# of here documents, and old seds have small limits too (100 cmds).
9957echo ' # Handle all the #undef templates' >>$CONFIG_STATUS
252b5132 9958rm -f conftest.tail
42ecbf5e 9959while grep . conftest.undefs >/dev/null
252b5132 9960do
42ecbf5e
DJ
9961 # Write a limited-size here document to $tmp/undefs.sed.
9962 echo ' cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS
9963 # Speed up: don't consider the non `#undef'
9964 echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS
9965 # Work around the forget-to-reset-the-flag bug.
9966 echo 't clr' >>$CONFIG_STATUS
9967 echo ': clr' >>$CONFIG_STATUS
9968 sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS
252b5132 9969 echo 'CEOF
42ecbf5e
DJ
9970 sed -f $tmp/undefs.sed $tmp/in >$tmp/out
9971 rm -f $tmp/in
9972 mv $tmp/out $tmp/in
9973' >>$CONFIG_STATUS
9974 sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail
9975 rm -f conftest.undefs
9976 mv conftest.tail conftest.undefs
252b5132 9977done
42ecbf5e
DJ
9978rm -f conftest.undefs
9979
9980cat >>$CONFIG_STATUS <<\_ACEOF
9981 # Let's still pretend it is `configure' which instantiates (i.e., don't
9982 # use $as_me), people would be surprised to read:
9983 # /* config.h. Generated by config.status. */
9984 if test x"$ac_file" = x-; then
9985 echo "/* Generated by configure. */" >$tmp/config.h
9986 else
9987 echo "/* $ac_file. Generated by configure. */" >$tmp/config.h
9988 fi
9989 cat $tmp/in >>$tmp/config.h
9990 rm -f $tmp/in
9991 if test x"$ac_file" != x-; then
9992 if diff $ac_file $tmp/config.h >/dev/null 2>&1; then
9993 { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
9994echo "$as_me: $ac_file is unchanged" >&6;}
9995 else
9996 ac_dir=`(dirname "$ac_file") 2>/dev/null ||
9997$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
9998 X"$ac_file" : 'X\(//\)[^/]' \| \
9999 X"$ac_file" : 'X\(//\)$' \| \
10000 X"$ac_file" : 'X\(/\)' \| \
10001 . : '\(.\)' 2>/dev/null ||
10002echo X"$ac_file" |
10003 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
10004 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
10005 /^X\(\/\/\)$/{ s//\1/; q; }
10006 /^X\(\/\).*/{ s//\1/; q; }
10007 s/.*/./; q'`
10008 { if $as_mkdir_p; then
10009 mkdir -p "$ac_dir"
252b5132 10010 else
42ecbf5e
DJ
10011 as_dir="$ac_dir"
10012 as_dirs=
10013 while test ! -d "$as_dir"; do
10014 as_dirs="$as_dir $as_dirs"
10015 as_dir=`(dirname "$as_dir") 2>/dev/null ||
10016$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
10017 X"$as_dir" : 'X\(//\)[^/]' \| \
10018 X"$as_dir" : 'X\(//\)$' \| \
10019 X"$as_dir" : 'X\(/\)' \| \
10020 . : '\(.\)' 2>/dev/null ||
10021echo X"$as_dir" |
10022 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
10023 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
10024 /^X\(\/\/\)$/{ s//\1/; q; }
10025 /^X\(\/\).*/{ s//\1/; q; }
10026 s/.*/./; q'`
10027 done
10028 test ! -n "$as_dirs" || mkdir $as_dirs
10029 fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
10030echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
10031 { (exit 1); exit 1; }; }; }
10032
10033 rm -f $ac_file
10034 mv $tmp/config.h $ac_file
252b5132 10035 fi
42ecbf5e
DJ
10036 else
10037 cat $tmp/config.h
10038 rm -f $tmp/config.h
252b5132 10039 fi
42ecbf5e
DJ
10040# Compute $ac_file's index in $config_headers.
10041_am_stamp_count=1
10042for _am_header in $config_headers :; do
10043 case $_am_header in
10044 $ac_file | $ac_file:* )
10045 break ;;
10046 * )
10047 _am_stamp_count=`expr $_am_stamp_count + 1` ;;
10048 esac
10049done
10050echo "timestamp for $ac_file" >`(dirname $ac_file) 2>/dev/null ||
10051$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
10052 X$ac_file : 'X\(//\)[^/]' \| \
10053 X$ac_file : 'X\(//\)$' \| \
10054 X$ac_file : 'X\(/\)' \| \
10055 . : '\(.\)' 2>/dev/null ||
10056echo X$ac_file |
10057 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
10058 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
10059 /^X\(\/\/\)$/{ s//\1/; q; }
10060 /^X\(\/\).*/{ s//\1/; q; }
10061 s/.*/./; q'`/stamp-h$_am_stamp_count
10062done
10063_ACEOF
10064cat >>$CONFIG_STATUS <<\_ACEOF
252b5132 10065
42ecbf5e
DJ
10066#
10067# CONFIG_COMMANDS section.
10068#
10069for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue
10070 ac_dest=`echo "$ac_file" | sed 's,:.*,,'`
10071 ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`
10072 ac_dir=`(dirname "$ac_dest") 2>/dev/null ||
10073$as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
10074 X"$ac_dest" : 'X\(//\)[^/]' \| \
10075 X"$ac_dest" : 'X\(//\)$' \| \
10076 X"$ac_dest" : 'X\(/\)' \| \
10077 . : '\(.\)' 2>/dev/null ||
10078echo X"$ac_dest" |
10079 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
10080 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
10081 /^X\(\/\/\)$/{ s//\1/; q; }
10082 /^X\(\/\).*/{ s//\1/; q; }
10083 s/.*/./; q'`
10084 { if $as_mkdir_p; then
10085 mkdir -p "$ac_dir"
10086 else
10087 as_dir="$ac_dir"
10088 as_dirs=
10089 while test ! -d "$as_dir"; do
10090 as_dirs="$as_dir $as_dirs"
10091 as_dir=`(dirname "$as_dir") 2>/dev/null ||
10092$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
10093 X"$as_dir" : 'X\(//\)[^/]' \| \
10094 X"$as_dir" : 'X\(//\)$' \| \
10095 X"$as_dir" : 'X\(/\)' \| \
10096 . : '\(.\)' 2>/dev/null ||
10097echo X"$as_dir" |
10098 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
10099 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
10100 /^X\(\/\/\)$/{ s//\1/; q; }
10101 /^X\(\/\).*/{ s//\1/; q; }
10102 s/.*/./; q'`
10103 done
10104 test ! -n "$as_dirs" || mkdir $as_dirs
10105 fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
10106echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
10107 { (exit 1); exit 1; }; }; }
252b5132 10108
42ecbf5e 10109 ac_builddir=.
e5a52504 10110
42ecbf5e
DJ
10111if test "$ac_dir" != .; then
10112 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
10113 # A "../" for each directory in $ac_dir_suffix.
10114 ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
10115else
10116 ac_dir_suffix= ac_top_builddir=
10117fi
10118
10119case $srcdir in
10120 .) # No --srcdir option. We are building in place.
10121 ac_srcdir=.
10122 if test -z "$ac_top_builddir"; then
10123 ac_top_srcdir=.
10124 else
10125 ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
10126 fi ;;
10127 [\\/]* | ?:[\\/]* ) # Absolute path.
10128 ac_srcdir=$srcdir$ac_dir_suffix;
10129 ac_top_srcdir=$srcdir ;;
10130 *) # Relative path.
10131 ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
10132 ac_top_srcdir=$ac_top_builddir$srcdir ;;
10133esac
10134
10135# Do not use `cd foo && pwd` to compute absolute paths, because
10136# the directories may not exist.
10137case `pwd` in
10138.) ac_abs_builddir="$ac_dir";;
10139*)
10140 case "$ac_dir" in
10141 .) ac_abs_builddir=`pwd`;;
10142 [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
10143 *) ac_abs_builddir=`pwd`/"$ac_dir";;
10144 esac;;
10145esac
10146case $ac_abs_builddir in
10147.) ac_abs_top_builddir=${ac_top_builddir}.;;
10148*)
10149 case ${ac_top_builddir}. in
10150 .) ac_abs_top_builddir=$ac_abs_builddir;;
10151 [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
10152 *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
10153 esac;;
10154esac
10155case $ac_abs_builddir in
10156.) ac_abs_srcdir=$ac_srcdir;;
10157*)
10158 case $ac_srcdir in
10159 .) ac_abs_srcdir=$ac_abs_builddir;;
10160 [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
10161 *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
10162 esac;;
10163esac
10164case $ac_abs_builddir in
10165.) ac_abs_top_srcdir=$ac_top_srcdir;;
10166*)
10167 case $ac_top_srcdir in
10168 .) ac_abs_top_srcdir=$ac_abs_builddir;;
10169 [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
10170 *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
10171 esac;;
10172esac
e5a52504 10173
42ecbf5e
DJ
10174
10175 { echo "$as_me:$LINENO: executing $ac_dest commands" >&5
10176echo "$as_me: executing $ac_dest commands" >&6;}
10177 case $ac_dest in
10178 depfiles ) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
10179 # Strip MF so we end up with the name of the file.
10180 mf=`echo "$mf" | sed -e 's/:.*$//'`
10181 # Check whether this is an Automake generated Makefile or not.
10182 # We used to match only the files named `Makefile.in', but
10183 # some people rename them; so instead we look at the file content.
10184 # Grep'ing the first line is not enough: some people post-process
10185 # each Makefile.in and add a new line on top of each file to say so.
10186 # So let's grep whole file.
10187 if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
10188 dirpart=`(dirname "$mf") 2>/dev/null ||
10189$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
10190 X"$mf" : 'X\(//\)[^/]' \| \
10191 X"$mf" : 'X\(//\)$' \| \
10192 X"$mf" : 'X\(/\)' \| \
10193 . : '\(.\)' 2>/dev/null ||
10194echo X"$mf" |
10195 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
10196 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
10197 /^X\(\/\/\)$/{ s//\1/; q; }
10198 /^X\(\/\).*/{ s//\1/; q; }
10199 s/.*/./; q'`
10200 else
10201 continue
10202 fi
10203 # Extract the definition of DEPDIR, am__include, and am__quote
10204 # from the Makefile without running `make'.
10205 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
10206 test -z "$DEPDIR" && continue
10207 am__include=`sed -n 's/^am__include = //p' < "$mf"`
10208 test -z "am__include" && continue
10209 am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
10210 # When using ansi2knr, U may be empty or an underscore; expand it
10211 U=`sed -n 's/^U = //p' < "$mf"`
10212 # Find all dependency output files, they are included files with
10213 # $(DEPDIR) in their names. We invoke sed twice because it is the
10214 # simplest approach to changing $(DEPDIR) to its actual value in the
10215 # expansion.
10216 for file in `sed -n "
10217 s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
10218 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
10219 # Make sure the directory exists.
10220 test -f "$dirpart/$file" && continue
10221 fdir=`(dirname "$file") 2>/dev/null ||
10222$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
10223 X"$file" : 'X\(//\)[^/]' \| \
10224 X"$file" : 'X\(//\)$' \| \
10225 X"$file" : 'X\(/\)' \| \
10226 . : '\(.\)' 2>/dev/null ||
10227echo X"$file" |
10228 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
10229 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
10230 /^X\(\/\/\)$/{ s//\1/; q; }
10231 /^X\(\/\).*/{ s//\1/; q; }
10232 s/.*/./; q'`
10233 { if $as_mkdir_p; then
10234 mkdir -p $dirpart/$fdir
10235 else
10236 as_dir=$dirpart/$fdir
10237 as_dirs=
10238 while test ! -d "$as_dir"; do
10239 as_dirs="$as_dir $as_dirs"
10240 as_dir=`(dirname "$as_dir") 2>/dev/null ||
10241$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
10242 X"$as_dir" : 'X\(//\)[^/]' \| \
10243 X"$as_dir" : 'X\(//\)$' \| \
10244 X"$as_dir" : 'X\(/\)' \| \
10245 . : '\(.\)' 2>/dev/null ||
10246echo X"$as_dir" |
10247 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
10248 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
10249 /^X\(\/\/\)$/{ s//\1/; q; }
10250 /^X\(\/\).*/{ s//\1/; q; }
10251 s/.*/./; q'`
10252 done
10253 test ! -n "$as_dirs" || mkdir $as_dirs
10254 fi || { { echo "$as_me:$LINENO: error: cannot create directory $dirpart/$fdir" >&5
10255echo "$as_me: error: cannot create directory $dirpart/$fdir" >&2;}
10256 { (exit 1); exit 1; }; }; }
10257
10258 # echo "creating $dirpart/$file"
10259 echo '# dummy' > "$dirpart/$file"
10260 done
10261done
10262 ;;
20e95c23
DJ
10263 default-1 )
10264 for ac_file in $CONFIG_FILES; do
10265 # Support "outfile[:infile[:infile...]]"
10266 case "$ac_file" in
10267 *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
10268 esac
10269 # PO directories have a Makefile.in generated from Makefile.in.in.
10270 case "$ac_file" in */Makefile.in)
10271 # Adjust a relative srcdir.
10272 ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
10273 ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`"
10274 ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
10275 # In autoconf-2.13 it is called $ac_given_srcdir.
10276 # In autoconf-2.50 it is called $srcdir.
10277 test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir"
10278 case "$ac_given_srcdir" in
10279 .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
10280 /*) top_srcdir="$ac_given_srcdir" ;;
10281 *) top_srcdir="$ac_dots$ac_given_srcdir" ;;
10282 esac
10283 if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then
10284 rm -f "$ac_dir/POTFILES"
10285 test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES"
10286 cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES"
10287 POMAKEFILEDEPS="POTFILES.in"
10288 # ALL_LINGUAS, POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES depend
10289 # on $ac_dir but don't depend on user-specified configuration
10290 # parameters.
10291 if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then
10292 # The LINGUAS file contains the set of available languages.
10293 if test -n "$OBSOLETE_ALL_LINGUAS"; then
10294 test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete"
10295 fi
10296 ALL_LINGUAS_=`sed -e "/^#/d" "$ac_given_srcdir/$ac_dir/LINGUAS"`
10297 # Hide the ALL_LINGUAS assigment from automake.
10298 eval 'ALL_LINGUAS''=$ALL_LINGUAS_'
10299 POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS"
10300 else
10301 # The set of available languages was given in configure.in.
10302 eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS'
10303 fi
10304 case "$ac_given_srcdir" in
10305 .) srcdirpre= ;;
10306 *) srcdirpre='$(srcdir)/' ;;
10307 esac
10308 POFILES=
10309 GMOFILES=
10310 UPDATEPOFILES=
10311 DUMMYPOFILES=
10312 for lang in $ALL_LINGUAS; do
10313 POFILES="$POFILES $srcdirpre$lang.po"
10314 GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
10315 UPDATEPOFILES="$UPDATEPOFILES $lang.po-update"
10316 DUMMYPOFILES="$DUMMYPOFILES $lang.nop"
10317 done
10318 # CATALOGS depends on both $ac_dir and the user's LINGUAS
10319 # environment variable.
10320 INST_LINGUAS=
10321 if test -n "$ALL_LINGUAS"; then
10322 for presentlang in $ALL_LINGUAS; do
10323 useit=no
10324 if test "%UNSET%" != "$LINGUAS"; then
10325 desiredlanguages="$LINGUAS"
10326 else
10327 desiredlanguages="$ALL_LINGUAS"
10328 fi
10329 for desiredlang in $desiredlanguages; do
10330 # Use the presentlang catalog if desiredlang is
10331 # a. equal to presentlang, or
10332 # b. a variant of presentlang (because in this case,
10333 # presentlang can be used as a fallback for messages
10334 # which are not translated in the desiredlang catalog).
10335 case "$desiredlang" in
10336 "$presentlang"*) useit=yes;;
10337 esac
10338 done
10339 if test $useit = yes; then
10340 INST_LINGUAS="$INST_LINGUAS $presentlang"
10341 fi
10342 done
10343 fi
10344 CATALOGS=
10345 if test -n "$INST_LINGUAS"; then
10346 for lang in $INST_LINGUAS; do
10347 CATALOGS="$CATALOGS $lang.gmo"
10348 done
10349 fi
10350 test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile"
10351 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"
10352 for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do
10353 if test -f "$f"; then
10354 case "$f" in
10355 *.orig | *.bak | *~) ;;
10356 *) cat "$f" >> "$ac_dir/Makefile" ;;
10357 esac
10358 fi
10359 done
10360 fi
10361 ;;
10362 esac
10363 done ;;
42ecbf5e
DJ
10364 esac
10365done
10366_ACEOF
e5a52504 10367
42ecbf5e
DJ
10368cat >>$CONFIG_STATUS <<\_ACEOF
10369
10370{ (exit 0); exit 0; }
10371_ACEOF
252b5132 10372chmod +x $CONFIG_STATUS
42ecbf5e
DJ
10373ac_clean_files=$ac_clean_files_save
10374
10375
10376# configure is writing to config.log, and then calls config.status.
10377# config.status does its own redirection, appending to config.log.
10378# Unfortunately, on DOS this fails, as config.log is still kept open
10379# by configure, so config.status won't be able to write to it; its
10380# output is simply discarded. So we exec the FD to /dev/null,
10381# effectively closing config.log, so it can be properly (re)opened and
10382# appended to by config.status. When coming back to configure, we
10383# need to make the FD available again.
10384if test "$no_create" != yes; then
10385 ac_cs_success=:
10386 ac_config_status_args=
10387 test "$silent" = yes &&
10388 ac_config_status_args="$ac_config_status_args --quiet"
10389 exec 5>/dev/null
10390 $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
10391 exec 5>>config.log
10392 # Use ||, not &&, to avoid exiting from the if with $? = 1, which
10393 # would make configure fail if this is the last instruction.
10394 $ac_cs_success || { (exit 1); exit 1; }
10395fi
252b5132 10396
This page took 0.874293 seconds and 4 git commands to generate.