Patch from Steve Ellcey for hpux build failure.
[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
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 CPP EGREP ALLOCA USE_NLS MSGFMT GMSGFMT XGETTEXT USE_INCLUDED_LIBINTL CATALOGS CATOBJEXT DATADIRNAME GMOFILES INSTOBJEXT INTLDEPS INTLLIBS INTLOBJS POFILES POSUB INCLUDE_LOCALE_H GT_NO GT_YES MKINSTALLDIRS l MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT HDEFINES AR CC_FOR_BUILD EXEEXT_FOR_BUILD DEMANGLER_NAME NLMCONV_DEFS BUILD_NLMCONV BUILD_SRCONV BUILD_DLLTOOL DLLTOOL_DEFS BUILD_WINDRES BUILD_DLLWRAP BUILD_MISC OBJDUMP_DEFS EMULATION EMULATION_VECTOR LIBOBJS LTLIBOBJS'
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
861 --enable-werror treat compile warnings as errors
862 --enable-build-warnings Enable build-time compiler warnings
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
872 --with-included-gettext use the GNU gettext library included here
252b5132 873
42ecbf5e
DJ
874Some influential environment variables:
875 CC C compiler command
876 CFLAGS C compiler flags
877 LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
878 nonstandard directory <lib dir>
879 CPPFLAGS C/C++ preprocessor flags, e.g. -I<include dir> if you have
880 headers in a nonstandard directory <include dir>
881 CPP C preprocessor
e5a52504 882
42ecbf5e
DJ
883Use these variables to override the choices made by `configure' or to help
884it to find libraries and programs with nonstandard names/locations.
885
886_ACEOF
252b5132
RH
887fi
888
42ecbf5e
DJ
889if test "$ac_init_help" = "recursive"; then
890 # If there are subdirs, report their specific --help.
891 ac_popdir=`pwd`
892 for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
893 test -d $ac_dir || continue
894 ac_builddir=.
895
896if test "$ac_dir" != .; then
897 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
898 # A "../" for each directory in $ac_dir_suffix.
899 ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
900else
901 ac_dir_suffix= ac_top_builddir=
902fi
252b5132 903
42ecbf5e
DJ
904case $srcdir in
905 .) # No --srcdir option. We are building in place.
906 ac_srcdir=.
907 if test -z "$ac_top_builddir"; then
908 ac_top_srcdir=.
909 else
910 ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
252b5132 911 fi ;;
42ecbf5e
DJ
912 [\\/]* | ?:[\\/]* ) # Absolute path.
913 ac_srcdir=$srcdir$ac_dir_suffix;
914 ac_top_srcdir=$srcdir ;;
915 *) # Relative path.
916 ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
917 ac_top_srcdir=$ac_top_builddir$srcdir ;;
252b5132
RH
918esac
919
42ecbf5e
DJ
920# Do not use `cd foo && pwd` to compute absolute paths, because
921# the directories may not exist.
922case `pwd` in
923.) ac_abs_builddir="$ac_dir";;
924*)
925 case "$ac_dir" in
926 .) ac_abs_builddir=`pwd`;;
927 [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
928 *) ac_abs_builddir=`pwd`/"$ac_dir";;
929 esac;;
252b5132 930esac
42ecbf5e
DJ
931case $ac_abs_builddir in
932.) ac_abs_top_builddir=${ac_top_builddir}.;;
933*)
934 case ${ac_top_builddir}. in
935 .) ac_abs_top_builddir=$ac_abs_builddir;;
936 [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
937 *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
938 esac;;
939esac
940case $ac_abs_builddir in
941.) ac_abs_srcdir=$ac_srcdir;;
942*)
943 case $ac_srcdir in
944 .) ac_abs_srcdir=$ac_abs_builddir;;
945 [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
946 *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
947 esac;;
948esac
949case $ac_abs_builddir in
950.) ac_abs_top_srcdir=$ac_top_srcdir;;
951*)
952 case $ac_top_srcdir in
953 .) ac_abs_top_srcdir=$ac_abs_builddir;;
954 [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
955 *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
956 esac;;
d15b04bd 957esac
5d64ca4e 958
42ecbf5e
DJ
959 cd $ac_dir
960 # Check for guested configure; otherwise get Cygnus style configure.
961 if test -f $ac_srcdir/configure.gnu; then
962 echo
963 $SHELL $ac_srcdir/configure.gnu --help=recursive
964 elif test -f $ac_srcdir/configure; then
965 echo
966 $SHELL $ac_srcdir/configure --help=recursive
967 elif test -f $ac_srcdir/configure.ac ||
968 test -f $ac_srcdir/configure.in; then
969 echo
970 $ac_configure --help
971 else
972 echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
973 fi
b7d4af3a 974 cd $ac_popdir
42ecbf5e
DJ
975 done
976fi
5d64ca4e 977
42ecbf5e
DJ
978test -n "$ac_init_help" && exit 0
979if $ac_init_version; then
980 cat <<\_ACEOF
5d64ca4e 981
42ecbf5e
DJ
982Copyright (C) 2003 Free Software Foundation, Inc.
983This configure script is free software; the Free Software Foundation
984gives unlimited permission to copy, distribute and modify it.
985_ACEOF
986 exit 0
987fi
988exec 5>config.log
989cat >&5 <<_ACEOF
990This file contains any messages produced by compilers while
991running configure, to aid debugging if configure makes a mistake.
429cc0ae 992
42ecbf5e
DJ
993It was created by $as_me, which was
994generated by GNU Autoconf 2.59. Invocation command line was
252b5132 995
42ecbf5e 996 $ $0 $@
e5a52504 997
42ecbf5e
DJ
998_ACEOF
999{
1000cat <<_ASUNAME
1001## --------- ##
1002## Platform. ##
1003## --------- ##
1004
1005hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
1006uname -m = `(uname -m) 2>/dev/null || echo unknown`
1007uname -r = `(uname -r) 2>/dev/null || echo unknown`
1008uname -s = `(uname -s) 2>/dev/null || echo unknown`
1009uname -v = `(uname -v) 2>/dev/null || echo unknown`
1010
1011/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
1012/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
1013
1014/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
1015/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
1016/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
1017hostinfo = `(hostinfo) 2>/dev/null || echo unknown`
1018/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
1019/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
1020/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
1021
1022_ASUNAME
1023
1024as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1025for as_dir in $PATH
1026do
1027 IFS=$as_save_IFS
1028 test -z "$as_dir" && as_dir=.
1029 echo "PATH: $as_dir"
1030done
e5a52504 1031
42ecbf5e 1032} >&5
ceae3e33 1033
42ecbf5e 1034cat >&5 <<_ACEOF
e5a52504 1035
42ecbf5e
DJ
1036
1037## ----------- ##
1038## Core tests. ##
1039## ----------- ##
1040
1041_ACEOF
1042
1043
1044# Keep a trace of the command line.
1045# Strip out --no-create and --no-recursion so they do not pile up.
1046# Strip out --silent because we don't want to record it for future runs.
1047# Also quote any args containing shell meta-characters.
1048# Make two passes to allow for proper duplicate-argument suppression.
1049ac_configure_args=
1050ac_configure_args0=
1051ac_configure_args1=
1052ac_sep=
1053ac_must_keep_next=false
1054for ac_pass in 1 2
1055do
1056 for ac_arg
1057 do
1058 case $ac_arg in
1059 -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
1060 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1061 | -silent | --silent | --silen | --sile | --sil)
1062 continue ;;
1063 *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
1064 ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1065 esac
1066 case $ac_pass in
1067 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
1068 2)
1069 ac_configure_args1="$ac_configure_args1 '$ac_arg'"
1070 if test $ac_must_keep_next = true; then
1071 ac_must_keep_next=false # Got value, back to normal.
1072 else
1073 case $ac_arg in
1074 *=* | --config-cache | -C | -disable-* | --disable-* \
1075 | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
1076 | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
1077 | -with-* | --with-* | -without-* | --without-* | --x)
1078 case "$ac_configure_args0 " in
1079 "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
1080 esac
1081 ;;
1082 -* ) ac_must_keep_next=true ;;
1083 esac
1084 fi
1085 ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
1086 # Get rid of the leading space.
1087 ac_sep=" "
1088 ;;
1089 esac
1090 done
1091done
1092$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; }
1093$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; }
1094
1095# When interrupted or exit'd, cleanup temporary files, and complete
1096# config.log. We remove comments because anyway the quotes in there
1097# would cause problems or look ugly.
1098# WARNING: Be sure not to use single quotes in there, as some shells,
1099# such as our DU 5.0 friend, will then `close' the trap.
1100trap 'exit_status=$?
1101 # Save into config.log some information that might help in debugging.
1102 {
1103 echo
1104
1105 cat <<\_ASBOX
1106## ---------------- ##
1107## Cache variables. ##
1108## ---------------- ##
1109_ASBOX
1110 echo
1111 # The following way of writing the cache mishandles newlines in values,
1112{
1113 (set) 2>&1 |
1114 case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
1115 *ac_space=\ *)
1116 sed -n \
1117 "s/'"'"'/'"'"'\\\\'"'"''"'"'/g;
1118 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p"
1119 ;;
1120 *)
1121 sed -n \
1122 "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
1123 ;;
1124 esac;
1125}
1126 echo
1127
1128 cat <<\_ASBOX
1129## ----------------- ##
1130## Output variables. ##
1131## ----------------- ##
1132_ASBOX
1133 echo
1134 for ac_var in $ac_subst_vars
1135 do
1136 eval ac_val=$`echo $ac_var`
1137 echo "$ac_var='"'"'$ac_val'"'"'"
1138 done | sort
1139 echo
1140
1141 if test -n "$ac_subst_files"; then
1142 cat <<\_ASBOX
1143## ------------- ##
1144## Output files. ##
1145## ------------- ##
1146_ASBOX
1147 echo
1148 for ac_var in $ac_subst_files
1149 do
1150 eval ac_val=$`echo $ac_var`
1151 echo "$ac_var='"'"'$ac_val'"'"'"
1152 done | sort
1153 echo
1154 fi
1155
1156 if test -s confdefs.h; then
1157 cat <<\_ASBOX
1158## ----------- ##
1159## confdefs.h. ##
1160## ----------- ##
1161_ASBOX
1162 echo
1163 sed "/^$/d" confdefs.h | sort
1164 echo
1165 fi
1166 test "$ac_signal" != 0 &&
1167 echo "$as_me: caught signal $ac_signal"
1168 echo "$as_me: exit $exit_status"
1169 } >&5
1170 rm -f core *.core &&
1171 rm -rf conftest* confdefs* conf$$* $ac_clean_files &&
1172 exit $exit_status
1173 ' 0
1174for ac_signal in 1 2 13 15; do
1175 trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
1176done
1177ac_signal=0
1178
1179# confdefs.h avoids OS command line length limits that DEFS can exceed.
1180rm -rf conftest* confdefs.h
1181# AIX cpp loses on an empty file, so make sure it contains at least a newline.
1182echo >confdefs.h
1183
1184# Predefined preprocessor variables.
1185
1186cat >>confdefs.h <<_ACEOF
1187#define PACKAGE_NAME "$PACKAGE_NAME"
1188_ACEOF
1189
1190
1191cat >>confdefs.h <<_ACEOF
1192#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
1193_ACEOF
1194
1195
1196cat >>confdefs.h <<_ACEOF
1197#define PACKAGE_VERSION "$PACKAGE_VERSION"
1198_ACEOF
1199
1200
1201cat >>confdefs.h <<_ACEOF
1202#define PACKAGE_STRING "$PACKAGE_STRING"
1203_ACEOF
1204
1205
1206cat >>confdefs.h <<_ACEOF
1207#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
1208_ACEOF
1209
1210
1211# Let the site file select an alternate cache file if it wants to.
1212# Prefer explicitly selected file to automatically selected ones.
1213if test -z "$CONFIG_SITE"; then
1214 if test "x$prefix" != xNONE; then
1215 CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
1216 else
1217 CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
1218 fi
1219fi
1220for ac_site_file in $CONFIG_SITE; do
1221 if test -r "$ac_site_file"; then
1222 { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
1223echo "$as_me: loading site script $ac_site_file" >&6;}
1224 sed 's/^/| /' "$ac_site_file" >&5
1225 . "$ac_site_file"
1226 fi
1227done
1228
1229if test -r "$cache_file"; then
1230 # Some versions of bash will fail to source /dev/null (special
1231 # files actually), so we avoid doing that.
1232 if test -f "$cache_file"; then
1233 { echo "$as_me:$LINENO: loading cache $cache_file" >&5
1234echo "$as_me: loading cache $cache_file" >&6;}
1235 case $cache_file in
1236 [\\/]* | ?:[\\/]* ) . $cache_file;;
1237 *) . ./$cache_file;;
1238 esac
1239 fi
1240else
1241 { echo "$as_me:$LINENO: creating cache $cache_file" >&5
1242echo "$as_me: creating cache $cache_file" >&6;}
1243 >$cache_file
1244fi
1245
1246# Check that the precious variables saved in the cache have kept the same
1247# value.
1248ac_cache_corrupted=false
1249for ac_var in `(set) 2>&1 |
1250 sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
1251 eval ac_old_set=\$ac_cv_env_${ac_var}_set
1252 eval ac_new_set=\$ac_env_${ac_var}_set
1253 eval ac_old_val="\$ac_cv_env_${ac_var}_value"
1254 eval ac_new_val="\$ac_env_${ac_var}_value"
1255 case $ac_old_set,$ac_new_set in
1256 set,)
1257 { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
1258echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
1259 ac_cache_corrupted=: ;;
1260 ,set)
1261 { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
1262echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
1263 ac_cache_corrupted=: ;;
1264 ,);;
1265 *)
1266 if test "x$ac_old_val" != "x$ac_new_val"; then
1267 { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
1268echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
1269 { echo "$as_me:$LINENO: former value: $ac_old_val" >&5
1270echo "$as_me: former value: $ac_old_val" >&2;}
1271 { echo "$as_me:$LINENO: current value: $ac_new_val" >&5
1272echo "$as_me: current value: $ac_new_val" >&2;}
1273 ac_cache_corrupted=:
1274 fi;;
1275 esac
1276 # Pass precious variables to config.status.
1277 if test "$ac_new_set" = set; then
1278 case $ac_new_val in
1279 *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
1280 ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
1281 *) ac_arg=$ac_var=$ac_new_val ;;
1282 esac
1283 case " $ac_configure_args " in
1284 *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
1285 *) ac_configure_args="$ac_configure_args '$ac_arg'" ;;
1286 esac
1287 fi
1288done
1289if $ac_cache_corrupted; then
1290 { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
1291echo "$as_me: error: changes in the environment can compromise the build" >&2;}
1292 { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
1293echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
1294 { (exit 1); exit 1; }; }
1295fi
1296
1297ac_ext=c
1298ac_cpp='$CPP $CPPFLAGS'
1299ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1300ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1301ac_compiler_gnu=$ac_cv_c_compiler_gnu
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322ac_aux_dir=
1323for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
1324 if test -f $ac_dir/install-sh; then
1325 ac_aux_dir=$ac_dir
1326 ac_install_sh="$ac_aux_dir/install-sh -c"
1327 break
1328 elif test -f $ac_dir/install.sh; then
1329 ac_aux_dir=$ac_dir
1330 ac_install_sh="$ac_aux_dir/install.sh -c"
1331 break
1332 elif test -f $ac_dir/shtool; then
1333 ac_aux_dir=$ac_dir
1334 ac_install_sh="$ac_aux_dir/shtool install -c"
1335 break
1336 fi
1337done
1338if test -z "$ac_aux_dir"; then
1339 { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
1340echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
1341 { (exit 1); exit 1; }; }
1342fi
1343ac_config_guess="$SHELL $ac_aux_dir/config.guess"
1344ac_config_sub="$SHELL $ac_aux_dir/config.sub"
1345ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
1346
1347# Make sure we can run config.sub.
1348$ac_config_sub sun4 >/dev/null 2>&1 ||
1349 { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5
1350echo "$as_me: error: cannot run $ac_config_sub" >&2;}
1351 { (exit 1); exit 1; }; }
1352
1353echo "$as_me:$LINENO: checking build system type" >&5
1354echo $ECHO_N "checking build system type... $ECHO_C" >&6
1355if test "${ac_cv_build+set}" = set; then
1356 echo $ECHO_N "(cached) $ECHO_C" >&6
1357else
1358 ac_cv_build_alias=$build_alias
1359test -z "$ac_cv_build_alias" &&
1360 ac_cv_build_alias=`$ac_config_guess`
1361test -z "$ac_cv_build_alias" &&
1362 { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
1363echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
1364 { (exit 1); exit 1; }; }
1365ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
1366 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5
1367echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;}
1368 { (exit 1); exit 1; }; }
1369
1370fi
1371echo "$as_me:$LINENO: result: $ac_cv_build" >&5
1372echo "${ECHO_T}$ac_cv_build" >&6
1373build=$ac_cv_build
1374build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
1375build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
1376build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
1377
1378
1379echo "$as_me:$LINENO: checking host system type" >&5
1380echo $ECHO_N "checking host system type... $ECHO_C" >&6
1381if test "${ac_cv_host+set}" = set; then
1382 echo $ECHO_N "(cached) $ECHO_C" >&6
1383else
1384 ac_cv_host_alias=$host_alias
1385test -z "$ac_cv_host_alias" &&
1386 ac_cv_host_alias=$ac_cv_build_alias
1387ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
1388 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5
1389echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
1390 { (exit 1); exit 1; }; }
1391
1392fi
1393echo "$as_me:$LINENO: result: $ac_cv_host" >&5
1394echo "${ECHO_T}$ac_cv_host" >&6
1395host=$ac_cv_host
1396host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
1397host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
1398host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
1399
1400
1401echo "$as_me:$LINENO: checking target system type" >&5
1402echo $ECHO_N "checking target system type... $ECHO_C" >&6
1403if test "${ac_cv_target+set}" = set; then
1404 echo $ECHO_N "(cached) $ECHO_C" >&6
1405else
1406 ac_cv_target_alias=$target_alias
1407test "x$ac_cv_target_alias" = "x" &&
1408 ac_cv_target_alias=$ac_cv_host_alias
1409ac_cv_target=`$ac_config_sub $ac_cv_target_alias` ||
1410 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_target_alias failed" >&5
1411echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;}
1412 { (exit 1); exit 1; }; }
1413
1414fi
1415echo "$as_me:$LINENO: result: $ac_cv_target" >&5
1416echo "${ECHO_T}$ac_cv_target" >&6
1417target=$ac_cv_target
1418target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
1419target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
1420target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
1421
1422
1423# The aliases save the names the user supplied, while $host etc.
1424# will get canonicalized.
1425test -n "$target_alias" &&
1426 test "$program_prefix$program_suffix$program_transform_name" = \
1427 NONENONEs,x,x, &&
1428 program_prefix=${target_alias}-
1429ac_ext=c
1430ac_cpp='$CPP $CPPFLAGS'
1431ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1432ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1433ac_compiler_gnu=$ac_cv_c_compiler_gnu
1434if test -n "$ac_tool_prefix"; then
1435 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
1436set dummy ${ac_tool_prefix}gcc; ac_word=$2
1437echo "$as_me:$LINENO: checking for $ac_word" >&5
1438echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1439if test "${ac_cv_prog_CC+set}" = set; then
1440 echo $ECHO_N "(cached) $ECHO_C" >&6
1441else
1442 if test -n "$CC"; then
1443 ac_cv_prog_CC="$CC" # Let the user override the test.
1444else
1445as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1446for as_dir in $PATH
1447do
1448 IFS=$as_save_IFS
1449 test -z "$as_dir" && as_dir=.
1450 for ac_exec_ext in '' $ac_executable_extensions; do
1451 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1452 ac_cv_prog_CC="${ac_tool_prefix}gcc"
1453 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1454 break 2
1455 fi
1456done
1457done
1458
1459fi
1460fi
1461CC=$ac_cv_prog_CC
1462if test -n "$CC"; then
1463 echo "$as_me:$LINENO: result: $CC" >&5
1464echo "${ECHO_T}$CC" >&6
1465else
1466 echo "$as_me:$LINENO: result: no" >&5
1467echo "${ECHO_T}no" >&6
1468fi
1469
1470fi
1471if test -z "$ac_cv_prog_CC"; then
1472 ac_ct_CC=$CC
1473 # Extract the first word of "gcc", so it can be a program name with args.
1474set dummy gcc; ac_word=$2
1475echo "$as_me:$LINENO: checking for $ac_word" >&5
1476echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1477if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
1478 echo $ECHO_N "(cached) $ECHO_C" >&6
1479else
1480 if test -n "$ac_ct_CC"; then
1481 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
1482else
1483as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1484for as_dir in $PATH
1485do
1486 IFS=$as_save_IFS
1487 test -z "$as_dir" && as_dir=.
1488 for ac_exec_ext in '' $ac_executable_extensions; do
1489 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1490 ac_cv_prog_ac_ct_CC="gcc"
1491 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1492 break 2
1493 fi
1494done
1495done
1496
1497fi
1498fi
1499ac_ct_CC=$ac_cv_prog_ac_ct_CC
1500if test -n "$ac_ct_CC"; then
1501 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
1502echo "${ECHO_T}$ac_ct_CC" >&6
1503else
1504 echo "$as_me:$LINENO: result: no" >&5
1505echo "${ECHO_T}no" >&6
1506fi
1507
1508 CC=$ac_ct_CC
1509else
1510 CC="$ac_cv_prog_CC"
1511fi
1512
1513if test -z "$CC"; then
1514 if test -n "$ac_tool_prefix"; then
1515 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
1516set dummy ${ac_tool_prefix}cc; ac_word=$2
1517echo "$as_me:$LINENO: checking for $ac_word" >&5
1518echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1519if test "${ac_cv_prog_CC+set}" = set; then
1520 echo $ECHO_N "(cached) $ECHO_C" >&6
1521else
1522 if test -n "$CC"; then
1523 ac_cv_prog_CC="$CC" # Let the user override the test.
1524else
1525as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1526for as_dir in $PATH
1527do
1528 IFS=$as_save_IFS
1529 test -z "$as_dir" && as_dir=.
1530 for ac_exec_ext in '' $ac_executable_extensions; do
1531 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1532 ac_cv_prog_CC="${ac_tool_prefix}cc"
1533 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1534 break 2
1535 fi
1536done
1537done
1538
1539fi
1540fi
1541CC=$ac_cv_prog_CC
1542if test -n "$CC"; then
1543 echo "$as_me:$LINENO: result: $CC" >&5
1544echo "${ECHO_T}$CC" >&6
1545else
1546 echo "$as_me:$LINENO: result: no" >&5
1547echo "${ECHO_T}no" >&6
1548fi
1549
1550fi
1551if test -z "$ac_cv_prog_CC"; then
1552 ac_ct_CC=$CC
1553 # Extract the first word of "cc", so it can be a program name with args.
1554set dummy cc; ac_word=$2
1555echo "$as_me:$LINENO: checking for $ac_word" >&5
1556echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1557if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
1558 echo $ECHO_N "(cached) $ECHO_C" >&6
1559else
1560 if test -n "$ac_ct_CC"; then
1561 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
1562else
1563as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1564for as_dir in $PATH
1565do
1566 IFS=$as_save_IFS
1567 test -z "$as_dir" && as_dir=.
1568 for ac_exec_ext in '' $ac_executable_extensions; do
1569 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1570 ac_cv_prog_ac_ct_CC="cc"
1571 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1572 break 2
1573 fi
1574done
1575done
1576
1577fi
1578fi
1579ac_ct_CC=$ac_cv_prog_ac_ct_CC
1580if test -n "$ac_ct_CC"; then
1581 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
1582echo "${ECHO_T}$ac_ct_CC" >&6
1583else
1584 echo "$as_me:$LINENO: result: no" >&5
1585echo "${ECHO_T}no" >&6
1586fi
1587
1588 CC=$ac_ct_CC
1589else
1590 CC="$ac_cv_prog_CC"
1591fi
1592
1593fi
1594if test -z "$CC"; then
1595 # Extract the first word of "cc", so it can be a program name with args.
1596set dummy cc; ac_word=$2
1597echo "$as_me:$LINENO: checking for $ac_word" >&5
1598echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1599if test "${ac_cv_prog_CC+set}" = set; then
1600 echo $ECHO_N "(cached) $ECHO_C" >&6
1601else
1602 if test -n "$CC"; then
1603 ac_cv_prog_CC="$CC" # Let the user override the test.
1604else
1605 ac_prog_rejected=no
1606as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1607for as_dir in $PATH
1608do
1609 IFS=$as_save_IFS
1610 test -z "$as_dir" && as_dir=.
1611 for ac_exec_ext in '' $ac_executable_extensions; do
1612 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1613 if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
1614 ac_prog_rejected=yes
1615 continue
1616 fi
1617 ac_cv_prog_CC="cc"
1618 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1619 break 2
1620 fi
1621done
1622done
1623
1624if test $ac_prog_rejected = yes; then
1625 # We found a bogon in the path, so make sure we never use it.
1626 set dummy $ac_cv_prog_CC
1627 shift
1628 if test $# != 0; then
1629 # We chose a different compiler from the bogus one.
1630 # However, it has the same basename, so the bogon will be chosen
1631 # first if we set CC to just the basename; use the full file name.
1632 shift
1633 ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
1634 fi
1635fi
1636fi
1637fi
1638CC=$ac_cv_prog_CC
1639if test -n "$CC"; then
1640 echo "$as_me:$LINENO: result: $CC" >&5
1641echo "${ECHO_T}$CC" >&6
1642else
1643 echo "$as_me:$LINENO: result: no" >&5
1644echo "${ECHO_T}no" >&6
1645fi
1646
1647fi
1648if test -z "$CC"; then
1649 if test -n "$ac_tool_prefix"; then
1650 for ac_prog in cl
1651 do
1652 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
1653set dummy $ac_tool_prefix$ac_prog; ac_word=$2
1654echo "$as_me:$LINENO: checking for $ac_word" >&5
1655echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1656if test "${ac_cv_prog_CC+set}" = set; then
1657 echo $ECHO_N "(cached) $ECHO_C" >&6
1658else
1659 if test -n "$CC"; then
1660 ac_cv_prog_CC="$CC" # Let the user override the test.
1661else
1662as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1663for as_dir in $PATH
1664do
1665 IFS=$as_save_IFS
1666 test -z "$as_dir" && as_dir=.
1667 for ac_exec_ext in '' $ac_executable_extensions; do
1668 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1669 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
1670 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1671 break 2
1672 fi
1673done
1674done
1675
1676fi
1677fi
1678CC=$ac_cv_prog_CC
1679if test -n "$CC"; then
1680 echo "$as_me:$LINENO: result: $CC" >&5
1681echo "${ECHO_T}$CC" >&6
1682else
1683 echo "$as_me:$LINENO: result: no" >&5
1684echo "${ECHO_T}no" >&6
1685fi
1686
1687 test -n "$CC" && break
1688 done
1689fi
1690if test -z "$CC"; then
1691 ac_ct_CC=$CC
1692 for ac_prog in cl
1693do
1694 # Extract the first word of "$ac_prog", so it can be a program name with args.
1695set dummy $ac_prog; ac_word=$2
1696echo "$as_me:$LINENO: checking for $ac_word" >&5
1697echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1698if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
1699 echo $ECHO_N "(cached) $ECHO_C" >&6
1700else
1701 if test -n "$ac_ct_CC"; then
1702 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
1703else
1704as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1705for as_dir in $PATH
1706do
1707 IFS=$as_save_IFS
1708 test -z "$as_dir" && as_dir=.
1709 for ac_exec_ext in '' $ac_executable_extensions; do
1710 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1711 ac_cv_prog_ac_ct_CC="$ac_prog"
1712 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1713 break 2
1714 fi
1715done
1716done
1717
1718fi
1719fi
1720ac_ct_CC=$ac_cv_prog_ac_ct_CC
1721if test -n "$ac_ct_CC"; then
1722 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
1723echo "${ECHO_T}$ac_ct_CC" >&6
1724else
1725 echo "$as_me:$LINENO: result: no" >&5
1726echo "${ECHO_T}no" >&6
1727fi
1728
1729 test -n "$ac_ct_CC" && break
1730done
1731
1732 CC=$ac_ct_CC
1733fi
1734
1735fi
1736
1737
1738test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
1739See \`config.log' for more details." >&5
1740echo "$as_me: error: no acceptable C compiler found in \$PATH
1741See \`config.log' for more details." >&2;}
1742 { (exit 1); exit 1; }; }
1743
1744# Provide some information about the compiler.
1745echo "$as_me:$LINENO:" \
1746 "checking for C compiler version" >&5
1747ac_compiler=`set X $ac_compile; echo $2`
1748{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
1749 (eval $ac_compiler --version </dev/null >&5) 2>&5
1750 ac_status=$?
1751 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1752 (exit $ac_status); }
1753{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
1754 (eval $ac_compiler -v </dev/null >&5) 2>&5
1755 ac_status=$?
1756 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1757 (exit $ac_status); }
1758{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
1759 (eval $ac_compiler -V </dev/null >&5) 2>&5
1760 ac_status=$?
1761 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1762 (exit $ac_status); }
1763
1764cat >conftest.$ac_ext <<_ACEOF
1765/* confdefs.h. */
1766_ACEOF
1767cat confdefs.h >>conftest.$ac_ext
1768cat >>conftest.$ac_ext <<_ACEOF
1769/* end confdefs.h. */
1770
1771int
1772main ()
1773{
1774
1775 ;
1776 return 0;
1777}
1778_ACEOF
1779ac_clean_files_save=$ac_clean_files
1780ac_clean_files="$ac_clean_files a.out a.exe b.out"
1781# Try to create an executable without -o first, disregard a.out.
1782# It will help us diagnose broken compilers, and finding out an intuition
1783# of exeext.
1784echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
1785echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6
1786ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
1787if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5
1788 (eval $ac_link_default) 2>&5
1789 ac_status=$?
1790 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1791 (exit $ac_status); }; then
1792 # Find the output, starting from the most likely. This scheme is
1793# not robust to junk in `.', hence go to wildcards (a.*) only as a last
1794# resort.
1795
1796# Be careful to initialize this variable, since it used to be cached.
1797# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile.
1798ac_cv_exeext=
1799# b.out is created by i960 compilers.
1800for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out
1801do
1802 test -f "$ac_file" || continue
1803 case $ac_file in
1804 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj )
1805 ;;
1806 conftest.$ac_ext )
1807 # This is the source file.
1808 ;;
1809 [ab].out )
1810 # We found the default executable, but exeext='' is most
1811 # certainly right.
1812 break;;
1813 *.* )
1814 ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
1815 # FIXME: I believe we export ac_cv_exeext for Libtool,
1816 # but it would be cool to find out if it's true. Does anybody
1817 # maintain Libtool? --akim.
1818 export ac_cv_exeext
1819 break;;
1820 * )
1821 break;;
1822 esac
1823done
1824else
1825 echo "$as_me: failed program was:" >&5
1826sed 's/^/| /' conftest.$ac_ext >&5
1827
1828{ { echo "$as_me:$LINENO: error: C compiler cannot create executables
1829See \`config.log' for more details." >&5
1830echo "$as_me: error: C compiler cannot create executables
1831See \`config.log' for more details." >&2;}
1832 { (exit 77); exit 77; }; }
1833fi
1834
1835ac_exeext=$ac_cv_exeext
1836echo "$as_me:$LINENO: result: $ac_file" >&5
1837echo "${ECHO_T}$ac_file" >&6
1838
1839# Check the compiler produces executables we can run. If not, either
1840# the compiler is broken, or we cross compile.
1841echo "$as_me:$LINENO: checking whether the C compiler works" >&5
1842echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
1843# FIXME: These cross compiler hacks should be removed for Autoconf 3.0
1844# If not cross compiling, check that we can run a simple program.
1845if test "$cross_compiling" != yes; then
1846 if { ac_try='./$ac_file'
1847 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1848 (eval $ac_try) 2>&5
1849 ac_status=$?
1850 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1851 (exit $ac_status); }; }; then
1852 cross_compiling=no
1853 else
1854 if test "$cross_compiling" = maybe; then
1855 cross_compiling=yes
1856 else
1857 { { echo "$as_me:$LINENO: error: cannot run C compiled programs.
1858If you meant to cross compile, use \`--host'.
1859See \`config.log' for more details." >&5
1860echo "$as_me: error: cannot run C compiled programs.
1861If you meant to cross compile, use \`--host'.
1862See \`config.log' for more details." >&2;}
1863 { (exit 1); exit 1; }; }
1864 fi
1865 fi
1866fi
1867echo "$as_me:$LINENO: result: yes" >&5
1868echo "${ECHO_T}yes" >&6
1869
1870rm -f a.out a.exe conftest$ac_cv_exeext b.out
1871ac_clean_files=$ac_clean_files_save
1872# Check the compiler produces executables we can run. If not, either
1873# the compiler is broken, or we cross compile.
1874echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
1875echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
1876echo "$as_me:$LINENO: result: $cross_compiling" >&5
1877echo "${ECHO_T}$cross_compiling" >&6
1878
1879echo "$as_me:$LINENO: checking for suffix of executables" >&5
1880echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6
1881if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
1882 (eval $ac_link) 2>&5
1883 ac_status=$?
1884 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1885 (exit $ac_status); }; then
1886 # If both `conftest.exe' and `conftest' are `present' (well, observable)
1887# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
1888# work properly (i.e., refer to `conftest.exe'), while it won't with
1889# `rm'.
1890for ac_file in conftest.exe conftest conftest.*; do
1891 test -f "$ac_file" || continue
1892 case $ac_file in
1893 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;;
1894 *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
1895 export ac_cv_exeext
1896 break;;
1897 * ) break;;
1898 esac
1899done
1900else
1901 { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
1902See \`config.log' for more details." >&5
1903echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
1904See \`config.log' for more details." >&2;}
1905 { (exit 1); exit 1; }; }
1906fi
1907
1908rm -f conftest$ac_cv_exeext
1909echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
1910echo "${ECHO_T}$ac_cv_exeext" >&6
1911
1912rm -f conftest.$ac_ext
1913EXEEXT=$ac_cv_exeext
1914ac_exeext=$EXEEXT
1915echo "$as_me:$LINENO: checking for suffix of object files" >&5
1916echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6
1917if test "${ac_cv_objext+set}" = set; then
1918 echo $ECHO_N "(cached) $ECHO_C" >&6
1919else
1920 cat >conftest.$ac_ext <<_ACEOF
1921/* confdefs.h. */
1922_ACEOF
1923cat confdefs.h >>conftest.$ac_ext
1924cat >>conftest.$ac_ext <<_ACEOF
1925/* end confdefs.h. */
1926
1927int
1928main ()
1929{
1930
1931 ;
1932 return 0;
1933}
1934_ACEOF
1935rm -f conftest.o conftest.obj
1936if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1937 (eval $ac_compile) 2>&5
1938 ac_status=$?
1939 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1940 (exit $ac_status); }; then
1941 for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
1942 case $ac_file in
1943 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;;
1944 *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
1945 break;;
1946 esac
1947done
1948else
1949 echo "$as_me: failed program was:" >&5
1950sed 's/^/| /' conftest.$ac_ext >&5
1951
1952{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
1953See \`config.log' for more details." >&5
1954echo "$as_me: error: cannot compute suffix of object files: cannot compile
1955See \`config.log' for more details." >&2;}
1956 { (exit 1); exit 1; }; }
1957fi
1958
1959rm -f conftest.$ac_cv_objext conftest.$ac_ext
1960fi
1961echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
1962echo "${ECHO_T}$ac_cv_objext" >&6
1963OBJEXT=$ac_cv_objext
1964ac_objext=$OBJEXT
1965echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
1966echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
1967if test "${ac_cv_c_compiler_gnu+set}" = set; then
1968 echo $ECHO_N "(cached) $ECHO_C" >&6
1969else
1970 cat >conftest.$ac_ext <<_ACEOF
1971/* confdefs.h. */
1972_ACEOF
1973cat confdefs.h >>conftest.$ac_ext
1974cat >>conftest.$ac_ext <<_ACEOF
1975/* end confdefs.h. */
1976
1977int
1978main ()
1979{
1980#ifndef __GNUC__
1981 choke me
1982#endif
1983
1984 ;
1985 return 0;
1986}
1987_ACEOF
1988rm -f conftest.$ac_objext
1989if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1990 (eval $ac_compile) 2>conftest.er1
1991 ac_status=$?
1992 grep -v '^ *+' conftest.er1 >conftest.err
1993 rm -f conftest.er1
1994 cat conftest.err >&5
1995 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1996 (exit $ac_status); } &&
b7d4af3a
JW
1997 { ac_try='test -z "$ac_c_werror_flag"
1998 || test ! -s conftest.err'
42ecbf5e
DJ
1999 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2000 (eval $ac_try) 2>&5
2001 ac_status=$?
2002 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2003 (exit $ac_status); }; } &&
2004 { ac_try='test -s conftest.$ac_objext'
2005 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2006 (eval $ac_try) 2>&5
2007 ac_status=$?
2008 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2009 (exit $ac_status); }; }; then
2010 ac_compiler_gnu=yes
2011else
2012 echo "$as_me: failed program was:" >&5
2013sed 's/^/| /' conftest.$ac_ext >&5
2014
2015ac_compiler_gnu=no
2016fi
2017rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
2018ac_cv_c_compiler_gnu=$ac_compiler_gnu
2019
2020fi
2021echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
2022echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
2023GCC=`test $ac_compiler_gnu = yes && echo yes`
2024ac_test_CFLAGS=${CFLAGS+set}
2025ac_save_CFLAGS=$CFLAGS
2026CFLAGS="-g"
2027echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
2028echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
2029if test "${ac_cv_prog_cc_g+set}" = set; then
2030 echo $ECHO_N "(cached) $ECHO_C" >&6
2031else
2032 cat >conftest.$ac_ext <<_ACEOF
2033/* confdefs.h. */
2034_ACEOF
2035cat confdefs.h >>conftest.$ac_ext
2036cat >>conftest.$ac_ext <<_ACEOF
2037/* end confdefs.h. */
2038
2039int
2040main ()
2041{
2042
2043 ;
2044 return 0;
2045}
2046_ACEOF
2047rm -f conftest.$ac_objext
2048if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2049 (eval $ac_compile) 2>conftest.er1
2050 ac_status=$?
2051 grep -v '^ *+' conftest.er1 >conftest.err
2052 rm -f conftest.er1
2053 cat conftest.err >&5
2054 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2055 (exit $ac_status); } &&
b7d4af3a
JW
2056 { ac_try='test -z "$ac_c_werror_flag"
2057 || test ! -s conftest.err'
42ecbf5e
DJ
2058 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2059 (eval $ac_try) 2>&5
2060 ac_status=$?
2061 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2062 (exit $ac_status); }; } &&
2063 { ac_try='test -s conftest.$ac_objext'
2064 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2065 (eval $ac_try) 2>&5
2066 ac_status=$?
2067 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2068 (exit $ac_status); }; }; then
2069 ac_cv_prog_cc_g=yes
2070else
2071 echo "$as_me: failed program was:" >&5
2072sed 's/^/| /' conftest.$ac_ext >&5
2073
2074ac_cv_prog_cc_g=no
2075fi
2076rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
2077fi
2078echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
2079echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
2080if test "$ac_test_CFLAGS" = set; then
2081 CFLAGS=$ac_save_CFLAGS
2082elif test $ac_cv_prog_cc_g = yes; then
2083 if test "$GCC" = yes; then
2084 CFLAGS="-g -O2"
2085 else
2086 CFLAGS="-g"
2087 fi
2088else
2089 if test "$GCC" = yes; then
2090 CFLAGS="-O2"
2091 else
2092 CFLAGS=
2093 fi
2094fi
2095echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
2096echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
2097if test "${ac_cv_prog_cc_stdc+set}" = set; then
2098 echo $ECHO_N "(cached) $ECHO_C" >&6
2099else
2100 ac_cv_prog_cc_stdc=no
2101ac_save_CC=$CC
2102cat >conftest.$ac_ext <<_ACEOF
2103/* confdefs.h. */
2104_ACEOF
2105cat confdefs.h >>conftest.$ac_ext
2106cat >>conftest.$ac_ext <<_ACEOF
2107/* end confdefs.h. */
2108#include <stdarg.h>
2109#include <stdio.h>
2110#include <sys/types.h>
2111#include <sys/stat.h>
2112/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
2113struct buf { int x; };
2114FILE * (*rcsopen) (struct buf *, struct stat *, int);
2115static char *e (p, i)
2116 char **p;
2117 int i;
2118{
2119 return p[i];
2120}
2121static char *f (char * (*g) (char **, int), char **p, ...)
2122{
2123 char *s;
2124 va_list v;
2125 va_start (v,p);
2126 s = g (p, va_arg (v,int));
2127 va_end (v);
2128 return s;
2129}
2130
2131/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
2132 function prototypes and stuff, but not '\xHH' hex character constants.
2133 These don't provoke an error unfortunately, instead are silently treated
2134 as 'x'. The following induces an error, until -std1 is added to get
2135 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
2136 array size at least. It's necessary to write '\x00'==0 to get something
2137 that's true only with -std1. */
2138int osf4_cc_array ['\x00' == 0 ? 1 : -1];
2139
2140int test (int i, double x);
2141struct s1 {int (*f) (int a);};
2142struct s2 {int (*f) (double a);};
2143int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
2144int argc;
2145char **argv;
2146int
2147main ()
2148{
2149return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
2150 ;
2151 return 0;
2152}
2153_ACEOF
2154# Don't try gcc -ansi; that turns off useful extensions and
2155# breaks some systems' header files.
2156# AIX -qlanglvl=ansi
2157# Ultrix and OSF/1 -std1
2158# HP-UX 10.20 and later -Ae
2159# HP-UX older versions -Aa -D_HPUX_SOURCE
2160# SVR4 -Xc -D__EXTENSIONS__
2161for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
2162do
2163 CC="$ac_save_CC $ac_arg"
2164 rm -f conftest.$ac_objext
2165if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2166 (eval $ac_compile) 2>conftest.er1
2167 ac_status=$?
2168 grep -v '^ *+' conftest.er1 >conftest.err
2169 rm -f conftest.er1
2170 cat conftest.err >&5
2171 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2172 (exit $ac_status); } &&
b7d4af3a
JW
2173 { ac_try='test -z "$ac_c_werror_flag"
2174 || test ! -s conftest.err'
42ecbf5e
DJ
2175 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2176 (eval $ac_try) 2>&5
2177 ac_status=$?
2178 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2179 (exit $ac_status); }; } &&
2180 { ac_try='test -s conftest.$ac_objext'
2181 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2182 (eval $ac_try) 2>&5
2183 ac_status=$?
2184 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2185 (exit $ac_status); }; }; then
2186 ac_cv_prog_cc_stdc=$ac_arg
2187break
2188else
2189 echo "$as_me: failed program was:" >&5
2190sed 's/^/| /' conftest.$ac_ext >&5
2191
2192fi
2193rm -f conftest.err conftest.$ac_objext
2194done
2195rm -f conftest.$ac_ext conftest.$ac_objext
2196CC=$ac_save_CC
2197
2198fi
2199
2200case "x$ac_cv_prog_cc_stdc" in
2201 x|xno)
2202 echo "$as_me:$LINENO: result: none needed" >&5
2203echo "${ECHO_T}none needed" >&6 ;;
2204 *)
2205 echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
2206echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
2207 CC="$CC $ac_cv_prog_cc_stdc" ;;
2208esac
2209
2210# Some people use a C++ compiler to compile C. Since we use `exit',
2211# in C++ we need to declare it. In case someone uses the same compiler
2212# for both compiling C and C++ we need to have the C++ compiler decide
2213# the declaration of exit, since it's the most demanding environment.
2214cat >conftest.$ac_ext <<_ACEOF
2215#ifndef __cplusplus
2216 choke me
2217#endif
2218_ACEOF
2219rm -f conftest.$ac_objext
2220if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2221 (eval $ac_compile) 2>conftest.er1
2222 ac_status=$?
2223 grep -v '^ *+' conftest.er1 >conftest.err
2224 rm -f conftest.er1
2225 cat conftest.err >&5
2226 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2227 (exit $ac_status); } &&
b7d4af3a
JW
2228 { ac_try='test -z "$ac_c_werror_flag"
2229 || test ! -s conftest.err'
42ecbf5e
DJ
2230 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2231 (eval $ac_try) 2>&5
2232 ac_status=$?
2233 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2234 (exit $ac_status); }; } &&
2235 { ac_try='test -s conftest.$ac_objext'
2236 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2237 (eval $ac_try) 2>&5
2238 ac_status=$?
2239 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2240 (exit $ac_status); }; }; then
2241 for ac_declaration in \
2242 '' \
2243 'extern "C" void std::exit (int) throw (); using std::exit;' \
2244 'extern "C" void std::exit (int); using std::exit;' \
2245 'extern "C" void exit (int) throw ();' \
2246 'extern "C" void exit (int);' \
2247 'void exit (int);'
2248do
2249 cat >conftest.$ac_ext <<_ACEOF
2250/* confdefs.h. */
2251_ACEOF
2252cat confdefs.h >>conftest.$ac_ext
2253cat >>conftest.$ac_ext <<_ACEOF
2254/* end confdefs.h. */
2255$ac_declaration
2256#include <stdlib.h>
2257int
2258main ()
2259{
2260exit (42);
2261 ;
2262 return 0;
2263}
2264_ACEOF
2265rm -f conftest.$ac_objext
2266if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2267 (eval $ac_compile) 2>conftest.er1
2268 ac_status=$?
2269 grep -v '^ *+' conftest.er1 >conftest.err
2270 rm -f conftest.er1
2271 cat conftest.err >&5
2272 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2273 (exit $ac_status); } &&
b7d4af3a
JW
2274 { ac_try='test -z "$ac_c_werror_flag"
2275 || test ! -s conftest.err'
42ecbf5e
DJ
2276 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2277 (eval $ac_try) 2>&5
2278 ac_status=$?
2279 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2280 (exit $ac_status); }; } &&
2281 { ac_try='test -s conftest.$ac_objext'
2282 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2283 (eval $ac_try) 2>&5
2284 ac_status=$?
2285 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2286 (exit $ac_status); }; }; then
2287 :
2288else
2289 echo "$as_me: failed program was:" >&5
2290sed 's/^/| /' conftest.$ac_ext >&5
2291
2292continue
2293fi
2294rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
2295 cat >conftest.$ac_ext <<_ACEOF
2296/* confdefs.h. */
2297_ACEOF
2298cat confdefs.h >>conftest.$ac_ext
2299cat >>conftest.$ac_ext <<_ACEOF
2300/* end confdefs.h. */
2301$ac_declaration
2302int
2303main ()
2304{
2305exit (42);
2306 ;
2307 return 0;
2308}
2309_ACEOF
2310rm -f conftest.$ac_objext
2311if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2312 (eval $ac_compile) 2>conftest.er1
2313 ac_status=$?
2314 grep -v '^ *+' conftest.er1 >conftest.err
2315 rm -f conftest.er1
2316 cat conftest.err >&5
2317 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2318 (exit $ac_status); } &&
b7d4af3a
JW
2319 { ac_try='test -z "$ac_c_werror_flag"
2320 || test ! -s conftest.err'
42ecbf5e
DJ
2321 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2322 (eval $ac_try) 2>&5
2323 ac_status=$?
2324 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2325 (exit $ac_status); }; } &&
2326 { ac_try='test -s conftest.$ac_objext'
2327 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2328 (eval $ac_try) 2>&5
2329 ac_status=$?
2330 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2331 (exit $ac_status); }; }; then
2332 break
2333else
2334 echo "$as_me: failed program was:" >&5
2335sed 's/^/| /' conftest.$ac_ext >&5
2336
2337fi
2338rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
2339done
2340rm -f conftest*
2341if test -n "$ac_declaration"; then
2342 echo '#ifdef __cplusplus' >>confdefs.h
2343 echo $ac_declaration >>confdefs.h
2344 echo '#endif' >>confdefs.h
2345fi
2346
2347else
2348 echo "$as_me: failed program was:" >&5
2349sed 's/^/| /' conftest.$ac_ext >&5
2350
2351fi
2352rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
2353ac_ext=c
2354ac_cpp='$CPP $CPPFLAGS'
2355ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
2356ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2357ac_compiler_gnu=$ac_cv_c_compiler_gnu
2358
2359
2360echo "$as_me:$LINENO: checking for library containing strerror" >&5
2361echo $ECHO_N "checking for library containing strerror... $ECHO_C" >&6
2362if test "${ac_cv_search_strerror+set}" = set; then
2363 echo $ECHO_N "(cached) $ECHO_C" >&6
2364else
2365 ac_func_search_save_LIBS=$LIBS
2366ac_cv_search_strerror=no
2367cat >conftest.$ac_ext <<_ACEOF
2368/* confdefs.h. */
2369_ACEOF
2370cat confdefs.h >>conftest.$ac_ext
2371cat >>conftest.$ac_ext <<_ACEOF
2372/* end confdefs.h. */
2373
2374/* Override any gcc2 internal prototype to avoid an error. */
2375#ifdef __cplusplus
2376extern "C"
2377#endif
2378/* We use char because int might match the return type of a gcc2
2379 builtin and then its argument prototype would still apply. */
2380char strerror ();
2381int
2382main ()
2383{
2384strerror ();
2385 ;
2386 return 0;
2387}
2388_ACEOF
2389rm -f conftest.$ac_objext conftest$ac_exeext
2390if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2391 (eval $ac_link) 2>conftest.er1
2392 ac_status=$?
2393 grep -v '^ *+' conftest.er1 >conftest.err
2394 rm -f conftest.er1
2395 cat conftest.err >&5
2396 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2397 (exit $ac_status); } &&
b7d4af3a
JW
2398 { ac_try='test -z "$ac_c_werror_flag"
2399 || test ! -s conftest.err'
42ecbf5e
DJ
2400 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2401 (eval $ac_try) 2>&5
2402 ac_status=$?
2403 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2404 (exit $ac_status); }; } &&
2405 { ac_try='test -s conftest$ac_exeext'
2406 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2407 (eval $ac_try) 2>&5
2408 ac_status=$?
2409 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2410 (exit $ac_status); }; }; then
2411 ac_cv_search_strerror="none required"
2412else
2413 echo "$as_me: failed program was:" >&5
2414sed 's/^/| /' conftest.$ac_ext >&5
2415
2416fi
2417rm -f conftest.err conftest.$ac_objext \
2418 conftest$ac_exeext conftest.$ac_ext
2419if test "$ac_cv_search_strerror" = no; then
2420 for ac_lib in cposix; do
2421 LIBS="-l$ac_lib $ac_func_search_save_LIBS"
2422 cat >conftest.$ac_ext <<_ACEOF
2423/* confdefs.h. */
2424_ACEOF
2425cat confdefs.h >>conftest.$ac_ext
2426cat >>conftest.$ac_ext <<_ACEOF
2427/* end confdefs.h. */
2428
2429/* Override any gcc2 internal prototype to avoid an error. */
2430#ifdef __cplusplus
2431extern "C"
2432#endif
2433/* We use char because int might match the return type of a gcc2
2434 builtin and then its argument prototype would still apply. */
2435char strerror ();
2436int
2437main ()
2438{
2439strerror ();
2440 ;
2441 return 0;
2442}
2443_ACEOF
2444rm -f conftest.$ac_objext conftest$ac_exeext
2445if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2446 (eval $ac_link) 2>conftest.er1
2447 ac_status=$?
2448 grep -v '^ *+' conftest.er1 >conftest.err
2449 rm -f conftest.er1
2450 cat conftest.err >&5
2451 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2452 (exit $ac_status); } &&
b7d4af3a
JW
2453 { ac_try='test -z "$ac_c_werror_flag"
2454 || test ! -s conftest.err'
42ecbf5e
DJ
2455 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2456 (eval $ac_try) 2>&5
2457 ac_status=$?
2458 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2459 (exit $ac_status); }; } &&
2460 { ac_try='test -s conftest$ac_exeext'
2461 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2462 (eval $ac_try) 2>&5
2463 ac_status=$?
2464 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2465 (exit $ac_status); }; }; then
2466 ac_cv_search_strerror="-l$ac_lib"
2467break
2468else
2469 echo "$as_me: failed program was:" >&5
2470sed 's/^/| /' conftest.$ac_ext >&5
2471
2472fi
2473rm -f conftest.err conftest.$ac_objext \
2474 conftest$ac_exeext conftest.$ac_ext
2475 done
2476fi
2477LIBS=$ac_func_search_save_LIBS
2478fi
2479echo "$as_me:$LINENO: result: $ac_cv_search_strerror" >&5
2480echo "${ECHO_T}$ac_cv_search_strerror" >&6
2481if test "$ac_cv_search_strerror" != no; then
2482 test "$ac_cv_search_strerror" = "none required" || LIBS="$ac_cv_search_strerror $LIBS"
2483
2484fi
2485
2486
2487BFD_VERSION=`sed -n -e 's/^.._INIT_AUTOMAKE.*,[ ]*\([^ ]*\)[ ]*).*/\1/p' < ${srcdir}/../bfd/configure.in`
2488am__api_version="1.9"
2489# Find a good install program. We prefer a C program (faster),
2490# so one script is as good as another. But avoid the broken or
2491# incompatible versions:
2492# SysV /etc/install, /usr/sbin/install
2493# SunOS /usr/etc/install
2494# IRIX /sbin/install
2495# AIX /bin/install
2496# AmigaOS /C/install, which installs bootblocks on floppy discs
2497# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
2498# AFS /usr/afsws/bin/install, which mishandles nonexistent args
2499# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
2500# OS/2's system install, which has a completely different semantic
2501# ./install, which can be erroneously created by make from ./install.sh.
2502echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
2503echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
2504if test -z "$INSTALL"; then
2505if test "${ac_cv_path_install+set}" = set; then
2506 echo $ECHO_N "(cached) $ECHO_C" >&6
2507else
2508 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2509for as_dir in $PATH
2510do
2511 IFS=$as_save_IFS
2512 test -z "$as_dir" && as_dir=.
2513 # Account for people who put trailing slashes in PATH elements.
2514case $as_dir/ in
2515 ./ | .// | /cC/* | \
2516 /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
2517 ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \
2518 /usr/ucb/* ) ;;
2519 *)
2520 # OSF1 and SCO ODT 3.0 have their own names for install.
2521 # Don't use installbsd from OSF since it installs stuff as root
2522 # by default.
2523 for ac_prog in ginstall scoinst install; do
2524 for ac_exec_ext in '' $ac_executable_extensions; do
2525 if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
2526 if test $ac_prog = install &&
2527 grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
252b5132
RH
2528 # AIX install. It has an incompatible calling convention.
2529 :
42ecbf5e
DJ
2530 elif test $ac_prog = install &&
2531 grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
2532 # program-specific install script used by HP pwplus--don't use.
2533 :
252b5132 2534 else
42ecbf5e
DJ
2535 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
2536 break 3
252b5132
RH
2537 fi
2538 fi
d15b04bd 2539 done
42ecbf5e
DJ
2540 done
2541 ;;
2542esac
2543done
2544
252b5132
RH
2545
2546fi
2547 if test "${ac_cv_path_install+set}" = set; then
42ecbf5e 2548 INSTALL=$ac_cv_path_install
252b5132
RH
2549 else
2550 # As a last resort, use the slow shell script. We don't cache a
2551 # path for INSTALL within a source directory, because that will
2552 # break other packages using the cache if that directory is
2553 # removed, or if the path is relative.
42ecbf5e 2554 INSTALL=$ac_install_sh
252b5132
RH
2555 fi
2556fi
42ecbf5e
DJ
2557echo "$as_me:$LINENO: result: $INSTALL" >&5
2558echo "${ECHO_T}$INSTALL" >&6
252b5132
RH
2559
2560# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
2561# It thinks the first close brace ends the variable substitution.
2562test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
2563
42ecbf5e 2564test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
252b5132
RH
2565
2566test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
2567
42ecbf5e
DJ
2568echo "$as_me:$LINENO: checking whether build environment is sane" >&5
2569echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6
252b5132
RH
2570# Just in case
2571sleep 1
42ecbf5e 2572echo timestamp > conftest.file
252b5132
RH
2573# Do `set' in a subshell so we don't clobber the current shell's
2574# arguments. Must try -L first in case configure is actually a
2575# symlink; some systems play weird games with the mod time of symlinks
2576# (eg FreeBSD returns the mod time of the symlink's containing
2577# directory).
2578if (
42ecbf5e 2579 set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
252b5132
RH
2580 if test "$*" = "X"; then
2581 # -L didn't work.
42ecbf5e 2582 set X `ls -t $srcdir/configure conftest.file`
252b5132 2583 fi
42ecbf5e
DJ
2584 rm -f conftest.file
2585 if test "$*" != "X $srcdir/configure conftest.file" \
2586 && test "$*" != "X conftest.file $srcdir/configure"; then
252b5132
RH
2587
2588 # If neither matched, then we have a broken ls. This can happen
2589 # if, for instance, CONFIG_SHELL is bash and it inherits a
2590 # broken ls alias from the environment. This has actually
2591 # happened. Such a system could not be considered "sane".
42ecbf5e
DJ
2592 { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken
2593alias in your environment" >&5
2594echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken
2595alias in your environment" >&2;}
2596 { (exit 1); exit 1; }; }
252b5132
RH
2597 fi
2598
42ecbf5e 2599 test "$2" = conftest.file
252b5132
RH
2600 )
2601then
2602 # Ok.
2603 :
2604else
42ecbf5e
DJ
2605 { { echo "$as_me:$LINENO: error: newly created file is older than distributed files!
2606Check your system clock" >&5
2607echo "$as_me: error: newly created file is older than distributed files!
2608Check your system clock" >&2;}
2609 { (exit 1); exit 1; }; }
2610fi
2611echo "$as_me:$LINENO: result: yes" >&5
2612echo "${ECHO_T}yes" >&6
2613test "$program_prefix" != NONE &&
2614 program_transform_name="s,^,$program_prefix,;$program_transform_name"
2615# Use a double $ so make ignores it.
2616test "$program_suffix" != NONE &&
2617 program_transform_name="s,\$,$program_suffix,;$program_transform_name"
2618# Double any \ or $. echo might interpret backslashes.
2619# By default was `s,x,x', remove it if useless.
2620cat <<\_ACEOF >conftest.sed
2621s/[\\$]/&&/g;s/;s,x,x,$//
2622_ACEOF
2623program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
2624rm conftest.sed
2625
2626# expand $ac_aux_dir to an absolute path
2627am_aux_dir=`cd $ac_aux_dir && pwd`
2628
2629test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
2630# Use eval to expand $SHELL
2631if eval "$MISSING --run true"; then
2632 am_missing_run="$MISSING --run "
2633else
2634 am_missing_run=
2635 { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5
2636echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
2637fi
2638
2639if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
2640 # We used to keeping the `.' as first argument, in order to
2641 # allow $(mkdir_p) to be used without argument. As in
2642 # $(mkdir_p) $(somedir)
2643 # where $(somedir) is conditionally defined. However this is wrong
2644 # for two reasons:
2645 # 1. if the package is installed by a user who cannot write `.'
2646 # make install will fail,
2647 # 2. the above comment should most certainly read
2648 # $(mkdir_p) $(DESTDIR)$(somedir)
2649 # so it does not work when $(somedir) is undefined and
2650 # $(DESTDIR) is not.
2651 # To support the latter case, we have to write
2652 # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
2653 # so the `.' trick is pointless.
2654 mkdir_p='mkdir -p --'
2655else
2656 # On NextStep and OpenStep, the `mkdir' command does not
2657 # recognize any option. It will interpret all options as
2658 # directories to create, and then abort because `.' already
2659 # exists.
2660 for d in ./-p ./--version;
2661 do
2662 test -d $d && rmdir $d
2663 done
2664 # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
2665 if test -f "$ac_aux_dir/mkinstalldirs"; then
2666 mkdir_p='$(mkinstalldirs)'
2667 else
2668 mkdir_p='$(install_sh) -d'
2669 fi
2670fi
2671
2672for ac_prog in gawk mawk nawk awk
2673do
2674 # Extract the first word of "$ac_prog", so it can be a program name with args.
2675set dummy $ac_prog; ac_word=$2
2676echo "$as_me:$LINENO: checking for $ac_word" >&5
2677echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
2678if test "${ac_cv_prog_AWK+set}" = set; then
2679 echo $ECHO_N "(cached) $ECHO_C" >&6
2680else
2681 if test -n "$AWK"; then
2682 ac_cv_prog_AWK="$AWK" # Let the user override the test.
2683else
2684as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2685for as_dir in $PATH
2686do
2687 IFS=$as_save_IFS
2688 test -z "$as_dir" && as_dir=.
2689 for ac_exec_ext in '' $ac_executable_extensions; do
2690 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2691 ac_cv_prog_AWK="$ac_prog"
2692 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2693 break 2
2694 fi
2695done
2696done
2697
2698fi
2699fi
2700AWK=$ac_cv_prog_AWK
2701if test -n "$AWK"; then
2702 echo "$as_me:$LINENO: result: $AWK" >&5
2703echo "${ECHO_T}$AWK" >&6
2704else
2705 echo "$as_me:$LINENO: result: no" >&5
2706echo "${ECHO_T}no" >&6
2707fi
2708
2709 test -n "$AWK" && break
2710done
2711
2712echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
2713echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6
2714set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'`
2715if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
2716 echo $ECHO_N "(cached) $ECHO_C" >&6
2717else
2718 cat >conftest.make <<\_ACEOF
2719all:
2720 @echo 'ac_maketemp="$(MAKE)"'
2721_ACEOF
2722# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
2723eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
2724if test -n "$ac_maketemp"; then
2725 eval ac_cv_prog_make_${ac_make}_set=yes
2726else
2727 eval ac_cv_prog_make_${ac_make}_set=no
2728fi
2729rm -f conftest.make
2730fi
2731if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
2732 echo "$as_me:$LINENO: result: yes" >&5
2733echo "${ECHO_T}yes" >&6
2734 SET_MAKE=
2735else
2736 echo "$as_me:$LINENO: result: no" >&5
2737echo "${ECHO_T}no" >&6
2738 SET_MAKE="MAKE=${MAKE-make}"
2739fi
2740
2741rm -rf .tst 2>/dev/null
2742mkdir .tst 2>/dev/null
2743if test -d .tst; then
2744 am__leading_dot=.
2745else
2746 am__leading_dot=_
2747fi
2748rmdir .tst 2>/dev/null
2749
2750DEPDIR="${am__leading_dot}deps"
2751
2752 ac_config_commands="$ac_config_commands depfiles"
2753
2754
2755am_make=${MAKE-make}
2756cat > confinc << 'END'
2757am__doit:
2758 @echo done
2759.PHONY: am__doit
2760END
2761# If we don't find an include directive, just comment out the code.
2762echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5
2763echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6
2764am__include="#"
2765am__quote=
2766_am_result=none
2767# First try GNU make style include.
2768echo "include confinc" > confmf
2769# We grep out `Entering directory' and `Leaving directory'
2770# messages which can occur if `w' ends up in MAKEFLAGS.
2771# In particular we don't look at `^make:' because GNU make might
2772# be invoked under some other name (usually "gmake"), in which
2773# case it prints its new name instead of `make'.
2774if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
2775 am__include=include
2776 am__quote=
2777 _am_result=GNU
2778fi
2779# Now try BSD make style include.
2780if test "$am__include" = "#"; then
2781 echo '.include "confinc"' > confmf
2782 if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
2783 am__include=.include
2784 am__quote="\""
2785 _am_result=BSD
2786 fi
2787fi
2788
2789
2790echo "$as_me:$LINENO: result: $_am_result" >&5
2791echo "${ECHO_T}$_am_result" >&6
2792rm -f confinc confmf
2793
2794# Check whether --enable-dependency-tracking or --disable-dependency-tracking was given.
2795if test "${enable_dependency_tracking+set}" = set; then
2796 enableval="$enable_dependency_tracking"
2797
2798fi;
2799if test "x$enable_dependency_tracking" != xno; then
2800 am_depcomp="$ac_aux_dir/depcomp"
2801 AMDEPBACKSLASH='\'
2802fi
2803
2804
2805if test "x$enable_dependency_tracking" != xno; then
2806 AMDEP_TRUE=
2807 AMDEP_FALSE='#'
2808else
2809 AMDEP_TRUE='#'
2810 AMDEP_FALSE=
2811fi
2812
2813
2814
2815# test to see if srcdir already configured
2816if test "`cd $srcdir && pwd`" != "`pwd`" &&
2817 test -f $srcdir/config.status; then
2818 { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
2819echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
2820 { (exit 1); exit 1; }; }
2821fi
2822
2823# test whether we have cygpath
2824if test -z "$CYGPATH_W"; then
2825 if (cygpath --version) >/dev/null 2>/dev/null; then
2826 CYGPATH_W='cygpath -w'
2827 else
2828 CYGPATH_W=echo
2829 fi
2830fi
2831
2832
2833# Define the identity of the package.
2834 PACKAGE=binutils
2835 VERSION=${BFD_VERSION}
2836
2837
2838cat >>confdefs.h <<_ACEOF
2839#define PACKAGE "$PACKAGE"
2840_ACEOF
2841
2842
2843cat >>confdefs.h <<_ACEOF
2844#define VERSION "$VERSION"
2845_ACEOF
2846
2847# Some tools Automake needs.
2848
2849ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
2850
2851
2852AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
2853
2854
2855AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
2856
2857
2858AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
2859
2860
2861MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
2862
2863install_sh=${install_sh-"$am_aux_dir/install-sh"}
2864
2865# Installed binaries are usually stripped using `strip' when the user
2866# run `make install-strip'. However `strip' might not be the right
2867# tool to use in cross-compilation environments, therefore Automake
2868# will honor the `STRIP' environment variable to overrule this program.
2869if test "$cross_compiling" != no; then
2870 if test -n "$ac_tool_prefix"; then
2871 # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
2872set dummy ${ac_tool_prefix}strip; ac_word=$2
2873echo "$as_me:$LINENO: checking for $ac_word" >&5
2874echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
2875if test "${ac_cv_prog_STRIP+set}" = set; then
2876 echo $ECHO_N "(cached) $ECHO_C" >&6
2877else
2878 if test -n "$STRIP"; then
2879 ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
2880else
2881as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2882for as_dir in $PATH
2883do
2884 IFS=$as_save_IFS
2885 test -z "$as_dir" && as_dir=.
2886 for ac_exec_ext in '' $ac_executable_extensions; do
2887 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2888 ac_cv_prog_STRIP="${ac_tool_prefix}strip"
2889 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2890 break 2
2891 fi
2892done
2893done
2894
252b5132 2895fi
42ecbf5e
DJ
2896fi
2897STRIP=$ac_cv_prog_STRIP
2898if test -n "$STRIP"; then
2899 echo "$as_me:$LINENO: result: $STRIP" >&5
2900echo "${ECHO_T}$STRIP" >&6
d15b04bd 2901else
42ecbf5e
DJ
2902 echo "$as_me:$LINENO: result: no" >&5
2903echo "${ECHO_T}no" >&6
d15b04bd 2904fi
d15b04bd 2905
42ecbf5e
DJ
2906fi
2907if test -z "$ac_cv_prog_STRIP"; then
2908 ac_ct_STRIP=$STRIP
2909 # Extract the first word of "strip", so it can be a program name with args.
2910set dummy strip; ac_word=$2
2911echo "$as_me:$LINENO: checking for $ac_word" >&5
2912echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
2913if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
2914 echo $ECHO_N "(cached) $ECHO_C" >&6
d15b04bd 2915else
42ecbf5e
DJ
2916 if test -n "$ac_ct_STRIP"; then
2917 ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
252b5132 2918else
42ecbf5e
DJ
2919as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2920for as_dir in $PATH
2921do
2922 IFS=$as_save_IFS
2923 test -z "$as_dir" && as_dir=.
2924 for ac_exec_ext in '' $ac_executable_extensions; do
2925 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2926 ac_cv_prog_ac_ct_STRIP="strip"
2927 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
2928 break 2
2929 fi
2930done
2931done
2932
2933 test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":"
252b5132 2934fi
252b5132 2935fi
42ecbf5e
DJ
2936ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
2937if test -n "$ac_ct_STRIP"; then
2938 echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
2939echo "${ECHO_T}$ac_ct_STRIP" >&6
252b5132 2940else
42ecbf5e
DJ
2941 echo "$as_me:$LINENO: result: no" >&5
2942echo "${ECHO_T}no" >&6
252b5132
RH
2943fi
2944
42ecbf5e
DJ
2945 STRIP=$ac_ct_STRIP
2946else
2947 STRIP="$ac_cv_prog_STRIP"
2948fi
252b5132 2949
42ecbf5e
DJ
2950fi
2951INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
252b5132 2952
42ecbf5e
DJ
2953# We need awk for the "check" target. The system "awk" is bad on
2954# some platforms.
2955# Always define AMTAR for backward compatibility.
252b5132 2956
42ecbf5e 2957AMTAR=${AMTAR-"${am_missing_run}tar"}
252b5132 2958
42ecbf5e 2959am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
252b5132
RH
2960
2961
2962
252b5132 2963
42ecbf5e
DJ
2964depcc="$CC" am_compiler_list=
2965
2966echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
2967echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6
2968if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
2969 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 2970else
42ecbf5e
DJ
2971 if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
2972 # We make a subdir and do the tests there. Otherwise we can end up
2973 # making bogus files that we don't know about and never remove. For
2974 # instance it was reported that on HP-UX the gcc test will end up
2975 # making a dummy file named `D' -- because `-MD' means `put the output
2976 # in D'.
2977 mkdir conftest.dir
2978 # Copy depcomp to subdir because otherwise we won't find it if we're
2979 # using a relative directory.
2980 cp "$am_depcomp" conftest.dir
2981 cd conftest.dir
2982 # We will build objects and dependencies in a subdirectory because
2983 # it helps to detect inapplicable dependency modes. For instance
2984 # both Tru64's cc and ICC support -MD to output dependencies as a
2985 # side effect of compilation, but ICC will put the dependencies in
2986 # the current directory while Tru64 will put them in the object
2987 # directory.
2988 mkdir sub
252b5132 2989
42ecbf5e
DJ
2990 am_cv_CC_dependencies_compiler_type=none
2991 if test "$am_compiler_list" = ""; then
2992 am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
2993 fi
2994 for depmode in $am_compiler_list; do
2995 # Setup a source with many dependencies, because some compilers
2996 # like to wrap large dependency lists on column 80 (with \), and
2997 # we should not choose a depcomp mode which is confused by this.
2998 #
2999 # We need to recreate these files for each test, as the compiler may
3000 # overwrite some of them when testing with obscure command lines.
3001 # This happens at least with the AIX C compiler.
3002 : > sub/conftest.c
3003 for i in 1 2 3 4 5 6; do
3004 echo '#include "conftst'$i'.h"' >> sub/conftest.c
3005 # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
3006 # Solaris 8's {/usr,}/bin/sh.
3007 touch sub/conftst$i.h
3008 done
3009 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
3010
3011 case $depmode in
3012 nosideeffect)
3013 # after this tag, mechanisms are not by side-effect, so they'll
3014 # only be used when explicitly requested
3015 if test "x$enable_dependency_tracking" = xyes; then
3016 continue
3017 else
3018 break
3019 fi
3020 ;;
3021 none) break ;;
3022 esac
3023 # We check with `-c' and `-o' for the sake of the "dashmstdout"
3024 # mode. It turns out that the SunPro C++ compiler does not properly
3025 # handle `-M -o', and we need to detect this.
3026 if depmode=$depmode \
3027 source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
3028 depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
3029 $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
3030 >/dev/null 2>conftest.err &&
3031 grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
3032 grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
3033 ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
3034 # icc doesn't choke on unknown options, it will just issue warnings
3035 # or remarks (even with -Werror). So we grep stderr for any message
3036 # that says an option was ignored or not supported.
3037 # When given -MP, icc 7.0 and 7.1 complain thusly:
3038 # icc: Command line warning: ignoring option '-M'; no argument required
3039 # The diagnosis changed in icc 8.0:
3040 # icc: Command line remark: option '-MP' not supported
3041 if (grep 'ignoring option' conftest.err ||
3042 grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
3043 am_cv_CC_dependencies_compiler_type=$depmode
3044 break
3045 fi
3046 fi
3047 done
3048
3049 cd ..
3050 rm -rf conftest.dir
252b5132 3051else
42ecbf5e 3052 am_cv_CC_dependencies_compiler_type=none
252b5132
RH
3053fi
3054
252b5132 3055fi
42ecbf5e
DJ
3056echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
3057echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6
3058CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
3059
3060
252b5132 3061
42ecbf5e
DJ
3062if
3063 test "x$enable_dependency_tracking" != xno \
3064 && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
3065 am__fastdepCC_TRUE=
3066 am__fastdepCC_FALSE='#'
252b5132 3067else
42ecbf5e
DJ
3068 am__fastdepCC_TRUE='#'
3069 am__fastdepCC_FALSE=
252b5132
RH
3070fi
3071
3072
3073
42ecbf5e 3074
252b5132
RH
3075# Check whether --enable-shared or --disable-shared was given.
3076if test "${enable_shared+set}" = set; then
3077 enableval="$enable_shared"
3078 p=${PACKAGE-default}
6be7c12c 3079case $enableval in
252b5132
RH
3080yes) enable_shared=yes ;;
3081no) enable_shared=no ;;
3082*)
3083 enable_shared=no
3084 # Look at the argument we got. We use all the common list separators.
3085 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
3086 for pkg in $enableval; do
3087 if test "X$pkg" = "X$p"; then
3088 enable_shared=yes
3089 fi
3090 done
3091 IFS="$ac_save_ifs"
3092 ;;
3093esac
3094else
3095 enable_shared=yes
42ecbf5e 3096fi;
252b5132
RH
3097# Check whether --enable-static or --disable-static was given.
3098if test "${enable_static+set}" = set; then
3099 enableval="$enable_static"
3100 p=${PACKAGE-default}
6be7c12c 3101case $enableval in
252b5132
RH
3102yes) enable_static=yes ;;
3103no) enable_static=no ;;
3104*)
3105 enable_static=no
3106 # Look at the argument we got. We use all the common list separators.
3107 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
3108 for pkg in $enableval; do
3109 if test "X$pkg" = "X$p"; then
3110 enable_static=yes
3111 fi
3112 done
3113 IFS="$ac_save_ifs"
3114 ;;
3115esac
3116else
3117 enable_static=yes
42ecbf5e 3118fi;
252b5132
RH
3119# Check whether --enable-fast-install or --disable-fast-install was given.
3120if test "${enable_fast_install+set}" = set; then
3121 enableval="$enable_fast_install"
3122 p=${PACKAGE-default}
6be7c12c 3123case $enableval in
252b5132
RH
3124yes) enable_fast_install=yes ;;
3125no) enable_fast_install=no ;;
3126*)
3127 enable_fast_install=no
3128 # Look at the argument we got. We use all the common list separators.
e5a52504
MM
3129 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
3130 for pkg in $enableval; do
3131 if test "X$pkg" = "X$p"; then
3132 enable_fast_install=yes
1a09a22c
NC
3133 fi
3134 done
3135 IFS="$ac_save_ifs"
e5a52504
MM
3136 ;;
3137esac
1a09a22c 3138else
e5a52504 3139 enable_fast_install=yes
42ecbf5e 3140fi;
ceae3e33 3141
252b5132
RH
3142# Check whether --with-gnu-ld or --without-gnu-ld was given.
3143if test "${with_gnu_ld+set}" = set; then
3144 withval="$with_gnu_ld"
3145 test "$withval" = no || with_gnu_ld=yes
3146else
3147 with_gnu_ld=no
42ecbf5e 3148fi;
252b5132 3149ac_prog=ld
6be7c12c 3150if test "$GCC" = yes; then
252b5132 3151 # Check if gcc -print-prog-name=ld gives a path.
42ecbf5e
DJ
3152 echo "$as_me:$LINENO: checking for ld used by GCC" >&5
3153echo $ECHO_N "checking for ld used by GCC... $ECHO_C" >&6
ac48eca1
AO
3154 case $host in
3155 *-*-mingw*)
3156 # gcc leaves a trailing carriage return which upsets mingw
3157 ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
3158 *)
3159 ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
3160 esac
6be7c12c 3161 case $ac_prog in
252b5132 3162 # Accept absolute paths.
a74801ba 3163 [\\/]* | [A-Za-z]:[\\/]*)
252b5132
RH
3164 re_direlt='/[^/][^/]*/\.\./'
3165 # Canonicalize the path of ld
3166 ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
3167 while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
3168 ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
3169 done
3170 test -z "$LD" && LD="$ac_prog"
3171 ;;
3172 "")
3173 # If it fails, then pretend we aren't using GCC.
3174 ac_prog=ld
3175 ;;
3176 *)
3177 # If it is relative, then search for the first ld in PATH.
3178 with_gnu_ld=unknown
3179 ;;
3180 esac
3181elif test "$with_gnu_ld" = yes; then
42ecbf5e
DJ
3182 echo "$as_me:$LINENO: checking for GNU ld" >&5
3183echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6
252b5132 3184else
42ecbf5e
DJ
3185 echo "$as_me:$LINENO: checking for non-GNU ld" >&5
3186echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6
252b5132 3187fi
42ecbf5e
DJ
3188if test "${lt_cv_path_LD+set}" = set; then
3189 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
3190else
3191 if test -z "$LD"; then
a74801ba 3192 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
252b5132
RH
3193 for ac_dir in $PATH; do
3194 test -z "$ac_dir" && ac_dir=.
a74801ba 3195 if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
6be7c12c 3196 lt_cv_path_LD="$ac_dir/$ac_prog"
252b5132
RH
3197 # Check to see if the program is GNU ld. I'd rather use --version,
3198 # but apparently some GNU ld's only accept -v.
3199 # Break only if it was the GNU/non-GNU ld that we prefer.
6be7c12c 3200 if "$lt_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
252b5132
RH
3201 test "$with_gnu_ld" != no && break
3202 else
3203 test "$with_gnu_ld" != yes && break
3204 fi
3205 fi
3206 done
3207 IFS="$ac_save_ifs"
3208else
6be7c12c 3209 lt_cv_path_LD="$LD" # Let the user override the test with a path.
252b5132
RH
3210fi
3211fi
3212
6be7c12c 3213LD="$lt_cv_path_LD"
252b5132 3214if test -n "$LD"; then
42ecbf5e
DJ
3215 echo "$as_me:$LINENO: result: $LD" >&5
3216echo "${ECHO_T}$LD" >&6
252b5132 3217else
42ecbf5e
DJ
3218 echo "$as_me:$LINENO: result: no" >&5
3219echo "${ECHO_T}no" >&6
252b5132 3220fi
42ecbf5e
DJ
3221test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5
3222echo "$as_me: error: no acceptable ld found in \$PATH" >&2;}
3223 { (exit 1); exit 1; }; }
3224echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5
3225echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6
3226if test "${lt_cv_prog_gnu_ld+set}" = set; then
3227 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
3228else
3229 # I'd rather use --version here, but apparently some GNU ld's only accept -v.
3230if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
6be7c12c 3231 lt_cv_prog_gnu_ld=yes
252b5132 3232else
6be7c12c 3233 lt_cv_prog_gnu_ld=no
252b5132
RH
3234fi
3235fi
42ecbf5e
DJ
3236echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5
3237echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6
6be7c12c 3238with_gnu_ld=$lt_cv_prog_gnu_ld
252b5132
RH
3239
3240
42ecbf5e
DJ
3241echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5
3242echo $ECHO_N "checking for $LD option to reload object files... $ECHO_C" >&6
3243if test "${lt_cv_ld_reload_flag+set}" = set; then
3244 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1
AO
3245else
3246 lt_cv_ld_reload_flag='-r'
3247fi
42ecbf5e
DJ
3248echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5
3249echo "${ECHO_T}$lt_cv_ld_reload_flag" >&6
ac48eca1
AO
3250reload_flag=$lt_cv_ld_reload_flag
3251test -n "$reload_flag" && reload_flag=" $reload_flag"
3252
42ecbf5e
DJ
3253echo "$as_me:$LINENO: checking for BSD-compatible nm" >&5
3254echo $ECHO_N "checking for BSD-compatible nm... $ECHO_C" >&6
3255if test "${lt_cv_path_NM+set}" = set; then
3256 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
3257else
3258 if test -n "$NM"; then
3259 # Let the user override the test.
6be7c12c 3260 lt_cv_path_NM="$NM"
252b5132 3261else
a74801ba 3262 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
252b5132
RH
3263 for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do
3264 test -z "$ac_dir" && ac_dir=.
ac48eca1
AO
3265 tmp_nm=$ac_dir/${ac_tool_prefix}nm
3266 if test -f $tmp_nm || test -f $tmp_nm$ac_exeext ; then
252b5132
RH
3267 # Check to see if the nm accepts a BSD-compat flag.
3268 # Adding the `sed 1q' prevents false positives on HP-UX, which says:
3269 # nm: unknown option "B" ignored
58cccadb
AO
3270 # Tru64's nm complains that /dev/null is an invalid object file
3271 if ($tmp_nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep '(/dev/null|Invalid file or object type)' >/dev/null; then
6be7c12c 3272 lt_cv_path_NM="$tmp_nm -B"
252b5132 3273 break
ac48eca1 3274 elif ($tmp_nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
6be7c12c 3275 lt_cv_path_NM="$tmp_nm -p"
252b5132
RH
3276 break
3277 else
6be7c12c 3278 lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
252b5132
RH
3279 continue # so that we can try to find one that supports BSD flags
3280 fi
3281 fi
3282 done
3283 IFS="$ac_save_ifs"
6be7c12c 3284 test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm
252b5132
RH
3285fi
3286fi
3287
6be7c12c 3288NM="$lt_cv_path_NM"
42ecbf5e
DJ
3289echo "$as_me:$LINENO: result: $NM" >&5
3290echo "${ECHO_T}$NM" >&6
252b5132 3291
42ecbf5e
DJ
3292echo "$as_me:$LINENO: checking whether ln -s works" >&5
3293echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6
3294LN_S=$as_ln_s
3295if test "$LN_S" = "ln -s"; then
3296 echo "$as_me:$LINENO: result: yes" >&5
3297echo "${ECHO_T}yes" >&6
252b5132 3298else
42ecbf5e
DJ
3299 echo "$as_me:$LINENO: result: no, using $LN_S" >&5
3300echo "${ECHO_T}no, using $LN_S" >&6
252b5132
RH
3301fi
3302
42ecbf5e
DJ
3303echo "$as_me:$LINENO: checking how to recognise dependant libraries" >&5
3304echo $ECHO_N "checking how to recognise dependant libraries... $ECHO_C" >&6
3305if test "${lt_cv_deplibs_check_method+set}" = set; then
3306 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1 3307else
d64552c5 3308 lt_cv_file_magic_cmd='$MAGIC_CMD'
ac48eca1
AO
3309lt_cv_file_magic_test_file=
3310lt_cv_deplibs_check_method='unknown'
3311# Need to set the preceding variable on all platforms that support
3312# interlibrary dependencies.
3313# 'none' -- dependencies not supported.
3314# `unknown' -- same as none, but documents that we really don't know.
3315# 'pass_all' -- all dependencies passed with no checks.
3316# 'test_compile' -- check by making test program.
3317# 'file_magic [regex]' -- check by looking for files in library path
3318# which responds to the $file_magic_cmd with a given egrep regex.
3319# If you have `file' or equivalent on your system and you're not sure
3320# whether `pass_all' will *always* work, you probably want this one.
3321
6be7c12c
AO
3322case $host_os in
3323aix*)
ac48eca1
AO
3324 lt_cv_deplibs_check_method=pass_all
3325 ;;
3326
3327beos*)
3328 lt_cv_deplibs_check_method=pass_all
3329 ;;
3330
3331bsdi4*)
6be7c12c
AO
3332 lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)'
3333 lt_cv_file_magic_cmd='/usr/bin/file -L'
ac48eca1
AO
3334 lt_cv_file_magic_test_file=/shlib/libc.so
3335 ;;
3336
d64552c5 3337cygwin* | mingw* |pw32*)
ac48eca1 3338 lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
d64552c5 3339 lt_cv_file_magic_cmd='$OBJDUMP -f'
ac48eca1
AO
3340 ;;
3341
6be7c12c
AO
3342darwin* | rhapsody*)
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
3353 ;;
3354
d15b04bd 3355freebsd* | kfreebsd*-gnu)
ac48eca1 3356 if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
6be7c12c 3357 case $host_cpu in
ac48eca1 3358 i*86 )
58cccadb
AO
3359 # Not sure whether the presence of OpenBSD here was a mistake.
3360 # Let's accept both of them until this is cleared up.
6be7c12c
AO
3361 lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD)/i[3-9]86 (compact )?demand paged shared library'
3362 lt_cv_file_magic_cmd=/usr/bin/file
ac48eca1
AO
3363 lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
3364 ;;
3365 esac
3366 else
3367 lt_cv_deplibs_check_method=pass_all
3368 fi
3369 ;;
3370
3371gnu*)
3372 lt_cv_deplibs_check_method=pass_all
3373 ;;
3374
6be7c12c 3375hpux10.20*|hpux11*)
4867be41
DJ
3376 case $host_cpu in
3377 hppa*)
3378 lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library'
3379 lt_cv_file_magic_cmd=/usr/bin/file
3380 lt_cv_file_magic_test_file=/usr/lib/libc.sl
3381 ;;
3382 ia64*)
3383 lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64'
3384 lt_cv_file_magic_cmd=/usr/bin/file
3385 lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
3386 ;;
3387 esac
ac48eca1
AO
3388 ;;
3389
3390irix5* | irix6*)
6be7c12c 3391 case $host_os in
ac48eca1
AO
3392 irix5*)
3393 # this will be overridden with pass_all, but let us keep it just in case
3394 lt_cv_deplibs_check_method="file_magic ELF 32-bit MSB dynamic lib MIPS - version 1"
3395 ;;
3396 *)
6be7c12c 3397 case $LD in
ac48eca1
AO
3398 *-32|*"-32 ") libmagic=32-bit;;
3399 *-n32|*"-n32 ") libmagic=N32;;
3400 *-64|*"-64 ") libmagic=64-bit;;
3401 *) libmagic=never-match;;
3402 esac
3403 # this will be overridden with pass_all, but let us keep it just in case
6be7c12c
AO
3404 lt_cv_deplibs_check_method="file_magic ELF ${libmagic} MSB mips-[1234] dynamic lib MIPS - version 1"
3405 ;;
ac48eca1
AO
3406 esac
3407 lt_cv_file_magic_test_file=`echo /lib${libsuff}/libc.so*`
3408 lt_cv_deplibs_check_method=pass_all
3409 ;;
3410
3411# This must be Linux ELF.
58cccadb 3412linux-gnu*)
6be7c12c 3413 case $host_cpu in
3c92310f 3414 alpha* | mips* | hppa* | i*86 | powerpc* | sparc* | ia64* )
ac48eca1
AO
3415 lt_cv_deplibs_check_method=pass_all ;;
3416 *)
3417 # glibc up to 2.1.1 does not perform some relocations on ARM
6be7c12c
AO
3418 lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;;
3419 esac
ac48eca1
AO
3420 lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so`
3421 ;;
3422
d15b04bd 3423netbsd* | knetbsd*-gnu)
6be7c12c
AO
3424 if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
3425 lt_cv_deplibs_check_method='match_pattern /lib[^/\.]+\.so\.[0-9]+\.[0-9]+$'
ac48eca1 3426 else
6be7c12c 3427 lt_cv_deplibs_check_method='match_pattern /lib[^/\.]+\.so$'
ac48eca1
AO
3428 fi
3429 ;;
3430
6be7c12c
AO
3431newsos6)
3432 lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)'
3433 lt_cv_file_magic_cmd=/usr/bin/file
3434 lt_cv_file_magic_test_file=/usr/lib/libnls.so
3435 ;;
3436
ac48eca1
AO
3437osf3* | osf4* | osf5*)
3438 # this will be overridden with pass_all, but let us keep it just in case
3439 lt_cv_deplibs_check_method='file_magic COFF format alpha shared library'
3440 lt_cv_file_magic_test_file=/shlib/libc.so
3441 lt_cv_deplibs_check_method=pass_all
3442 ;;
3443
3444sco3.2v5*)
3445 lt_cv_deplibs_check_method=pass_all
3446 ;;
3447
3448solaris*)
3449 lt_cv_deplibs_check_method=pass_all
3450 lt_cv_file_magic_test_file=/lib/libc.so
3451 ;;
3452
6be7c12c
AO
3453sysv5uw[78]* | sysv4*uw2*)
3454 lt_cv_deplibs_check_method=pass_all
3455 ;;
3456
ac48eca1 3457sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
6be7c12c 3458 case $host_vendor in
ac48eca1
AO
3459 ncr)
3460 lt_cv_deplibs_check_method=pass_all
3461 ;;
3462 motorola)
6be7c12c
AO
3463 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]'
3464 lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
ac48eca1
AO
3465 ;;
3466 esac
3467 ;;
3468esac
3469
3470fi
42ecbf5e
DJ
3471echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5
3472echo "${ECHO_T}$lt_cv_deplibs_check_method" >&6
ac48eca1
AO
3473file_magic_cmd=$lt_cv_file_magic_cmd
3474deplibs_check_method=$lt_cv_deplibs_check_method
3475
ac48eca1 3476
ac48eca1 3477
ac48eca1
AO
3478
3479# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers!
3480
3481# Only perform the check for file, if the check method requires it
6be7c12c 3482case $deplibs_check_method in
ac48eca1 3483file_magic*)
d64552c5 3484 if test "$file_magic_cmd" = '$MAGIC_CMD'; then
42ecbf5e
DJ
3485 echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5
3486echo $ECHO_N "checking for ${ac_tool_prefix}file... $ECHO_C" >&6
3487if test "${lt_cv_path_MAGIC_CMD+set}" = set; then
3488 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1 3489else
6be7c12c 3490 case $MAGIC_CMD in
ac48eca1 3491 /*)
d64552c5 3492 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
ac48eca1
AO
3493 ;;
3494 ?:/*)
d64552c5 3495 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a dos path.
ac48eca1
AO
3496 ;;
3497 *)
d64552c5 3498 ac_save_MAGIC_CMD="$MAGIC_CMD"
ac48eca1
AO
3499 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
3500 ac_dummy="/usr/bin:$PATH"
3501 for ac_dir in $ac_dummy; do
3502 test -z "$ac_dir" && ac_dir=.
3503 if test -f $ac_dir/${ac_tool_prefix}file; then
d64552c5 3504 lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file"
ac48eca1 3505 if test -n "$file_magic_test_file"; then
6be7c12c 3506 case $deplibs_check_method in
ac48eca1
AO
3507 "file_magic "*)
3508 file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`"
d64552c5 3509 MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
ac48eca1
AO
3510 if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
3511 egrep "$file_magic_regex" > /dev/null; then
3512 :
3513 else
3514 cat <<EOF 1>&2
3515
3516*** Warning: the command libtool uses to detect shared libraries,
3517*** $file_magic_cmd, produces output that libtool cannot recognize.
3518*** The result is that libtool may fail to recognize shared libraries
3519*** as such. This will affect the creation of libtool libraries that
3520*** depend on shared libraries, but programs linked with such libtool
3521*** libraries will work regardless of this problem. Nevertheless, you
3522*** may want to report the problem to your system manager and/or to
3523*** bug-libtool@gnu.org
3524
3525EOF
3526 fi ;;
3527 esac
3528 fi
3529 break
3530 fi
3531 done
3532 IFS="$ac_save_ifs"
d64552c5 3533 MAGIC_CMD="$ac_save_MAGIC_CMD"
ac48eca1
AO
3534 ;;
3535esac
3536fi
3537
d64552c5
AO
3538MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
3539if test -n "$MAGIC_CMD"; then
42ecbf5e
DJ
3540 echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5
3541echo "${ECHO_T}$MAGIC_CMD" >&6
ac48eca1 3542else
42ecbf5e
DJ
3543 echo "$as_me:$LINENO: result: no" >&5
3544echo "${ECHO_T}no" >&6
ac48eca1
AO
3545fi
3546
d64552c5 3547if test -z "$lt_cv_path_MAGIC_CMD"; then
ac48eca1 3548 if test -n "$ac_tool_prefix"; then
42ecbf5e
DJ
3549 echo "$as_me:$LINENO: checking for file" >&5
3550echo $ECHO_N "checking for file... $ECHO_C" >&6
3551if test "${lt_cv_path_MAGIC_CMD+set}" = set; then
3552 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1 3553else
6be7c12c 3554 case $MAGIC_CMD in
ac48eca1 3555 /*)
d64552c5 3556 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
ac48eca1
AO
3557 ;;
3558 ?:/*)
d64552c5 3559 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a dos path.
ac48eca1
AO
3560 ;;
3561 *)
d64552c5 3562 ac_save_MAGIC_CMD="$MAGIC_CMD"
ac48eca1
AO
3563 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
3564 ac_dummy="/usr/bin:$PATH"
3565 for ac_dir in $ac_dummy; do
3566 test -z "$ac_dir" && ac_dir=.
3567 if test -f $ac_dir/file; then
d64552c5 3568 lt_cv_path_MAGIC_CMD="$ac_dir/file"
ac48eca1 3569 if test -n "$file_magic_test_file"; then
6be7c12c 3570 case $deplibs_check_method in
ac48eca1
AO
3571 "file_magic "*)
3572 file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`"
d64552c5 3573 MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
ac48eca1
AO
3574 if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
3575 egrep "$file_magic_regex" > /dev/null; then
3576 :
3577 else
3578 cat <<EOF 1>&2
3579
3580*** Warning: the command libtool uses to detect shared libraries,
3581*** $file_magic_cmd, produces output that libtool cannot recognize.
3582*** The result is that libtool may fail to recognize shared libraries
3583*** as such. This will affect the creation of libtool libraries that
3584*** depend on shared libraries, but programs linked with such libtool
3585*** libraries will work regardless of this problem. Nevertheless, you
3586*** may want to report the problem to your system manager and/or to
3587*** bug-libtool@gnu.org
3588
3589EOF
3590 fi ;;
3591 esac
3592 fi
3593 break
3594 fi
3595 done
3596 IFS="$ac_save_ifs"
d64552c5 3597 MAGIC_CMD="$ac_save_MAGIC_CMD"
ac48eca1
AO
3598 ;;
3599esac
3600fi
3601
d64552c5
AO
3602MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
3603if test -n "$MAGIC_CMD"; then
42ecbf5e
DJ
3604 echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5
3605echo "${ECHO_T}$MAGIC_CMD" >&6
ac48eca1 3606else
42ecbf5e
DJ
3607 echo "$as_me:$LINENO: result: no" >&5
3608echo "${ECHO_T}no" >&6
ac48eca1
AO
3609fi
3610
3611 else
d64552c5 3612 MAGIC_CMD=:
ac48eca1
AO
3613 fi
3614fi
252b5132 3615
ac48eca1
AO
3616 fi
3617 ;;
a74801ba 3618esac
252b5132 3619
42ecbf5e
DJ
3620if test -n "$ac_tool_prefix"; then
3621 # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
ac48eca1 3622set dummy ${ac_tool_prefix}ranlib; ac_word=$2
42ecbf5e
DJ
3623echo "$as_me:$LINENO: checking for $ac_word" >&5
3624echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3625if test "${ac_cv_prog_RANLIB+set}" = set; then
3626 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1
AO
3627else
3628 if test -n "$RANLIB"; then
3629 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
3630else
42ecbf5e
DJ
3631as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3632for as_dir in $PATH
3633do
3634 IFS=$as_save_IFS
3635 test -z "$as_dir" && as_dir=.
3636 for ac_exec_ext in '' $ac_executable_extensions; do
3637 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3638 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
3639 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3640 break 2
3641 fi
3642done
3643done
3644
ac48eca1
AO
3645fi
3646fi
42ecbf5e 3647RANLIB=$ac_cv_prog_RANLIB
ac48eca1 3648if test -n "$RANLIB"; then
42ecbf5e
DJ
3649 echo "$as_me:$LINENO: result: $RANLIB" >&5
3650echo "${ECHO_T}$RANLIB" >&6
ac48eca1 3651else
42ecbf5e
DJ
3652 echo "$as_me:$LINENO: result: no" >&5
3653echo "${ECHO_T}no" >&6
ac48eca1
AO
3654fi
3655
42ecbf5e 3656fi
ac48eca1 3657if test -z "$ac_cv_prog_RANLIB"; then
42ecbf5e 3658 ac_ct_RANLIB=$RANLIB
ac48eca1
AO
3659 # Extract the first word of "ranlib", so it can be a program name with args.
3660set dummy ranlib; ac_word=$2
42ecbf5e
DJ
3661echo "$as_me:$LINENO: checking for $ac_word" >&5
3662echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3663if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
3664 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1 3665else
42ecbf5e
DJ
3666 if test -n "$ac_ct_RANLIB"; then
3667 ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
3668else
3669as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3670for as_dir in $PATH
3671do
3672 IFS=$as_save_IFS
3673 test -z "$as_dir" && as_dir=.
3674 for ac_exec_ext in '' $ac_executable_extensions; do
3675 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3676 ac_cv_prog_ac_ct_RANLIB="ranlib"
3677 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3678 break 2
3679 fi
3680done
3681done
3682
3683 test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":"
ac48eca1
AO
3684fi
3685fi
42ecbf5e
DJ
3686ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
3687if test -n "$ac_ct_RANLIB"; then
3688 echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
3689echo "${ECHO_T}$ac_ct_RANLIB" >&6
ac48eca1 3690else
42ecbf5e
DJ
3691 echo "$as_me:$LINENO: result: no" >&5
3692echo "${ECHO_T}no" >&6
ac48eca1
AO
3693fi
3694
42ecbf5e 3695 RANLIB=$ac_ct_RANLIB
ac48eca1 3696else
42ecbf5e 3697 RANLIB="$ac_cv_prog_RANLIB"
ac48eca1
AO
3698fi
3699
42ecbf5e
DJ
3700if test -n "$ac_tool_prefix"; then
3701 # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
ac48eca1 3702set dummy ${ac_tool_prefix}strip; ac_word=$2
42ecbf5e
DJ
3703echo "$as_me:$LINENO: checking for $ac_word" >&5
3704echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3705if test "${ac_cv_prog_STRIP+set}" = set; then
3706 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1
AO
3707else
3708 if test -n "$STRIP"; then
3709 ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
3710else
42ecbf5e
DJ
3711as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3712for as_dir in $PATH
3713do
3714 IFS=$as_save_IFS
3715 test -z "$as_dir" && as_dir=.
3716 for ac_exec_ext in '' $ac_executable_extensions; do
3717 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3718 ac_cv_prog_STRIP="${ac_tool_prefix}strip"
3719 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3720 break 2
3721 fi
3722done
3723done
3724
ac48eca1
AO
3725fi
3726fi
42ecbf5e 3727STRIP=$ac_cv_prog_STRIP
ac48eca1 3728if test -n "$STRIP"; then
42ecbf5e
DJ
3729 echo "$as_me:$LINENO: result: $STRIP" >&5
3730echo "${ECHO_T}$STRIP" >&6
ac48eca1 3731else
42ecbf5e
DJ
3732 echo "$as_me:$LINENO: result: no" >&5
3733echo "${ECHO_T}no" >&6
ac48eca1
AO
3734fi
3735
42ecbf5e 3736fi
ac48eca1 3737if test -z "$ac_cv_prog_STRIP"; then
42ecbf5e 3738 ac_ct_STRIP=$STRIP
ac48eca1
AO
3739 # Extract the first word of "strip", so it can be a program name with args.
3740set dummy strip; ac_word=$2
42ecbf5e
DJ
3741echo "$as_me:$LINENO: checking for $ac_word" >&5
3742echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3743if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
3744 echo $ECHO_N "(cached) $ECHO_C" >&6
ac48eca1 3745else
42ecbf5e
DJ
3746 if test -n "$ac_ct_STRIP"; then
3747 ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
ac48eca1 3748else
42ecbf5e
DJ
3749as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3750for as_dir in $PATH
3751do
3752 IFS=$as_save_IFS
3753 test -z "$as_dir" && as_dir=.
3754 for ac_exec_ext in '' $ac_executable_extensions; do
3755 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3756 ac_cv_prog_ac_ct_STRIP="strip"
3757 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
3758 break 2
3759 fi
3760done
3761done
3762
3763 test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":"
ac48eca1
AO
3764fi
3765fi
42ecbf5e
DJ
3766ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
3767if test -n "$ac_ct_STRIP"; then
3768 echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
3769echo "${ECHO_T}$ac_ct_STRIP" >&6
ac48eca1 3770else
42ecbf5e
DJ
3771 echo "$as_me:$LINENO: result: no" >&5
3772echo "${ECHO_T}no" >&6
ac48eca1
AO
3773fi
3774
42ecbf5e 3775 STRIP=$ac_ct_STRIP
ac48eca1 3776else
42ecbf5e 3777 STRIP="$ac_cv_prog_STRIP"
ac48eca1
AO
3778fi
3779
3780
252b5132
RH
3781# Check for any special flags to pass to ltconfig.
3782libtool_flags="--cache-file=$cache_file"
3783test "$enable_shared" = no && libtool_flags="$libtool_flags --disable-shared"
3784test "$enable_static" = no && libtool_flags="$libtool_flags --disable-static"
3785test "$enable_fast_install" = no && libtool_flags="$libtool_flags --disable-fast-install"
6be7c12c
AO
3786test "$GCC" = yes && libtool_flags="$libtool_flags --with-gcc"
3787test "$lt_cv_prog_gnu_ld" = yes && libtool_flags="$libtool_flags --with-gnu-ld"
252b5132 3788
a74801ba
ILT
3789
3790# Check whether --enable-libtool-lock or --disable-libtool-lock was given.
3791if test "${enable_libtool_lock+set}" = set; then
3792 enableval="$enable_libtool_lock"
a74801ba 3793
42ecbf5e 3794fi;
a74801ba
ILT
3795test "x$enable_libtool_lock" = xno && libtool_flags="$libtool_flags --disable-lock"
3796test x"$silent" = xyes && libtool_flags="$libtool_flags --silent"
3797
42ecbf5e 3798
ac48eca1
AO
3799# Check whether --with-pic or --without-pic was given.
3800if test "${with_pic+set}" = set; then
3801 withval="$with_pic"
3802 pic_mode="$withval"
3803else
3804 pic_mode=default
42ecbf5e 3805fi;
ac48eca1
AO
3806test x"$pic_mode" = xyes && libtool_flags="$libtool_flags --prefer-pic"
3807test x"$pic_mode" = xno && libtool_flags="$libtool_flags --prefer-non-pic"
3808
252b5132
RH
3809# Some flags need to be propagated to the compiler or linker for good
3810# libtool support.
6be7c12c 3811case $host in
252b5132
RH
3812*-*-irix6*)
3813 # Find out which ABI we are using.
b7d4af3a 3814 echo '#line 3814 "configure"' > conftest.$ac_ext
42ecbf5e
DJ
3815 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3816 (eval $ac_compile) 2>&5
3817 ac_status=$?
3818 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3819 (exit $ac_status); }; then
27a710e5
NC
3820 if test "$lt_cv_prog_gnu_ld" = yes; then
3821 case `/usr/bin/file conftest.$ac_objext` in
3822 *32-bit*)
3823 LD="${LD-ld} -melf32bsmip"
3824 ;;
3825 *N32*)
3826 LD="${LD-ld} -melf32bmipn32"
3827 ;;
3828 *64-bit*)
3829 LD="${LD-ld} -melf64bmip"
3830 ;;
3831 esac
3832 else
6be7c12c 3833 case `/usr/bin/file conftest.$ac_objext` in
252b5132
RH
3834 *32-bit*)
3835 LD="${LD-ld} -32"
3836 ;;
3837 *N32*)
3838 LD="${LD-ld} -n32"
3839 ;;
3840 *64-bit*)
3841 LD="${LD-ld} -64"
3842 ;;
3843 esac
27a710e5 3844 fi
252b5132
RH
3845 fi
3846 rm -rf conftest*
3847 ;;
3848
4867be41
DJ
3849ia64-*-hpux*)
3850 # Find out which ABI we are using.
3851 echo 'int i;' > conftest.$ac_ext
42ecbf5e
DJ
3852 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3853 (eval $ac_compile) 2>&5
3854 ac_status=$?
3855 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3856 (exit $ac_status); }; then
4867be41
DJ
3857 case "`/usr/bin/file conftest.o`" in
3858 *ELF-32*)
3859 HPUX_IA64_MODE="32"
3860 ;;
3861 *ELF-64*)
3862 HPUX_IA64_MODE="64"
3863 ;;
3864 esac
3865 fi
3866 rm -rf conftest*
3867 ;;
3868
252b5132
RH
3869*-*-sco3.2v5*)
3870 # On SCO OpenServer 5, we need -belf to get full-featured binaries.
3871 SAVE_CFLAGS="$CFLAGS"
3872 CFLAGS="$CFLAGS -belf"
42ecbf5e
DJ
3873 echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5
3874echo $ECHO_N "checking whether the C compiler needs -belf... $ECHO_C" >&6
3875if test "${lt_cv_cc_needs_belf+set}" = set; then
3876 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 3877else
42ecbf5e
DJ
3878
3879
ac48eca1 3880 ac_ext=c
ac48eca1 3881ac_cpp='$CPP $CPPFLAGS'
42ecbf5e
DJ
3882ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
3883ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
3884ac_compiler_gnu=$ac_cv_c_compiler_gnu
ac48eca1 3885
42ecbf5e
DJ
3886 cat >conftest.$ac_ext <<_ACEOF
3887/* confdefs.h. */
3888_ACEOF
3889cat confdefs.h >>conftest.$ac_ext
3890cat >>conftest.$ac_ext <<_ACEOF
3891/* end confdefs.h. */
252b5132 3892
42ecbf5e
DJ
3893int
3894main ()
3895{
252b5132 3896
42ecbf5e
DJ
3897 ;
3898 return 0;
3899}
3900_ACEOF
3901rm -f conftest.$ac_objext conftest$ac_exeext
3902if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3903 (eval $ac_link) 2>conftest.er1
3904 ac_status=$?
3905 grep -v '^ *+' conftest.er1 >conftest.err
3906 rm -f conftest.er1
3907 cat conftest.err >&5
3908 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3909 (exit $ac_status); } &&
b7d4af3a
JW
3910 { ac_try='test -z "$ac_c_werror_flag"
3911 || test ! -s conftest.err'
42ecbf5e
DJ
3912 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3913 (eval $ac_try) 2>&5
3914 ac_status=$?
3915 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3916 (exit $ac_status); }; } &&
3917 { ac_try='test -s conftest$ac_exeext'
3918 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3919 (eval $ac_try) 2>&5
3920 ac_status=$?
3921 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3922 (exit $ac_status); }; }; then
252b5132
RH
3923 lt_cv_cc_needs_belf=yes
3924else
42ecbf5e
DJ
3925 echo "$as_me: failed program was:" >&5
3926sed 's/^/| /' conftest.$ac_ext >&5
3927
3928lt_cv_cc_needs_belf=no
252b5132 3929fi
42ecbf5e
DJ
3930rm -f conftest.err conftest.$ac_objext \
3931 conftest$ac_exeext conftest.$ac_ext
ac48eca1 3932 ac_ext=c
ac48eca1 3933ac_cpp='$CPP $CPPFLAGS'
42ecbf5e
DJ
3934ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
3935ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
3936ac_compiler_gnu=$ac_cv_c_compiler_gnu
ac48eca1 3937
252b5132 3938fi
42ecbf5e
DJ
3939echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5
3940echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6
252b5132
RH
3941 if test x"$lt_cv_cc_needs_belf" != x"yes"; then
3942 # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
3943 CFLAGS="$SAVE_CFLAGS"
3944 fi
3945 ;;
3946
252b5132
RH
3947
3948esac
3949
252b5132
RH
3950
3951# Save cache, so that ltconfig can load it
42ecbf5e 3952cat >confcache <<\_ACEOF
252b5132
RH
3953# This file is a shell script that caches the results of configure
3954# tests run on this system so they can be shared between configure
42ecbf5e
DJ
3955# scripts and configure runs, see configure's option --config-cache.
3956# It is not useful on other systems. If it contains results you don't
3957# want to keep, you may remove or edit it.
252b5132 3958#
42ecbf5e
DJ
3959# config.status only pays attention to the cache file if you give it
3960# the --recheck option to rerun configure.
252b5132 3961#
42ecbf5e
DJ
3962# `ac_cv_env_foo' variables (set or unset) will be overridden when
3963# loading this file, other *unset* `ac_cv_foo' will be assigned the
3964# following values.
3965
3966_ACEOF
3967
252b5132
RH
3968# The following way of writing the cache mishandles newlines in values,
3969# but we know of no workaround that is simple, portable, and efficient.
3970# So, don't put newlines in cache variables' values.
3971# Ultrix sh set writes to stderr and can't be redirected directly,
3972# and sets the high bit in the cache file unless we assign to the vars.
42ecbf5e
DJ
3973{
3974 (set) 2>&1 |
3975 case `(ac_space=' '; set | grep ac_space) 2>&1` in
3976 *ac_space=\ *)
3977 # `set' does not quote correctly, so add quotes (double-quote
3978 # substitution turns \\\\ into \\, and sed turns \\ into \).
3979 sed -n \
3980 "s/'/'\\\\''/g;
3981 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
3982 ;;
3983 *)
3984 # `set' quotes correctly as required by POSIX, so do not add quotes.
3985 sed -n \
3986 "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
3987 ;;
3988 esac;
3989} |
3990 sed '
3991 t clear
3992 : clear
3993 s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
3994 t end
3995 /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
3996 : end' >>confcache
3997if diff $cache_file confcache >/dev/null 2>&1; then :; else
252b5132 3998 if test -w $cache_file; then
42ecbf5e
DJ
3999 test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
4000 cat confcache >$cache_file
252b5132
RH
4001 else
4002 echo "not updating unwritable cache $cache_file"
4003 fi
4004fi
4005rm -f confcache
4006
252b5132 4007# Actually configure libtool. ac_aux_dir is where install-sh is found.
ac48eca1 4008AR="$AR" LTCC="$CC" CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \
d64552c5 4009MAGIC_CMD="$MAGIC_CMD" LD="$LD" LDFLAGS="$LDFLAGS" LIBS="$LIBS" \
ac48eca1
AO
4010LN_S="$LN_S" NM="$NM" RANLIB="$RANLIB" STRIP="$STRIP" \
4011AS="$AS" DLLTOOL="$DLLTOOL" OBJDUMP="$OBJDUMP" \
4012objext="$OBJEXT" exeext="$EXEEXT" reload_flag="$reload_flag" \
4013deplibs_check_method="$deplibs_check_method" file_magic_cmd="$file_magic_cmd" \
252b5132 4014${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \
ac48eca1 4015$libtool_flags --no-verify --build="$build" $ac_aux_dir/ltmain.sh $host \
42ecbf5e
DJ
4016|| { { echo "$as_me:$LINENO: error: libtool configure failed" >&5
4017echo "$as_me: error: libtool configure failed" >&2;}
4018 { (exit 1); exit 1; }; }
252b5132
RH
4019
4020# Reload cache, that may have been modified by ltconfig
4021if test -r "$cache_file"; then
42ecbf5e
DJ
4022 # Some versions of bash will fail to source /dev/null (special
4023 # files actually), so we avoid doing that.
4024 if test -f "$cache_file"; then
4025 { echo "$as_me:$LINENO: loading cache $cache_file" >&5
4026echo "$as_me: loading cache $cache_file" >&6;}
4027 case $cache_file in
4028 [\\/]* | ?:[\\/]* ) . $cache_file;;
4029 *) . ./$cache_file;;
4030 esac
4031 fi
252b5132 4032else
42ecbf5e
DJ
4033 { echo "$as_me:$LINENO: creating cache $cache_file" >&5
4034echo "$as_me: creating cache $cache_file" >&6;}
4035 >$cache_file
252b5132
RH
4036fi
4037
4038
4039# This can be used to rebuild libtool when needed
ac48eca1 4040LIBTOOL_DEPS="$ac_aux_dir/ltconfig $ac_aux_dir/ltmain.sh $ac_aux_dir/ltcf-c.sh"
252b5132
RH
4041
4042# Always use our own libtool.
4043LIBTOOL='$(SHELL) $(top_builddir)/libtool'
4044
4045# Redirect the config.log output again, so that the ltconfig log is not
4046# clobbered by the next message.
4047exec 5>>./config.log
4048
ac48eca1 4049
42ecbf5e
DJ
4050
4051
4052
4053
ac48eca1 4054
252b5132
RH
4055# Check whether --enable-targets or --disable-targets was given.
4056if test "${enable_targets+set}" = set; then
4057 enableval="$enable_targets"
4058 case "${enableval}" in
42ecbf5e
DJ
4059 yes | "") { { echo "$as_me:$LINENO: error: enable-targets option must specify target names or 'all'" >&5
4060echo "$as_me: error: enable-targets option must specify target names or 'all'" >&2;}
4061 { (exit 1); exit 1; }; }
252b5132
RH
4062 ;;
4063 no) enable_targets= ;;
4064 *) enable_targets=$enableval ;;
4065esac
42ecbf5e 4066fi; # Check whether --enable-commonbfdlib or --disable-commonbfdlib was given.
252b5132
RH
4067if test "${enable_commonbfdlib+set}" = set; then
4068 enableval="$enable_commonbfdlib"
4069 case "${enableval}" in
4070 yes) commonbfdlib=true ;;
4071 no) commonbfdlib=false ;;
42ecbf5e
DJ
4072 *) { { echo "$as_me:$LINENO: error: bad value ${enableval} for BFD commonbfdlib option" >&5
4073echo "$as_me: error: bad value ${enableval} for BFD commonbfdlib option" >&2;}
4074 { (exit 1); exit 1; }; } ;;
252b5132 4075esac
42ecbf5e 4076fi;
9e9b66a9 4077WARN_CFLAGS="-W -Wall -Wstrict-prototypes -Wmissing-prototypes"
1ad12f97 4078
569acd2c
NC
4079# Check whether --enable-werror or --disable-werror was given.
4080if test "${enable_werror+set}" = set; then
4081 enableval="$enable_werror"
1ad12f97
NC
4082 case "${enableval}" in
4083 yes | y) ERROR_ON_WARNING="yes" ;;
4084 no | n) ERROR_ON_WARNING="no" ;;
42ecbf5e
DJ
4085 *) { { echo "$as_me:$LINENO: error: bad value ${enableval} for --enable-werror" >&5
4086echo "$as_me: error: bad value ${enableval} for --enable-werror" >&2;}
4087 { (exit 1); exit 1; }; } ;;
1ad12f97 4088 esac
42ecbf5e 4089fi;
1ad12f97 4090
9e9b66a9
AM
4091# Enable -Werror by default when using gcc
4092if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
4093 ERROR_ON_WARNING=yes
1ad12f97 4094fi
569acd2c 4095
9e9b66a9
AM
4096NO_WERROR=
4097if test "${ERROR_ON_WARNING}" = yes ; then
4098 WARN_CFLAGS="$WARN_CFLAGS -Werror"
4099 NO_WERROR="-Wno-error"
4100fi
42ecbf5e 4101
a2d91340
AC
4102# Check whether --enable-build-warnings or --disable-build-warnings was given.
4103if test "${enable_build_warnings+set}" = set; then
4104 enableval="$enable_build_warnings"
4105 case "${enableval}" in
4106 yes) ;;
9e9b66a9 4107 no) WARN_CFLAGS="-w";;
a2d91340 4108 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
9e9b66a9 4109 WARN_CFLAGS="${WARN_CFLAGS} ${t}";;
a2d91340 4110 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
9e9b66a9
AM
4111 WARN_CFLAGS="${t} ${WARN_CFLAGS}";;
4112 *) WARN_CFLAGS=`echo "${enableval}" | sed -e "s/,/ /g"`;;
d15b04bd 4113esac
42ecbf5e 4114fi;
9e9b66a9
AM
4115
4116if test x"$silent" != x"yes" && test x"$WARN_CFLAGS" != x""; then
4117 echo "Setting warning flags = $WARN_CFLAGS" 6>&1
d15b04bd 4118fi
9e9b66a9
AM
4119
4120
e5a52504 4121
e5a52504 4122
42ecbf5e 4123 ac_config_headers="$ac_config_headers config.h:config.in"
d15b04bd
L
4124
4125
4126if test -z "$target" ; then
42ecbf5e
DJ
4127 { { echo "$as_me:$LINENO: error: Unrecognized target system type; please check config.sub." >&5
4128echo "$as_me: error: Unrecognized target system type; please check config.sub." >&2;}
4129 { (exit 1); exit 1; }; }
d15b04bd
L
4130fi
4131if test -z "$host" ; then
42ecbf5e
DJ
4132 { { echo "$as_me:$LINENO: error: Unrecognized host system type; please check config.sub." >&5
4133echo "$as_me: error: Unrecognized host system type; please check config.sub." >&2;}
4134 { (exit 1); exit 1; }; }
4135fi
4136
4137ac_ext=c
4138ac_cpp='$CPP $CPPFLAGS'
4139ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
4140ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
4141ac_compiler_gnu=$ac_cv_c_compiler_gnu
4142if test -n "$ac_tool_prefix"; then
4143 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
4144set dummy ${ac_tool_prefix}gcc; ac_word=$2
4145echo "$as_me:$LINENO: checking for $ac_word" >&5
4146echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4147if test "${ac_cv_prog_CC+set}" = set; then
4148 echo $ECHO_N "(cached) $ECHO_C" >&6
4149else
4150 if test -n "$CC"; then
4151 ac_cv_prog_CC="$CC" # Let the user override the test.
4152else
4153as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4154for as_dir in $PATH
4155do
4156 IFS=$as_save_IFS
4157 test -z "$as_dir" && as_dir=.
4158 for ac_exec_ext in '' $ac_executable_extensions; do
4159 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4160 ac_cv_prog_CC="${ac_tool_prefix}gcc"
4161 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4162 break 2
4163 fi
4164done
4165done
4166
4167fi
4168fi
4169CC=$ac_cv_prog_CC
4170if test -n "$CC"; then
4171 echo "$as_me:$LINENO: result: $CC" >&5
4172echo "${ECHO_T}$CC" >&6
4173else
4174 echo "$as_me:$LINENO: result: no" >&5
4175echo "${ECHO_T}no" >&6
d15b04bd
L
4176fi
4177
42ecbf5e
DJ
4178fi
4179if test -z "$ac_cv_prog_CC"; then
4180 ac_ct_CC=$CC
4181 # Extract the first word of "gcc", so it can be a program name with args.
d15b04bd 4182set dummy gcc; ac_word=$2
42ecbf5e
DJ
4183echo "$as_me:$LINENO: checking for $ac_word" >&5
4184echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4185if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
4186 echo $ECHO_N "(cached) $ECHO_C" >&6
4187else
4188 if test -n "$ac_ct_CC"; then
4189 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
4190else
4191as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4192for as_dir in $PATH
4193do
4194 IFS=$as_save_IFS
4195 test -z "$as_dir" && as_dir=.
4196 for ac_exec_ext in '' $ac_executable_extensions; do
4197 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4198 ac_cv_prog_ac_ct_CC="gcc"
4199 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4200 break 2
4201 fi
4202done
4203done
4204
4205fi
4206fi
4207ac_ct_CC=$ac_cv_prog_ac_ct_CC
4208if test -n "$ac_ct_CC"; then
4209 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
4210echo "${ECHO_T}$ac_ct_CC" >&6
4211else
4212 echo "$as_me:$LINENO: result: no" >&5
4213echo "${ECHO_T}no" >&6
4214fi
4215
4216 CC=$ac_ct_CC
4217else
4218 CC="$ac_cv_prog_CC"
4219fi
4220
4221if test -z "$CC"; then
4222 if test -n "$ac_tool_prefix"; then
4223 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
4224set dummy ${ac_tool_prefix}cc; ac_word=$2
4225echo "$as_me:$LINENO: checking for $ac_word" >&5
4226echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4227if test "${ac_cv_prog_CC+set}" = set; then
4228 echo $ECHO_N "(cached) $ECHO_C" >&6
e5a52504 4229else
d15b04bd
L
4230 if test -n "$CC"; then
4231 ac_cv_prog_CC="$CC" # Let the user override the test.
e5a52504 4232else
42ecbf5e
DJ
4233as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4234for as_dir in $PATH
4235do
4236 IFS=$as_save_IFS
4237 test -z "$as_dir" && as_dir=.
4238 for ac_exec_ext in '' $ac_executable_extensions; do
4239 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4240 ac_cv_prog_CC="${ac_tool_prefix}cc"
4241 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4242 break 2
4243 fi
4244done
4245done
4246
252b5132 4247fi
e5a52504 4248fi
42ecbf5e 4249CC=$ac_cv_prog_CC
d15b04bd 4250if test -n "$CC"; then
42ecbf5e
DJ
4251 echo "$as_me:$LINENO: result: $CC" >&5
4252echo "${ECHO_T}$CC" >&6
4253else
4254 echo "$as_me:$LINENO: result: no" >&5
4255echo "${ECHO_T}no" >&6
4256fi
4257
4258fi
4259if test -z "$ac_cv_prog_CC"; then
4260 ac_ct_CC=$CC
4261 # Extract the first word of "cc", so it can be a program name with args.
4262set dummy cc; ac_word=$2
4263echo "$as_me:$LINENO: checking for $ac_word" >&5
4264echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4265if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
4266 echo $ECHO_N "(cached) $ECHO_C" >&6
4267else
4268 if test -n "$ac_ct_CC"; then
4269 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
4270else
4271as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4272for as_dir in $PATH
4273do
4274 IFS=$as_save_IFS
4275 test -z "$as_dir" && as_dir=.
4276 for ac_exec_ext in '' $ac_executable_extensions; do
4277 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4278 ac_cv_prog_ac_ct_CC="cc"
4279 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4280 break 2
4281 fi
4282done
4283done
4284
4285fi
4286fi
4287ac_ct_CC=$ac_cv_prog_ac_ct_CC
4288if test -n "$ac_ct_CC"; then
4289 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
4290echo "${ECHO_T}$ac_ct_CC" >&6
4291else
4292 echo "$as_me:$LINENO: result: no" >&5
4293echo "${ECHO_T}no" >&6
4294fi
4295
4296 CC=$ac_ct_CC
252b5132 4297else
42ecbf5e 4298 CC="$ac_cv_prog_CC"
252b5132 4299fi
e5a52504 4300
42ecbf5e 4301fi
d15b04bd
L
4302if test -z "$CC"; then
4303 # Extract the first word of "cc", so it can be a program name with args.
4304set dummy cc; ac_word=$2
42ecbf5e
DJ
4305echo "$as_me:$LINENO: checking for $ac_word" >&5
4306echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4307if test "${ac_cv_prog_CC+set}" = set; then
4308 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 4309else
d15b04bd
L
4310 if test -n "$CC"; then
4311 ac_cv_prog_CC="$CC" # Let the user override the test.
252b5132 4312else
d15b04bd 4313 ac_prog_rejected=no
42ecbf5e
DJ
4314as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4315for as_dir in $PATH
4316do
4317 IFS=$as_save_IFS
4318 test -z "$as_dir" && as_dir=.
4319 for ac_exec_ext in '' $ac_executable_extensions; do
4320 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4321 if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
4322 ac_prog_rejected=yes
4323 continue
4324 fi
4325 ac_cv_prog_CC="cc"
4326 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4327 break 2
4328 fi
4329done
4330done
4331
d15b04bd
L
4332if test $ac_prog_rejected = yes; then
4333 # We found a bogon in the path, so make sure we never use it.
4334 set dummy $ac_cv_prog_CC
4335 shift
42ecbf5e 4336 if test $# != 0; then
d15b04bd
L
4337 # We chose a different compiler from the bogus one.
4338 # However, it has the same basename, so the bogon will be chosen
4339 # first if we set CC to just the basename; use the full file name.
4340 shift
42ecbf5e 4341 ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
e5a52504 4342 fi
252b5132
RH
4343fi
4344fi
d15b04bd 4345fi
42ecbf5e 4346CC=$ac_cv_prog_CC
d15b04bd 4347if test -n "$CC"; then
42ecbf5e
DJ
4348 echo "$as_me:$LINENO: result: $CC" >&5
4349echo "${ECHO_T}$CC" >&6
252b5132 4350else
42ecbf5e
DJ
4351 echo "$as_me:$LINENO: result: no" >&5
4352echo "${ECHO_T}no" >&6
252b5132
RH
4353fi
4354
42ecbf5e
DJ
4355fi
4356if test -z "$CC"; then
4357 if test -n "$ac_tool_prefix"; then
4358 for ac_prog in cl
4359 do
4360 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
4361set dummy $ac_tool_prefix$ac_prog; ac_word=$2
4362echo "$as_me:$LINENO: checking for $ac_word" >&5
4363echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4364if test "${ac_cv_prog_CC+set}" = set; then
4365 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 4366else
d15b04bd
L
4367 if test -n "$CC"; then
4368 ac_cv_prog_CC="$CC" # Let the user override the test.
252b5132 4369else
42ecbf5e
DJ
4370as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4371for as_dir in $PATH
4372do
4373 IFS=$as_save_IFS
4374 test -z "$as_dir" && as_dir=.
4375 for ac_exec_ext in '' $ac_executable_extensions; do
4376 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4377 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
4378 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4379 break 2
4380 fi
4381done
4382done
4383
252b5132
RH
4384fi
4385fi
42ecbf5e 4386CC=$ac_cv_prog_CC
d15b04bd 4387if test -n "$CC"; then
42ecbf5e
DJ
4388 echo "$as_me:$LINENO: result: $CC" >&5
4389echo "${ECHO_T}$CC" >&6
252b5132 4390else
42ecbf5e
DJ
4391 echo "$as_me:$LINENO: result: no" >&5
4392echo "${ECHO_T}no" >&6
d15b04bd 4393fi
42ecbf5e
DJ
4394
4395 test -n "$CC" && break
4396 done
4397fi
4398if test -z "$CC"; then
4399 ac_ct_CC=$CC
4400 for ac_prog in cl
4401do
4402 # Extract the first word of "$ac_prog", so it can be a program name with args.
4403set dummy $ac_prog; ac_word=$2
4404echo "$as_me:$LINENO: checking for $ac_word" >&5
4405echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4406if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
4407 echo $ECHO_N "(cached) $ECHO_C" >&6
4408else
4409 if test -n "$ac_ct_CC"; then
4410 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
4411else
4412as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4413for as_dir in $PATH
4414do
4415 IFS=$as_save_IFS
4416 test -z "$as_dir" && as_dir=.
4417 for ac_exec_ext in '' $ac_executable_extensions; do
4418 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4419 ac_cv_prog_ac_ct_CC="$ac_prog"
4420 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4421 break 2
d15b04bd 4422 fi
42ecbf5e
DJ
4423done
4424done
4425
4426fi
4427fi
4428ac_ct_CC=$ac_cv_prog_ac_ct_CC
4429if test -n "$ac_ct_CC"; then
4430 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
4431echo "${ECHO_T}$ac_ct_CC" >&6
4432else
4433 echo "$as_me:$LINENO: result: no" >&5
4434echo "${ECHO_T}no" >&6
252b5132
RH
4435fi
4436
42ecbf5e
DJ
4437 test -n "$ac_ct_CC" && break
4438done
e5a52504 4439
42ecbf5e
DJ
4440 CC=$ac_ct_CC
4441fi
4442
4443fi
4444
4445
4446test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
4447See \`config.log' for more details." >&5
4448echo "$as_me: error: no acceptable C compiler found in \$PATH
4449See \`config.log' for more details." >&2;}
4450 { (exit 1); exit 1; }; }
4451
4452# Provide some information about the compiler.
4453echo "$as_me:$LINENO:" \
4454 "checking for C compiler version" >&5
4455ac_compiler=`set X $ac_compile; echo $2`
4456{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
4457 (eval $ac_compiler --version </dev/null >&5) 2>&5
4458 ac_status=$?
4459 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4460 (exit $ac_status); }
4461{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
4462 (eval $ac_compiler -v </dev/null >&5) 2>&5
4463 ac_status=$?
4464 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4465 (exit $ac_status); }
4466{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
4467 (eval $ac_compiler -V </dev/null >&5) 2>&5
4468 ac_status=$?
4469 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4470 (exit $ac_status); }
4471
4472echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
4473echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
4474if test "${ac_cv_c_compiler_gnu+set}" = set; then
4475 echo $ECHO_N "(cached) $ECHO_C" >&6
4476else
4477 cat >conftest.$ac_ext <<_ACEOF
4478/* confdefs.h. */
4479_ACEOF
4480cat confdefs.h >>conftest.$ac_ext
4481cat >>conftest.$ac_ext <<_ACEOF
4482/* end confdefs.h. */
4483
4484int
4485main ()
4486{
4487#ifndef __GNUC__
4488 choke me
4489#endif
e5a52504 4490
42ecbf5e
DJ
4491 ;
4492 return 0;
4493}
4494_ACEOF
4495rm -f conftest.$ac_objext
4496if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4497 (eval $ac_compile) 2>conftest.er1
4498 ac_status=$?
4499 grep -v '^ *+' conftest.er1 >conftest.err
4500 rm -f conftest.er1
4501 cat conftest.err >&5
4502 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4503 (exit $ac_status); } &&
b7d4af3a
JW
4504 { ac_try='test -z "$ac_c_werror_flag"
4505 || test ! -s conftest.err'
42ecbf5e
DJ
4506 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4507 (eval $ac_try) 2>&5
4508 ac_status=$?
4509 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4510 (exit $ac_status); }; } &&
4511 { ac_try='test -s conftest.$ac_objext'
4512 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4513 (eval $ac_try) 2>&5
4514 ac_status=$?
4515 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4516 (exit $ac_status); }; }; then
4517 ac_compiler_gnu=yes
4518else
4519 echo "$as_me: failed program was:" >&5
4520sed 's/^/| /' conftest.$ac_ext >&5
4521
4522ac_compiler_gnu=no
4523fi
4524rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4525ac_cv_c_compiler_gnu=$ac_compiler_gnu
4526
4527fi
4528echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
4529echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
4530GCC=`test $ac_compiler_gnu = yes && echo yes`
4531ac_test_CFLAGS=${CFLAGS+set}
4532ac_save_CFLAGS=$CFLAGS
4533CFLAGS="-g"
4534echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
4535echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
4536if test "${ac_cv_prog_cc_g+set}" = set; then
4537 echo $ECHO_N "(cached) $ECHO_C" >&6
4538else
4539 cat >conftest.$ac_ext <<_ACEOF
4540/* confdefs.h. */
4541_ACEOF
4542cat confdefs.h >>conftest.$ac_ext
4543cat >>conftest.$ac_ext <<_ACEOF
4544/* end confdefs.h. */
252b5132 4545
42ecbf5e
DJ
4546int
4547main ()
4548{
d15b04bd 4549
42ecbf5e
DJ
4550 ;
4551 return 0;
4552}
4553_ACEOF
4554rm -f conftest.$ac_objext
4555if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4556 (eval $ac_compile) 2>conftest.er1
4557 ac_status=$?
4558 grep -v '^ *+' conftest.er1 >conftest.err
4559 rm -f conftest.er1
4560 cat conftest.err >&5
4561 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4562 (exit $ac_status); } &&
b7d4af3a
JW
4563 { ac_try='test -z "$ac_c_werror_flag"
4564 || test ! -s conftest.err'
42ecbf5e
DJ
4565 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4566 (eval $ac_try) 2>&5
4567 ac_status=$?
4568 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4569 (exit $ac_status); }; } &&
4570 { ac_try='test -s conftest.$ac_objext'
4571 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4572 (eval $ac_try) 2>&5
4573 ac_status=$?
4574 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4575 (exit $ac_status); }; }; then
4576 ac_cv_prog_cc_g=yes
4577else
4578 echo "$as_me: failed program was:" >&5
4579sed 's/^/| /' conftest.$ac_ext >&5
4580
4581ac_cv_prog_cc_g=no
4582fi
4583rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4584fi
4585echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
4586echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
4587if test "$ac_test_CFLAGS" = set; then
4588 CFLAGS=$ac_save_CFLAGS
4589elif test $ac_cv_prog_cc_g = yes; then
4590 if test "$GCC" = yes; then
4591 CFLAGS="-g -O2"
d15b04bd 4592 else
42ecbf5e 4593 CFLAGS="-g"
d15b04bd 4594 fi
252b5132 4595else
42ecbf5e
DJ
4596 if test "$GCC" = yes; then
4597 CFLAGS="-O2"
4598 else
4599 CFLAGS=
4600 fi
252b5132 4601fi
42ecbf5e
DJ
4602echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
4603echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
4604if test "${ac_cv_prog_cc_stdc+set}" = set; then
4605 echo $ECHO_N "(cached) $ECHO_C" >&6
4606else
4607 ac_cv_prog_cc_stdc=no
4608ac_save_CC=$CC
4609cat >conftest.$ac_ext <<_ACEOF
4610/* confdefs.h. */
4611_ACEOF
4612cat confdefs.h >>conftest.$ac_ext
4613cat >>conftest.$ac_ext <<_ACEOF
4614/* end confdefs.h. */
4615#include <stdarg.h>
4616#include <stdio.h>
4617#include <sys/types.h>
4618#include <sys/stat.h>
4619/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
4620struct buf { int x; };
4621FILE * (*rcsopen) (struct buf *, struct stat *, int);
4622static char *e (p, i)
4623 char **p;
4624 int i;
4625{
4626 return p[i];
4627}
4628static char *f (char * (*g) (char **, int), char **p, ...)
4629{
4630 char *s;
4631 va_list v;
4632 va_start (v,p);
4633 s = g (p, va_arg (v,int));
4634 va_end (v);
4635 return s;
4636}
252b5132 4637
42ecbf5e
DJ
4638/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
4639 function prototypes and stuff, but not '\xHH' hex character constants.
4640 These don't provoke an error unfortunately, instead are silently treated
4641 as 'x'. The following induces an error, until -std1 is added to get
4642 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
4643 array size at least. It's necessary to write '\x00'==0 to get something
4644 that's true only with -std1. */
4645int osf4_cc_array ['\x00' == 0 ? 1 : -1];
4646
4647int test (int i, double x);
4648struct s1 {int (*f) (int a);};
4649struct s2 {int (*f) (double a);};
4650int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
4651int argc;
4652char **argv;
4653int
4654main ()
4655{
4656return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
4657 ;
4658 return 0;
4659}
4660_ACEOF
4661# Don't try gcc -ansi; that turns off useful extensions and
4662# breaks some systems' header files.
4663# AIX -qlanglvl=ansi
4664# Ultrix and OSF/1 -std1
4665# HP-UX 10.20 and later -Ae
4666# HP-UX older versions -Aa -D_HPUX_SOURCE
4667# SVR4 -Xc -D__EXTENSIONS__
4668for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
4669do
4670 CC="$ac_save_CC $ac_arg"
4671 rm -f conftest.$ac_objext
4672if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4673 (eval $ac_compile) 2>conftest.er1
4674 ac_status=$?
4675 grep -v '^ *+' conftest.er1 >conftest.err
4676 rm -f conftest.er1
4677 cat conftest.err >&5
4678 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4679 (exit $ac_status); } &&
b7d4af3a
JW
4680 { ac_try='test -z "$ac_c_werror_flag"
4681 || test ! -s conftest.err'
42ecbf5e
DJ
4682 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4683 (eval $ac_try) 2>&5
4684 ac_status=$?
4685 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4686 (exit $ac_status); }; } &&
4687 { ac_try='test -s conftest.$ac_objext'
4688 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4689 (eval $ac_try) 2>&5
4690 ac_status=$?
4691 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4692 (exit $ac_status); }; }; then
4693 ac_cv_prog_cc_stdc=$ac_arg
4694break
252b5132 4695else
42ecbf5e
DJ
4696 echo "$as_me: failed program was:" >&5
4697sed 's/^/| /' conftest.$ac_ext >&5
4698
252b5132 4699fi
42ecbf5e
DJ
4700rm -f conftest.err conftest.$ac_objext
4701done
4702rm -f conftest.$ac_ext conftest.$ac_objext
4703CC=$ac_save_CC
4704
252b5132 4705fi
e5a52504 4706
42ecbf5e
DJ
4707case "x$ac_cv_prog_cc_stdc" in
4708 x|xno)
4709 echo "$as_me:$LINENO: result: none needed" >&5
4710echo "${ECHO_T}none needed" >&6 ;;
4711 *)
4712 echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
4713echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
4714 CC="$CC $ac_cv_prog_cc_stdc" ;;
4715esac
e5a52504 4716
42ecbf5e
DJ
4717# Some people use a C++ compiler to compile C. Since we use `exit',
4718# in C++ we need to declare it. In case someone uses the same compiler
4719# for both compiling C and C++ we need to have the C++ compiler decide
4720# the declaration of exit, since it's the most demanding environment.
4721cat >conftest.$ac_ext <<_ACEOF
4722#ifndef __cplusplus
4723 choke me
4724#endif
4725_ACEOF
4726rm -f conftest.$ac_objext
4727if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4728 (eval $ac_compile) 2>conftest.er1
4729 ac_status=$?
4730 grep -v '^ *+' conftest.er1 >conftest.err
4731 rm -f conftest.er1
4732 cat conftest.err >&5
4733 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4734 (exit $ac_status); } &&
b7d4af3a
JW
4735 { ac_try='test -z "$ac_c_werror_flag"
4736 || test ! -s conftest.err'
42ecbf5e
DJ
4737 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4738 (eval $ac_try) 2>&5
4739 ac_status=$?
4740 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4741 (exit $ac_status); }; } &&
4742 { ac_try='test -s conftest.$ac_objext'
4743 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4744 (eval $ac_try) 2>&5
4745 ac_status=$?
4746 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4747 (exit $ac_status); }; }; then
4748 for ac_declaration in \
4749 '' \
4750 'extern "C" void std::exit (int) throw (); using std::exit;' \
4751 'extern "C" void std::exit (int); using std::exit;' \
4752 'extern "C" void exit (int) throw ();' \
4753 'extern "C" void exit (int);' \
4754 'void exit (int);'
4755do
4756 cat >conftest.$ac_ext <<_ACEOF
4757/* confdefs.h. */
4758_ACEOF
4759cat confdefs.h >>conftest.$ac_ext
4760cat >>conftest.$ac_ext <<_ACEOF
4761/* end confdefs.h. */
4762$ac_declaration
4763#include <stdlib.h>
4764int
4765main ()
4766{
4767exit (42);
4768 ;
4769 return 0;
4770}
4771_ACEOF
4772rm -f conftest.$ac_objext
4773if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4774 (eval $ac_compile) 2>conftest.er1
4775 ac_status=$?
4776 grep -v '^ *+' conftest.er1 >conftest.err
4777 rm -f conftest.er1
4778 cat conftest.err >&5
4779 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4780 (exit $ac_status); } &&
b7d4af3a
JW
4781 { ac_try='test -z "$ac_c_werror_flag"
4782 || test ! -s conftest.err'
42ecbf5e
DJ
4783 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4784 (eval $ac_try) 2>&5
4785 ac_status=$?
4786 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4787 (exit $ac_status); }; } &&
4788 { ac_try='test -s conftest.$ac_objext'
4789 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4790 (eval $ac_try) 2>&5
4791 ac_status=$?
4792 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4793 (exit $ac_status); }; }; then
4794 :
d15b04bd 4795else
42ecbf5e
DJ
4796 echo "$as_me: failed program was:" >&5
4797sed 's/^/| /' conftest.$ac_ext >&5
252b5132 4798
42ecbf5e
DJ
4799continue
4800fi
4801rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4802 cat >conftest.$ac_ext <<_ACEOF
4803/* confdefs.h. */
4804_ACEOF
4805cat confdefs.h >>conftest.$ac_ext
4806cat >>conftest.$ac_ext <<_ACEOF
4807/* end confdefs.h. */
4808$ac_declaration
4809int
4810main ()
4811{
4812exit (42);
4813 ;
4814 return 0;
4815}
4816_ACEOF
4817rm -f conftest.$ac_objext
4818if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4819 (eval $ac_compile) 2>conftest.er1
4820 ac_status=$?
4821 grep -v '^ *+' conftest.er1 >conftest.err
4822 rm -f conftest.er1
4823 cat conftest.err >&5
4824 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4825 (exit $ac_status); } &&
b7d4af3a
JW
4826 { ac_try='test -z "$ac_c_werror_flag"
4827 || test ! -s conftest.err'
42ecbf5e
DJ
4828 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4829 (eval $ac_try) 2>&5
4830 ac_status=$?
4831 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4832 (exit $ac_status); }; } &&
4833 { ac_try='test -s conftest.$ac_objext'
4834 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4835 (eval $ac_try) 2>&5
4836 ac_status=$?
4837 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4838 (exit $ac_status); }; }; then
4839 break
d15b04bd 4840else
42ecbf5e
DJ
4841 echo "$as_me: failed program was:" >&5
4842sed 's/^/| /' conftest.$ac_ext >&5
4843
252b5132 4844fi
42ecbf5e
DJ
4845rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4846done
d15b04bd 4847rm -f conftest*
42ecbf5e
DJ
4848if test -n "$ac_declaration"; then
4849 echo '#ifdef __cplusplus' >>confdefs.h
4850 echo $ac_declaration >>confdefs.h
4851 echo '#endif' >>confdefs.h
d15b04bd 4852fi
252b5132 4853
ac48eca1 4854else
42ecbf5e
DJ
4855 echo "$as_me: failed program was:" >&5
4856sed 's/^/| /' conftest.$ac_ext >&5
4857
d15b04bd 4858fi
42ecbf5e
DJ
4859rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4860ac_ext=c
4861ac_cpp='$CPP $CPPFLAGS'
4862ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
4863ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
4864ac_compiler_gnu=$ac_cv_c_compiler_gnu
e5a52504 4865
d15b04bd
L
4866
4867for ac_prog in 'bison -y' byacc
4868do
42ecbf5e 4869 # Extract the first word of "$ac_prog", so it can be a program name with args.
d15b04bd 4870set dummy $ac_prog; ac_word=$2
42ecbf5e
DJ
4871echo "$as_me:$LINENO: checking for $ac_word" >&5
4872echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4873if test "${ac_cv_prog_YACC+set}" = set; then
4874 echo $ECHO_N "(cached) $ECHO_C" >&6
d15b04bd
L
4875else
4876 if test -n "$YACC"; then
4877 ac_cv_prog_YACC="$YACC" # Let the user override the test.
4878else
42ecbf5e
DJ
4879as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4880for as_dir in $PATH
4881do
4882 IFS=$as_save_IFS
4883 test -z "$as_dir" && as_dir=.
4884 for ac_exec_ext in '' $ac_executable_extensions; do
4885 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4886 ac_cv_prog_YACC="$ac_prog"
4887 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4888 break 2
4889 fi
4890done
4891done
4892
ac48eca1
AO
4893fi
4894fi
42ecbf5e 4895YACC=$ac_cv_prog_YACC
d15b04bd 4896if test -n "$YACC"; then
42ecbf5e
DJ
4897 echo "$as_me:$LINENO: result: $YACC" >&5
4898echo "${ECHO_T}$YACC" >&6
e5a52504 4899else
42ecbf5e
DJ
4900 echo "$as_me:$LINENO: result: no" >&5
4901echo "${ECHO_T}no" >&6
e5a52504
MM
4902fi
4903
42ecbf5e 4904 test -n "$YACC" && break
d15b04bd
L
4905done
4906test -n "$YACC" || YACC="yacc"
4907
d15b04bd
L
4908for ac_prog in flex lex
4909do
42ecbf5e 4910 # Extract the first word of "$ac_prog", so it can be a program name with args.
d15b04bd 4911set dummy $ac_prog; ac_word=$2
42ecbf5e
DJ
4912echo "$as_me:$LINENO: checking for $ac_word" >&5
4913echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4914if test "${ac_cv_prog_LEX+set}" = set; then
4915 echo $ECHO_N "(cached) $ECHO_C" >&6
d15b04bd
L
4916else
4917 if test -n "$LEX"; then
4918 ac_cv_prog_LEX="$LEX" # Let the user override the test.
4919else
42ecbf5e
DJ
4920as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4921for as_dir in $PATH
4922do
4923 IFS=$as_save_IFS
4924 test -z "$as_dir" && as_dir=.
4925 for ac_exec_ext in '' $ac_executable_extensions; do
4926 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4927 ac_cv_prog_LEX="$ac_prog"
4928 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4929 break 2
4930 fi
4931done
d15b04bd 4932done
d15b04bd 4933
d15b04bd 4934fi
e5a52504 4935fi
42ecbf5e 4936LEX=$ac_cv_prog_LEX
d15b04bd 4937if test -n "$LEX"; then
42ecbf5e
DJ
4938 echo "$as_me:$LINENO: result: $LEX" >&5
4939echo "${ECHO_T}$LEX" >&6
e5a52504 4940else
42ecbf5e
DJ
4941 echo "$as_me:$LINENO: result: no" >&5
4942echo "${ECHO_T}no" >&6
e5a52504 4943fi
e5a52504 4944
42ecbf5e
DJ
4945 test -n "$LEX" && break
4946done
4947test -n "$LEX" || LEX=":"
4948
d15b04bd
L
4949if test -z "$LEXLIB"
4950then
42ecbf5e
DJ
4951 echo "$as_me:$LINENO: checking for yywrap in -lfl" >&5
4952echo $ECHO_N "checking for yywrap in -lfl... $ECHO_C" >&6
4953if test "${ac_cv_lib_fl_yywrap+set}" = set; then
4954 echo $ECHO_N "(cached) $ECHO_C" >&6
4955else
4956 ac_check_lib_save_LIBS=$LIBS
4957LIBS="-lfl $LIBS"
4958cat >conftest.$ac_ext <<_ACEOF
4959/* confdefs.h. */
4960_ACEOF
4961cat confdefs.h >>conftest.$ac_ext
4962cat >>conftest.$ac_ext <<_ACEOF
4963/* end confdefs.h. */
4964
d15b04bd 4965/* Override any gcc2 internal prototype to avoid an error. */
42ecbf5e
DJ
4966#ifdef __cplusplus
4967extern "C"
4968#endif
d15b04bd 4969/* We use char because int might match the return type of a gcc2
42ecbf5e
DJ
4970 builtin and then its argument prototype would still apply. */
4971char yywrap ();
4972int
4973main ()
4974{
4975yywrap ();
4976 ;
4977 return 0;
4978}
4979_ACEOF
4980rm -f conftest.$ac_objext conftest$ac_exeext
4981if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4982 (eval $ac_link) 2>conftest.er1
4983 ac_status=$?
4984 grep -v '^ *+' conftest.er1 >conftest.err
4985 rm -f conftest.er1
4986 cat conftest.err >&5
4987 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4988 (exit $ac_status); } &&
b7d4af3a
JW
4989 { ac_try='test -z "$ac_c_werror_flag"
4990 || test ! -s conftest.err'
42ecbf5e
DJ
4991 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4992 (eval $ac_try) 2>&5
4993 ac_status=$?
4994 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4995 (exit $ac_status); }; } &&
4996 { ac_try='test -s conftest$ac_exeext'
4997 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4998 (eval $ac_try) 2>&5
4999 ac_status=$?
5000 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5001 (exit $ac_status); }; }; then
5002 ac_cv_lib_fl_yywrap=yes
5003else
5004 echo "$as_me: failed program was:" >&5
5005sed 's/^/| /' conftest.$ac_ext >&5
5006
5007ac_cv_lib_fl_yywrap=no
5008fi
5009rm -f conftest.err conftest.$ac_objext \
5010 conftest$ac_exeext conftest.$ac_ext
5011LIBS=$ac_check_lib_save_LIBS
5012fi
5013echo "$as_me:$LINENO: result: $ac_cv_lib_fl_yywrap" >&5
5014echo "${ECHO_T}$ac_cv_lib_fl_yywrap" >&6
5015if test $ac_cv_lib_fl_yywrap = yes; then
5016 LEXLIB="-lfl"
5017else
5018 echo "$as_me:$LINENO: checking for yywrap in -ll" >&5
5019echo $ECHO_N "checking for yywrap in -ll... $ECHO_C" >&6
5020if test "${ac_cv_lib_l_yywrap+set}" = set; then
5021 echo $ECHO_N "(cached) $ECHO_C" >&6
5022else
5023 ac_check_lib_save_LIBS=$LIBS
5024LIBS="-ll $LIBS"
5025cat >conftest.$ac_ext <<_ACEOF
5026/* confdefs.h. */
5027_ACEOF
5028cat confdefs.h >>conftest.$ac_ext
5029cat >>conftest.$ac_ext <<_ACEOF
5030/* end confdefs.h. */
d15b04bd 5031
42ecbf5e
DJ
5032/* Override any gcc2 internal prototype to avoid an error. */
5033#ifdef __cplusplus
5034extern "C"
5035#endif
5036/* We use char because int might match the return type of a gcc2
5037 builtin and then its argument prototype would still apply. */
5038char yywrap ();
5039int
5040main ()
5041{
5042yywrap ();
5043 ;
5044 return 0;
5045}
5046_ACEOF
5047rm -f conftest.$ac_objext conftest$ac_exeext
5048if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5049 (eval $ac_link) 2>conftest.er1
5050 ac_status=$?
5051 grep -v '^ *+' conftest.er1 >conftest.err
5052 rm -f conftest.er1
5053 cat conftest.err >&5
5054 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5055 (exit $ac_status); } &&
b7d4af3a
JW
5056 { ac_try='test -z "$ac_c_werror_flag"
5057 || test ! -s conftest.err'
42ecbf5e
DJ
5058 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5059 (eval $ac_try) 2>&5
5060 ac_status=$?
5061 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5062 (exit $ac_status); }; } &&
5063 { ac_try='test -s conftest$ac_exeext'
5064 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5065 (eval $ac_try) 2>&5
5066 ac_status=$?
5067 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5068 (exit $ac_status); }; }; then
5069 ac_cv_lib_l_yywrap=yes
5070else
5071 echo "$as_me: failed program was:" >&5
5072sed 's/^/| /' conftest.$ac_ext >&5
5073
5074ac_cv_lib_l_yywrap=no
5075fi
5076rm -f conftest.err conftest.$ac_objext \
5077 conftest$ac_exeext conftest.$ac_ext
5078LIBS=$ac_check_lib_save_LIBS
5079fi
5080echo "$as_me:$LINENO: result: $ac_cv_lib_l_yywrap" >&5
5081echo "${ECHO_T}$ac_cv_lib_l_yywrap" >&6
5082if test $ac_cv_lib_l_yywrap = yes; then
5083 LEXLIB="-ll"
5084fi
5085
5086fi
5087
5088fi
5089
5090if test "x$LEX" != "x:"; then
5091 echo "$as_me:$LINENO: checking lex output file root" >&5
5092echo $ECHO_N "checking lex output file root... $ECHO_C" >&6
5093if test "${ac_cv_prog_lex_root+set}" = set; then
5094 echo $ECHO_N "(cached) $ECHO_C" >&6
e5a52504 5095else
d15b04bd
L
5096 # The minimal lex program is just a single line: %%. But some broken lexes
5097# (Solaris, I think it was) want two %% lines, so accommodate them.
42ecbf5e
DJ
5098cat >conftest.l <<_ACEOF
5099%%
5100%%
5101_ACEOF
5102{ (eval echo "$as_me:$LINENO: \"$LEX conftest.l\"") >&5
5103 (eval $LEX conftest.l) 2>&5
5104 ac_status=$?
5105 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5106 (exit $ac_status); }
d15b04bd
L
5107if test -f lex.yy.c; then
5108 ac_cv_prog_lex_root=lex.yy
5109elif test -f lexyy.c; then
5110 ac_cv_prog_lex_root=lexyy
e5a52504 5111else
42ecbf5e
DJ
5112 { { echo "$as_me:$LINENO: error: cannot find output from $LEX; giving up" >&5
5113echo "$as_me: error: cannot find output from $LEX; giving up" >&2;}
5114 { (exit 1); exit 1; }; }
e5a52504 5115fi
d15b04bd 5116fi
42ecbf5e
DJ
5117echo "$as_me:$LINENO: result: $ac_cv_prog_lex_root" >&5
5118echo "${ECHO_T}$ac_cv_prog_lex_root" >&6
5119rm -f conftest.l
d15b04bd
L
5120LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root
5121
42ecbf5e
DJ
5122echo "$as_me:$LINENO: checking whether yytext is a pointer" >&5
5123echo $ECHO_N "checking whether yytext is a pointer... $ECHO_C" >&6
5124if test "${ac_cv_prog_lex_yytext_pointer+set}" = set; then
5125 echo $ECHO_N "(cached) $ECHO_C" >&6
e5a52504 5126else
d15b04bd
L
5127 # POSIX says lex can declare yytext either as a pointer or an array; the
5128# default is implementation-dependent. Figure out which it is, since
5129# not all implementations provide the %pointer and %array declarations.
5130ac_cv_prog_lex_yytext_pointer=no
5131echo 'extern char *yytext;' >>$LEX_OUTPUT_ROOT.c
42ecbf5e 5132ac_save_LIBS=$LIBS
d15b04bd 5133LIBS="$LIBS $LEXLIB"
42ecbf5e 5134cat >conftest.$ac_ext <<_ACEOF
d15b04bd 5135`cat $LEX_OUTPUT_ROOT.c`
42ecbf5e
DJ
5136_ACEOF
5137rm -f conftest.$ac_objext conftest$ac_exeext
5138if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5139 (eval $ac_link) 2>conftest.er1
5140 ac_status=$?
5141 grep -v '^ *+' conftest.er1 >conftest.err
5142 rm -f conftest.er1
5143 cat conftest.err >&5
5144 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5145 (exit $ac_status); } &&
b7d4af3a
JW
5146 { ac_try='test -z "$ac_c_werror_flag"
5147 || test ! -s conftest.err'
42ecbf5e
DJ
5148 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5149 (eval $ac_try) 2>&5
5150 ac_status=$?
5151 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5152 (exit $ac_status); }; } &&
5153 { ac_try='test -s conftest$ac_exeext'
5154 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5155 (eval $ac_try) 2>&5
5156 ac_status=$?
5157 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5158 (exit $ac_status); }; }; then
d15b04bd
L
5159 ac_cv_prog_lex_yytext_pointer=yes
5160else
42ecbf5e
DJ
5161 echo "$as_me: failed program was:" >&5
5162sed 's/^/| /' conftest.$ac_ext >&5
5163
e5a52504 5164fi
42ecbf5e
DJ
5165rm -f conftest.err conftest.$ac_objext \
5166 conftest$ac_exeext conftest.$ac_ext
5167LIBS=$ac_save_LIBS
d15b04bd 5168rm -f "${LEX_OUTPUT_ROOT}.c"
e5a52504 5169
e5a52504 5170fi
42ecbf5e
DJ
5171echo "$as_me:$LINENO: result: $ac_cv_prog_lex_yytext_pointer" >&5
5172echo "${ECHO_T}$ac_cv_prog_lex_yytext_pointer" >&6
d15b04bd 5173if test $ac_cv_prog_lex_yytext_pointer = yes; then
42ecbf5e
DJ
5174
5175cat >>confdefs.h <<\_ACEOF
d15b04bd 5176#define YYTEXT_POINTER 1
42ecbf5e 5177_ACEOF
d15b04bd
L
5178
5179fi
e5a52504 5180
42ecbf5e
DJ
5181fi
5182if test "$LEX" = :; then
5183 LEX=${am_missing_run}flex
5184fi
e5a52504 5185
82d457f6 5186ALL_LINGUAS="fr tr ja es sv da zh_CN ru ro rw zh_TW"
42ecbf5e
DJ
5187if test -n "$ac_tool_prefix"; then
5188 # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
5189set dummy ${ac_tool_prefix}ranlib; ac_word=$2
5190echo "$as_me:$LINENO: checking for $ac_word" >&5
5191echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
5192if test "${ac_cv_prog_RANLIB+set}" = set; then
5193 echo $ECHO_N "(cached) $ECHO_C" >&6
e5a52504 5194else
d15b04bd
L
5195 if test -n "$RANLIB"; then
5196 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
5197else
42ecbf5e
DJ
5198as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5199for as_dir in $PATH
5200do
5201 IFS=$as_save_IFS
5202 test -z "$as_dir" && as_dir=.
5203 for ac_exec_ext in '' $ac_executable_extensions; do
5204 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5205 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
5206 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5207 break 2
5208 fi
5209done
5210done
5211
d15b04bd
L
5212fi
5213fi
42ecbf5e 5214RANLIB=$ac_cv_prog_RANLIB
d15b04bd 5215if test -n "$RANLIB"; then
42ecbf5e
DJ
5216 echo "$as_me:$LINENO: result: $RANLIB" >&5
5217echo "${ECHO_T}$RANLIB" >&6
5218else
5219 echo "$as_me:$LINENO: result: no" >&5
5220echo "${ECHO_T}no" >&6
5221fi
5222
5223fi
5224if test -z "$ac_cv_prog_RANLIB"; then
5225 ac_ct_RANLIB=$RANLIB
5226 # Extract the first word of "ranlib", so it can be a program name with args.
5227set dummy ranlib; ac_word=$2
5228echo "$as_me:$LINENO: checking for $ac_word" >&5
5229echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
5230if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
5231 echo $ECHO_N "(cached) $ECHO_C" >&6
5232else
5233 if test -n "$ac_ct_RANLIB"; then
5234 ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
5235else
5236as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5237for as_dir in $PATH
5238do
5239 IFS=$as_save_IFS
5240 test -z "$as_dir" && as_dir=.
5241 for ac_exec_ext in '' $ac_executable_extensions; do
5242 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5243 ac_cv_prog_ac_ct_RANLIB="ranlib"
5244 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
5245 break 2
5246 fi
5247done
5248done
5249
5250 test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":"
5251fi
5252fi
5253ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
5254if test -n "$ac_ct_RANLIB"; then
5255 echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
5256echo "${ECHO_T}$ac_ct_RANLIB" >&6
5257else
5258 echo "$as_me:$LINENO: result: no" >&5
5259echo "${ECHO_T}no" >&6
5260fi
5261
5262 RANLIB=$ac_ct_RANLIB
5263else
5264 RANLIB="$ac_cv_prog_RANLIB"
5265fi
5266
5267ac_ext=c
5268ac_cpp='$CPP $CPPFLAGS'
5269ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
5270ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
5271ac_compiler_gnu=$ac_cv_c_compiler_gnu
5272echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
5273echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
5274# On Suns, sometimes $CPP names a directory.
5275if test -n "$CPP" && test -d "$CPP"; then
5276 CPP=
5277fi
5278if test -z "$CPP"; then
5279 if test "${ac_cv_prog_CPP+set}" = set; then
5280 echo $ECHO_N "(cached) $ECHO_C" >&6
5281else
5282 # Double quotes because CPP needs to be expanded
5283 for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
5284 do
5285 ac_preproc_ok=false
5286for ac_c_preproc_warn_flag in '' yes
5287do
5288 # Use a header file that comes with gcc, so configuring glibc
5289 # with a fresh cross-compiler works.
5290 # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
5291 # <limits.h> exists even on freestanding compilers.
5292 # On the NeXT, cc -E runs the code through the compiler's parser,
5293 # not just through cpp. "Syntax error" is here to catch this case.
5294 cat >conftest.$ac_ext <<_ACEOF
5295/* confdefs.h. */
5296_ACEOF
5297cat confdefs.h >>conftest.$ac_ext
5298cat >>conftest.$ac_ext <<_ACEOF
5299/* end confdefs.h. */
5300#ifdef __STDC__
5301# include <limits.h>
5302#else
5303# include <assert.h>
5304#endif
5305 Syntax error
5306_ACEOF
5307if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
5308 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
5309 ac_status=$?
5310 grep -v '^ *+' conftest.er1 >conftest.err
5311 rm -f conftest.er1
5312 cat conftest.err >&5
5313 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5314 (exit $ac_status); } >/dev/null; then
5315 if test -s conftest.err; then
5316 ac_cpp_err=$ac_c_preproc_warn_flag
5317 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
5318 else
5319 ac_cpp_err=
5320 fi
5321else
5322 ac_cpp_err=yes
5323fi
5324if test -z "$ac_cpp_err"; then
5325 :
5326else
5327 echo "$as_me: failed program was:" >&5
5328sed 's/^/| /' conftest.$ac_ext >&5
5329
5330 # Broken: fails on valid input.
5331continue
5332fi
5333rm -f conftest.err conftest.$ac_ext
5334
5335 # OK, works on sane cases. Now check whether non-existent headers
5336 # can be detected and how.
5337 cat >conftest.$ac_ext <<_ACEOF
5338/* confdefs.h. */
5339_ACEOF
5340cat confdefs.h >>conftest.$ac_ext
5341cat >>conftest.$ac_ext <<_ACEOF
5342/* end confdefs.h. */
5343#include <ac_nonexistent.h>
5344_ACEOF
5345if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
5346 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
5347 ac_status=$?
5348 grep -v '^ *+' conftest.er1 >conftest.err
5349 rm -f conftest.er1
5350 cat conftest.err >&5
5351 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5352 (exit $ac_status); } >/dev/null; then
5353 if test -s conftest.err; then
5354 ac_cpp_err=$ac_c_preproc_warn_flag
5355 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
5356 else
5357 ac_cpp_err=
5358 fi
5359else
5360 ac_cpp_err=yes
5361fi
5362if test -z "$ac_cpp_err"; then
5363 # Broken: success on invalid input.
5364continue
5365else
5366 echo "$as_me: failed program was:" >&5
5367sed 's/^/| /' conftest.$ac_ext >&5
5368
5369 # Passes both tests.
5370ac_preproc_ok=:
5371break
5372fi
5373rm -f conftest.err conftest.$ac_ext
5374
5375done
5376# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
5377rm -f conftest.err conftest.$ac_ext
5378if $ac_preproc_ok; then
5379 break
5380fi
5381
5382 done
5383 ac_cv_prog_CPP=$CPP
5384
5385fi
5386 CPP=$ac_cv_prog_CPP
5387else
5388 ac_cv_prog_CPP=$CPP
5389fi
5390echo "$as_me:$LINENO: result: $CPP" >&5
5391echo "${ECHO_T}$CPP" >&6
5392ac_preproc_ok=false
5393for ac_c_preproc_warn_flag in '' yes
5394do
5395 # Use a header file that comes with gcc, so configuring glibc
5396 # with a fresh cross-compiler works.
5397 # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
5398 # <limits.h> exists even on freestanding compilers.
5399 # On the NeXT, cc -E runs the code through the compiler's parser,
5400 # not just through cpp. "Syntax error" is here to catch this case.
5401 cat >conftest.$ac_ext <<_ACEOF
5402/* confdefs.h. */
5403_ACEOF
5404cat confdefs.h >>conftest.$ac_ext
5405cat >>conftest.$ac_ext <<_ACEOF
5406/* end confdefs.h. */
5407#ifdef __STDC__
5408# include <limits.h>
5409#else
5410# include <assert.h>
5411#endif
5412 Syntax error
5413_ACEOF
5414if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
5415 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
5416 ac_status=$?
5417 grep -v '^ *+' conftest.er1 >conftest.err
5418 rm -f conftest.er1
5419 cat conftest.err >&5
5420 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5421 (exit $ac_status); } >/dev/null; then
5422 if test -s conftest.err; then
5423 ac_cpp_err=$ac_c_preproc_warn_flag
5424 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
5425 else
5426 ac_cpp_err=
5427 fi
5428else
5429 ac_cpp_err=yes
5430fi
5431if test -z "$ac_cpp_err"; then
5432 :
5433else
5434 echo "$as_me: failed program was:" >&5
5435sed 's/^/| /' conftest.$ac_ext >&5
5436
5437 # Broken: fails on valid input.
5438continue
5439fi
5440rm -f conftest.err conftest.$ac_ext
5441
5442 # OK, works on sane cases. Now check whether non-existent headers
5443 # can be detected and how.
5444 cat >conftest.$ac_ext <<_ACEOF
5445/* confdefs.h. */
5446_ACEOF
5447cat confdefs.h >>conftest.$ac_ext
5448cat >>conftest.$ac_ext <<_ACEOF
5449/* end confdefs.h. */
5450#include <ac_nonexistent.h>
5451_ACEOF
5452if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
5453 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
5454 ac_status=$?
5455 grep -v '^ *+' conftest.er1 >conftest.err
5456 rm -f conftest.er1
5457 cat conftest.err >&5
5458 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5459 (exit $ac_status); } >/dev/null; then
5460 if test -s conftest.err; then
5461 ac_cpp_err=$ac_c_preproc_warn_flag
5462 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
5463 else
5464 ac_cpp_err=
5465 fi
5466else
5467 ac_cpp_err=yes
5468fi
5469if test -z "$ac_cpp_err"; then
5470 # Broken: success on invalid input.
5471continue
5472else
5473 echo "$as_me: failed program was:" >&5
5474sed 's/^/| /' conftest.$ac_ext >&5
5475
5476 # Passes both tests.
5477ac_preproc_ok=:
5478break
5479fi
5480rm -f conftest.err conftest.$ac_ext
5481
5482done
5483# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
5484rm -f conftest.err conftest.$ac_ext
5485if $ac_preproc_ok; then
5486 :
5487else
5488 { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
5489See \`config.log' for more details." >&5
5490echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check
5491See \`config.log' for more details." >&2;}
5492 { (exit 1); exit 1; }; }
5493fi
5494
5495ac_ext=c
5496ac_cpp='$CPP $CPPFLAGS'
5497ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
5498ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
5499ac_compiler_gnu=$ac_cv_c_compiler_gnu
5500
5501
5502echo "$as_me:$LINENO: checking for egrep" >&5
5503echo $ECHO_N "checking for egrep... $ECHO_C" >&6
5504if test "${ac_cv_prog_egrep+set}" = set; then
5505 echo $ECHO_N "(cached) $ECHO_C" >&6
d15b04bd 5506else
42ecbf5e
DJ
5507 if echo a | (grep -E '(a|b)') >/dev/null 2>&1
5508 then ac_cv_prog_egrep='grep -E'
5509 else ac_cv_prog_egrep='egrep'
5510 fi
e5a52504 5511fi
42ecbf5e
DJ
5512echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5
5513echo "${ECHO_T}$ac_cv_prog_egrep" >&6
5514 EGREP=$ac_cv_prog_egrep
5515
ac48eca1 5516
42ecbf5e
DJ
5517echo "$as_me:$LINENO: checking for ANSI C header files" >&5
5518echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
5519if test "${ac_cv_header_stdc+set}" = set; then
5520 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 5521else
42ecbf5e
DJ
5522 cat >conftest.$ac_ext <<_ACEOF
5523/* confdefs.h. */
5524_ACEOF
5525cat confdefs.h >>conftest.$ac_ext
5526cat >>conftest.$ac_ext <<_ACEOF
5527/* end confdefs.h. */
252b5132
RH
5528#include <stdlib.h>
5529#include <stdarg.h>
5530#include <string.h>
5531#include <float.h>
42ecbf5e
DJ
5532
5533int
5534main ()
5535{
5536
5537 ;
5538 return 0;
5539}
5540_ACEOF
5541rm -f conftest.$ac_objext
5542if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5543 (eval $ac_compile) 2>conftest.er1
5544 ac_status=$?
5545 grep -v '^ *+' conftest.er1 >conftest.err
5546 rm -f conftest.er1
5547 cat conftest.err >&5
5548 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5549 (exit $ac_status); } &&
b7d4af3a
JW
5550 { ac_try='test -z "$ac_c_werror_flag"
5551 || test ! -s conftest.err'
42ecbf5e
DJ
5552 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5553 (eval $ac_try) 2>&5
5554 ac_status=$?
5555 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5556 (exit $ac_status); }; } &&
5557 { ac_try='test -s conftest.$ac_objext'
5558 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5559 (eval $ac_try) 2>&5
5560 ac_status=$?
5561 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5562 (exit $ac_status); }; }; then
252b5132
RH
5563 ac_cv_header_stdc=yes
5564else
42ecbf5e
DJ
5565 echo "$as_me: failed program was:" >&5
5566sed 's/^/| /' conftest.$ac_ext >&5
5567
5568ac_cv_header_stdc=no
252b5132 5569fi
42ecbf5e 5570rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132
RH
5571
5572if test $ac_cv_header_stdc = yes; then
5573 # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
42ecbf5e
DJ
5574 cat >conftest.$ac_ext <<_ACEOF
5575/* confdefs.h. */
5576_ACEOF
5577cat confdefs.h >>conftest.$ac_ext
5578cat >>conftest.$ac_ext <<_ACEOF
5579/* end confdefs.h. */
252b5132 5580#include <string.h>
42ecbf5e
DJ
5581
5582_ACEOF
252b5132 5583if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
42ecbf5e 5584 $EGREP "memchr" >/dev/null 2>&1; then
252b5132
RH
5585 :
5586else
252b5132
RH
5587 ac_cv_header_stdc=no
5588fi
5589rm -f conftest*
5590
5591fi
5592
5593if test $ac_cv_header_stdc = yes; then
5594 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
42ecbf5e
DJ
5595 cat >conftest.$ac_ext <<_ACEOF
5596/* confdefs.h. */
5597_ACEOF
5598cat confdefs.h >>conftest.$ac_ext
5599cat >>conftest.$ac_ext <<_ACEOF
5600/* end confdefs.h. */
252b5132 5601#include <stdlib.h>
42ecbf5e
DJ
5602
5603_ACEOF
252b5132 5604if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
42ecbf5e 5605 $EGREP "free" >/dev/null 2>&1; then
252b5132
RH
5606 :
5607else
252b5132
RH
5608 ac_cv_header_stdc=no
5609fi
5610rm -f conftest*
5611
5612fi
5613
5614if test $ac_cv_header_stdc = yes; then
5615 # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
42ecbf5e 5616 if test "$cross_compiling" = yes; then
252b5132
RH
5617 :
5618else
42ecbf5e
DJ
5619 cat >conftest.$ac_ext <<_ACEOF
5620/* confdefs.h. */
5621_ACEOF
5622cat confdefs.h >>conftest.$ac_ext
5623cat >>conftest.$ac_ext <<_ACEOF
5624/* end confdefs.h. */
252b5132 5625#include <ctype.h>
42ecbf5e
DJ
5626#if ((' ' & 0x0FF) == 0x020)
5627# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
5628# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
5629#else
5630# define ISLOWER(c) \
5631 (('a' <= (c) && (c) <= 'i') \
5632 || ('j' <= (c) && (c) <= 'r') \
5633 || ('s' <= (c) && (c) <= 'z'))
5634# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
5635#endif
d15b04bd 5636
42ecbf5e
DJ
5637#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
5638int
5639main ()
5640{
5641 int i;
5642 for (i = 0; i < 256; i++)
5643 if (XOR (islower (i), ISLOWER (i))
5644 || toupper (i) != TOUPPER (i))
5645 exit(2);
5646 exit (0);
5647}
5648_ACEOF
5649rm -f conftest$ac_exeext
5650if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5651 (eval $ac_link) 2>&5
5652 ac_status=$?
5653 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5654 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
5655 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5656 (eval $ac_try) 2>&5
5657 ac_status=$?
5658 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5659 (exit $ac_status); }; }; then
252b5132
RH
5660 :
5661else
42ecbf5e
DJ
5662 echo "$as_me: program exited with status $ac_status" >&5
5663echo "$as_me: failed program was:" >&5
5664sed 's/^/| /' conftest.$ac_ext >&5
5665
5666( exit $ac_status )
5667ac_cv_header_stdc=no
252b5132 5668fi
42ecbf5e 5669rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
252b5132 5670fi
252b5132
RH
5671fi
5672fi
42ecbf5e
DJ
5673echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
5674echo "${ECHO_T}$ac_cv_header_stdc" >&6
d15b04bd 5675if test $ac_cv_header_stdc = yes; then
42ecbf5e
DJ
5676
5677cat >>confdefs.h <<\_ACEOF
252b5132 5678#define STDC_HEADERS 1
42ecbf5e 5679_ACEOF
252b5132
RH
5680
5681fi
5682
42ecbf5e
DJ
5683echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5
5684echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6
5685if test "${ac_cv_c_const+set}" = set; then
5686 echo $ECHO_N "(cached) $ECHO_C" >&6
5687else
5688 cat >conftest.$ac_ext <<_ACEOF
5689/* confdefs.h. */
5690_ACEOF
5691cat confdefs.h >>conftest.$ac_ext
5692cat >>conftest.$ac_ext <<_ACEOF
5693/* end confdefs.h. */
d15b04bd 5694
42ecbf5e
DJ
5695int
5696main ()
5697{
5698/* FIXME: Include the comments suggested by Paul. */
5699#ifndef __cplusplus
5700 /* Ultrix mips cc rejects this. */
5701 typedef int charset[2];
5702 const charset x;
5703 /* SunOS 4.1.1 cc rejects this. */
5704 char const *const *ccp;
5705 char **p;
5706 /* NEC SVR4.0.2 mips cc rejects this. */
5707 struct point {int x, y;};
5708 static struct point const zero = {0,0};
5709 /* AIX XL C 1.02.0.0 rejects this.
5710 It does not let you subtract one const X* pointer from another in
5711 an arm of an if-expression whose if-part is not a constant
5712 expression */
5713 const char *g = "string";
5714 ccp = &g + (g ? g-g : 0);
5715 /* HPUX 7.0 cc rejects these. */
5716 ++ccp;
5717 p = (char**) ccp;
5718 ccp = (char const *const *) p;
5719 { /* SCO 3.2v4 cc rejects this. */
5720 char *t;
5721 char const *s = 0 ? (char *) 0 : (char const *) 0;
5722
5723 *t++ = 0;
5724 }
5725 { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */
5726 int x[] = {25, 17};
5727 const int *foo = &x[0];
5728 ++foo;
5729 }
5730 { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */
5731 typedef const int *iptr;
5732 iptr p = 0;
5733 ++p;
5734 }
5735 { /* AIX XL C 1.02.0.0 rejects this saying
5736 "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
5737 struct s { int j; const int *ap[3]; };
5738 struct s *b; b->j = 5;
5739 }
5740 { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
5741 const int foo = 10;
5742 }
5743#endif
5744
5745 ;
5746 return 0;
5747}
5748_ACEOF
5749rm -f conftest.$ac_objext
5750if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5751 (eval $ac_compile) 2>conftest.er1
5752 ac_status=$?
5753 grep -v '^ *+' conftest.er1 >conftest.err
5754 rm -f conftest.er1
5755 cat conftest.err >&5
5756 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5757 (exit $ac_status); } &&
b7d4af3a
JW
5758 { ac_try='test -z "$ac_c_werror_flag"
5759 || test ! -s conftest.err'
42ecbf5e
DJ
5760 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5761 (eval $ac_try) 2>&5
5762 ac_status=$?
5763 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5764 (exit $ac_status); }; } &&
5765 { ac_try='test -s conftest.$ac_objext'
5766 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5767 (eval $ac_try) 2>&5
5768 ac_status=$?
5769 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5770 (exit $ac_status); }; }; then
252b5132
RH
5771 ac_cv_c_const=yes
5772else
42ecbf5e
DJ
5773 echo "$as_me: failed program was:" >&5
5774sed 's/^/| /' conftest.$ac_ext >&5
5775
5776ac_cv_c_const=no
252b5132 5777fi
42ecbf5e 5778rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132 5779fi
42ecbf5e
DJ
5780echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5
5781echo "${ECHO_T}$ac_cv_c_const" >&6
d15b04bd 5782if test $ac_cv_c_const = no; then
42ecbf5e
DJ
5783
5784cat >>confdefs.h <<\_ACEOF
5785#define const
5786_ACEOF
252b5132
RH
5787
5788fi
5789
42ecbf5e
DJ
5790echo "$as_me:$LINENO: checking for inline" >&5
5791echo $ECHO_N "checking for inline... $ECHO_C" >&6
5792if test "${ac_cv_c_inline+set}" = set; then
5793 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
5794else
5795 ac_cv_c_inline=no
5796for ac_kw in inline __inline__ __inline; do
42ecbf5e
DJ
5797 cat >conftest.$ac_ext <<_ACEOF
5798/* confdefs.h. */
5799_ACEOF
5800cat confdefs.h >>conftest.$ac_ext
5801cat >>conftest.$ac_ext <<_ACEOF
5802/* end confdefs.h. */
5803#ifndef __cplusplus
5804typedef int foo_t;
5805static $ac_kw foo_t static_foo () {return 0; }
5806$ac_kw foo_t foo () {return 0; }
5807#endif
252b5132 5808
42ecbf5e
DJ
5809_ACEOF
5810rm -f conftest.$ac_objext
5811if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5812 (eval $ac_compile) 2>conftest.er1
5813 ac_status=$?
5814 grep -v '^ *+' conftest.er1 >conftest.err
5815 rm -f conftest.er1
5816 cat conftest.err >&5
5817 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5818 (exit $ac_status); } &&
b7d4af3a
JW
5819 { ac_try='test -z "$ac_c_werror_flag"
5820 || test ! -s conftest.err'
42ecbf5e
DJ
5821 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5822 (eval $ac_try) 2>&5
5823 ac_status=$?
5824 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5825 (exit $ac_status); }; } &&
5826 { ac_try='test -s conftest.$ac_objext'
5827 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5828 (eval $ac_try) 2>&5
5829 ac_status=$?
5830 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5831 (exit $ac_status); }; }; then
252b5132
RH
5832 ac_cv_c_inline=$ac_kw; break
5833else
42ecbf5e
DJ
5834 echo "$as_me: failed program was:" >&5
5835sed 's/^/| /' conftest.$ac_ext >&5
5836
252b5132 5837fi
42ecbf5e 5838rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132
RH
5839done
5840
5841fi
42ecbf5e
DJ
5842echo "$as_me:$LINENO: result: $ac_cv_c_inline" >&5
5843echo "${ECHO_T}$ac_cv_c_inline" >&6
252b5132 5844
42ecbf5e
DJ
5845
5846case $ac_cv_c_inline in
252b5132 5847 inline | yes) ;;
42ecbf5e
DJ
5848 *)
5849 case $ac_cv_c_inline in
5850 no) ac_val=;;
5851 *) ac_val=$ac_cv_c_inline;;
5852 esac
5853 cat >>confdefs.h <<_ACEOF
5854#ifndef __cplusplus
5855#define inline $ac_val
5856#endif
5857_ACEOF
5858 ;;
252b5132
RH
5859esac
5860
42ecbf5e
DJ
5861# On IRIX 5.3, sys/types and inttypes.h are conflicting.
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
5872 inttypes.h stdint.h unistd.h
5873do
5874as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
5875echo "$as_me:$LINENO: checking for $ac_header" >&5
5876echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
5877if eval "test \"\${$as_ac_Header+set}\" = set"; then
5878 echo $ECHO_N "(cached) $ECHO_C" >&6
5879else
5880 cat >conftest.$ac_ext <<_ACEOF
5881/* confdefs.h. */
5882_ACEOF
5883cat confdefs.h >>conftest.$ac_ext
5884cat >>conftest.$ac_ext <<_ACEOF
5885/* end confdefs.h. */
5886$ac_includes_default
5887
5888#include <$ac_header>
5889_ACEOF
5890rm -f conftest.$ac_objext
5891if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5892 (eval $ac_compile) 2>conftest.er1
5893 ac_status=$?
5894 grep -v '^ *+' conftest.er1 >conftest.err
5895 rm -f conftest.er1
5896 cat conftest.err >&5
5897 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5898 (exit $ac_status); } &&
b7d4af3a
JW
5899 { ac_try='test -z "$ac_c_werror_flag"
5900 || test ! -s conftest.err'
42ecbf5e
DJ
5901 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5902 (eval $ac_try) 2>&5
5903 ac_status=$?
5904 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5905 (exit $ac_status); }; } &&
5906 { ac_try='test -s conftest.$ac_objext'
5907 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5908 (eval $ac_try) 2>&5
5909 ac_status=$?
5910 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5911 (exit $ac_status); }; }; then
5912 eval "$as_ac_Header=yes"
5913else
5914 echo "$as_me: failed program was:" >&5
5915sed 's/^/| /' conftest.$ac_ext >&5
5916
5917eval "$as_ac_Header=no"
5918fi
5919rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
5920fi
5921echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
5922echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
5923if test `eval echo '${'$as_ac_Header'}'` = yes; then
5924 cat >>confdefs.h <<_ACEOF
5925#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
5926_ACEOF
5927
5928fi
5929
5930done
5931
5932
5933echo "$as_me:$LINENO: checking for off_t" >&5
5934echo $ECHO_N "checking for off_t... $ECHO_C" >&6
5935if test "${ac_cv_type_off_t+set}" = set; then
5936 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 5937else
42ecbf5e
DJ
5938 cat >conftest.$ac_ext <<_ACEOF
5939/* confdefs.h. */
5940_ACEOF
5941cat confdefs.h >>conftest.$ac_ext
5942cat >>conftest.$ac_ext <<_ACEOF
5943/* end confdefs.h. */
5944$ac_includes_default
5945int
5946main ()
5947{
5948if ((off_t *) 0)
5949 return 0;
5950if (sizeof (off_t))
5951 return 0;
5952 ;
5953 return 0;
5954}
5955_ACEOF
5956rm -f conftest.$ac_objext
5957if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5958 (eval $ac_compile) 2>conftest.er1
5959 ac_status=$?
5960 grep -v '^ *+' conftest.er1 >conftest.err
5961 rm -f conftest.er1
5962 cat conftest.err >&5
5963 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5964 (exit $ac_status); } &&
b7d4af3a
JW
5965 { ac_try='test -z "$ac_c_werror_flag"
5966 || test ! -s conftest.err'
42ecbf5e
DJ
5967 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5968 (eval $ac_try) 2>&5
5969 ac_status=$?
5970 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5971 (exit $ac_status); }; } &&
5972 { ac_try='test -s conftest.$ac_objext'
5973 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5974 (eval $ac_try) 2>&5
5975 ac_status=$?
5976 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5977 (exit $ac_status); }; }; then
252b5132
RH
5978 ac_cv_type_off_t=yes
5979else
42ecbf5e
DJ
5980 echo "$as_me: failed program was:" >&5
5981sed 's/^/| /' conftest.$ac_ext >&5
e5a52504 5982
42ecbf5e
DJ
5983ac_cv_type_off_t=no
5984fi
5985rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
d15b04bd 5986fi
42ecbf5e
DJ
5987echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5
5988echo "${ECHO_T}$ac_cv_type_off_t" >&6
5989if test $ac_cv_type_off_t = yes; then
5990 :
5991else
5992
5993cat >>confdefs.h <<_ACEOF
252b5132 5994#define off_t long
42ecbf5e 5995_ACEOF
252b5132
RH
5996
5997fi
5998
42ecbf5e
DJ
5999echo "$as_me:$LINENO: checking for size_t" >&5
6000echo $ECHO_N "checking for size_t... $ECHO_C" >&6
6001if test "${ac_cv_type_size_t+set}" = set; then
6002 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 6003else
42ecbf5e
DJ
6004 cat >conftest.$ac_ext <<_ACEOF
6005/* confdefs.h. */
6006_ACEOF
6007cat confdefs.h >>conftest.$ac_ext
6008cat >>conftest.$ac_ext <<_ACEOF
6009/* end confdefs.h. */
6010$ac_includes_default
6011int
6012main ()
6013{
6014if ((size_t *) 0)
6015 return 0;
6016if (sizeof (size_t))
6017 return 0;
6018 ;
6019 return 0;
6020}
6021_ACEOF
6022rm -f conftest.$ac_objext
6023if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6024 (eval $ac_compile) 2>conftest.er1
6025 ac_status=$?
6026 grep -v '^ *+' conftest.er1 >conftest.err
6027 rm -f conftest.er1
6028 cat conftest.err >&5
6029 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6030 (exit $ac_status); } &&
b7d4af3a
JW
6031 { ac_try='test -z "$ac_c_werror_flag"
6032 || test ! -s conftest.err'
42ecbf5e
DJ
6033 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6034 (eval $ac_try) 2>&5
6035 ac_status=$?
6036 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6037 (exit $ac_status); }; } &&
6038 { ac_try='test -s conftest.$ac_objext'
6039 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6040 (eval $ac_try) 2>&5
6041 ac_status=$?
6042 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6043 (exit $ac_status); }; }; then
252b5132
RH
6044 ac_cv_type_size_t=yes
6045else
42ecbf5e
DJ
6046 echo "$as_me: failed program was:" >&5
6047sed 's/^/| /' conftest.$ac_ext >&5
e5a52504 6048
42ecbf5e 6049ac_cv_type_size_t=no
d15b04bd 6050fi
42ecbf5e
DJ
6051rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
6052fi
6053echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5
6054echo "${ECHO_T}$ac_cv_type_size_t" >&6
6055if test $ac_cv_type_size_t = yes; then
6056 :
6057else
6058
6059cat >>confdefs.h <<_ACEOF
252b5132 6060#define size_t unsigned
42ecbf5e 6061_ACEOF
252b5132
RH
6062
6063fi
6064
6065# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
6066# for constant arguments. Useless!
42ecbf5e
DJ
6067echo "$as_me:$LINENO: checking for working alloca.h" >&5
6068echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6
6069if test "${ac_cv_working_alloca_h+set}" = set; then
6070 echo $ECHO_N "(cached) $ECHO_C" >&6
6071else
6072 cat >conftest.$ac_ext <<_ACEOF
6073/* confdefs.h. */
6074_ACEOF
6075cat confdefs.h >>conftest.$ac_ext
6076cat >>conftest.$ac_ext <<_ACEOF
6077/* end confdefs.h. */
252b5132 6078#include <alloca.h>
42ecbf5e
DJ
6079int
6080main ()
6081{
6082char *p = (char *) alloca (2 * sizeof (int));
6083 ;
6084 return 0;
6085}
6086_ACEOF
6087rm -f conftest.$ac_objext conftest$ac_exeext
6088if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6089 (eval $ac_link) 2>conftest.er1
6090 ac_status=$?
6091 grep -v '^ *+' conftest.er1 >conftest.err
6092 rm -f conftest.er1
6093 cat conftest.err >&5
6094 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6095 (exit $ac_status); } &&
b7d4af3a
JW
6096 { ac_try='test -z "$ac_c_werror_flag"
6097 || test ! -s conftest.err'
42ecbf5e
DJ
6098 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6099 (eval $ac_try) 2>&5
6100 ac_status=$?
6101 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6102 (exit $ac_status); }; } &&
6103 { ac_try='test -s conftest$ac_exeext'
6104 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6105 (eval $ac_try) 2>&5
6106 ac_status=$?
6107 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6108 (exit $ac_status); }; }; then
6109 ac_cv_working_alloca_h=yes
6110else
6111 echo "$as_me: failed program was:" >&5
6112sed 's/^/| /' conftest.$ac_ext >&5
6113
6114ac_cv_working_alloca_h=no
6115fi
6116rm -f conftest.err conftest.$ac_objext \
6117 conftest$ac_exeext conftest.$ac_ext
6118fi
6119echo "$as_me:$LINENO: result: $ac_cv_working_alloca_h" >&5
6120echo "${ECHO_T}$ac_cv_working_alloca_h" >&6
6121if test $ac_cv_working_alloca_h = yes; then
6122
6123cat >>confdefs.h <<\_ACEOF
252b5132 6124#define HAVE_ALLOCA_H 1
42ecbf5e 6125_ACEOF
252b5132
RH
6126
6127fi
6128
42ecbf5e
DJ
6129echo "$as_me:$LINENO: checking for alloca" >&5
6130echo $ECHO_N "checking for alloca... $ECHO_C" >&6
6131if test "${ac_cv_func_alloca_works+set}" = set; then
6132 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 6133else
42ecbf5e
DJ
6134 cat >conftest.$ac_ext <<_ACEOF
6135/* confdefs.h. */
6136_ACEOF
6137cat confdefs.h >>conftest.$ac_ext
6138cat >>conftest.$ac_ext <<_ACEOF
6139/* end confdefs.h. */
252b5132
RH
6140#ifdef __GNUC__
6141# define alloca __builtin_alloca
6142#else
6143# ifdef _MSC_VER
6144# include <malloc.h>
6145# define alloca _alloca
6146# else
6147# if HAVE_ALLOCA_H
6148# include <alloca.h>
6149# else
6150# ifdef _AIX
6151 #pragma alloca
6152# else
6153# ifndef alloca /* predefined by HP cc +Olibcalls */
6154char *alloca ();
6155# endif
6156# endif
6157# endif
6158# endif
6159#endif
6160
42ecbf5e
DJ
6161int
6162main ()
6163{
6164char *p = (char *) alloca (1);
6165 ;
6166 return 0;
6167}
6168_ACEOF
6169rm -f conftest.$ac_objext conftest$ac_exeext
6170if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6171 (eval $ac_link) 2>conftest.er1
6172 ac_status=$?
6173 grep -v '^ *+' conftest.er1 >conftest.err
6174 rm -f conftest.er1
6175 cat conftest.err >&5
6176 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6177 (exit $ac_status); } &&
b7d4af3a
JW
6178 { ac_try='test -z "$ac_c_werror_flag"
6179 || test ! -s conftest.err'
42ecbf5e
DJ
6180 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6181 (eval $ac_try) 2>&5
6182 ac_status=$?
6183 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6184 (exit $ac_status); }; } &&
6185 { ac_try='test -s conftest$ac_exeext'
6186 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6187 (eval $ac_try) 2>&5
6188 ac_status=$?
6189 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6190 (exit $ac_status); }; }; then
252b5132
RH
6191 ac_cv_func_alloca_works=yes
6192else
42ecbf5e
DJ
6193 echo "$as_me: failed program was:" >&5
6194sed 's/^/| /' conftest.$ac_ext >&5
6195
6196ac_cv_func_alloca_works=no
252b5132 6197fi
42ecbf5e
DJ
6198rm -f conftest.err conftest.$ac_objext \
6199 conftest$ac_exeext conftest.$ac_ext
252b5132 6200fi
42ecbf5e
DJ
6201echo "$as_me:$LINENO: result: $ac_cv_func_alloca_works" >&5
6202echo "${ECHO_T}$ac_cv_func_alloca_works" >&6
252b5132 6203
252b5132 6204if test $ac_cv_func_alloca_works = yes; then
e5a52504 6205
42ecbf5e
DJ
6206cat >>confdefs.h <<\_ACEOF
6207#define HAVE_ALLOCA 1
6208_ACEOF
e5a52504 6209
42ecbf5e 6210else
d15b04bd 6211 # The SVR3 libPW and SVR4 libucb both contain incompatible functions
42ecbf5e
DJ
6212# that cause trouble. Some versions do not even contain alloca or
6213# contain a buggy version. If you still want to use their alloca,
6214# use ar to extract alloca.o from them instead of compiling alloca.c.
6215
6216ALLOCA=alloca.$ac_objext
6217
6218cat >>confdefs.h <<\_ACEOF
252b5132 6219#define C_ALLOCA 1
42ecbf5e 6220_ACEOF
252b5132
RH
6221
6222
42ecbf5e
DJ
6223echo "$as_me:$LINENO: checking whether \`alloca.c' needs Cray hooks" >&5
6224echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6
6225if test "${ac_cv_os_cray+set}" = set; then
6226 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 6227else
42ecbf5e
DJ
6228 cat >conftest.$ac_ext <<_ACEOF
6229/* confdefs.h. */
6230_ACEOF
6231cat confdefs.h >>conftest.$ac_ext
6232cat >>conftest.$ac_ext <<_ACEOF
6233/* end confdefs.h. */
252b5132
RH
6234#if defined(CRAY) && ! defined(CRAY2)
6235webecray
6236#else
6237wenotbecray
6238#endif
6239
42ecbf5e 6240_ACEOF
252b5132 6241if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
42ecbf5e 6242 $EGREP "webecray" >/dev/null 2>&1; then
252b5132
RH
6243 ac_cv_os_cray=yes
6244else
252b5132
RH
6245 ac_cv_os_cray=no
6246fi
6247rm -f conftest*
6248
6249fi
42ecbf5e
DJ
6250echo "$as_me:$LINENO: result: $ac_cv_os_cray" >&5
6251echo "${ECHO_T}$ac_cv_os_cray" >&6
d15b04bd 6252if test $ac_cv_os_cray = yes; then
42ecbf5e
DJ
6253 for ac_func in _getb67 GETB67 getb67; do
6254 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
6255echo "$as_me:$LINENO: checking for $ac_func" >&5
6256echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
6257if eval "test \"\${$as_ac_var+set}\" = set"; then
6258 echo $ECHO_N "(cached) $ECHO_C" >&6
6259else
6260 cat >conftest.$ac_ext <<_ACEOF
6261/* confdefs.h. */
6262_ACEOF
6263cat confdefs.h >>conftest.$ac_ext
6264cat >>conftest.$ac_ext <<_ACEOF
6265/* end confdefs.h. */
6266/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
6267 For example, HP-UX 11i <limits.h> declares gettimeofday. */
6268#define $ac_func innocuous_$ac_func
6269
252b5132 6270/* System header to define __stub macros and hopefully few prototypes,
42ecbf5e
DJ
6271 which can conflict with char $ac_func (); below.
6272 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6273 <limits.h> exists even on freestanding compilers. */
6274
6275#ifdef __STDC__
6276# include <limits.h>
6277#else
6278# include <assert.h>
6279#endif
d15b04bd 6280
42ecbf5e 6281#undef $ac_func
d15b04bd 6282
42ecbf5e
DJ
6283/* Override any gcc2 internal prototype to avoid an error. */
6284#ifdef __cplusplus
6285extern "C"
6286{
6287#endif
6288/* We use char because int might match the return type of a gcc2
6289 builtin and then its argument prototype would still apply. */
6290char $ac_func ();
252b5132
RH
6291/* The GNU C library defines this for functions which it implements
6292 to always fail with ENOSYS. Some functions are actually named
6293 something starting with __ and the normal name is an alias. */
6294#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
6295choke me
6296#else
42ecbf5e
DJ
6297char (*f) () = $ac_func;
6298#endif
6299#ifdef __cplusplus
6300}
252b5132
RH
6301#endif
6302
42ecbf5e
DJ
6303int
6304main ()
6305{
6306return f != $ac_func;
6307 ;
6308 return 0;
6309}
6310_ACEOF
6311rm -f conftest.$ac_objext conftest$ac_exeext
6312if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6313 (eval $ac_link) 2>conftest.er1
6314 ac_status=$?
6315 grep -v '^ *+' conftest.er1 >conftest.err
6316 rm -f conftest.er1
6317 cat conftest.err >&5
6318 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6319 (exit $ac_status); } &&
b7d4af3a
JW
6320 { ac_try='test -z "$ac_c_werror_flag"
6321 || test ! -s conftest.err'
42ecbf5e
DJ
6322 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6323 (eval $ac_try) 2>&5
6324 ac_status=$?
6325 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6326 (exit $ac_status); }; } &&
6327 { ac_try='test -s conftest$ac_exeext'
6328 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6329 (eval $ac_try) 2>&5
6330 ac_status=$?
6331 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6332 (exit $ac_status); }; }; then
6333 eval "$as_ac_var=yes"
6334else
6335 echo "$as_me: failed program was:" >&5
6336sed 's/^/| /' conftest.$ac_ext >&5
6337
6338eval "$as_ac_var=no"
6339fi
6340rm -f conftest.err conftest.$ac_objext \
6341 conftest$ac_exeext conftest.$ac_ext
6342fi
6343echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
6344echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
6345if test `eval echo '${'$as_ac_var'}'` = yes; then
6346
6347cat >>confdefs.h <<_ACEOF
252b5132 6348#define CRAY_STACKSEG_END $ac_func
42ecbf5e 6349_ACEOF
252b5132 6350
42ecbf5e 6351 break
252b5132
RH
6352fi
6353
42ecbf5e 6354 done
252b5132
RH
6355fi
6356
42ecbf5e
DJ
6357echo "$as_me:$LINENO: checking stack direction for C alloca" >&5
6358echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6
6359if test "${ac_cv_c_stack_direction+set}" = set; then
6360 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
6361else
6362 if test "$cross_compiling" = yes; then
6363 ac_cv_c_stack_direction=0
6364else
42ecbf5e
DJ
6365 cat >conftest.$ac_ext <<_ACEOF
6366/* confdefs.h. */
6367_ACEOF
6368cat confdefs.h >>conftest.$ac_ext
6369cat >>conftest.$ac_ext <<_ACEOF
6370/* end confdefs.h. */
6371int
252b5132
RH
6372find_stack_direction ()
6373{
6374 static char *addr = 0;
6375 auto char dummy;
6376 if (addr == 0)
6377 {
6378 addr = &dummy;
6379 return find_stack_direction ();
6380 }
6381 else
6382 return (&dummy > addr) ? 1 : -1;
6383}
42ecbf5e
DJ
6384
6385int
252b5132
RH
6386main ()
6387{
42ecbf5e 6388 exit (find_stack_direction () < 0);
252b5132 6389}
42ecbf5e
DJ
6390_ACEOF
6391rm -f conftest$ac_exeext
6392if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6393 (eval $ac_link) 2>&5
6394 ac_status=$?
6395 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6396 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
6397 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6398 (eval $ac_try) 2>&5
6399 ac_status=$?
6400 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6401 (exit $ac_status); }; }; then
252b5132
RH
6402 ac_cv_c_stack_direction=1
6403else
42ecbf5e
DJ
6404 echo "$as_me: program exited with status $ac_status" >&5
6405echo "$as_me: failed program was:" >&5
6406sed 's/^/| /' conftest.$ac_ext >&5
6407
6408( exit $ac_status )
6409ac_cv_c_stack_direction=-1
252b5132 6410fi
42ecbf5e 6411rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
252b5132 6412fi
252b5132 6413fi
42ecbf5e
DJ
6414echo "$as_me:$LINENO: result: $ac_cv_c_stack_direction" >&5
6415echo "${ECHO_T}$ac_cv_c_stack_direction" >&6
252b5132 6416
42ecbf5e 6417cat >>confdefs.h <<_ACEOF
252b5132 6418#define STACK_DIRECTION $ac_cv_c_stack_direction
42ecbf5e
DJ
6419_ACEOF
6420
252b5132
RH
6421
6422fi
6423
42ecbf5e
DJ
6424
6425
6426for ac_header in stdlib.h unistd.h
252b5132 6427do
42ecbf5e
DJ
6428as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
6429if eval "test \"\${$as_ac_Header+set}\" = set"; then
6430 echo "$as_me:$LINENO: checking for $ac_header" >&5
6431echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
6432if eval "test \"\${$as_ac_Header+set}\" = set"; then
6433 echo $ECHO_N "(cached) $ECHO_C" >&6
6434fi
6435echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
6436echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
6437else
6438 # Is the header compilable?
6439echo "$as_me:$LINENO: checking $ac_header usability" >&5
6440echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
6441cat >conftest.$ac_ext <<_ACEOF
6442/* confdefs.h. */
6443_ACEOF
6444cat confdefs.h >>conftest.$ac_ext
6445cat >>conftest.$ac_ext <<_ACEOF
6446/* end confdefs.h. */
6447$ac_includes_default
6448#include <$ac_header>
6449_ACEOF
6450rm -f conftest.$ac_objext
6451if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6452 (eval $ac_compile) 2>conftest.er1
6453 ac_status=$?
6454 grep -v '^ *+' conftest.er1 >conftest.err
6455 rm -f conftest.er1
6456 cat conftest.err >&5
6457 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6458 (exit $ac_status); } &&
b7d4af3a
JW
6459 { ac_try='test -z "$ac_c_werror_flag"
6460 || test ! -s conftest.err'
42ecbf5e
DJ
6461 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6462 (eval $ac_try) 2>&5
6463 ac_status=$?
6464 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6465 (exit $ac_status); }; } &&
6466 { ac_try='test -s conftest.$ac_objext'
6467 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6468 (eval $ac_try) 2>&5
6469 ac_status=$?
6470 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6471 (exit $ac_status); }; }; then
6472 ac_header_compiler=yes
6473else
6474 echo "$as_me: failed program was:" >&5
6475sed 's/^/| /' conftest.$ac_ext >&5
6476
6477ac_header_compiler=no
6478fi
6479rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
6480echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
6481echo "${ECHO_T}$ac_header_compiler" >&6
6482
6483# Is the header present?
6484echo "$as_me:$LINENO: checking $ac_header presence" >&5
6485echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
6486cat >conftest.$ac_ext <<_ACEOF
6487/* confdefs.h. */
6488_ACEOF
6489cat confdefs.h >>conftest.$ac_ext
6490cat >>conftest.$ac_ext <<_ACEOF
6491/* end confdefs.h. */
6492#include <$ac_header>
6493_ACEOF
6494if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
6495 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
6496 ac_status=$?
6497 grep -v '^ *+' conftest.er1 >conftest.err
6498 rm -f conftest.er1
6499 cat conftest.err >&5
6500 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6501 (exit $ac_status); } >/dev/null; then
6502 if test -s conftest.err; then
6503 ac_cpp_err=$ac_c_preproc_warn_flag
6504 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
6505 else
6506 ac_cpp_err=
6507 fi
252b5132 6508else
42ecbf5e 6509 ac_cpp_err=yes
252b5132 6510fi
42ecbf5e
DJ
6511if test -z "$ac_cpp_err"; then
6512 ac_header_preproc=yes
6513else
6514 echo "$as_me: failed program was:" >&5
6515sed 's/^/| /' conftest.$ac_ext >&5
6516
6517 ac_header_preproc=no
252b5132 6518fi
42ecbf5e
DJ
6519rm -f conftest.err conftest.$ac_ext
6520echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
6521echo "${ECHO_T}$ac_header_preproc" >&6
6522
6523# So? What about this header?
6524case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
6525 yes:no: )
6526 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
6527echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
6528 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
6529echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
6530 ac_header_preproc=yes
6531 ;;
6532 no:yes:* )
6533 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
6534echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
6535 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
6536echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
6537 { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
6538echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
6539 { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5
6540echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}
6541 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
6542echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
6543 { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
6544echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
6545 (
6546 cat <<\_ASBOX
6547## ------------------------------------------ ##
6548## Report this to the AC_PACKAGE_NAME lists. ##
6549## ------------------------------------------ ##
6550_ASBOX
6551 ) |
6552 sed "s/^/$as_me: WARNING: /" >&2
6553 ;;
6554esac
6555echo "$as_me:$LINENO: checking for $ac_header" >&5
6556echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
6557if eval "test \"\${$as_ac_Header+set}\" = set"; then
6558 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 6559else
42ecbf5e 6560 eval "$as_ac_Header=\$ac_header_preproc"
e5a52504 6561fi
42ecbf5e
DJ
6562echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
6563echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
6564
6565fi
6566if test `eval echo '${'$as_ac_Header'}'` = yes; then
6567 cat >>confdefs.h <<_ACEOF
6568#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
6569_ACEOF
6570
6571fi
6572
252b5132
RH
6573done
6574
42ecbf5e 6575
252b5132
RH
6576for ac_func in getpagesize
6577do
42ecbf5e
DJ
6578as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
6579echo "$as_me:$LINENO: checking for $ac_func" >&5
6580echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
6581if eval "test \"\${$as_ac_var+set}\" = set"; then
6582 echo $ECHO_N "(cached) $ECHO_C" >&6
6583else
6584 cat >conftest.$ac_ext <<_ACEOF
6585/* confdefs.h. */
6586_ACEOF
6587cat confdefs.h >>conftest.$ac_ext
6588cat >>conftest.$ac_ext <<_ACEOF
6589/* end confdefs.h. */
6590/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
6591 For example, HP-UX 11i <limits.h> declares gettimeofday. */
6592#define $ac_func innocuous_$ac_func
6593
252b5132 6594/* System header to define __stub macros and hopefully few prototypes,
42ecbf5e
DJ
6595 which can conflict with char $ac_func (); below.
6596 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6597 <limits.h> exists even on freestanding compilers. */
6598
6599#ifdef __STDC__
6600# include <limits.h>
6601#else
6602# include <assert.h>
6603#endif
d15b04bd 6604
42ecbf5e 6605#undef $ac_func
d15b04bd 6606
42ecbf5e
DJ
6607/* Override any gcc2 internal prototype to avoid an error. */
6608#ifdef __cplusplus
6609extern "C"
6610{
6611#endif
6612/* We use char because int might match the return type of a gcc2
6613 builtin and then its argument prototype would still apply. */
6614char $ac_func ();
252b5132
RH
6615/* The GNU C library defines this for functions which it implements
6616 to always fail with ENOSYS. Some functions are actually named
6617 something starting with __ and the normal name is an alias. */
6618#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
6619choke me
6620#else
42ecbf5e
DJ
6621char (*f) () = $ac_func;
6622#endif
6623#ifdef __cplusplus
6624}
252b5132
RH
6625#endif
6626
42ecbf5e
DJ
6627int
6628main ()
6629{
6630return f != $ac_func;
6631 ;
6632 return 0;
6633}
6634_ACEOF
6635rm -f conftest.$ac_objext conftest$ac_exeext
6636if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6637 (eval $ac_link) 2>conftest.er1
6638 ac_status=$?
6639 grep -v '^ *+' conftest.er1 >conftest.err
6640 rm -f conftest.er1
6641 cat conftest.err >&5
6642 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6643 (exit $ac_status); } &&
b7d4af3a
JW
6644 { ac_try='test -z "$ac_c_werror_flag"
6645 || test ! -s conftest.err'
42ecbf5e
DJ
6646 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6647 (eval $ac_try) 2>&5
6648 ac_status=$?
6649 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6650 (exit $ac_status); }; } &&
6651 { ac_try='test -s conftest$ac_exeext'
6652 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6653 (eval $ac_try) 2>&5
6654 ac_status=$?
6655 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6656 (exit $ac_status); }; }; then
6657 eval "$as_ac_var=yes"
6658else
6659 echo "$as_me: failed program was:" >&5
6660sed 's/^/| /' conftest.$ac_ext >&5
6661
6662eval "$as_ac_var=no"
6663fi
6664rm -f conftest.err conftest.$ac_objext \
6665 conftest$ac_exeext conftest.$ac_ext
6666fi
6667echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
6668echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
6669if test `eval echo '${'$as_ac_var'}'` = yes; then
6670 cat >>confdefs.h <<_ACEOF
6671#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
6672_ACEOF
252b5132 6673
252b5132
RH
6674fi
6675done
6676
42ecbf5e
DJ
6677echo "$as_me:$LINENO: checking for working mmap" >&5
6678echo $ECHO_N "checking for working mmap... $ECHO_C" >&6
6679if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then
6680 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
6681else
6682 if test "$cross_compiling" = yes; then
6683 ac_cv_func_mmap_fixed_mapped=no
6684else
42ecbf5e
DJ
6685 cat >conftest.$ac_ext <<_ACEOF
6686/* confdefs.h. */
6687_ACEOF
6688cat confdefs.h >>conftest.$ac_ext
6689cat >>conftest.$ac_ext <<_ACEOF
6690/* end confdefs.h. */
6691$ac_includes_default
6692/* malloc might have been renamed as rpl_malloc. */
6693#undef malloc
252b5132
RH
6694
6695/* Thanks to Mike Haertel and Jim Avera for this test.
6696 Here is a matrix of mmap possibilities:
6697 mmap private not fixed
6698 mmap private fixed at somewhere currently unmapped
6699 mmap private fixed at somewhere already mapped
6700 mmap shared not fixed
6701 mmap shared fixed at somewhere currently unmapped
6702 mmap shared fixed at somewhere already mapped
6703 For private mappings, we should verify that changes cannot be read()
6704 back from the file, nor mmap's back from the file at a different
6705 address. (There have been systems where private was not correctly
6706 implemented like the infamous i386 svr4.0, and systems where the
42ecbf5e 6707 VM page cache was not coherent with the file system buffer cache
252b5132
RH
6708 like early versions of FreeBSD and possibly contemporary NetBSD.)
6709 For shared mappings, we should conversely verify that changes get
42ecbf5e 6710 propagated back to all the places they're supposed to be.
252b5132
RH
6711
6712 Grep wants private fixed already mapped.
6713 The main things grep needs to know about mmap are:
6714 * does it exist and is it safe to write into the mmap'd area
6715 * how to use it (BSD variants) */
42ecbf5e 6716
252b5132
RH
6717#include <fcntl.h>
6718#include <sys/mman.h>
6719
42ecbf5e
DJ
6720#if !STDC_HEADERS && !HAVE_STDLIB_H
6721char *malloc ();
6722#endif
d15b04bd 6723
42ecbf5e
DJ
6724/* This mess was copied from the GNU getpagesize.h. */
6725#if !HAVE_GETPAGESIZE
252b5132 6726/* Assume that all systems that can run configure have sys/param.h. */
42ecbf5e 6727# if !HAVE_SYS_PARAM_H
252b5132
RH
6728# define HAVE_SYS_PARAM_H 1
6729# endif
6730
6731# ifdef _SC_PAGESIZE
6732# define getpagesize() sysconf(_SC_PAGESIZE)
6733# else /* no _SC_PAGESIZE */
42ecbf5e 6734# if HAVE_SYS_PARAM_H
252b5132
RH
6735# include <sys/param.h>
6736# ifdef EXEC_PAGESIZE
6737# define getpagesize() EXEC_PAGESIZE
6738# else /* no EXEC_PAGESIZE */
6739# ifdef NBPG
6740# define getpagesize() NBPG * CLSIZE
6741# ifndef CLSIZE
6742# define CLSIZE 1
6743# endif /* no CLSIZE */
6744# else /* no NBPG */
6745# ifdef NBPC
6746# define getpagesize() NBPC
6747# else /* no NBPC */
6748# ifdef PAGESIZE
6749# define getpagesize() PAGESIZE
6750# endif /* PAGESIZE */
6751# endif /* no NBPC */
6752# endif /* no NBPG */
6753# endif /* no EXEC_PAGESIZE */
6754# else /* no HAVE_SYS_PARAM_H */
6755# define getpagesize() 8192 /* punt totally */
6756# endif /* no HAVE_SYS_PARAM_H */
6757# endif /* no _SC_PAGESIZE */
6758
6759#endif /* no HAVE_GETPAGESIZE */
6760
252b5132 6761int
42ecbf5e 6762main ()
252b5132 6763{
42ecbf5e
DJ
6764 char *data, *data2, *data3;
6765 int i, pagesize;
6766 int fd;
6767
6768 pagesize = getpagesize ();
6769
6770 /* First, make a file with some known garbage in it. */
6771 data = (char *) malloc (pagesize);
6772 if (!data)
6773 exit (1);
6774 for (i = 0; i < pagesize; ++i)
6775 *(data + i) = rand ();
6776 umask (0);
6777 fd = creat ("conftest.mmap", 0600);
6778 if (fd < 0)
6779 exit (1);
6780 if (write (fd, data, pagesize) != pagesize)
6781 exit (1);
6782 close (fd);
6783
6784 /* Next, try to mmap the file at a fixed address which already has
6785 something else allocated at it. If we can, also make sure that
6786 we see the same garbage. */
6787 fd = open ("conftest.mmap", O_RDWR);
6788 if (fd < 0)
6789 exit (1);
6790 data2 = (char *) malloc (2 * pagesize);
6791 if (!data2)
6792 exit (1);
6793 data2 += (pagesize - ((long) data2 & (pagesize - 1))) & (pagesize - 1);
6794 if (data2 != mmap (data2, pagesize, PROT_READ | PROT_WRITE,
6795 MAP_PRIVATE | MAP_FIXED, fd, 0L))
6796 exit (1);
6797 for (i = 0; i < pagesize; ++i)
6798 if (*(data + i) != *(data2 + i))
6799 exit (1);
6800
6801 /* Finally, make sure that changes to the mapped area do not
6802 percolate back to the file as seen by read(). (This is a bug on
6803 some variants of i386 svr4.0.) */
6804 for (i = 0; i < pagesize; ++i)
6805 *(data2 + i) = *(data2 + i) + 1;
6806 data3 = (char *) malloc (pagesize);
6807 if (!data3)
6808 exit (1);
6809 if (read (fd, data3, pagesize) != pagesize)
6810 exit (1);
6811 for (i = 0; i < pagesize; ++i)
6812 if (*(data + i) != *(data3 + i))
6813 exit (1);
6814 close (fd);
6815 exit (0);
6816}
6817_ACEOF
6818rm -f conftest$ac_exeext
6819if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6820 (eval $ac_link) 2>&5
6821 ac_status=$?
6822 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6823 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
6824 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6825 (eval $ac_try) 2>&5
6826 ac_status=$?
6827 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6828 (exit $ac_status); }; }; then
252b5132
RH
6829 ac_cv_func_mmap_fixed_mapped=yes
6830else
42ecbf5e
DJ
6831 echo "$as_me: program exited with status $ac_status" >&5
6832echo "$as_me: failed program was:" >&5
6833sed 's/^/| /' conftest.$ac_ext >&5
6834
6835( exit $ac_status )
6836ac_cv_func_mmap_fixed_mapped=no
252b5132 6837fi
42ecbf5e 6838rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
252b5132 6839fi
252b5132 6840fi
42ecbf5e
DJ
6841echo "$as_me:$LINENO: result: $ac_cv_func_mmap_fixed_mapped" >&5
6842echo "${ECHO_T}$ac_cv_func_mmap_fixed_mapped" >&6
d15b04bd 6843if test $ac_cv_func_mmap_fixed_mapped = yes; then
42ecbf5e
DJ
6844
6845cat >>confdefs.h <<\_ACEOF
252b5132 6846#define HAVE_MMAP 1
42ecbf5e 6847_ACEOF
252b5132
RH
6848
6849fi
42ecbf5e
DJ
6850rm -f conftest.mmap
6851
6852
6853
6854
6855
6856
6857
6858
6859
e5a52504 6860
42ecbf5e
DJ
6861
6862for ac_header in argz.h limits.h locale.h nl_types.h malloc.h string.h \
252b5132
RH
6863unistd.h values.h sys/param.h
6864do
42ecbf5e
DJ
6865as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
6866if eval "test \"\${$as_ac_Header+set}\" = set"; then
6867 echo "$as_me:$LINENO: checking for $ac_header" >&5
6868echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
6869if eval "test \"\${$as_ac_Header+set}\" = set"; then
6870 echo $ECHO_N "(cached) $ECHO_C" >&6
6871fi
6872echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
6873echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
6874else
6875 # Is the header compilable?
6876echo "$as_me:$LINENO: checking $ac_header usability" >&5
6877echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
6878cat >conftest.$ac_ext <<_ACEOF
6879/* confdefs.h. */
6880_ACEOF
6881cat confdefs.h >>conftest.$ac_ext
6882cat >>conftest.$ac_ext <<_ACEOF
6883/* end confdefs.h. */
6884$ac_includes_default
6885#include <$ac_header>
6886_ACEOF
6887rm -f conftest.$ac_objext
6888if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6889 (eval $ac_compile) 2>conftest.er1
6890 ac_status=$?
6891 grep -v '^ *+' conftest.er1 >conftest.err
6892 rm -f conftest.er1
6893 cat conftest.err >&5
6894 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6895 (exit $ac_status); } &&
b7d4af3a
JW
6896 { ac_try='test -z "$ac_c_werror_flag"
6897 || test ! -s conftest.err'
42ecbf5e
DJ
6898 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6899 (eval $ac_try) 2>&5
6900 ac_status=$?
6901 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6902 (exit $ac_status); }; } &&
6903 { ac_try='test -s conftest.$ac_objext'
6904 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6905 (eval $ac_try) 2>&5
6906 ac_status=$?
6907 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6908 (exit $ac_status); }; }; then
6909 ac_header_compiler=yes
6910else
6911 echo "$as_me: failed program was:" >&5
6912sed 's/^/| /' conftest.$ac_ext >&5
6913
6914ac_header_compiler=no
6915fi
6916rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
6917echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
6918echo "${ECHO_T}$ac_header_compiler" >&6
6919
6920# Is the header present?
6921echo "$as_me:$LINENO: checking $ac_header presence" >&5
6922echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
6923cat >conftest.$ac_ext <<_ACEOF
6924/* confdefs.h. */
6925_ACEOF
6926cat confdefs.h >>conftest.$ac_ext
6927cat >>conftest.$ac_ext <<_ACEOF
6928/* end confdefs.h. */
6929#include <$ac_header>
6930_ACEOF
6931if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
6932 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
6933 ac_status=$?
6934 grep -v '^ *+' conftest.er1 >conftest.err
6935 rm -f conftest.er1
6936 cat conftest.err >&5
6937 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6938 (exit $ac_status); } >/dev/null; then
6939 if test -s conftest.err; then
6940 ac_cpp_err=$ac_c_preproc_warn_flag
6941 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
6942 else
6943 ac_cpp_err=
6944 fi
252b5132 6945else
42ecbf5e 6946 ac_cpp_err=yes
252b5132 6947fi
42ecbf5e
DJ
6948if test -z "$ac_cpp_err"; then
6949 ac_header_preproc=yes
6950else
6951 echo "$as_me: failed program was:" >&5
6952sed 's/^/| /' conftest.$ac_ext >&5
6953
6954 ac_header_preproc=no
252b5132 6955fi
42ecbf5e
DJ
6956rm -f conftest.err conftest.$ac_ext
6957echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
6958echo "${ECHO_T}$ac_header_preproc" >&6
6959
6960# So? What about this header?
6961case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
6962 yes:no: )
6963 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
6964echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
6965 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
6966echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
6967 ac_header_preproc=yes
6968 ;;
6969 no:yes:* )
6970 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
6971echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
6972 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
6973echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
6974 { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
6975echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
6976 { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5
6977echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}
6978 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
6979echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
6980 { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
6981echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
6982 (
6983 cat <<\_ASBOX
6984## ------------------------------------------ ##
6985## Report this to the AC_PACKAGE_NAME lists. ##
6986## ------------------------------------------ ##
6987_ASBOX
6988 ) |
6989 sed "s/^/$as_me: WARNING: /" >&2
6990 ;;
6991esac
6992echo "$as_me:$LINENO: checking for $ac_header" >&5
6993echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
6994if eval "test \"\${$as_ac_Header+set}\" = set"; then
6995 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 6996else
42ecbf5e
DJ
6997 eval "$as_ac_Header=\$ac_header_preproc"
6998fi
6999echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
7000echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
7001
e5a52504 7002fi
42ecbf5e
DJ
7003if test `eval echo '${'$as_ac_Header'}'` = yes; then
7004 cat >>confdefs.h <<_ACEOF
7005#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
7006_ACEOF
7007
7008fi
7009
252b5132
RH
7010done
7011
42ecbf5e
DJ
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022for ac_func in getcwd munmap putenv setenv setlocale strchr strcasecmp \
252b5132
RH
7023__argz_count __argz_stringify __argz_next
7024do
42ecbf5e
DJ
7025as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
7026echo "$as_me:$LINENO: checking for $ac_func" >&5
7027echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
7028if eval "test \"\${$as_ac_var+set}\" = set"; then
7029 echo $ECHO_N "(cached) $ECHO_C" >&6
7030else
7031 cat >conftest.$ac_ext <<_ACEOF
7032/* confdefs.h. */
7033_ACEOF
7034cat confdefs.h >>conftest.$ac_ext
7035cat >>conftest.$ac_ext <<_ACEOF
7036/* end confdefs.h. */
7037/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
7038 For example, HP-UX 11i <limits.h> declares gettimeofday. */
7039#define $ac_func innocuous_$ac_func
7040
252b5132 7041/* System header to define __stub macros and hopefully few prototypes,
42ecbf5e
DJ
7042 which can conflict with char $ac_func (); below.
7043 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
7044 <limits.h> exists even on freestanding compilers. */
d15b04bd 7045
42ecbf5e
DJ
7046#ifdef __STDC__
7047# include <limits.h>
7048#else
7049# include <assert.h>
7050#endif
d15b04bd 7051
42ecbf5e
DJ
7052#undef $ac_func
7053
7054/* Override any gcc2 internal prototype to avoid an error. */
7055#ifdef __cplusplus
7056extern "C"
7057{
7058#endif
7059/* We use char because int might match the return type of a gcc2
7060 builtin and then its argument prototype would still apply. */
7061char $ac_func ();
252b5132
RH
7062/* The GNU C library defines this for functions which it implements
7063 to always fail with ENOSYS. Some functions are actually named
7064 something starting with __ and the normal name is an alias. */
7065#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
7066choke me
7067#else
42ecbf5e
DJ
7068char (*f) () = $ac_func;
7069#endif
7070#ifdef __cplusplus
7071}
252b5132
RH
7072#endif
7073
42ecbf5e
DJ
7074int
7075main ()
7076{
7077return f != $ac_func;
7078 ;
7079 return 0;
7080}
7081_ACEOF
7082rm -f conftest.$ac_objext conftest$ac_exeext
7083if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7084 (eval $ac_link) 2>conftest.er1
7085 ac_status=$?
7086 grep -v '^ *+' conftest.er1 >conftest.err
7087 rm -f conftest.er1
7088 cat conftest.err >&5
7089 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7090 (exit $ac_status); } &&
b7d4af3a
JW
7091 { ac_try='test -z "$ac_c_werror_flag"
7092 || test ! -s conftest.err'
42ecbf5e
DJ
7093 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7094 (eval $ac_try) 2>&5
7095 ac_status=$?
7096 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7097 (exit $ac_status); }; } &&
7098 { ac_try='test -s conftest$ac_exeext'
7099 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7100 (eval $ac_try) 2>&5
7101 ac_status=$?
7102 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7103 (exit $ac_status); }; }; then
7104 eval "$as_ac_var=yes"
7105else
7106 echo "$as_me: failed program was:" >&5
7107sed 's/^/| /' conftest.$ac_ext >&5
7108
7109eval "$as_ac_var=no"
7110fi
7111rm -f conftest.err conftest.$ac_objext \
7112 conftest$ac_exeext conftest.$ac_ext
7113fi
7114echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
7115echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
7116if test `eval echo '${'$as_ac_var'}'` = yes; then
7117 cat >>confdefs.h <<_ACEOF
7118#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
7119_ACEOF
252b5132 7120
252b5132
RH
7121fi
7122done
7123
7124
7125 if test "${ac_cv_func_stpcpy+set}" != "set"; then
42ecbf5e
DJ
7126
7127for ac_func in stpcpy
252b5132 7128do
42ecbf5e
DJ
7129as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
7130echo "$as_me:$LINENO: checking for $ac_func" >&5
7131echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
7132if eval "test \"\${$as_ac_var+set}\" = set"; then
7133 echo $ECHO_N "(cached) $ECHO_C" >&6
7134else
7135 cat >conftest.$ac_ext <<_ACEOF
7136/* confdefs.h. */
7137_ACEOF
7138cat confdefs.h >>conftest.$ac_ext
7139cat >>conftest.$ac_ext <<_ACEOF
7140/* end confdefs.h. */
7141/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
7142 For example, HP-UX 11i <limits.h> declares gettimeofday. */
7143#define $ac_func innocuous_$ac_func
7144
252b5132 7145/* System header to define __stub macros and hopefully few prototypes,
42ecbf5e
DJ
7146 which can conflict with char $ac_func (); below.
7147 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
7148 <limits.h> exists even on freestanding compilers. */
d15b04bd 7149
42ecbf5e
DJ
7150#ifdef __STDC__
7151# include <limits.h>
7152#else
7153# include <assert.h>
7154#endif
d15b04bd 7155
42ecbf5e
DJ
7156#undef $ac_func
7157
7158/* Override any gcc2 internal prototype to avoid an error. */
7159#ifdef __cplusplus
7160extern "C"
7161{
7162#endif
7163/* We use char because int might match the return type of a gcc2
7164 builtin and then its argument prototype would still apply. */
7165char $ac_func ();
252b5132
RH
7166/* The GNU C library defines this for functions which it implements
7167 to always fail with ENOSYS. Some functions are actually named
7168 something starting with __ and the normal name is an alias. */
7169#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
7170choke me
7171#else
42ecbf5e
DJ
7172char (*f) () = $ac_func;
7173#endif
7174#ifdef __cplusplus
7175}
252b5132
RH
7176#endif
7177
42ecbf5e
DJ
7178int
7179main ()
7180{
7181return f != $ac_func;
7182 ;
7183 return 0;
7184}
7185_ACEOF
7186rm -f conftest.$ac_objext conftest$ac_exeext
7187if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7188 (eval $ac_link) 2>conftest.er1
7189 ac_status=$?
7190 grep -v '^ *+' conftest.er1 >conftest.err
7191 rm -f conftest.er1
7192 cat conftest.err >&5
7193 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7194 (exit $ac_status); } &&
b7d4af3a
JW
7195 { ac_try='test -z "$ac_c_werror_flag"
7196 || test ! -s conftest.err'
42ecbf5e
DJ
7197 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7198 (eval $ac_try) 2>&5
7199 ac_status=$?
7200 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7201 (exit $ac_status); }; } &&
7202 { ac_try='test -s conftest$ac_exeext'
7203 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7204 (eval $ac_try) 2>&5
7205 ac_status=$?
7206 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7207 (exit $ac_status); }; }; then
7208 eval "$as_ac_var=yes"
7209else
7210 echo "$as_me: failed program was:" >&5
7211sed 's/^/| /' conftest.$ac_ext >&5
7212
7213eval "$as_ac_var=no"
7214fi
7215rm -f conftest.err conftest.$ac_objext \
7216 conftest$ac_exeext conftest.$ac_ext
7217fi
7218echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
7219echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
7220if test `eval echo '${'$as_ac_var'}'` = yes; then
7221 cat >>confdefs.h <<_ACEOF
7222#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
7223_ACEOF
252b5132 7224
252b5132
RH
7225fi
7226done
7227
7228 fi
7229 if test "${ac_cv_func_stpcpy}" = "yes"; then
42ecbf5e
DJ
7230
7231cat >>confdefs.h <<\_ACEOF
252b5132 7232#define HAVE_STPCPY 1
42ecbf5e 7233_ACEOF
252b5132
RH
7234
7235 fi
7236
7237 if test $ac_cv_header_locale_h = yes; then
42ecbf5e
DJ
7238 echo "$as_me:$LINENO: checking for LC_MESSAGES" >&5
7239echo $ECHO_N "checking for LC_MESSAGES... $ECHO_C" >&6
7240if test "${am_cv_val_LC_MESSAGES+set}" = set; then
7241 echo $ECHO_N "(cached) $ECHO_C" >&6
7242else
7243 cat >conftest.$ac_ext <<_ACEOF
7244/* confdefs.h. */
7245_ACEOF
7246cat confdefs.h >>conftest.$ac_ext
7247cat >>conftest.$ac_ext <<_ACEOF
7248/* end confdefs.h. */
252b5132 7249#include <locale.h>
42ecbf5e
DJ
7250int
7251main ()
7252{
252b5132 7253return LC_MESSAGES
42ecbf5e
DJ
7254 ;
7255 return 0;
7256}
7257_ACEOF
7258rm -f conftest.$ac_objext conftest$ac_exeext
7259if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7260 (eval $ac_link) 2>conftest.er1
7261 ac_status=$?
7262 grep -v '^ *+' conftest.er1 >conftest.err
7263 rm -f conftest.er1
7264 cat conftest.err >&5
7265 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7266 (exit $ac_status); } &&
b7d4af3a
JW
7267 { ac_try='test -z "$ac_c_werror_flag"
7268 || test ! -s conftest.err'
42ecbf5e
DJ
7269 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7270 (eval $ac_try) 2>&5
7271 ac_status=$?
7272 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7273 (exit $ac_status); }; } &&
7274 { ac_try='test -s conftest$ac_exeext'
7275 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7276 (eval $ac_try) 2>&5
7277 ac_status=$?
7278 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7279 (exit $ac_status); }; }; then
252b5132
RH
7280 am_cv_val_LC_MESSAGES=yes
7281else
42ecbf5e
DJ
7282 echo "$as_me: failed program was:" >&5
7283sed 's/^/| /' conftest.$ac_ext >&5
7284
7285am_cv_val_LC_MESSAGES=no
252b5132 7286fi
42ecbf5e
DJ
7287rm -f conftest.err conftest.$ac_objext \
7288 conftest$ac_exeext conftest.$ac_ext
252b5132 7289fi
42ecbf5e
DJ
7290echo "$as_me:$LINENO: result: $am_cv_val_LC_MESSAGES" >&5
7291echo "${ECHO_T}$am_cv_val_LC_MESSAGES" >&6
d15b04bd 7292 if test $am_cv_val_LC_MESSAGES = yes; then
42ecbf5e
DJ
7293
7294cat >>confdefs.h <<\_ACEOF
252b5132 7295#define HAVE_LC_MESSAGES 1
42ecbf5e 7296_ACEOF
252b5132
RH
7297
7298 fi
7299 fi
42ecbf5e
DJ
7300 echo "$as_me:$LINENO: checking whether NLS is requested" >&5
7301echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6
252b5132
RH
7302 # Check whether --enable-nls or --disable-nls was given.
7303if test "${enable_nls+set}" = set; then
7304 enableval="$enable_nls"
7305 USE_NLS=$enableval
7306else
7307 USE_NLS=yes
42ecbf5e
DJ
7308fi;
7309 echo "$as_me:$LINENO: result: $USE_NLS" >&5
7310echo "${ECHO_T}$USE_NLS" >&6
252b5132 7311
252b5132
RH
7312
7313 USE_INCLUDED_LIBINTL=no
7314
7315 if test "$USE_NLS" = "yes"; then
42ecbf5e
DJ
7316 echo "$as_me:$LINENO: checking whether included gettext is requested" >&5
7317echo $ECHO_N "checking whether included gettext is requested... $ECHO_C" >&6
7318
7319# Check whether --with-included-gettext or --without-included-gettext was given.
252b5132
RH
7320if test "${with_included_gettext+set}" = set; then
7321 withval="$with_included_gettext"
7322 nls_cv_force_use_gnu_gettext=$withval
7323else
7324 nls_cv_force_use_gnu_gettext=no
42ecbf5e
DJ
7325fi;
7326 echo "$as_me:$LINENO: result: $nls_cv_force_use_gnu_gettext" >&5
7327echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6
252b5132
RH
7328
7329 nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext"
7330 if test "$nls_cv_force_use_gnu_gettext" != "yes"; then
7331 nls_cv_header_intl=
d15b04bd 7332 nls_cv_header_libgt=
c46f8c51 7333 CATOBJEXT=
e5a52504 7334
42ecbf5e
DJ
7335 if test "${ac_cv_header_libintl_h+set}" = set; then
7336 echo "$as_me:$LINENO: checking for libintl.h" >&5
7337echo $ECHO_N "checking for libintl.h... $ECHO_C" >&6
7338if test "${ac_cv_header_libintl_h+set}" = set; then
7339 echo $ECHO_N "(cached) $ECHO_C" >&6
7340fi
7341echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5
7342echo "${ECHO_T}$ac_cv_header_libintl_h" >&6
7343else
7344 # Is the header compilable?
7345echo "$as_me:$LINENO: checking libintl.h usability" >&5
7346echo $ECHO_N "checking libintl.h usability... $ECHO_C" >&6
7347cat >conftest.$ac_ext <<_ACEOF
7348/* confdefs.h. */
7349_ACEOF
7350cat confdefs.h >>conftest.$ac_ext
7351cat >>conftest.$ac_ext <<_ACEOF
7352/* end confdefs.h. */
7353$ac_includes_default
d15b04bd 7354#include <libintl.h>
42ecbf5e
DJ
7355_ACEOF
7356rm -f conftest.$ac_objext
7357if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7358 (eval $ac_compile) 2>conftest.er1
7359 ac_status=$?
7360 grep -v '^ *+' conftest.er1 >conftest.err
7361 rm -f conftest.er1
7362 cat conftest.err >&5
7363 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7364 (exit $ac_status); } &&
b7d4af3a
JW
7365 { ac_try='test -z "$ac_c_werror_flag"
7366 || test ! -s conftest.err'
42ecbf5e
DJ
7367 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7368 (eval $ac_try) 2>&5
7369 ac_status=$?
7370 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7371 (exit $ac_status); }; } &&
7372 { ac_try='test -s conftest.$ac_objext'
7373 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7374 (eval $ac_try) 2>&5
7375 ac_status=$?
7376 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7377 (exit $ac_status); }; }; then
7378 ac_header_compiler=yes
7379else
7380 echo "$as_me: failed program was:" >&5
7381sed 's/^/| /' conftest.$ac_ext >&5
7382
7383ac_header_compiler=no
7384fi
7385rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
7386echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
7387echo "${ECHO_T}$ac_header_compiler" >&6
7388
7389# Is the header present?
7390echo "$as_me:$LINENO: checking libintl.h presence" >&5
7391echo $ECHO_N "checking libintl.h presence... $ECHO_C" >&6
7392cat >conftest.$ac_ext <<_ACEOF
7393/* confdefs.h. */
7394_ACEOF
7395cat confdefs.h >>conftest.$ac_ext
7396cat >>conftest.$ac_ext <<_ACEOF
7397/* end confdefs.h. */
7398#include <libintl.h>
7399_ACEOF
7400if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
7401 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
7402 ac_status=$?
7403 grep -v '^ *+' conftest.er1 >conftest.err
7404 rm -f conftest.er1
7405 cat conftest.err >&5
7406 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7407 (exit $ac_status); } >/dev/null; then
7408 if test -s conftest.err; then
7409 ac_cpp_err=$ac_c_preproc_warn_flag
7410 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
7411 else
7412 ac_cpp_err=
7413 fi
252b5132 7414else
42ecbf5e 7415 ac_cpp_err=yes
252b5132 7416fi
42ecbf5e
DJ
7417if test -z "$ac_cpp_err"; then
7418 ac_header_preproc=yes
7419else
7420 echo "$as_me: failed program was:" >&5
7421sed 's/^/| /' conftest.$ac_ext >&5
7422
7423 ac_header_preproc=no
252b5132 7424fi
42ecbf5e
DJ
7425rm -f conftest.err conftest.$ac_ext
7426echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
7427echo "${ECHO_T}$ac_header_preproc" >&6
7428
7429# So? What about this header?
7430case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
7431 yes:no: )
7432 { echo "$as_me:$LINENO: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&5
7433echo "$as_me: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
7434 { echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the compiler's result" >&5
7435echo "$as_me: WARNING: libintl.h: proceeding with the compiler's result" >&2;}
7436 ac_header_preproc=yes
7437 ;;
7438 no:yes:* )
7439 { echo "$as_me:$LINENO: WARNING: libintl.h: present but cannot be compiled" >&5
7440echo "$as_me: WARNING: libintl.h: present but cannot be compiled" >&2;}
7441 { echo "$as_me:$LINENO: WARNING: libintl.h: check for missing prerequisite headers?" >&5
7442echo "$as_me: WARNING: libintl.h: check for missing prerequisite headers?" >&2;}
7443 { echo "$as_me:$LINENO: WARNING: libintl.h: see the Autoconf documentation" >&5
7444echo "$as_me: WARNING: libintl.h: see the Autoconf documentation" >&2;}
7445 { echo "$as_me:$LINENO: WARNING: libintl.h: section \"Present But Cannot Be Compiled\"" >&5
7446echo "$as_me: WARNING: libintl.h: section \"Present But Cannot Be Compiled\"" >&2;}
7447 { echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the preprocessor's result" >&5
7448echo "$as_me: WARNING: libintl.h: proceeding with the preprocessor's result" >&2;}
7449 { echo "$as_me:$LINENO: WARNING: libintl.h: in the future, the compiler will take precedence" >&5
7450echo "$as_me: WARNING: libintl.h: in the future, the compiler will take precedence" >&2;}
7451 (
7452 cat <<\_ASBOX
7453## ------------------------------------------ ##
7454## Report this to the AC_PACKAGE_NAME lists. ##
7455## ------------------------------------------ ##
7456_ASBOX
7457 ) |
7458 sed "s/^/$as_me: WARNING: /" >&2
7459 ;;
7460esac
7461echo "$as_me:$LINENO: checking for libintl.h" >&5
7462echo $ECHO_N "checking for libintl.h... $ECHO_C" >&6
7463if test "${ac_cv_header_libintl_h+set}" = set; then
7464 echo $ECHO_N "(cached) $ECHO_C" >&6
7465else
7466 ac_cv_header_libintl_h=$ac_header_preproc
7467fi
7468echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5
7469echo "${ECHO_T}$ac_cv_header_libintl_h" >&6
7470
7471fi
7472if test $ac_cv_header_libintl_h = yes; then
7473 echo "$as_me:$LINENO: checking for gettext in libc" >&5
7474echo $ECHO_N "checking for gettext in libc... $ECHO_C" >&6
7475if test "${gt_cv_func_gettext_libc+set}" = set; then
7476 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 7477else
42ecbf5e
DJ
7478 cat >conftest.$ac_ext <<_ACEOF
7479/* confdefs.h. */
7480_ACEOF
7481cat confdefs.h >>conftest.$ac_ext
7482cat >>conftest.$ac_ext <<_ACEOF
7483/* end confdefs.h. */
252b5132 7484#include <libintl.h>
42ecbf5e
DJ
7485int
7486main ()
7487{
252b5132 7488return (int) gettext ("")
42ecbf5e
DJ
7489 ;
7490 return 0;
7491}
7492_ACEOF
7493rm -f conftest.$ac_objext conftest$ac_exeext
7494if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7495 (eval $ac_link) 2>conftest.er1
7496 ac_status=$?
7497 grep -v '^ *+' conftest.er1 >conftest.err
7498 rm -f conftest.er1
7499 cat conftest.err >&5
7500 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7501 (exit $ac_status); } &&
b7d4af3a
JW
7502 { ac_try='test -z "$ac_c_werror_flag"
7503 || test ! -s conftest.err'
42ecbf5e
DJ
7504 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7505 (eval $ac_try) 2>&5
7506 ac_status=$?
7507 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7508 (exit $ac_status); }; } &&
7509 { ac_try='test -s conftest$ac_exeext'
7510 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7511 (eval $ac_try) 2>&5
7512 ac_status=$?
7513 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7514 (exit $ac_status); }; }; then
252b5132
RH
7515 gt_cv_func_gettext_libc=yes
7516else
42ecbf5e
DJ
7517 echo "$as_me: failed program was:" >&5
7518sed 's/^/| /' conftest.$ac_ext >&5
7519
7520gt_cv_func_gettext_libc=no
252b5132 7521fi
42ecbf5e
DJ
7522rm -f conftest.err conftest.$ac_objext \
7523 conftest$ac_exeext conftest.$ac_ext
252b5132 7524fi
42ecbf5e
DJ
7525echo "$as_me:$LINENO: result: $gt_cv_func_gettext_libc" >&5
7526echo "${ECHO_T}$gt_cv_func_gettext_libc" >&6
252b5132
RH
7527
7528 if test "$gt_cv_func_gettext_libc" != "yes"; then
42ecbf5e
DJ
7529 echo "$as_me:$LINENO: checking for bindtextdomain in -lintl" >&5
7530echo $ECHO_N "checking for bindtextdomain in -lintl... $ECHO_C" >&6
7531if test "${ac_cv_lib_intl_bindtextdomain+set}" = set; then
7532 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 7533else
42ecbf5e 7534 ac_check_lib_save_LIBS=$LIBS
252b5132 7535LIBS="-lintl $LIBS"
42ecbf5e
DJ
7536cat >conftest.$ac_ext <<_ACEOF
7537/* confdefs.h. */
7538_ACEOF
7539cat confdefs.h >>conftest.$ac_ext
7540cat >>conftest.$ac_ext <<_ACEOF
7541/* end confdefs.h. */
7542
252b5132 7543/* Override any gcc2 internal prototype to avoid an error. */
42ecbf5e
DJ
7544#ifdef __cplusplus
7545extern "C"
7546#endif
252b5132 7547/* We use char because int might match the return type of a gcc2
42ecbf5e
DJ
7548 builtin and then its argument prototype would still apply. */
7549char bindtextdomain ();
7550int
7551main ()
7552{
7553bindtextdomain ();
7554 ;
7555 return 0;
7556}
7557_ACEOF
7558rm -f conftest.$ac_objext conftest$ac_exeext
7559if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7560 (eval $ac_link) 2>conftest.er1
7561 ac_status=$?
7562 grep -v '^ *+' conftest.er1 >conftest.err
7563 rm -f conftest.er1
7564 cat conftest.err >&5
7565 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7566 (exit $ac_status); } &&
b7d4af3a
JW
7567 { ac_try='test -z "$ac_c_werror_flag"
7568 || test ! -s conftest.err'
42ecbf5e
DJ
7569 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7570 (eval $ac_try) 2>&5
7571 ac_status=$?
7572 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7573 (exit $ac_status); }; } &&
7574 { ac_try='test -s conftest$ac_exeext'
7575 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7576 (eval $ac_try) 2>&5
7577 ac_status=$?
7578 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7579 (exit $ac_status); }; }; then
7580 ac_cv_lib_intl_bindtextdomain=yes
7581else
7582 echo "$as_me: failed program was:" >&5
7583sed 's/^/| /' conftest.$ac_ext >&5
7584
7585ac_cv_lib_intl_bindtextdomain=no
7586fi
7587rm -f conftest.err conftest.$ac_objext \
7588 conftest$ac_exeext conftest.$ac_ext
7589LIBS=$ac_check_lib_save_LIBS
7590fi
7591echo "$as_me:$LINENO: result: $ac_cv_lib_intl_bindtextdomain" >&5
7592echo "${ECHO_T}$ac_cv_lib_intl_bindtextdomain" >&6
7593if test $ac_cv_lib_intl_bindtextdomain = yes; then
7594 echo "$as_me:$LINENO: checking for gettext in libintl" >&5
7595echo $ECHO_N "checking for gettext in libintl... $ECHO_C" >&6
7596if test "${gt_cv_func_gettext_libintl+set}" = set; then
7597 echo $ECHO_N "(cached) $ECHO_C" >&6
7598else
7599 cat >conftest.$ac_ext <<_ACEOF
7600/* confdefs.h. */
7601_ACEOF
7602cat confdefs.h >>conftest.$ac_ext
7603cat >>conftest.$ac_ext <<_ACEOF
7604/* end confdefs.h. */
d15b04bd 7605
42ecbf5e
DJ
7606int
7607main ()
7608{
252b5132 7609return (int) gettext ("")
42ecbf5e
DJ
7610 ;
7611 return 0;
7612}
7613_ACEOF
7614rm -f conftest.$ac_objext conftest$ac_exeext
7615if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7616 (eval $ac_link) 2>conftest.er1
7617 ac_status=$?
7618 grep -v '^ *+' conftest.er1 >conftest.err
7619 rm -f conftest.er1
7620 cat conftest.err >&5
7621 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7622 (exit $ac_status); } &&
b7d4af3a
JW
7623 { ac_try='test -z "$ac_c_werror_flag"
7624 || test ! -s conftest.err'
42ecbf5e
DJ
7625 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7626 (eval $ac_try) 2>&5
7627 ac_status=$?
7628 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7629 (exit $ac_status); }; } &&
7630 { ac_try='test -s conftest$ac_exeext'
7631 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7632 (eval $ac_try) 2>&5
7633 ac_status=$?
7634 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7635 (exit $ac_status); }; }; then
252b5132
RH
7636 gt_cv_func_gettext_libintl=yes
7637else
42ecbf5e
DJ
7638 echo "$as_me: failed program was:" >&5
7639sed 's/^/| /' conftest.$ac_ext >&5
7640
7641gt_cv_func_gettext_libintl=no
252b5132 7642fi
42ecbf5e
DJ
7643rm -f conftest.err conftest.$ac_objext \
7644 conftest$ac_exeext conftest.$ac_ext
252b5132 7645fi
42ecbf5e
DJ
7646echo "$as_me:$LINENO: result: $gt_cv_func_gettext_libintl" >&5
7647echo "${ECHO_T}$gt_cv_func_gettext_libintl" >&6
252b5132
RH
7648fi
7649
7650 fi
7651
7652 if test "$gt_cv_func_gettext_libc" = "yes" \
7653 || test "$gt_cv_func_gettext_libintl" = "yes"; then
42ecbf5e
DJ
7654
7655cat >>confdefs.h <<\_ACEOF
252b5132 7656#define HAVE_GETTEXT 1
42ecbf5e 7657_ACEOF
252b5132
RH
7658
7659 # Extract the first word of "msgfmt", so it can be a program name with args.
7660set dummy msgfmt; ac_word=$2
42ecbf5e
DJ
7661echo "$as_me:$LINENO: checking for $ac_word" >&5
7662echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7663if test "${ac_cv_path_MSGFMT+set}" = set; then
7664 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
7665else
7666 case "$MSGFMT" in
7667 /*)
7668 ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path.
7669 ;;
7670 *)
7671 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
7672 for ac_dir in $PATH; do
7673 test -z "$ac_dir" && ac_dir=.
7674 if test -f $ac_dir/$ac_word; then
7675 if test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"; then
7676 ac_cv_path_MSGFMT="$ac_dir/$ac_word"
7677 break
7678 fi
7679 fi
7680 done
7681 IFS="$ac_save_ifs"
7682 test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT="no"
7683 ;;
7684esac
7685fi
7686MSGFMT="$ac_cv_path_MSGFMT"
7687if test -n "$MSGFMT"; then
42ecbf5e
DJ
7688 echo "$as_me:$LINENO: result: $MSGFMT" >&5
7689echo "${ECHO_T}$MSGFMT" >&6
252b5132 7690else
42ecbf5e
DJ
7691 echo "$as_me:$LINENO: result: no" >&5
7692echo "${ECHO_T}no" >&6
252b5132
RH
7693fi
7694 if test "$MSGFMT" != "no"; then
42ecbf5e
DJ
7695
7696for ac_func in dcgettext
252b5132 7697do
42ecbf5e
DJ
7698as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
7699echo "$as_me:$LINENO: checking for $ac_func" >&5
7700echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
7701if eval "test \"\${$as_ac_var+set}\" = set"; then
7702 echo $ECHO_N "(cached) $ECHO_C" >&6
7703else
7704 cat >conftest.$ac_ext <<_ACEOF
7705/* confdefs.h. */
7706_ACEOF
7707cat confdefs.h >>conftest.$ac_ext
7708cat >>conftest.$ac_ext <<_ACEOF
7709/* end confdefs.h. */
7710/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
7711 For example, HP-UX 11i <limits.h> declares gettimeofday. */
7712#define $ac_func innocuous_$ac_func
7713
252b5132 7714/* System header to define __stub macros and hopefully few prototypes,
42ecbf5e
DJ
7715 which can conflict with char $ac_func (); below.
7716 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
7717 <limits.h> exists even on freestanding compilers. */
d15b04bd 7718
42ecbf5e
DJ
7719#ifdef __STDC__
7720# include <limits.h>
7721#else
7722# include <assert.h>
7723#endif
d15b04bd 7724
42ecbf5e
DJ
7725#undef $ac_func
7726
7727/* Override any gcc2 internal prototype to avoid an error. */
7728#ifdef __cplusplus
7729extern "C"
7730{
7731#endif
7732/* We use char because int might match the return type of a gcc2
7733 builtin and then its argument prototype would still apply. */
7734char $ac_func ();
252b5132
RH
7735/* The GNU C library defines this for functions which it implements
7736 to always fail with ENOSYS. Some functions are actually named
7737 something starting with __ and the normal name is an alias. */
7738#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
7739choke me
7740#else
42ecbf5e
DJ
7741char (*f) () = $ac_func;
7742#endif
7743#ifdef __cplusplus
7744}
252b5132
RH
7745#endif
7746
42ecbf5e
DJ
7747int
7748main ()
7749{
7750return f != $ac_func;
7751 ;
7752 return 0;
7753}
7754_ACEOF
7755rm -f conftest.$ac_objext conftest$ac_exeext
7756if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7757 (eval $ac_link) 2>conftest.er1
7758 ac_status=$?
7759 grep -v '^ *+' conftest.er1 >conftest.err
7760 rm -f conftest.er1
7761 cat conftest.err >&5
7762 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7763 (exit $ac_status); } &&
b7d4af3a
JW
7764 { ac_try='test -z "$ac_c_werror_flag"
7765 || test ! -s conftest.err'
42ecbf5e
DJ
7766 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7767 (eval $ac_try) 2>&5
7768 ac_status=$?
7769 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7770 (exit $ac_status); }; } &&
7771 { ac_try='test -s conftest$ac_exeext'
7772 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7773 (eval $ac_try) 2>&5
7774 ac_status=$?
7775 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7776 (exit $ac_status); }; }; then
7777 eval "$as_ac_var=yes"
7778else
7779 echo "$as_me: failed program was:" >&5
7780sed 's/^/| /' conftest.$ac_ext >&5
7781
7782eval "$as_ac_var=no"
7783fi
7784rm -f conftest.err conftest.$ac_objext \
7785 conftest$ac_exeext conftest.$ac_ext
7786fi
7787echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
7788echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
7789if test `eval echo '${'$as_ac_var'}'` = yes; then
7790 cat >>confdefs.h <<_ACEOF
7791#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
7792_ACEOF
252b5132 7793
252b5132
RH
7794fi
7795done
7796
7797 # Extract the first word of "gmsgfmt", so it can be a program name with args.
7798set dummy gmsgfmt; ac_word=$2
42ecbf5e
DJ
7799echo "$as_me:$LINENO: checking for $ac_word" >&5
7800echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7801if test "${ac_cv_path_GMSGFMT+set}" = set; then
7802 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 7803else
42ecbf5e
DJ
7804 case $GMSGFMT in
7805 [\\/]* | ?:[\\/]*)
252b5132
RH
7806 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path.
7807 ;;
252b5132 7808 *)
42ecbf5e
DJ
7809 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7810for as_dir in $PATH
7811do
7812 IFS=$as_save_IFS
7813 test -z "$as_dir" && as_dir=.
7814 for ac_exec_ext in '' $ac_executable_extensions; do
7815 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7816 ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext"
7817 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7818 break 2
7819 fi
7820done
7821done
7822
252b5132
RH
7823 test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT"
7824 ;;
7825esac
7826fi
42ecbf5e
DJ
7827GMSGFMT=$ac_cv_path_GMSGFMT
7828
252b5132 7829if test -n "$GMSGFMT"; then
42ecbf5e
DJ
7830 echo "$as_me:$LINENO: result: $GMSGFMT" >&5
7831echo "${ECHO_T}$GMSGFMT" >&6
252b5132 7832else
42ecbf5e
DJ
7833 echo "$as_me:$LINENO: result: no" >&5
7834echo "${ECHO_T}no" >&6
252b5132
RH
7835fi
7836
7837 # Extract the first word of "xgettext", so it can be a program name with args.
7838set dummy xgettext; ac_word=$2
42ecbf5e
DJ
7839echo "$as_me:$LINENO: checking for $ac_word" >&5
7840echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7841if test "${ac_cv_path_XGETTEXT+set}" = set; then
7842 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
7843else
7844 case "$XGETTEXT" in
7845 /*)
7846 ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path.
7847 ;;
7848 *)
7849 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
7850 for ac_dir in $PATH; do
7851 test -z "$ac_dir" && ac_dir=.
7852 if test -f $ac_dir/$ac_word; then
7853 if test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"; then
7854 ac_cv_path_XGETTEXT="$ac_dir/$ac_word"
7855 break
7856 fi
7857 fi
7858 done
7859 IFS="$ac_save_ifs"
7860 test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":"
7861 ;;
7862esac
7863fi
7864XGETTEXT="$ac_cv_path_XGETTEXT"
7865if test -n "$XGETTEXT"; then
42ecbf5e
DJ
7866 echo "$as_me:$LINENO: result: $XGETTEXT" >&5
7867echo "${ECHO_T}$XGETTEXT" >&6
252b5132 7868else
42ecbf5e
DJ
7869 echo "$as_me:$LINENO: result: no" >&5
7870echo "${ECHO_T}no" >&6
252b5132
RH
7871fi
7872
42ecbf5e
DJ
7873 cat >conftest.$ac_ext <<_ACEOF
7874/* confdefs.h. */
7875_ACEOF
7876cat confdefs.h >>conftest.$ac_ext
7877cat >>conftest.$ac_ext <<_ACEOF
7878/* end confdefs.h. */
252b5132 7879
42ecbf5e
DJ
7880int
7881main ()
7882{
252b5132
RH
7883extern int _nl_msg_cat_cntr;
7884 return _nl_msg_cat_cntr
42ecbf5e
DJ
7885 ;
7886 return 0;
7887}
7888_ACEOF
7889rm -f conftest.$ac_objext conftest$ac_exeext
7890if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7891 (eval $ac_link) 2>conftest.er1
7892 ac_status=$?
7893 grep -v '^ *+' conftest.er1 >conftest.err
7894 rm -f conftest.er1
7895 cat conftest.err >&5
7896 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7897 (exit $ac_status); } &&
b7d4af3a
JW
7898 { ac_try='test -z "$ac_c_werror_flag"
7899 || test ! -s conftest.err'
42ecbf5e
DJ
7900 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7901 (eval $ac_try) 2>&5
7902 ac_status=$?
7903 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7904 (exit $ac_status); }; } &&
7905 { ac_try='test -s conftest$ac_exeext'
7906 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7907 (eval $ac_try) 2>&5
7908 ac_status=$?
7909 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7910 (exit $ac_status); }; }; then
252b5132
RH
7911 CATOBJEXT=.gmo
7912 DATADIRNAME=share
7913else
42ecbf5e
DJ
7914 echo "$as_me: failed program was:" >&5
7915sed 's/^/| /' conftest.$ac_ext >&5
7916
7917CATOBJEXT=.mo
252b5132
RH
7918 DATADIRNAME=lib
7919fi
42ecbf5e
DJ
7920rm -f conftest.err conftest.$ac_objext \
7921 conftest$ac_exeext conftest.$ac_ext
252b5132
RH
7922 INSTOBJEXT=.mo
7923 fi
7924 fi
42ecbf5e 7925
252b5132
RH
7926fi
7927
7928
42ecbf5e
DJ
7929
7930
c46f8c51
AC
7931 if test x"$CATOBJEXT" = x && test -d $srcdir/../intl; then
7932 # Neither gettext nor catgets in included in the C library.
7933 # Fall back on GNU gettext library (assuming it is present).
7934 nls_cv_use_gnu_gettext=yes
252b5132
RH
7935 fi
7936 fi
7937
7938 if test "$nls_cv_use_gnu_gettext" = "yes"; then
7939 INTLOBJS="\$(GETTOBJS)"
7940 # Extract the first word of "msgfmt", so it can be a program name with args.
7941set dummy msgfmt; ac_word=$2
42ecbf5e
DJ
7942echo "$as_me:$LINENO: checking for $ac_word" >&5
7943echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7944if test "${ac_cv_path_MSGFMT+set}" = set; then
7945 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
7946else
7947 case "$MSGFMT" in
7948 /*)
7949 ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path.
7950 ;;
7951 *)
7952 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
7953 for ac_dir in $PATH; do
7954 test -z "$ac_dir" && ac_dir=.
7955 if test -f $ac_dir/$ac_word; then
7956 if test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"; then
7957 ac_cv_path_MSGFMT="$ac_dir/$ac_word"
7958 break
7959 fi
7960 fi
7961 done
7962 IFS="$ac_save_ifs"
7963 test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT="msgfmt"
7964 ;;
7965esac
7966fi
7967MSGFMT="$ac_cv_path_MSGFMT"
7968if test -n "$MSGFMT"; then
42ecbf5e
DJ
7969 echo "$as_me:$LINENO: result: $MSGFMT" >&5
7970echo "${ECHO_T}$MSGFMT" >&6
252b5132 7971else
42ecbf5e
DJ
7972 echo "$as_me:$LINENO: result: no" >&5
7973echo "${ECHO_T}no" >&6
252b5132
RH
7974fi
7975
7976 # Extract the first word of "gmsgfmt", so it can be a program name with args.
7977set dummy gmsgfmt; ac_word=$2
42ecbf5e
DJ
7978echo "$as_me:$LINENO: checking for $ac_word" >&5
7979echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
7980if test "${ac_cv_path_GMSGFMT+set}" = set; then
7981 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 7982else
42ecbf5e
DJ
7983 case $GMSGFMT in
7984 [\\/]* | ?:[\\/]*)
252b5132
RH
7985 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path.
7986 ;;
252b5132 7987 *)
42ecbf5e
DJ
7988 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7989for as_dir in $PATH
7990do
7991 IFS=$as_save_IFS
7992 test -z "$as_dir" && as_dir=.
7993 for ac_exec_ext in '' $ac_executable_extensions; do
7994 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
7995 ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext"
7996 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
7997 break 2
7998 fi
7999done
8000done
8001
252b5132
RH
8002 test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT"
8003 ;;
8004esac
8005fi
42ecbf5e
DJ
8006GMSGFMT=$ac_cv_path_GMSGFMT
8007
252b5132 8008if test -n "$GMSGFMT"; then
42ecbf5e
DJ
8009 echo "$as_me:$LINENO: result: $GMSGFMT" >&5
8010echo "${ECHO_T}$GMSGFMT" >&6
252b5132 8011else
42ecbf5e
DJ
8012 echo "$as_me:$LINENO: result: no" >&5
8013echo "${ECHO_T}no" >&6
252b5132
RH
8014fi
8015
8016 # Extract the first word of "xgettext", so it can be a program name with args.
8017set dummy xgettext; ac_word=$2
42ecbf5e
DJ
8018echo "$as_me:$LINENO: checking for $ac_word" >&5
8019echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8020if test "${ac_cv_path_XGETTEXT+set}" = set; then
8021 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
8022else
8023 case "$XGETTEXT" in
8024 /*)
8025 ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path.
8026 ;;
8027 *)
8028 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
8029 for ac_dir in $PATH; do
8030 test -z "$ac_dir" && ac_dir=.
8031 if test -f $ac_dir/$ac_word; then
8032 if test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"; then
8033 ac_cv_path_XGETTEXT="$ac_dir/$ac_word"
8034 break
8035 fi
8036 fi
8037 done
8038 IFS="$ac_save_ifs"
8039 test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":"
8040 ;;
8041esac
8042fi
8043XGETTEXT="$ac_cv_path_XGETTEXT"
8044if test -n "$XGETTEXT"; then
42ecbf5e
DJ
8045 echo "$as_me:$LINENO: result: $XGETTEXT" >&5
8046echo "${ECHO_T}$XGETTEXT" >&6
252b5132 8047else
42ecbf5e
DJ
8048 echo "$as_me:$LINENO: result: no" >&5
8049echo "${ECHO_T}no" >&6
252b5132
RH
8050fi
8051
42ecbf5e 8052
252b5132
RH
8053 USE_INCLUDED_LIBINTL=yes
8054 CATOBJEXT=.gmo
8055 INSTOBJEXT=.mo
8056 DATADIRNAME=share
8057 INTLDEPS='$(top_builddir)/../intl/libintl.a'
8058 INTLLIBS=$INTLDEPS
8059 LIBS=`echo $LIBS | sed -e 's/-lintl//'`
8060 nls_cv_header_intl=libintl.h
8061 nls_cv_header_libgt=libgettext.h
8062 fi
8063
8064 if test "$XGETTEXT" != ":"; then
8065 if $XGETTEXT --omit-header /dev/null 2> /dev/null; then
8066 : ;
8067 else
42ecbf5e
DJ
8068 echo "$as_me:$LINENO: result: found xgettext programs is not GNU xgettext; ignore it" >&5
8069echo "${ECHO_T}found xgettext programs is not GNU xgettext; ignore it" >&6
252b5132
RH
8070 XGETTEXT=":"
8071 fi
8072 fi
8073
8074 # We need to process the po/ directory.
8075 POSUB=po
8076 else
8077 DATADIRNAME=share
8078 nls_cv_header_intl=libintl.h
8079 nls_cv_header_libgt=libgettext.h
8080 fi
8081
8082 # If this is used in GNU gettext we have to set USE_NLS to `yes'
8083 # because some of the sources are only built for this goal.
8084 if test "$PACKAGE" = gettext; then
8085 USE_NLS=yes
8086 USE_INCLUDED_LIBINTL=yes
8087 fi
8088
42ecbf5e
DJ
8089 for lang in $ALL_LINGUAS; do
8090 GMOFILES="$GMOFILES $lang.gmo"
8091 POFILES="$POFILES $lang.po"
8092 done
8093
8094
8095
8096
8097
8098
8099
8100
8101
8102
8103
252b5132 8104
c46f8c51 8105 if test "x$CATOBJEXT" != "x"; then
42ecbf5e
DJ
8106
8107cat >>confdefs.h <<\_ACEOF
c46f8c51 8108#define ENABLE_NLS 1
42ecbf5e 8109_ACEOF
c46f8c51
AC
8110
8111 fi
42ecbf5e 8112
252b5132
RH
8113
8114 if test "x$CATOBJEXT" != "x"; then
8115 if test "x$ALL_LINGUAS" = "x"; then
8116 LINGUAS=
8117 else
42ecbf5e
DJ
8118 echo "$as_me:$LINENO: checking for catalogs to be installed" >&5
8119echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6
252b5132
RH
8120 NEW_LINGUAS=
8121 for lang in ${LINGUAS=$ALL_LINGUAS}; do
8122 case "$ALL_LINGUAS" in
8123 *$lang*) NEW_LINGUAS="$NEW_LINGUAS $lang" ;;
8124 esac
8125 done
8126 LINGUAS=$NEW_LINGUAS
42ecbf5e
DJ
8127 echo "$as_me:$LINENO: result: $LINGUAS" >&5
8128echo "${ECHO_T}$LINGUAS" >&6
252b5132
RH
8129 fi
8130
8131 if test -n "$LINGUAS"; then
8132 for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done
8133 fi
8134 fi
8135
8136 if test $ac_cv_header_locale_h = yes; then
8137 INCLUDE_LOCALE_H="#include <locale.h>"
8138 else
8139 INCLUDE_LOCALE_H="\
8140/* The system does not provide the header <locale.h>. Take care yourself. */"
8141 fi
42ecbf5e 8142
252b5132
RH
8143
8144 if test -f $srcdir/po2tbl.sed.in; then
8145 if test "$CATOBJEXT" = ".cat"; then
42ecbf5e
DJ
8146 if test "${ac_cv_header_linux_version_h+set}" = set; then
8147 echo "$as_me:$LINENO: checking for linux/version.h" >&5
8148echo $ECHO_N "checking for linux/version.h... $ECHO_C" >&6
8149if test "${ac_cv_header_linux_version_h+set}" = set; then
8150 echo $ECHO_N "(cached) $ECHO_C" >&6
8151fi
8152echo "$as_me:$LINENO: result: $ac_cv_header_linux_version_h" >&5
8153echo "${ECHO_T}$ac_cv_header_linux_version_h" >&6
8154else
8155 # Is the header compilable?
8156echo "$as_me:$LINENO: checking linux/version.h usability" >&5
8157echo $ECHO_N "checking linux/version.h usability... $ECHO_C" >&6
8158cat >conftest.$ac_ext <<_ACEOF
8159/* confdefs.h. */
8160_ACEOF
8161cat confdefs.h >>conftest.$ac_ext
8162cat >>conftest.$ac_ext <<_ACEOF
8163/* end confdefs.h. */
8164$ac_includes_default
e5a52504 8165#include <linux/version.h>
42ecbf5e
DJ
8166_ACEOF
8167rm -f conftest.$ac_objext
8168if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
8169 (eval $ac_compile) 2>conftest.er1
8170 ac_status=$?
8171 grep -v '^ *+' conftest.er1 >conftest.err
8172 rm -f conftest.er1
8173 cat conftest.err >&5
8174 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8175 (exit $ac_status); } &&
b7d4af3a
JW
8176 { ac_try='test -z "$ac_c_werror_flag"
8177 || test ! -s conftest.err'
42ecbf5e
DJ
8178 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8179 (eval $ac_try) 2>&5
8180 ac_status=$?
8181 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8182 (exit $ac_status); }; } &&
8183 { ac_try='test -s conftest.$ac_objext'
8184 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8185 (eval $ac_try) 2>&5
8186 ac_status=$?
8187 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8188 (exit $ac_status); }; }; then
8189 ac_header_compiler=yes
8190else
8191 echo "$as_me: failed program was:" >&5
8192sed 's/^/| /' conftest.$ac_ext >&5
8193
8194ac_header_compiler=no
8195fi
8196rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
8197echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
8198echo "${ECHO_T}$ac_header_compiler" >&6
8199
8200# Is the header present?
8201echo "$as_me:$LINENO: checking linux/version.h presence" >&5
8202echo $ECHO_N "checking linux/version.h presence... $ECHO_C" >&6
8203cat >conftest.$ac_ext <<_ACEOF
8204/* confdefs.h. */
8205_ACEOF
8206cat confdefs.h >>conftest.$ac_ext
8207cat >>conftest.$ac_ext <<_ACEOF
8208/* end confdefs.h. */
8209#include <linux/version.h>
8210_ACEOF
8211if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
8212 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
8213 ac_status=$?
8214 grep -v '^ *+' conftest.er1 >conftest.err
8215 rm -f conftest.er1
8216 cat conftest.err >&5
8217 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8218 (exit $ac_status); } >/dev/null; then
8219 if test -s conftest.err; then
8220 ac_cpp_err=$ac_c_preproc_warn_flag
8221 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
8222 else
8223 ac_cpp_err=
8224 fi
e5a52504 8225else
42ecbf5e 8226 ac_cpp_err=yes
e5a52504 8227fi
42ecbf5e
DJ
8228if test -z "$ac_cpp_err"; then
8229 ac_header_preproc=yes
8230else
8231 echo "$as_me: failed program was:" >&5
8232sed 's/^/| /' conftest.$ac_ext >&5
8233
8234 ac_header_preproc=no
8235fi
8236rm -f conftest.err conftest.$ac_ext
8237echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
8238echo "${ECHO_T}$ac_header_preproc" >&6
8239
8240# So? What about this header?
8241case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
8242 yes:no: )
8243 { echo "$as_me:$LINENO: WARNING: linux/version.h: accepted by the compiler, rejected by the preprocessor!" >&5
8244echo "$as_me: WARNING: linux/version.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
8245 { echo "$as_me:$LINENO: WARNING: linux/version.h: proceeding with the compiler's result" >&5
8246echo "$as_me: WARNING: linux/version.h: proceeding with the compiler's result" >&2;}
8247 ac_header_preproc=yes
8248 ;;
8249 no:yes:* )
8250 { echo "$as_me:$LINENO: WARNING: linux/version.h: present but cannot be compiled" >&5
8251echo "$as_me: WARNING: linux/version.h: present but cannot be compiled" >&2;}
8252 { echo "$as_me:$LINENO: WARNING: linux/version.h: check for missing prerequisite headers?" >&5
8253echo "$as_me: WARNING: linux/version.h: check for missing prerequisite headers?" >&2;}
8254 { echo "$as_me:$LINENO: WARNING: linux/version.h: see the Autoconf documentation" >&5
8255echo "$as_me: WARNING: linux/version.h: see the Autoconf documentation" >&2;}
8256 { echo "$as_me:$LINENO: WARNING: linux/version.h: section \"Present But Cannot Be Compiled\"" >&5
8257echo "$as_me: WARNING: linux/version.h: section \"Present But Cannot Be Compiled\"" >&2;}
8258 { echo "$as_me:$LINENO: WARNING: linux/version.h: proceeding with the preprocessor's result" >&5
8259echo "$as_me: WARNING: linux/version.h: proceeding with the preprocessor's result" >&2;}
8260 { echo "$as_me:$LINENO: WARNING: linux/version.h: in the future, the compiler will take precedence" >&5
8261echo "$as_me: WARNING: linux/version.h: in the future, the compiler will take precedence" >&2;}
8262 (
8263 cat <<\_ASBOX
8264## ------------------------------------------ ##
8265## Report this to the AC_PACKAGE_NAME lists. ##
8266## ------------------------------------------ ##
8267_ASBOX
8268 ) |
8269 sed "s/^/$as_me: WARNING: /" >&2
8270 ;;
8271esac
8272echo "$as_me:$LINENO: checking for linux/version.h" >&5
8273echo $ECHO_N "checking for linux/version.h... $ECHO_C" >&6
8274if test "${ac_cv_header_linux_version_h+set}" = set; then
8275 echo $ECHO_N "(cached) $ECHO_C" >&6
8276else
8277 ac_cv_header_linux_version_h=$ac_header_preproc
e5a52504 8278fi
42ecbf5e
DJ
8279echo "$as_me:$LINENO: result: $ac_cv_header_linux_version_h" >&5
8280echo "${ECHO_T}$ac_cv_header_linux_version_h" >&6
8281
8282fi
8283if test $ac_cv_header_linux_version_h = yes; then
252b5132
RH
8284 msgformat=linux
8285else
42ecbf5e 8286 msgformat=xopen
252b5132
RH
8287fi
8288
8289
42ecbf5e 8290
252b5132
RH
8291 sed -e '/^#/d' $srcdir/$msgformat-msg.sed > po2msg.sed
8292 fi
8293 sed -e '/^#.*[^\\]$/d' -e '/^#$/d' \
8294 $srcdir/po2tbl.sed.in > po2tbl.sed
8295 fi
8296
8297 if test "$PACKAGE" = "gettext"; then
8298 GT_NO="#NO#"
8299 GT_YES=
8300 else
8301 GT_NO=
8302 GT_YES="#YES#"
8303 fi
42ecbf5e
DJ
8304
8305
252b5132
RH
8306
8307 MKINSTALLDIRS="\$(srcdir)/../../mkinstalldirs"
42ecbf5e 8308
252b5132
RH
8309
8310 l=
42ecbf5e 8311
252b5132 8312
fcd8210c 8313 if test -f $srcdir/po/POTFILES.in; then
252b5132
RH
8314 test -d po || mkdir po
8315 if test "x$srcdir" != "x."; then
8316 if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then
8317 posrcprefix="$srcdir/"
8318 else
8319 posrcprefix="../$srcdir/"
8320 fi
8321 else
8322 posrcprefix="../"
8323 fi
8324 rm -f po/POTFILES
8325 sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \
8326 < $srcdir/po/POTFILES.in > po/POTFILES
8327 fi
252b5132 8328
42ecbf5e
DJ
8329
8330echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5
8331echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6
252b5132
RH
8332 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
8333if test "${enable_maintainer_mode+set}" = set; then
8334 enableval="$enable_maintainer_mode"
8335 USE_MAINTAINER_MODE=$enableval
8336else
8337 USE_MAINTAINER_MODE=no
42ecbf5e
DJ
8338fi;
8339 echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5
8340echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6
252b5132 8341
252b5132
RH
8342
8343if test $USE_MAINTAINER_MODE = yes; then
8344 MAINTAINER_MODE_TRUE=
8345 MAINTAINER_MODE_FALSE='#'
8346else
8347 MAINTAINER_MODE_TRUE='#'
8348 MAINTAINER_MODE_FALSE=
8349fi
252b5132 8350
42ecbf5e 8351 MAINT=$MAINTAINER_MODE_TRUE
252b5132 8352
d15b04bd 8353
e5a52504 8354
d15b04bd 8355if test -n "$EXEEXT"; then
42ecbf5e
DJ
8356
8357cat >>confdefs.h <<\_ACEOF
2481e6a2 8358#define HAVE_EXECUTABLE_SUFFIX 1
42ecbf5e 8359_ACEOF
2481e6a2
ILT
8360
8361fi
42ecbf5e
DJ
8362
8363cat >>confdefs.h <<_ACEOF
bb0cb4db 8364#define EXECUTABLE_SUFFIX "${EXEEXT}"
42ecbf5e 8365_ACEOF
bb0cb4db 8366
252b5132
RH
8367
8368# host-specific stuff:
8369
8370HDEFINES=
8371
8372. ${srcdir}/../bfd/configure.host
8373
8374
8375AR=${AR-ar}
8376
42ecbf5e
DJ
8377if test -n "$ac_tool_prefix"; then
8378 # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
8379set dummy ${ac_tool_prefix}ranlib; ac_word=$2
8380echo "$as_me:$LINENO: checking for $ac_word" >&5
8381echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8382if test "${ac_cv_prog_RANLIB+set}" = set; then
8383 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
8384else
8385 if test -n "$RANLIB"; then
8386 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
8387else
42ecbf5e
DJ
8388as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8389for as_dir in $PATH
8390do
8391 IFS=$as_save_IFS
8392 test -z "$as_dir" && as_dir=.
8393 for ac_exec_ext in '' $ac_executable_extensions; do
8394 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
8395 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
8396 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8397 break 2
8398 fi
8399done
8400done
8401
252b5132
RH
8402fi
8403fi
42ecbf5e 8404RANLIB=$ac_cv_prog_RANLIB
252b5132 8405if test -n "$RANLIB"; then
42ecbf5e
DJ
8406 echo "$as_me:$LINENO: result: $RANLIB" >&5
8407echo "${ECHO_T}$RANLIB" >&6
8408else
8409 echo "$as_me:$LINENO: result: no" >&5
8410echo "${ECHO_T}no" >&6
8411fi
8412
8413fi
8414if test -z "$ac_cv_prog_RANLIB"; then
8415 ac_ct_RANLIB=$RANLIB
8416 # Extract the first word of "ranlib", so it can be a program name with args.
8417set dummy ranlib; ac_word=$2
8418echo "$as_me:$LINENO: checking for $ac_word" >&5
8419echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8420if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
8421 echo $ECHO_N "(cached) $ECHO_C" >&6
8422else
8423 if test -n "$ac_ct_RANLIB"; then
8424 ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
8425else
8426as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8427for as_dir in $PATH
8428do
8429 IFS=$as_save_IFS
8430 test -z "$as_dir" && as_dir=.
8431 for ac_exec_ext in '' $ac_executable_extensions; do
8432 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
8433 ac_cv_prog_ac_ct_RANLIB="ranlib"
8434 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
8435 break 2
8436 fi
8437done
8438done
8439
8440 test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":"
8441fi
8442fi
8443ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
8444if test -n "$ac_ct_RANLIB"; then
8445 echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
8446echo "${ECHO_T}$ac_ct_RANLIB" >&6
8447else
8448 echo "$as_me:$LINENO: result: no" >&5
8449echo "${ECHO_T}no" >&6
8450fi
8451
8452 RANLIB=$ac_ct_RANLIB
252b5132 8453else
42ecbf5e 8454 RANLIB="$ac_cv_prog_RANLIB"
252b5132
RH
8455fi
8456
8457# Find a good install program. We prefer a C program (faster),
8458# so one script is as good as another. But avoid the broken or
8459# incompatible versions:
8460# SysV /etc/install, /usr/sbin/install
8461# SunOS /usr/etc/install
8462# IRIX /sbin/install
8463# AIX /bin/install
42ecbf5e 8464# AmigaOS /C/install, which installs bootblocks on floppy discs
252b5132
RH
8465# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
8466# AFS /usr/afsws/bin/install, which mishandles nonexistent args
8467# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
42ecbf5e 8468# OS/2's system install, which has a completely different semantic
252b5132 8469# ./install, which can be erroneously created by make from ./install.sh.
42ecbf5e
DJ
8470echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
8471echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
252b5132 8472if test -z "$INSTALL"; then
42ecbf5e
DJ
8473if test "${ac_cv_path_install+set}" = set; then
8474 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 8475else
42ecbf5e
DJ
8476 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8477for as_dir in $PATH
8478do
8479 IFS=$as_save_IFS
8480 test -z "$as_dir" && as_dir=.
8481 # Account for people who put trailing slashes in PATH elements.
8482case $as_dir/ in
8483 ./ | .// | /cC/* | \
8484 /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
8485 ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \
8486 /usr/ucb/* ) ;;
8487 *)
8488 # OSF1 and SCO ODT 3.0 have their own names for install.
8489 # Don't use installbsd from OSF since it installs stuff as root
8490 # by default.
8491 for ac_prog in ginstall scoinst install; do
8492 for ac_exec_ext in '' $ac_executable_extensions; do
8493 if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
252b5132 8494 if test $ac_prog = install &&
42ecbf5e 8495 grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
252b5132
RH
8496 # AIX install. It has an incompatible calling convention.
8497 :
42ecbf5e
DJ
8498 elif test $ac_prog = install &&
8499 grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
8500 # program-specific install script used by HP pwplus--don't use.
8501 :
252b5132 8502 else
42ecbf5e
DJ
8503 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
8504 break 3
252b5132
RH
8505 fi
8506 fi
8507 done
42ecbf5e
DJ
8508 done
8509 ;;
8510esac
8511done
8512
252b5132
RH
8513
8514fi
8515 if test "${ac_cv_path_install+set}" = set; then
42ecbf5e 8516 INSTALL=$ac_cv_path_install
252b5132
RH
8517 else
8518 # As a last resort, use the slow shell script. We don't cache a
8519 # path for INSTALL within a source directory, because that will
8520 # break other packages using the cache if that directory is
8521 # removed, or if the path is relative.
42ecbf5e 8522 INSTALL=$ac_install_sh
252b5132
RH
8523 fi
8524fi
42ecbf5e
DJ
8525echo "$as_me:$LINENO: result: $INSTALL" >&5
8526echo "${ECHO_T}$INSTALL" >&6
252b5132
RH
8527
8528# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
8529# It thinks the first close brace ends the variable substitution.
8530test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
8531
42ecbf5e 8532test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
252b5132
RH
8533
8534test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
8535
8536
8537# Put a plausible default for CC_FOR_BUILD in Makefile.
8538if test -z "$CC_FOR_BUILD"; then
8539 if test "x$cross_compiling" = "xno"; then
8540 CC_FOR_BUILD='$(CC)'
8541 else
8542 CC_FOR_BUILD=gcc
8543 fi
8544fi
8545
8546# Also set EXEEXT_FOR_BUILD.
8547if test "x$cross_compiling" = "xno"; then
8548 EXEEXT_FOR_BUILD='$(EXEEXT)'
8549else
42ecbf5e
DJ
8550 echo "$as_me:$LINENO: checking for build system executable suffix" >&5
8551echo $ECHO_N "checking for build system executable suffix... $ECHO_C" >&6
8552if test "${bfd_cv_build_exeext+set}" = set; then
8553 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 8554else
7a7b06ef
ILT
8555 rm -f conftest*
8556 echo 'int main () { return 0; }' > conftest.c
8557 bfd_cv_build_exeext=
8558 ${CC_FOR_BUILD} -o conftest conftest.c 1>&5 2>&5
8559 for file in conftest.*; do
8560 case $file in
8561 *.c | *.o | *.obj | *.ilk | *.pdb) ;;
8562 *) bfd_cv_build_exeext=`echo $file | sed -e s/conftest//` ;;
8563 esac
8564 done
8565 rm -f conftest*
8566 test x"${bfd_cv_build_exeext}" = x && bfd_cv_build_exeext=no
252b5132 8567fi
42ecbf5e
DJ
8568echo "$as_me:$LINENO: result: $bfd_cv_build_exeext" >&5
8569echo "${ECHO_T}$bfd_cv_build_exeext" >&6
252b5132
RH
8570 EXEEXT_FOR_BUILD=""
8571 test x"${bfd_cv_build_exeext}" != xno && EXEEXT_FOR_BUILD=${bfd_cv_build_exeext}
8572fi
8573
8574
8a965946
ILT
8575DEMANGLER_NAME=c++filt
8576case "${host}" in
8577 *-*-go32* | *-*-msdos*)
8578 DEMANGLER_NAME=cxxfilt
8579esac
8580
8581
42ecbf5e
DJ
8582
8583
8584
8585
8586
8587
8588for ac_header in string.h strings.h stdlib.h unistd.h fcntl.h sys/file.h
252b5132 8589do
42ecbf5e
DJ
8590as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
8591if eval "test \"\${$as_ac_Header+set}\" = set"; then
8592 echo "$as_me:$LINENO: checking for $ac_header" >&5
8593echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
8594if eval "test \"\${$as_ac_Header+set}\" = set"; then
8595 echo $ECHO_N "(cached) $ECHO_C" >&6
8596fi
8597echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
8598echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
8599else
8600 # Is the header compilable?
8601echo "$as_me:$LINENO: checking $ac_header usability" >&5
8602echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
8603cat >conftest.$ac_ext <<_ACEOF
8604/* confdefs.h. */
8605_ACEOF
8606cat confdefs.h >>conftest.$ac_ext
8607cat >>conftest.$ac_ext <<_ACEOF
8608/* end confdefs.h. */
8609$ac_includes_default
8610#include <$ac_header>
8611_ACEOF
8612rm -f conftest.$ac_objext
8613if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
8614 (eval $ac_compile) 2>conftest.er1
8615 ac_status=$?
8616 grep -v '^ *+' conftest.er1 >conftest.err
8617 rm -f conftest.er1
8618 cat conftest.err >&5
8619 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8620 (exit $ac_status); } &&
b7d4af3a
JW
8621 { ac_try='test -z "$ac_c_werror_flag"
8622 || test ! -s conftest.err'
42ecbf5e
DJ
8623 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8624 (eval $ac_try) 2>&5
8625 ac_status=$?
8626 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8627 (exit $ac_status); }; } &&
8628 { ac_try='test -s conftest.$ac_objext'
8629 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8630 (eval $ac_try) 2>&5
8631 ac_status=$?
8632 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8633 (exit $ac_status); }; }; then
8634 ac_header_compiler=yes
8635else
8636 echo "$as_me: failed program was:" >&5
8637sed 's/^/| /' conftest.$ac_ext >&5
8638
8639ac_header_compiler=no
8640fi
8641rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
8642echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
8643echo "${ECHO_T}$ac_header_compiler" >&6
8644
8645# Is the header present?
8646echo "$as_me:$LINENO: checking $ac_header presence" >&5
8647echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
8648cat >conftest.$ac_ext <<_ACEOF
8649/* confdefs.h. */
8650_ACEOF
8651cat confdefs.h >>conftest.$ac_ext
8652cat >>conftest.$ac_ext <<_ACEOF
8653/* end confdefs.h. */
8654#include <$ac_header>
8655_ACEOF
8656if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
8657 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
8658 ac_status=$?
8659 grep -v '^ *+' conftest.er1 >conftest.err
8660 rm -f conftest.er1
8661 cat conftest.err >&5
8662 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8663 (exit $ac_status); } >/dev/null; then
8664 if test -s conftest.err; then
8665 ac_cpp_err=$ac_c_preproc_warn_flag
8666 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
8667 else
8668 ac_cpp_err=
8669 fi
252b5132 8670else
42ecbf5e 8671 ac_cpp_err=yes
252b5132 8672fi
42ecbf5e
DJ
8673if test -z "$ac_cpp_err"; then
8674 ac_header_preproc=yes
8675else
8676 echo "$as_me: failed program was:" >&5
8677sed 's/^/| /' conftest.$ac_ext >&5
8678
8679 ac_header_preproc=no
252b5132 8680fi
42ecbf5e
DJ
8681rm -f conftest.err conftest.$ac_ext
8682echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
8683echo "${ECHO_T}$ac_header_preproc" >&6
8684
8685# So? What about this header?
8686case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
8687 yes:no: )
8688 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
8689echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
8690 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
8691echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
8692 ac_header_preproc=yes
8693 ;;
8694 no:yes:* )
8695 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
8696echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
8697 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
8698echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
8699 { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
8700echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
8701 { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5
8702echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}
8703 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
8704echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
8705 { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
8706echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
8707 (
8708 cat <<\_ASBOX
8709## ------------------------------------------ ##
8710## Report this to the AC_PACKAGE_NAME lists. ##
8711## ------------------------------------------ ##
8712_ASBOX
8713 ) |
8714 sed "s/^/$as_me: WARNING: /" >&2
8715 ;;
8716esac
8717echo "$as_me:$LINENO: checking for $ac_header" >&5
8718echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
8719if eval "test \"\${$as_ac_Header+set}\" = set"; then
8720 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 8721else
42ecbf5e
DJ
8722 eval "$as_ac_Header=\$ac_header_preproc"
8723fi
8724echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
8725echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
8726
252b5132 8727fi
42ecbf5e
DJ
8728if test `eval echo '${'$as_ac_Header'}'` = yes; then
8729 cat >>confdefs.h <<_ACEOF
8730#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
8731_ACEOF
8732
8733fi
8734
252b5132
RH
8735done
8736
42ecbf5e
DJ
8737echo "$as_me:$LINENO: checking for sys/wait.h that is POSIX.1 compatible" >&5
8738echo $ECHO_N "checking for sys/wait.h that is POSIX.1 compatible... $ECHO_C" >&6
8739if test "${ac_cv_header_sys_wait_h+set}" = set; then
8740 echo $ECHO_N "(cached) $ECHO_C" >&6
8741else
8742 cat >conftest.$ac_ext <<_ACEOF
8743/* confdefs.h. */
8744_ACEOF
8745cat confdefs.h >>conftest.$ac_ext
8746cat >>conftest.$ac_ext <<_ACEOF
8747/* end confdefs.h. */
252b5132
RH
8748#include <sys/types.h>
8749#include <sys/wait.h>
8750#ifndef WEXITSTATUS
42ecbf5e 8751# define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
252b5132
RH
8752#endif
8753#ifndef WIFEXITED
42ecbf5e 8754# define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
252b5132 8755#endif
42ecbf5e
DJ
8756
8757int
8758main ()
8759{
8760 int s;
8761 wait (&s);
8762 s = WIFEXITED (s) ? WEXITSTATUS (s) : 1;
8763 ;
8764 return 0;
8765}
8766_ACEOF
8767rm -f conftest.$ac_objext
8768if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
8769 (eval $ac_compile) 2>conftest.er1
8770 ac_status=$?
8771 grep -v '^ *+' conftest.er1 >conftest.err
8772 rm -f conftest.er1
8773 cat conftest.err >&5
8774 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8775 (exit $ac_status); } &&
b7d4af3a
JW
8776 { ac_try='test -z "$ac_c_werror_flag"
8777 || test ! -s conftest.err'
42ecbf5e
DJ
8778 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8779 (eval $ac_try) 2>&5
8780 ac_status=$?
8781 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8782 (exit $ac_status); }; } &&
8783 { ac_try='test -s conftest.$ac_objext'
8784 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8785 (eval $ac_try) 2>&5
8786 ac_status=$?
8787 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8788 (exit $ac_status); }; }; then
252b5132
RH
8789 ac_cv_header_sys_wait_h=yes
8790else
42ecbf5e
DJ
8791 echo "$as_me: failed program was:" >&5
8792sed 's/^/| /' conftest.$ac_ext >&5
8793
8794ac_cv_header_sys_wait_h=no
252b5132 8795fi
42ecbf5e 8796rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132 8797fi
42ecbf5e
DJ
8798echo "$as_me:$LINENO: result: $ac_cv_header_sys_wait_h" >&5
8799echo "${ECHO_T}$ac_cv_header_sys_wait_h" >&6
d15b04bd 8800if test $ac_cv_header_sys_wait_h = yes; then
42ecbf5e
DJ
8801
8802cat >>confdefs.h <<\_ACEOF
252b5132 8803#define HAVE_SYS_WAIT_H 1
42ecbf5e 8804_ACEOF
252b5132
RH
8805
8806fi
8807
8808# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
8809# for constant arguments. Useless!
42ecbf5e
DJ
8810echo "$as_me:$LINENO: checking for working alloca.h" >&5
8811echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6
8812if test "${ac_cv_working_alloca_h+set}" = set; then
8813 echo $ECHO_N "(cached) $ECHO_C" >&6
8814else
8815 cat >conftest.$ac_ext <<_ACEOF
8816/* confdefs.h. */
8817_ACEOF
8818cat confdefs.h >>conftest.$ac_ext
8819cat >>conftest.$ac_ext <<_ACEOF
8820/* end confdefs.h. */
252b5132 8821#include <alloca.h>
42ecbf5e
DJ
8822int
8823main ()
8824{
8825char *p = (char *) alloca (2 * sizeof (int));
8826 ;
8827 return 0;
8828}
8829_ACEOF
8830rm -f conftest.$ac_objext conftest$ac_exeext
8831if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8832 (eval $ac_link) 2>conftest.er1
8833 ac_status=$?
8834 grep -v '^ *+' conftest.er1 >conftest.err
8835 rm -f conftest.er1
8836 cat conftest.err >&5
8837 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8838 (exit $ac_status); } &&
b7d4af3a
JW
8839 { ac_try='test -z "$ac_c_werror_flag"
8840 || test ! -s conftest.err'
42ecbf5e
DJ
8841 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8842 (eval $ac_try) 2>&5
8843 ac_status=$?
8844 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8845 (exit $ac_status); }; } &&
8846 { ac_try='test -s conftest$ac_exeext'
8847 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8848 (eval $ac_try) 2>&5
8849 ac_status=$?
8850 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8851 (exit $ac_status); }; }; then
8852 ac_cv_working_alloca_h=yes
8853else
8854 echo "$as_me: failed program was:" >&5
8855sed 's/^/| /' conftest.$ac_ext >&5
8856
8857ac_cv_working_alloca_h=no
8858fi
8859rm -f conftest.err conftest.$ac_objext \
8860 conftest$ac_exeext conftest.$ac_ext
8861fi
8862echo "$as_me:$LINENO: result: $ac_cv_working_alloca_h" >&5
8863echo "${ECHO_T}$ac_cv_working_alloca_h" >&6
8864if test $ac_cv_working_alloca_h = yes; then
8865
8866cat >>confdefs.h <<\_ACEOF
252b5132 8867#define HAVE_ALLOCA_H 1
42ecbf5e 8868_ACEOF
252b5132
RH
8869
8870fi
8871
42ecbf5e
DJ
8872echo "$as_me:$LINENO: checking for alloca" >&5
8873echo $ECHO_N "checking for alloca... $ECHO_C" >&6
8874if test "${ac_cv_func_alloca_works+set}" = set; then
8875 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 8876else
42ecbf5e
DJ
8877 cat >conftest.$ac_ext <<_ACEOF
8878/* confdefs.h. */
8879_ACEOF
8880cat confdefs.h >>conftest.$ac_ext
8881cat >>conftest.$ac_ext <<_ACEOF
8882/* end confdefs.h. */
252b5132
RH
8883#ifdef __GNUC__
8884# define alloca __builtin_alloca
8885#else
8886# ifdef _MSC_VER
8887# include <malloc.h>
8888# define alloca _alloca
8889# else
8890# if HAVE_ALLOCA_H
8891# include <alloca.h>
8892# else
8893# ifdef _AIX
8894 #pragma alloca
8895# else
8896# ifndef alloca /* predefined by HP cc +Olibcalls */
8897char *alloca ();
8898# endif
8899# endif
8900# endif
8901# endif
8902#endif
8903
42ecbf5e
DJ
8904int
8905main ()
8906{
8907char *p = (char *) alloca (1);
8908 ;
8909 return 0;
8910}
8911_ACEOF
8912rm -f conftest.$ac_objext conftest$ac_exeext
8913if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8914 (eval $ac_link) 2>conftest.er1
8915 ac_status=$?
8916 grep -v '^ *+' conftest.er1 >conftest.err
8917 rm -f conftest.er1
8918 cat conftest.err >&5
8919 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8920 (exit $ac_status); } &&
b7d4af3a
JW
8921 { ac_try='test -z "$ac_c_werror_flag"
8922 || test ! -s conftest.err'
42ecbf5e
DJ
8923 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8924 (eval $ac_try) 2>&5
8925 ac_status=$?
8926 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8927 (exit $ac_status); }; } &&
8928 { ac_try='test -s conftest$ac_exeext'
8929 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8930 (eval $ac_try) 2>&5
8931 ac_status=$?
8932 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8933 (exit $ac_status); }; }; then
252b5132
RH
8934 ac_cv_func_alloca_works=yes
8935else
42ecbf5e
DJ
8936 echo "$as_me: failed program was:" >&5
8937sed 's/^/| /' conftest.$ac_ext >&5
8938
8939ac_cv_func_alloca_works=no
252b5132 8940fi
42ecbf5e
DJ
8941rm -f conftest.err conftest.$ac_objext \
8942 conftest$ac_exeext conftest.$ac_ext
252b5132 8943fi
42ecbf5e
DJ
8944echo "$as_me:$LINENO: result: $ac_cv_func_alloca_works" >&5
8945echo "${ECHO_T}$ac_cv_func_alloca_works" >&6
252b5132 8946
252b5132 8947if test $ac_cv_func_alloca_works = yes; then
e5a52504 8948
42ecbf5e
DJ
8949cat >>confdefs.h <<\_ACEOF
8950#define HAVE_ALLOCA 1
8951_ACEOF
e5a52504 8952
42ecbf5e 8953else
d15b04bd 8954 # The SVR3 libPW and SVR4 libucb both contain incompatible functions
42ecbf5e
DJ
8955# that cause trouble. Some versions do not even contain alloca or
8956# contain a buggy version. If you still want to use their alloca,
8957# use ar to extract alloca.o from them instead of compiling alloca.c.
8958
8959ALLOCA=alloca.$ac_objext
8960
8961cat >>confdefs.h <<\_ACEOF
252b5132 8962#define C_ALLOCA 1
42ecbf5e 8963_ACEOF
252b5132
RH
8964
8965
42ecbf5e
DJ
8966echo "$as_me:$LINENO: checking whether \`alloca.c' needs Cray hooks" >&5
8967echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6
8968if test "${ac_cv_os_cray+set}" = set; then
8969 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 8970else
42ecbf5e
DJ
8971 cat >conftest.$ac_ext <<_ACEOF
8972/* confdefs.h. */
8973_ACEOF
8974cat confdefs.h >>conftest.$ac_ext
8975cat >>conftest.$ac_ext <<_ACEOF
8976/* end confdefs.h. */
252b5132
RH
8977#if defined(CRAY) && ! defined(CRAY2)
8978webecray
8979#else
8980wenotbecray
8981#endif
8982
42ecbf5e 8983_ACEOF
252b5132 8984if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
42ecbf5e 8985 $EGREP "webecray" >/dev/null 2>&1; then
252b5132
RH
8986 ac_cv_os_cray=yes
8987else
252b5132
RH
8988 ac_cv_os_cray=no
8989fi
8990rm -f conftest*
8991
8992fi
42ecbf5e
DJ
8993echo "$as_me:$LINENO: result: $ac_cv_os_cray" >&5
8994echo "${ECHO_T}$ac_cv_os_cray" >&6
d15b04bd 8995if test $ac_cv_os_cray = yes; then
42ecbf5e
DJ
8996 for ac_func in _getb67 GETB67 getb67; do
8997 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
8998echo "$as_me:$LINENO: checking for $ac_func" >&5
8999echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
9000if eval "test \"\${$as_ac_var+set}\" = set"; then
9001 echo $ECHO_N "(cached) $ECHO_C" >&6
9002else
9003 cat >conftest.$ac_ext <<_ACEOF
9004/* confdefs.h. */
9005_ACEOF
9006cat confdefs.h >>conftest.$ac_ext
9007cat >>conftest.$ac_ext <<_ACEOF
9008/* end confdefs.h. */
9009/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
9010 For example, HP-UX 11i <limits.h> declares gettimeofday. */
9011#define $ac_func innocuous_$ac_func
9012
252b5132 9013/* System header to define __stub macros and hopefully few prototypes,
42ecbf5e
DJ
9014 which can conflict with char $ac_func (); below.
9015 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
9016 <limits.h> exists even on freestanding compilers. */
9017
9018#ifdef __STDC__
9019# include <limits.h>
9020#else
9021# include <assert.h>
9022#endif
d15b04bd 9023
42ecbf5e 9024#undef $ac_func
d15b04bd 9025
42ecbf5e
DJ
9026/* Override any gcc2 internal prototype to avoid an error. */
9027#ifdef __cplusplus
9028extern "C"
9029{
9030#endif
9031/* We use char because int might match the return type of a gcc2
9032 builtin and then its argument prototype would still apply. */
9033char $ac_func ();
252b5132
RH
9034/* The GNU C library defines this for functions which it implements
9035 to always fail with ENOSYS. Some functions are actually named
9036 something starting with __ and the normal name is an alias. */
9037#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
9038choke me
9039#else
42ecbf5e
DJ
9040char (*f) () = $ac_func;
9041#endif
9042#ifdef __cplusplus
9043}
252b5132
RH
9044#endif
9045
42ecbf5e
DJ
9046int
9047main ()
9048{
9049return f != $ac_func;
9050 ;
9051 return 0;
9052}
9053_ACEOF
9054rm -f conftest.$ac_objext conftest$ac_exeext
9055if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
9056 (eval $ac_link) 2>conftest.er1
9057 ac_status=$?
9058 grep -v '^ *+' conftest.er1 >conftest.err
9059 rm -f conftest.er1
9060 cat conftest.err >&5
9061 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9062 (exit $ac_status); } &&
b7d4af3a
JW
9063 { ac_try='test -z "$ac_c_werror_flag"
9064 || test ! -s conftest.err'
42ecbf5e
DJ
9065 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9066 (eval $ac_try) 2>&5
9067 ac_status=$?
9068 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9069 (exit $ac_status); }; } &&
9070 { ac_try='test -s conftest$ac_exeext'
9071 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9072 (eval $ac_try) 2>&5
9073 ac_status=$?
9074 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9075 (exit $ac_status); }; }; then
9076 eval "$as_ac_var=yes"
9077else
9078 echo "$as_me: failed program was:" >&5
9079sed 's/^/| /' conftest.$ac_ext >&5
9080
9081eval "$as_ac_var=no"
9082fi
9083rm -f conftest.err conftest.$ac_objext \
9084 conftest$ac_exeext conftest.$ac_ext
9085fi
9086echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
9087echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
9088if test `eval echo '${'$as_ac_var'}'` = yes; then
9089
9090cat >>confdefs.h <<_ACEOF
252b5132 9091#define CRAY_STACKSEG_END $ac_func
42ecbf5e 9092_ACEOF
252b5132 9093
42ecbf5e 9094 break
252b5132
RH
9095fi
9096
42ecbf5e 9097 done
252b5132
RH
9098fi
9099
42ecbf5e
DJ
9100echo "$as_me:$LINENO: checking stack direction for C alloca" >&5
9101echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6
9102if test "${ac_cv_c_stack_direction+set}" = set; then
9103 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132
RH
9104else
9105 if test "$cross_compiling" = yes; then
9106 ac_cv_c_stack_direction=0
9107else
42ecbf5e
DJ
9108 cat >conftest.$ac_ext <<_ACEOF
9109/* confdefs.h. */
9110_ACEOF
9111cat confdefs.h >>conftest.$ac_ext
9112cat >>conftest.$ac_ext <<_ACEOF
9113/* end confdefs.h. */
9114int
252b5132
RH
9115find_stack_direction ()
9116{
9117 static char *addr = 0;
9118 auto char dummy;
9119 if (addr == 0)
9120 {
9121 addr = &dummy;
9122 return find_stack_direction ();
9123 }
9124 else
9125 return (&dummy > addr) ? 1 : -1;
9126}
42ecbf5e
DJ
9127
9128int
252b5132
RH
9129main ()
9130{
42ecbf5e 9131 exit (find_stack_direction () < 0);
252b5132 9132}
42ecbf5e
DJ
9133_ACEOF
9134rm -f conftest$ac_exeext
9135if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
9136 (eval $ac_link) 2>&5
9137 ac_status=$?
9138 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9139 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
9140 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9141 (eval $ac_try) 2>&5
9142 ac_status=$?
9143 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9144 (exit $ac_status); }; }; then
252b5132
RH
9145 ac_cv_c_stack_direction=1
9146else
42ecbf5e
DJ
9147 echo "$as_me: program exited with status $ac_status" >&5
9148echo "$as_me: failed program was:" >&5
9149sed 's/^/| /' conftest.$ac_ext >&5
9150
9151( exit $ac_status )
9152ac_cv_c_stack_direction=-1
252b5132 9153fi
42ecbf5e 9154rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
252b5132 9155fi
252b5132 9156fi
42ecbf5e
DJ
9157echo "$as_me:$LINENO: result: $ac_cv_c_stack_direction" >&5
9158echo "${ECHO_T}$ac_cv_c_stack_direction" >&6
252b5132 9159
42ecbf5e 9160cat >>confdefs.h <<_ACEOF
252b5132 9161#define STACK_DIRECTION $ac_cv_c_stack_direction
42ecbf5e
DJ
9162_ACEOF
9163
252b5132
RH
9164
9165fi
9166
42ecbf5e
DJ
9167
9168
9169
9170
9171
9710509e 9172for ac_func in sbrk utimes setmode getc_unlocked strcoll
252b5132 9173do
42ecbf5e
DJ
9174as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
9175echo "$as_me:$LINENO: checking for $ac_func" >&5
9176echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
9177if eval "test \"\${$as_ac_var+set}\" = set"; then
9178 echo $ECHO_N "(cached) $ECHO_C" >&6
9179else
9180 cat >conftest.$ac_ext <<_ACEOF
9181/* confdefs.h. */
9182_ACEOF
9183cat confdefs.h >>conftest.$ac_ext
9184cat >>conftest.$ac_ext <<_ACEOF
9185/* end confdefs.h. */
9186/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
9187 For example, HP-UX 11i <limits.h> declares gettimeofday. */
9188#define $ac_func innocuous_$ac_func
9189
252b5132 9190/* System header to define __stub macros and hopefully few prototypes,
42ecbf5e
DJ
9191 which can conflict with char $ac_func (); below.
9192 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
9193 <limits.h> exists even on freestanding compilers. */
9194
9195#ifdef __STDC__
9196# include <limits.h>
9197#else
9198# include <assert.h>
9199#endif
d15b04bd 9200
42ecbf5e 9201#undef $ac_func
d15b04bd 9202
42ecbf5e
DJ
9203/* Override any gcc2 internal prototype to avoid an error. */
9204#ifdef __cplusplus
9205extern "C"
9206{
9207#endif
9208/* We use char because int might match the return type of a gcc2
9209 builtin and then its argument prototype would still apply. */
9210char $ac_func ();
252b5132
RH
9211/* The GNU C library defines this for functions which it implements
9212 to always fail with ENOSYS. Some functions are actually named
9213 something starting with __ and the normal name is an alias. */
9214#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
9215choke me
9216#else
42ecbf5e
DJ
9217char (*f) () = $ac_func;
9218#endif
9219#ifdef __cplusplus
9220}
252b5132
RH
9221#endif
9222
42ecbf5e
DJ
9223int
9224main ()
9225{
9226return f != $ac_func;
9227 ;
9228 return 0;
9229}
9230_ACEOF
9231rm -f conftest.$ac_objext conftest$ac_exeext
9232if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
9233 (eval $ac_link) 2>conftest.er1
9234 ac_status=$?
9235 grep -v '^ *+' conftest.er1 >conftest.err
9236 rm -f conftest.er1
9237 cat conftest.err >&5
9238 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9239 (exit $ac_status); } &&
b7d4af3a
JW
9240 { ac_try='test -z "$ac_c_werror_flag"
9241 || test ! -s conftest.err'
42ecbf5e
DJ
9242 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9243 (eval $ac_try) 2>&5
9244 ac_status=$?
9245 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9246 (exit $ac_status); }; } &&
9247 { ac_try='test -s conftest$ac_exeext'
9248 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9249 (eval $ac_try) 2>&5
9250 ac_status=$?
9251 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9252 (exit $ac_status); }; }; then
9253 eval "$as_ac_var=yes"
9254else
9255 echo "$as_me: failed program was:" >&5
9256sed 's/^/| /' conftest.$ac_ext >&5
9257
9258eval "$as_ac_var=no"
9259fi
9260rm -f conftest.err conftest.$ac_objext \
9261 conftest$ac_exeext conftest.$ac_ext
9262fi
9263echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
9264echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
9265if test `eval echo '${'$as_ac_var'}'` = yes; then
9266 cat >>confdefs.h <<_ACEOF
9267#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
9268_ACEOF
252b5132 9269
252b5132
RH
9270fi
9271done
9272
9273
cedd9a58
JJ
9274# Check whether fopen64 is available and whether _LARGEFILE64_SOURCE
9275# needs to be defined for it
42ecbf5e
DJ
9276echo "$as_me:$LINENO: checking for fopen64" >&5
9277echo $ECHO_N "checking for fopen64... $ECHO_C" >&6
9278if test "${bu_cv_have_fopen64+set}" = set; then
9279 echo $ECHO_N "(cached) $ECHO_C" >&6
9280else
9281 cat >conftest.$ac_ext <<_ACEOF
9282/* confdefs.h. */
9283_ACEOF
9284cat confdefs.h >>conftest.$ac_ext
9285cat >>conftest.$ac_ext <<_ACEOF
9286/* end confdefs.h. */
cedd9a58 9287#include <stdio.h>
42ecbf5e
DJ
9288int
9289main ()
9290{
cedd9a58 9291FILE *f = fopen64 ("/tmp/foo","r");
42ecbf5e
DJ
9292 ;
9293 return 0;
9294}
9295_ACEOF
9296rm -f conftest.$ac_objext conftest$ac_exeext
9297if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
9298 (eval $ac_link) 2>conftest.er1
9299 ac_status=$?
9300 grep -v '^ *+' conftest.er1 >conftest.err
9301 rm -f conftest.er1
9302 cat conftest.err >&5
9303 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9304 (exit $ac_status); } &&
b7d4af3a
JW
9305 { ac_try='test -z "$ac_c_werror_flag"
9306 || test ! -s conftest.err'
42ecbf5e
DJ
9307 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9308 (eval $ac_try) 2>&5
9309 ac_status=$?
9310 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9311 (exit $ac_status); }; } &&
9312 { ac_try='test -s conftest$ac_exeext'
9313 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9314 (eval $ac_try) 2>&5
9315 ac_status=$?
9316 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9317 (exit $ac_status); }; }; then
cedd9a58
JJ
9318 bu_cv_have_fopen64=yes
9319else
42ecbf5e
DJ
9320 echo "$as_me: failed program was:" >&5
9321sed 's/^/| /' conftest.$ac_ext >&5
9322
9323saved_CPPFLAGS=$CPPFLAGS
cedd9a58 9324 CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
42ecbf5e
DJ
9325 cat >conftest.$ac_ext <<_ACEOF
9326/* confdefs.h. */
9327_ACEOF
9328cat confdefs.h >>conftest.$ac_ext
9329cat >>conftest.$ac_ext <<_ACEOF
9330/* end confdefs.h. */
cedd9a58 9331#include <stdio.h>
42ecbf5e
DJ
9332int
9333main ()
9334{
cedd9a58 9335FILE *f = fopen64 ("/tmp/foo","r");
42ecbf5e
DJ
9336 ;
9337 return 0;
9338}
9339_ACEOF
9340rm -f conftest.$ac_objext conftest$ac_exeext
9341if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
9342 (eval $ac_link) 2>conftest.er1
9343 ac_status=$?
9344 grep -v '^ *+' conftest.er1 >conftest.err
9345 rm -f conftest.er1
9346 cat conftest.err >&5
9347 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9348 (exit $ac_status); } &&
b7d4af3a
JW
9349 { ac_try='test -z "$ac_c_werror_flag"
9350 || test ! -s conftest.err'
42ecbf5e
DJ
9351 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9352 (eval $ac_try) 2>&5
9353 ac_status=$?
9354 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9355 (exit $ac_status); }; } &&
9356 { ac_try='test -s conftest$ac_exeext'
9357 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9358 (eval $ac_try) 2>&5
9359 ac_status=$?
9360 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9361 (exit $ac_status); }; }; then
cedd9a58
JJ
9362 bu_cv_have_fopen64="need -D_LARGEFILE64_SOURCE"
9363else
42ecbf5e
DJ
9364 echo "$as_me: failed program was:" >&5
9365sed 's/^/| /' conftest.$ac_ext >&5
9366
9367bu_cv_have_fopen64=no
cedd9a58 9368fi
42ecbf5e
DJ
9369rm -f conftest.err conftest.$ac_objext \
9370 conftest$ac_exeext conftest.$ac_ext
17a5a5c3 9371 CPPFLAGS=$saved_CPPFLAGS
cedd9a58 9372fi
42ecbf5e
DJ
9373rm -f conftest.err conftest.$ac_objext \
9374 conftest$ac_exeext conftest.$ac_ext
cedd9a58 9375fi
cedd9a58 9376
42ecbf5e
DJ
9377echo "$as_me:$LINENO: result: $bu_cv_have_fopen64" >&5
9378echo "${ECHO_T}$bu_cv_have_fopen64" >&6
6db7a086 9379if test "$bu_cv_have_fopen64" != no; then
42ecbf5e
DJ
9380
9381cat >>confdefs.h <<\_ACEOF
cedd9a58 9382#define HAVE_FOPEN64 1
42ecbf5e 9383_ACEOF
cedd9a58 9384
fb5b5478 9385fi
42ecbf5e
DJ
9386echo "$as_me:$LINENO: checking for stat64" >&5
9387echo $ECHO_N "checking for stat64... $ECHO_C" >&6
9388if test "${bu_cv_have_stat64+set}" = set; then
9389 echo $ECHO_N "(cached) $ECHO_C" >&6
fb5b5478 9390else
42ecbf5e
DJ
9391 cat >conftest.$ac_ext <<_ACEOF
9392/* confdefs.h. */
9393_ACEOF
9394cat confdefs.h >>conftest.$ac_ext
9395cat >>conftest.$ac_ext <<_ACEOF
9396/* end confdefs.h. */
fb5b5478 9397#include <sys/stat.h>
42ecbf5e
DJ
9398int
9399main ()
9400{
fb5b5478 9401struct stat64 st; stat64 ("/tmp/foo", &st);
42ecbf5e
DJ
9402 ;
9403 return 0;
9404}
9405_ACEOF
9406rm -f conftest.$ac_objext conftest$ac_exeext
9407if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
9408 (eval $ac_link) 2>conftest.er1
9409 ac_status=$?
9410 grep -v '^ *+' conftest.er1 >conftest.err
9411 rm -f conftest.er1
9412 cat conftest.err >&5
9413 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9414 (exit $ac_status); } &&
b7d4af3a
JW
9415 { ac_try='test -z "$ac_c_werror_flag"
9416 || test ! -s conftest.err'
42ecbf5e
DJ
9417 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9418 (eval $ac_try) 2>&5
9419 ac_status=$?
9420 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9421 (exit $ac_status); }; } &&
9422 { ac_try='test -s conftest$ac_exeext'
9423 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9424 (eval $ac_try) 2>&5
9425 ac_status=$?
9426 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9427 (exit $ac_status); }; }; then
fb5b5478
JJ
9428 bu_cv_have_stat64=yes
9429else
42ecbf5e
DJ
9430 echo "$as_me: failed program was:" >&5
9431sed 's/^/| /' conftest.$ac_ext >&5
9432
9433saved_CPPFLAGS=$CPPFLAGS
fb5b5478 9434 CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
42ecbf5e
DJ
9435 cat >conftest.$ac_ext <<_ACEOF
9436/* confdefs.h. */
9437_ACEOF
9438cat confdefs.h >>conftest.$ac_ext
9439cat >>conftest.$ac_ext <<_ACEOF
9440/* end confdefs.h. */
fb5b5478 9441#include <sys/stat.h>
42ecbf5e
DJ
9442int
9443main ()
9444{
fb5b5478 9445struct stat64 st; stat64 ("/tmp/foo", &st);
42ecbf5e
DJ
9446 ;
9447 return 0;
9448}
9449_ACEOF
9450rm -f conftest.$ac_objext conftest$ac_exeext
9451if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
9452 (eval $ac_link) 2>conftest.er1
9453 ac_status=$?
9454 grep -v '^ *+' conftest.er1 >conftest.err
9455 rm -f conftest.er1
9456 cat conftest.err >&5
9457 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9458 (exit $ac_status); } &&
b7d4af3a
JW
9459 { ac_try='test -z "$ac_c_werror_flag"
9460 || test ! -s conftest.err'
42ecbf5e
DJ
9461 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9462 (eval $ac_try) 2>&5
9463 ac_status=$?
9464 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9465 (exit $ac_status); }; } &&
9466 { ac_try='test -s conftest$ac_exeext'
9467 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9468 (eval $ac_try) 2>&5
9469 ac_status=$?
9470 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9471 (exit $ac_status); }; }; then
fb5b5478
JJ
9472 bu_cv_have_stat64="need -D_LARGEFILE64_SOURCE"
9473else
42ecbf5e
DJ
9474 echo "$as_me: failed program was:" >&5
9475sed 's/^/| /' conftest.$ac_ext >&5
9476
9477bu_cv_have_stat64=no
fb5b5478 9478fi
42ecbf5e
DJ
9479rm -f conftest.err conftest.$ac_objext \
9480 conftest$ac_exeext conftest.$ac_ext
fb5b5478
JJ
9481 CPPFLAGS=$saved_CPPFLAGS
9482fi
42ecbf5e
DJ
9483rm -f conftest.err conftest.$ac_objext \
9484 conftest$ac_exeext conftest.$ac_ext
fb5b5478
JJ
9485fi
9486
42ecbf5e
DJ
9487echo "$as_me:$LINENO: result: $bu_cv_have_stat64" >&5
9488echo "${ECHO_T}$bu_cv_have_stat64" >&6
fb5b5478 9489if test "$bu_cv_have_stat64" != no; then
42ecbf5e
DJ
9490
9491cat >>confdefs.h <<\_ACEOF
fb5b5478 9492#define HAVE_STAT64 1
42ecbf5e 9493_ACEOF
fb5b5478
JJ
9494
9495fi
9496if test "$bu_cv_have_fopen64" = "need -D_LARGEFILE64_SOURCE" \
9497 || test "$bu_cv_have_stat64" = "need -D_LARGEFILE64_SOURCE"; then
42ecbf5e
DJ
9498
9499cat >>confdefs.h <<\_ACEOF
cedd9a58 9500#define _LARGEFILE64_SOURCE 1
42ecbf5e 9501_ACEOF
cedd9a58 9502
fb5b5478 9503 CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
cedd9a58
JJ
9504fi
9505
f353eb8a 9506# Some systems have frexp only in -lm, not in -lc.
42ecbf5e
DJ
9507echo "$as_me:$LINENO: checking for library containing frexp" >&5
9508echo $ECHO_N "checking for library containing frexp... $ECHO_C" >&6
9509if test "${ac_cv_search_frexp+set}" = set; then
9510 echo $ECHO_N "(cached) $ECHO_C" >&6
9511else
9512 ac_func_search_save_LIBS=$LIBS
9513ac_cv_search_frexp=no
9514cat >conftest.$ac_ext <<_ACEOF
9515/* confdefs.h. */
9516_ACEOF
9517cat confdefs.h >>conftest.$ac_ext
9518cat >>conftest.$ac_ext <<_ACEOF
9519/* end confdefs.h. */
f353eb8a 9520
f353eb8a 9521/* Override any gcc2 internal prototype to avoid an error. */
42ecbf5e
DJ
9522#ifdef __cplusplus
9523extern "C"
9524#endif
f353eb8a 9525/* We use char because int might match the return type of a gcc2
42ecbf5e
DJ
9526 builtin and then its argument prototype would still apply. */
9527char frexp ();
9528int
9529main ()
9530{
9531frexp ();
9532 ;
9533 return 0;
9534}
9535_ACEOF
9536rm -f conftest.$ac_objext conftest$ac_exeext
9537if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
9538 (eval $ac_link) 2>conftest.er1
9539 ac_status=$?
9540 grep -v '^ *+' conftest.er1 >conftest.err
9541 rm -f conftest.er1
9542 cat conftest.err >&5
9543 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9544 (exit $ac_status); } &&
b7d4af3a
JW
9545 { ac_try='test -z "$ac_c_werror_flag"
9546 || test ! -s conftest.err'
42ecbf5e
DJ
9547 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9548 (eval $ac_try) 2>&5
9549 ac_status=$?
9550 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9551 (exit $ac_status); }; } &&
9552 { ac_try='test -s conftest$ac_exeext'
9553 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9554 (eval $ac_try) 2>&5
9555 ac_status=$?
9556 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9557 (exit $ac_status); }; }; then
f353eb8a
ILT
9558 ac_cv_search_frexp="none required"
9559else
42ecbf5e
DJ
9560 echo "$as_me: failed program was:" >&5
9561sed 's/^/| /' conftest.$ac_ext >&5
9562
f353eb8a 9563fi
42ecbf5e
DJ
9564rm -f conftest.err conftest.$ac_objext \
9565 conftest$ac_exeext conftest.$ac_ext
9566if test "$ac_cv_search_frexp" = no; then
9567 for ac_lib in m; do
9568 LIBS="-l$ac_lib $ac_func_search_save_LIBS"
9569 cat >conftest.$ac_ext <<_ACEOF
9570/* confdefs.h. */
9571_ACEOF
9572cat confdefs.h >>conftest.$ac_ext
9573cat >>conftest.$ac_ext <<_ACEOF
9574/* end confdefs.h. */
9575
f353eb8a 9576/* Override any gcc2 internal prototype to avoid an error. */
42ecbf5e
DJ
9577#ifdef __cplusplus
9578extern "C"
9579#endif
f353eb8a 9580/* We use char because int might match the return type of a gcc2
42ecbf5e
DJ
9581 builtin and then its argument prototype would still apply. */
9582char frexp ();
9583int
9584main ()
9585{
9586frexp ();
9587 ;
9588 return 0;
9589}
9590_ACEOF
9591rm -f conftest.$ac_objext conftest$ac_exeext
9592if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
9593 (eval $ac_link) 2>conftest.er1
9594 ac_status=$?
9595 grep -v '^ *+' conftest.er1 >conftest.err
9596 rm -f conftest.er1
9597 cat conftest.err >&5
9598 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9599 (exit $ac_status); } &&
b7d4af3a
JW
9600 { ac_try='test -z "$ac_c_werror_flag"
9601 || test ! -s conftest.err'
42ecbf5e
DJ
9602 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9603 (eval $ac_try) 2>&5
9604 ac_status=$?
9605 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9606 (exit $ac_status); }; } &&
9607 { ac_try='test -s conftest$ac_exeext'
9608 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9609 (eval $ac_try) 2>&5
9610 ac_status=$?
9611 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9612 (exit $ac_status); }; }; then
9613 ac_cv_search_frexp="-l$ac_lib"
f353eb8a
ILT
9614break
9615else
42ecbf5e
DJ
9616 echo "$as_me: failed program was:" >&5
9617sed 's/^/| /' conftest.$ac_ext >&5
9618
f353eb8a 9619fi
42ecbf5e
DJ
9620rm -f conftest.err conftest.$ac_objext \
9621 conftest$ac_exeext conftest.$ac_ext
9622 done
e5a52504 9623fi
42ecbf5e
DJ
9624LIBS=$ac_func_search_save_LIBS
9625fi
9626echo "$as_me:$LINENO: result: $ac_cv_search_frexp" >&5
9627echo "${ECHO_T}$ac_cv_search_frexp" >&6
9628if test "$ac_cv_search_frexp" != no; then
d15b04bd 9629 test "$ac_cv_search_frexp" = "none required" || LIBS="$ac_cv_search_frexp $LIBS"
42ecbf5e 9630
f353eb8a
ILT
9631fi
9632
42ecbf5e
DJ
9633
9634echo "$as_me:$LINENO: checking for time_t in time.h" >&5
9635echo $ECHO_N "checking for time_t in time.h... $ECHO_C" >&6
9636if test "${bu_cv_decl_time_t_time_h+set}" = set; then
9637 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 9638else
42ecbf5e
DJ
9639 cat >conftest.$ac_ext <<_ACEOF
9640/* confdefs.h. */
9641_ACEOF
9642cat confdefs.h >>conftest.$ac_ext
9643cat >>conftest.$ac_ext <<_ACEOF
9644/* end confdefs.h. */
252b5132 9645#include <time.h>
42ecbf5e
DJ
9646int
9647main ()
9648{
252b5132 9649time_t i;
42ecbf5e
DJ
9650 ;
9651 return 0;
9652}
9653_ACEOF
9654rm -f conftest.$ac_objext
9655if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
9656 (eval $ac_compile) 2>conftest.er1
9657 ac_status=$?
9658 grep -v '^ *+' conftest.er1 >conftest.err
9659 rm -f conftest.er1
9660 cat conftest.err >&5
9661 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9662 (exit $ac_status); } &&
b7d4af3a
JW
9663 { ac_try='test -z "$ac_c_werror_flag"
9664 || test ! -s conftest.err'
42ecbf5e
DJ
9665 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9666 (eval $ac_try) 2>&5
9667 ac_status=$?
9668 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9669 (exit $ac_status); }; } &&
9670 { ac_try='test -s conftest.$ac_objext'
9671 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9672 (eval $ac_try) 2>&5
9673 ac_status=$?
9674 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9675 (exit $ac_status); }; }; then
252b5132
RH
9676 bu_cv_decl_time_t_time_h=yes
9677else
42ecbf5e
DJ
9678 echo "$as_me: failed program was:" >&5
9679sed 's/^/| /' conftest.$ac_ext >&5
9680
9681bu_cv_decl_time_t_time_h=no
252b5132 9682fi
42ecbf5e 9683rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132
RH
9684fi
9685
42ecbf5e
DJ
9686echo "$as_me:$LINENO: result: $bu_cv_decl_time_t_time_h" >&5
9687echo "${ECHO_T}$bu_cv_decl_time_t_time_h" >&6
252b5132 9688if test $bu_cv_decl_time_t_time_h = yes; then
42ecbf5e
DJ
9689
9690cat >>confdefs.h <<\_ACEOF
252b5132 9691#define HAVE_TIME_T_IN_TIME_H 1
42ecbf5e 9692_ACEOF
252b5132
RH
9693
9694fi
9695
42ecbf5e
DJ
9696echo "$as_me:$LINENO: checking for time_t in sys/types.h" >&5
9697echo $ECHO_N "checking for time_t in sys/types.h... $ECHO_C" >&6
9698if test "${bu_cv_decl_time_t_types_h+set}" = set; then
9699 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 9700else
42ecbf5e
DJ
9701 cat >conftest.$ac_ext <<_ACEOF
9702/* confdefs.h. */
9703_ACEOF
9704cat confdefs.h >>conftest.$ac_ext
9705cat >>conftest.$ac_ext <<_ACEOF
9706/* end confdefs.h. */
252b5132 9707#include <sys/types.h>
42ecbf5e
DJ
9708int
9709main ()
9710{
252b5132 9711time_t i;
42ecbf5e
DJ
9712 ;
9713 return 0;
9714}
9715_ACEOF
9716rm -f conftest.$ac_objext
9717if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
9718 (eval $ac_compile) 2>conftest.er1
9719 ac_status=$?
9720 grep -v '^ *+' conftest.er1 >conftest.err
9721 rm -f conftest.er1
9722 cat conftest.err >&5
9723 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9724 (exit $ac_status); } &&
b7d4af3a
JW
9725 { ac_try='test -z "$ac_c_werror_flag"
9726 || test ! -s conftest.err'
42ecbf5e
DJ
9727 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9728 (eval $ac_try) 2>&5
9729 ac_status=$?
9730 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9731 (exit $ac_status); }; } &&
9732 { ac_try='test -s conftest.$ac_objext'
9733 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9734 (eval $ac_try) 2>&5
9735 ac_status=$?
9736 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9737 (exit $ac_status); }; }; then
252b5132
RH
9738 bu_cv_decl_time_t_types_h=yes
9739else
42ecbf5e
DJ
9740 echo "$as_me: failed program was:" >&5
9741sed 's/^/| /' conftest.$ac_ext >&5
9742
9743bu_cv_decl_time_t_types_h=no
252b5132 9744fi
42ecbf5e 9745rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132
RH
9746fi
9747
42ecbf5e
DJ
9748echo "$as_me:$LINENO: result: $bu_cv_decl_time_t_types_h" >&5
9749echo "${ECHO_T}$bu_cv_decl_time_t_types_h" >&6
252b5132 9750if test $bu_cv_decl_time_t_types_h = yes; then
42ecbf5e
DJ
9751
9752cat >>confdefs.h <<\_ACEOF
252b5132 9753#define HAVE_TIME_T_IN_TYPES_H 1
42ecbf5e 9754_ACEOF
252b5132
RH
9755
9756fi
9757
42ecbf5e
DJ
9758echo "$as_me:$LINENO: checking for a known getopt prototype in unistd.h" >&5
9759echo $ECHO_N "checking for a known getopt prototype in unistd.h... $ECHO_C" >&6
9760if test "${bu_cv_decl_getopt_unistd_h+set}" = set; then
9761 echo $ECHO_N "(cached) $ECHO_C" >&6
e46eba98 9762else
42ecbf5e
DJ
9763 cat >conftest.$ac_ext <<_ACEOF
9764/* confdefs.h. */
9765_ACEOF
9766cat confdefs.h >>conftest.$ac_ext
9767cat >>conftest.$ac_ext <<_ACEOF
9768/* end confdefs.h. */
e46eba98 9769#include <unistd.h>
42ecbf5e
DJ
9770int
9771main ()
9772{
e46eba98 9773extern int getopt (int, char *const*, const char *);
42ecbf5e
DJ
9774 ;
9775 return 0;
9776}
9777_ACEOF
9778rm -f conftest.$ac_objext
9779if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
9780 (eval $ac_compile) 2>conftest.er1
9781 ac_status=$?
9782 grep -v '^ *+' conftest.er1 >conftest.err
9783 rm -f conftest.er1
9784 cat conftest.err >&5
9785 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9786 (exit $ac_status); } &&
b7d4af3a
JW
9787 { ac_try='test -z "$ac_c_werror_flag"
9788 || test ! -s conftest.err'
42ecbf5e
DJ
9789 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9790 (eval $ac_try) 2>&5
9791 ac_status=$?
9792 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9793 (exit $ac_status); }; } &&
9794 { ac_try='test -s conftest.$ac_objext'
9795 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9796 (eval $ac_try) 2>&5
9797 ac_status=$?
9798 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9799 (exit $ac_status); }; }; then
e46eba98
NC
9800 bu_cv_decl_getopt_unistd_h=yes
9801else
42ecbf5e
DJ
9802 echo "$as_me: failed program was:" >&5
9803sed 's/^/| /' conftest.$ac_ext >&5
9804
9805bu_cv_decl_getopt_unistd_h=no
e46eba98 9806fi
42ecbf5e 9807rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
e46eba98
NC
9808fi
9809
42ecbf5e
DJ
9810echo "$as_me:$LINENO: result: $bu_cv_decl_getopt_unistd_h" >&5
9811echo "${ECHO_T}$bu_cv_decl_getopt_unistd_h" >&6
e46eba98 9812if test $bu_cv_decl_getopt_unistd_h = yes; then
42ecbf5e
DJ
9813
9814cat >>confdefs.h <<\_ACEOF
e46eba98 9815#define HAVE_DECL_GETOPT 1
42ecbf5e 9816_ACEOF
e46eba98
NC
9817
9818fi
9819
252b5132
RH
9820# Under Next 3.2 <utime.h> apparently does not define struct utimbuf
9821# by default.
42ecbf5e
DJ
9822echo "$as_me:$LINENO: checking for utime.h" >&5
9823echo $ECHO_N "checking for utime.h... $ECHO_C" >&6
9824if test "${bu_cv_header_utime_h+set}" = set; then
9825 echo $ECHO_N "(cached) $ECHO_C" >&6
9826else
9827 cat >conftest.$ac_ext <<_ACEOF
9828/* confdefs.h. */
9829_ACEOF
9830cat confdefs.h >>conftest.$ac_ext
9831cat >>conftest.$ac_ext <<_ACEOF
9832/* end confdefs.h. */
252b5132
RH
9833#include <sys/types.h>
9834#ifdef HAVE_TIME_H
9835#include <time.h>
9836#endif
9837#include <utime.h>
42ecbf5e
DJ
9838int
9839main ()
9840{
252b5132 9841struct utimbuf s;
42ecbf5e
DJ
9842 ;
9843 return 0;
9844}
9845_ACEOF
9846rm -f conftest.$ac_objext
9847if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
9848 (eval $ac_compile) 2>conftest.er1
9849 ac_status=$?
9850 grep -v '^ *+' conftest.er1 >conftest.err
9851 rm -f conftest.er1
9852 cat conftest.err >&5
9853 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9854 (exit $ac_status); } &&
b7d4af3a
JW
9855 { ac_try='test -z "$ac_c_werror_flag"
9856 || test ! -s conftest.err'
42ecbf5e
DJ
9857 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9858 (eval $ac_try) 2>&5
9859 ac_status=$?
9860 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9861 (exit $ac_status); }; } &&
9862 { ac_try='test -s conftest.$ac_objext'
9863 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9864 (eval $ac_try) 2>&5
9865 ac_status=$?
9866 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9867 (exit $ac_status); }; }; then
252b5132
RH
9868 bu_cv_header_utime_h=yes
9869else
42ecbf5e
DJ
9870 echo "$as_me: failed program was:" >&5
9871sed 's/^/| /' conftest.$ac_ext >&5
9872
9873bu_cv_header_utime_h=no
252b5132 9874fi
42ecbf5e 9875rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132
RH
9876fi
9877
42ecbf5e
DJ
9878echo "$as_me:$LINENO: result: $bu_cv_header_utime_h" >&5
9879echo "${ECHO_T}$bu_cv_header_utime_h" >&6
252b5132 9880if test $bu_cv_header_utime_h = yes; then
42ecbf5e
DJ
9881
9882cat >>confdefs.h <<\_ACEOF
252b5132 9883#define HAVE_GOOD_UTIME_H 1
42ecbf5e 9884_ACEOF
252b5132
RH
9885
9886fi
9887
42ecbf5e
DJ
9888echo "$as_me:$LINENO: checking whether fprintf must be declared" >&5
9889echo $ECHO_N "checking whether fprintf must be declared... $ECHO_C" >&6
9890if test "${bfd_cv_decl_needed_fprintf+set}" = set; then
9891 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 9892else
42ecbf5e
DJ
9893 cat >conftest.$ac_ext <<_ACEOF
9894/* confdefs.h. */
9895_ACEOF
9896cat confdefs.h >>conftest.$ac_ext
9897cat >>conftest.$ac_ext <<_ACEOF
9898/* end confdefs.h. */
252b5132
RH
9899
9900#include <stdio.h>
9901#ifdef HAVE_STRING_H
9902#include <string.h>
9903#else
9904#ifdef HAVE_STRINGS_H
9905#include <strings.h>
9906#endif
9907#endif
9908#ifdef HAVE_STDLIB_H
9909#include <stdlib.h>
9910#endif
9911#ifdef HAVE_UNISTD_H
9912#include <unistd.h>
9913#endif
42ecbf5e
DJ
9914int
9915main ()
9916{
252b5132 9917char *(*pfn) = (char *(*)) fprintf
42ecbf5e
DJ
9918 ;
9919 return 0;
9920}
9921_ACEOF
9922rm -f conftest.$ac_objext
9923if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
9924 (eval $ac_compile) 2>conftest.er1
9925 ac_status=$?
9926 grep -v '^ *+' conftest.er1 >conftest.err
9927 rm -f conftest.er1
9928 cat conftest.err >&5
9929 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9930 (exit $ac_status); } &&
b7d4af3a
JW
9931 { ac_try='test -z "$ac_c_werror_flag"
9932 || test ! -s conftest.err'
42ecbf5e
DJ
9933 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9934 (eval $ac_try) 2>&5
9935 ac_status=$?
9936 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9937 (exit $ac_status); }; } &&
9938 { ac_try='test -s conftest.$ac_objext'
9939 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9940 (eval $ac_try) 2>&5
9941 ac_status=$?
9942 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9943 (exit $ac_status); }; }; then
252b5132
RH
9944 bfd_cv_decl_needed_fprintf=no
9945else
42ecbf5e
DJ
9946 echo "$as_me: failed program was:" >&5
9947sed 's/^/| /' conftest.$ac_ext >&5
9948
9949bfd_cv_decl_needed_fprintf=yes
252b5132 9950fi
42ecbf5e 9951rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132
RH
9952fi
9953
42ecbf5e
DJ
9954echo "$as_me:$LINENO: result: $bfd_cv_decl_needed_fprintf" >&5
9955echo "${ECHO_T}$bfd_cv_decl_needed_fprintf" >&6
252b5132 9956if test $bfd_cv_decl_needed_fprintf = yes; then
42ecbf5e
DJ
9957
9958cat >>confdefs.h <<\_ACEOF
252b5132 9959#define NEED_DECLARATION_FPRINTF 1
42ecbf5e 9960_ACEOF
252b5132
RH
9961
9962fi
9963
42ecbf5e
DJ
9964echo "$as_me:$LINENO: checking whether strstr must be declared" >&5
9965echo $ECHO_N "checking whether strstr must be declared... $ECHO_C" >&6
9966if test "${bfd_cv_decl_needed_strstr+set}" = set; then
9967 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 9968else
42ecbf5e
DJ
9969 cat >conftest.$ac_ext <<_ACEOF
9970/* confdefs.h. */
9971_ACEOF
9972cat confdefs.h >>conftest.$ac_ext
9973cat >>conftest.$ac_ext <<_ACEOF
9974/* end confdefs.h. */
252b5132
RH
9975
9976#include <stdio.h>
9977#ifdef HAVE_STRING_H
9978#include <string.h>
9979#else
9980#ifdef HAVE_STRINGS_H
9981#include <strings.h>
9982#endif
9983#endif
9984#ifdef HAVE_STDLIB_H
9985#include <stdlib.h>
9986#endif
9987#ifdef HAVE_UNISTD_H
9988#include <unistd.h>
9989#endif
42ecbf5e
DJ
9990int
9991main ()
9992{
252b5132 9993char *(*pfn) = (char *(*)) strstr
42ecbf5e
DJ
9994 ;
9995 return 0;
9996}
9997_ACEOF
9998rm -f conftest.$ac_objext
9999if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
10000 (eval $ac_compile) 2>conftest.er1
10001 ac_status=$?
10002 grep -v '^ *+' conftest.er1 >conftest.err
10003 rm -f conftest.er1
10004 cat conftest.err >&5
10005 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10006 (exit $ac_status); } &&
b7d4af3a
JW
10007 { ac_try='test -z "$ac_c_werror_flag"
10008 || test ! -s conftest.err'
42ecbf5e
DJ
10009 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
10010 (eval $ac_try) 2>&5
10011 ac_status=$?
10012 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10013 (exit $ac_status); }; } &&
10014 { ac_try='test -s conftest.$ac_objext'
10015 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
10016 (eval $ac_try) 2>&5
10017 ac_status=$?
10018 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10019 (exit $ac_status); }; }; then
252b5132
RH
10020 bfd_cv_decl_needed_strstr=no
10021else
42ecbf5e
DJ
10022 echo "$as_me: failed program was:" >&5
10023sed 's/^/| /' conftest.$ac_ext >&5
10024
10025bfd_cv_decl_needed_strstr=yes
252b5132 10026fi
42ecbf5e 10027rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132
RH
10028fi
10029
42ecbf5e
DJ
10030echo "$as_me:$LINENO: result: $bfd_cv_decl_needed_strstr" >&5
10031echo "${ECHO_T}$bfd_cv_decl_needed_strstr" >&6
252b5132 10032if test $bfd_cv_decl_needed_strstr = yes; then
42ecbf5e
DJ
10033
10034cat >>confdefs.h <<\_ACEOF
252b5132 10035#define NEED_DECLARATION_STRSTR 1
42ecbf5e 10036_ACEOF
252b5132
RH
10037
10038fi
10039
42ecbf5e
DJ
10040echo "$as_me:$LINENO: checking whether sbrk must be declared" >&5
10041echo $ECHO_N "checking whether sbrk must be declared... $ECHO_C" >&6
10042if test "${bfd_cv_decl_needed_sbrk+set}" = set; then
10043 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 10044else
42ecbf5e
DJ
10045 cat >conftest.$ac_ext <<_ACEOF
10046/* confdefs.h. */
10047_ACEOF
10048cat confdefs.h >>conftest.$ac_ext
10049cat >>conftest.$ac_ext <<_ACEOF
10050/* end confdefs.h. */
252b5132
RH
10051
10052#include <stdio.h>
10053#ifdef HAVE_STRING_H
10054#include <string.h>
10055#else
10056#ifdef HAVE_STRINGS_H
10057#include <strings.h>
10058#endif
10059#endif
10060#ifdef HAVE_STDLIB_H
10061#include <stdlib.h>
10062#endif
10063#ifdef HAVE_UNISTD_H
10064#include <unistd.h>
10065#endif
42ecbf5e
DJ
10066int
10067main ()
10068{
252b5132 10069char *(*pfn) = (char *(*)) sbrk
42ecbf5e
DJ
10070 ;
10071 return 0;
10072}
10073_ACEOF
10074rm -f conftest.$ac_objext
10075if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
10076 (eval $ac_compile) 2>conftest.er1
10077 ac_status=$?
10078 grep -v '^ *+' conftest.er1 >conftest.err
10079 rm -f conftest.er1
10080 cat conftest.err >&5
10081 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10082 (exit $ac_status); } &&
b7d4af3a
JW
10083 { ac_try='test -z "$ac_c_werror_flag"
10084 || test ! -s conftest.err'
42ecbf5e
DJ
10085 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
10086 (eval $ac_try) 2>&5
10087 ac_status=$?
10088 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10089 (exit $ac_status); }; } &&
10090 { ac_try='test -s conftest.$ac_objext'
10091 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
10092 (eval $ac_try) 2>&5
10093 ac_status=$?
10094 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10095 (exit $ac_status); }; }; then
252b5132
RH
10096 bfd_cv_decl_needed_sbrk=no
10097else
42ecbf5e
DJ
10098 echo "$as_me: failed program was:" >&5
10099sed 's/^/| /' conftest.$ac_ext >&5
10100
10101bfd_cv_decl_needed_sbrk=yes
252b5132 10102fi
42ecbf5e 10103rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132
RH
10104fi
10105
42ecbf5e
DJ
10106echo "$as_me:$LINENO: result: $bfd_cv_decl_needed_sbrk" >&5
10107echo "${ECHO_T}$bfd_cv_decl_needed_sbrk" >&6
252b5132 10108if test $bfd_cv_decl_needed_sbrk = yes; then
42ecbf5e
DJ
10109
10110cat >>confdefs.h <<\_ACEOF
252b5132 10111#define NEED_DECLARATION_SBRK 1
42ecbf5e 10112_ACEOF
252b5132
RH
10113
10114fi
10115
42ecbf5e
DJ
10116echo "$as_me:$LINENO: checking whether getenv must be declared" >&5
10117echo $ECHO_N "checking whether getenv must be declared... $ECHO_C" >&6
10118if test "${bfd_cv_decl_needed_getenv+set}" = set; then
10119 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 10120else
42ecbf5e
DJ
10121 cat >conftest.$ac_ext <<_ACEOF
10122/* confdefs.h. */
10123_ACEOF
10124cat confdefs.h >>conftest.$ac_ext
10125cat >>conftest.$ac_ext <<_ACEOF
10126/* end confdefs.h. */
252b5132
RH
10127
10128#include <stdio.h>
10129#ifdef HAVE_STRING_H
10130#include <string.h>
10131#else
10132#ifdef HAVE_STRINGS_H
10133#include <strings.h>
10134#endif
10135#endif
10136#ifdef HAVE_STDLIB_H
10137#include <stdlib.h>
10138#endif
10139#ifdef HAVE_UNISTD_H
10140#include <unistd.h>
10141#endif
42ecbf5e
DJ
10142int
10143main ()
10144{
252b5132 10145char *(*pfn) = (char *(*)) getenv
42ecbf5e
DJ
10146 ;
10147 return 0;
10148}
10149_ACEOF
10150rm -f conftest.$ac_objext
10151if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
10152 (eval $ac_compile) 2>conftest.er1
10153 ac_status=$?
10154 grep -v '^ *+' conftest.er1 >conftest.err
10155 rm -f conftest.er1
10156 cat conftest.err >&5
10157 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10158 (exit $ac_status); } &&
b7d4af3a
JW
10159 { ac_try='test -z "$ac_c_werror_flag"
10160 || test ! -s conftest.err'
42ecbf5e
DJ
10161 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
10162 (eval $ac_try) 2>&5
10163 ac_status=$?
10164 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10165 (exit $ac_status); }; } &&
10166 { ac_try='test -s conftest.$ac_objext'
10167 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
10168 (eval $ac_try) 2>&5
10169 ac_status=$?
10170 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10171 (exit $ac_status); }; }; then
252b5132
RH
10172 bfd_cv_decl_needed_getenv=no
10173else
42ecbf5e
DJ
10174 echo "$as_me: failed program was:" >&5
10175sed 's/^/| /' conftest.$ac_ext >&5
10176
10177bfd_cv_decl_needed_getenv=yes
252b5132 10178fi
42ecbf5e 10179rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132
RH
10180fi
10181
42ecbf5e
DJ
10182echo "$as_me:$LINENO: result: $bfd_cv_decl_needed_getenv" >&5
10183echo "${ECHO_T}$bfd_cv_decl_needed_getenv" >&6
252b5132 10184if test $bfd_cv_decl_needed_getenv = yes; then
42ecbf5e
DJ
10185
10186cat >>confdefs.h <<\_ACEOF
252b5132 10187#define NEED_DECLARATION_GETENV 1
42ecbf5e 10188_ACEOF
252b5132
RH
10189
10190fi
10191
42ecbf5e
DJ
10192echo "$as_me:$LINENO: checking whether environ must be declared" >&5
10193echo $ECHO_N "checking whether environ must be declared... $ECHO_C" >&6
10194if test "${bfd_cv_decl_needed_environ+set}" = set; then
10195 echo $ECHO_N "(cached) $ECHO_C" >&6
252b5132 10196else
42ecbf5e
DJ
10197 cat >conftest.$ac_ext <<_ACEOF
10198/* confdefs.h. */
10199_ACEOF
10200cat confdefs.h >>conftest.$ac_ext
10201cat >>conftest.$ac_ext <<_ACEOF
10202/* end confdefs.h. */
252b5132
RH
10203
10204#include <stdio.h>
10205#ifdef HAVE_STRING_H
10206#include <string.h>
10207#else
10208#ifdef HAVE_STRINGS_H
10209#include <strings.h>
10210#endif
10211#endif
10212#ifdef HAVE_STDLIB_H
10213#include <stdlib.h>
10214#endif
10215#ifdef HAVE_UNISTD_H
10216#include <unistd.h>
10217#endif
42ecbf5e
DJ
10218int
10219main ()
10220{
252b5132 10221char *(*pfn) = (char *(*)) environ
42ecbf5e
DJ
10222 ;
10223 return 0;
10224}
10225_ACEOF
10226rm -f conftest.$ac_objext
10227if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
10228 (eval $ac_compile) 2>conftest.er1
10229 ac_status=$?
10230 grep -v '^ *+' conftest.er1 >conftest.err
10231 rm -f conftest.er1
10232 cat conftest.err >&5
10233 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10234 (exit $ac_status); } &&
b7d4af3a
JW
10235 { ac_try='test -z "$ac_c_werror_flag"
10236 || test ! -s conftest.err'
42ecbf5e
DJ
10237 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
10238 (eval $ac_try) 2>&5
10239 ac_status=$?
10240 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10241 (exit $ac_status); }; } &&
10242 { ac_try='test -s conftest.$ac_objext'
10243 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
10244 (eval $ac_try) 2>&5
10245 ac_status=$?
10246 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10247 (exit $ac_status); }; }; then
252b5132
RH
10248 bfd_cv_decl_needed_environ=no
10249else
42ecbf5e
DJ
10250 echo "$as_me: failed program was:" >&5
10251sed 's/^/| /' conftest.$ac_ext >&5
10252
10253bfd_cv_decl_needed_environ=yes
252b5132 10254fi
42ecbf5e 10255rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
252b5132
RH
10256fi
10257
42ecbf5e
DJ
10258echo "$as_me:$LINENO: result: $bfd_cv_decl_needed_environ" >&5
10259echo "${ECHO_T}$bfd_cv_decl_needed_environ" >&6
252b5132 10260if test $bfd_cv_decl_needed_environ = yes; then
42ecbf5e
DJ
10261
10262cat >>confdefs.h <<\_ACEOF
252b5132 10263#define NEED_DECLARATION_ENVIRON 1
42ecbf5e 10264_ACEOF
252b5132
RH
10265
10266fi
10267
b7d4af3a
JW
10268echo "$as_me:$LINENO: checking whether getc_unlocked is declared" >&5
10269echo $ECHO_N "checking whether getc_unlocked is declared... $ECHO_C" >&6
10270if test "${ac_cv_have_decl_getc_unlocked+set}" = set; then
10271 echo $ECHO_N "(cached) $ECHO_C" >&6
10272else
10273 cat >conftest.$ac_ext <<_ACEOF
10274/* confdefs.h. */
10275_ACEOF
10276cat confdefs.h >>conftest.$ac_ext
10277cat >>conftest.$ac_ext <<_ACEOF
10278/* end confdefs.h. */
10279$ac_includes_default
10280int
10281main ()
10282{
10283#ifndef getc_unlocked
10284 char *p = (char *) getc_unlocked;
10285#endif
10286
10287 ;
10288 return 0;
10289}
10290_ACEOF
10291rm -f conftest.$ac_objext
10292if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
10293 (eval $ac_compile) 2>conftest.er1
10294 ac_status=$?
10295 grep -v '^ *+' conftest.er1 >conftest.err
10296 rm -f conftest.er1
10297 cat conftest.err >&5
10298 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10299 (exit $ac_status); } &&
10300 { ac_try='test -z "$ac_c_werror_flag"
10301 || test ! -s conftest.err'
10302 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
10303 (eval $ac_try) 2>&5
10304 ac_status=$?
10305 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10306 (exit $ac_status); }; } &&
10307 { ac_try='test -s conftest.$ac_objext'
10308 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
10309 (eval $ac_try) 2>&5
10310 ac_status=$?
10311 echo "$as_me:$LINENO: \$? = $ac_status" >&5
10312 (exit $ac_status); }; }; then
10313 ac_cv_have_decl_getc_unlocked=yes
10314else
10315 echo "$as_me: failed program was:" >&5
10316sed 's/^/| /' conftest.$ac_ext >&5
10317
10318ac_cv_have_decl_getc_unlocked=no
10319fi
10320rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
10321fi
10322echo "$as_me:$LINENO: result: $ac_cv_have_decl_getc_unlocked" >&5
10323echo "${ECHO_T}$ac_cv_have_decl_getc_unlocked" >&6
10324if test $ac_cv_have_decl_getc_unlocked = yes; then
10325
10326cat >>confdefs.h <<_ACEOF
10327#define HAVE_DECL_GETC_UNLOCKED 1
10328_ACEOF
10329
10330
10331else
10332 cat >>confdefs.h <<_ACEOF
10333#define HAVE_DECL_GETC_UNLOCKED 0
10334_ACEOF
10335
10336
10337fi
10338
10339
252b5132
RH
10340
10341
10342case "${host}" in
8a965946 10343*-*-msdos* | *-*-go32* | *-*-mingw32* | *-*-cygwin* | *-*-windows*)
42ecbf5e
DJ
10344
10345cat >>confdefs.h <<\_ACEOF
252b5132 10346#define USE_BINARY_FOPEN 1
42ecbf5e 10347_ACEOF
252b5132
RH
10348 ;;
10349esac
10350
10351# target-specific stuff:
10352
10353# Canonicalize the secondary target names.
10354if test -n "$enable_targets"; then
10355 for targ in `echo $enable_targets | sed 's/,/ /g'`
10356 do
6d83c84b 10357 result=`$ac_config_sub $targ 2>/dev/null`
252b5132
RH
10358 if test -n "$result"; then
10359 canon_targets="$canon_targets $result"
10360 else
10361 # Allow targets that config.sub doesn't recognize, like "all".
10362 canon_targets="$canon_targets $targ"
10363 fi
10364 done
10365fi
10366
10367all_targets=false
10368BUILD_NLMCONV=
10369NLMCONV_DEFS=
10370BUILD_SRCONV=
10371BUILD_DLLTOOL=
10372DLLTOOL_DEFS=
10373BUILD_WINDRES=
10374BUILD_DLLWRAP=
10375BUILD_MISC=
8b1e6df3 10376OBJDUMP_DEFS=
252b5132
RH
10377
10378for targ in $target $canon_targets
10379do
10380 if test "x$targ" = "xall"; then
10381 all_targets=true
10382 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
10383 BUILD_SRCONV='$(SRCONV_PROG)'
10384 NLMCONV_DEFS="-DNLMCONV_I386 -DNLMCONV_ALPHA -DNLMCONV_POWERPC -DNLMCONV_SPARC"
10385 else
10386 case $targ in
42ecbf5e 10387 i[3-7]86*-*-netware*)
252b5132
RH
10388 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
10389 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_I386"
10390 ;;
10391 alpha*-*-netware*)
10392 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
10393 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_ALPHA"
10394 ;;
10395 powerpc*-*-netware*)
10396 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
10397 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_POWERPC"
10398 ;;
10399 sparc*-*-netware*)
10400 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
10401 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_SPARC"
10402 ;;
10403 esac
10404 case $targ in
10405 *-*-hms*) BUILD_SRCONV='$(SRCONV_PROG)' ;;
10406 esac
10407 case $targ in
a8c548cb
NC
10408 arm-epoc-pe*)
10409 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
10410 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM_EPOC -DDLLTOOL_ARM"
10411 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
10412 ;;
27a710e5 10413 arm-*-pe* | arm-*-wince)
252b5132
RH
10414 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
10415 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
10416 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
7a7b06ef 10417 ;;
27a710e5 10418 thumb-*-pe*)
252b5132
RH
10419 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
10420 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
10421 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
7a7b06ef 10422 ;;
c7217458 10423 arm*-* | xscale-* | strongarm-* | d10v-*)
8b1e6df3
NC
10424 OBJDUMP_DEFS="-DDISASSEMBLER_NEEDS_RELOCS"
10425 ;;
80c7c40a 10426 i[3-7]86-*-pe* | i[3-7]86-*-cygwin* | i[3-7]86-*-mingw32** | i[3-7]86-*-netbsdpe*)
252b5132
RH
10427 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
10428 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
10429 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
10430 BUILD_DLLWRAP='$(DLLWRAP_PROG)$(EXEEXT)'
7a7b06ef 10431 ;;
80c7c40a 10432 i[3-7]86-*-interix)
7a7b06ef
ILT
10433 BUILD_DLLTOOL='$(DLLTOOL_PROG)'
10434 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
10435 ;;
f0660b73
NC
10436 powerpc*-aix5.[01])
10437 ;;
10438 powerpc*-aix5.*)
10439 OBJDUMP_DEFS="-DAIX_WEAK_SUPPORT"
10440 ;;
e1d5b1e7 10441 powerpc*-*-pe* | powerpc*-*-cygwin*)
252b5132
RH
10442 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
10443 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_PPC"
10444 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
8a0e0f38 10445 ;;
e1d5b1e7 10446 sh*-*-pe)
8a0e0f38
NC
10447 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
10448 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_SH"
10449 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
10450 ;;
e1d5b1e7 10451 mips*-*-pe)
8a0e0f38
NC
10452 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
10453 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MIPS"
10454 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
7a7b06ef 10455 ;;
27a710e5 10456 mcore-*-pe)
661016bb
NC
10457 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
10458 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MCORE"
10459 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
7a7b06ef 10460 ;;
27a710e5 10461 mcore-*-elf)
661016bb
NC
10462 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
10463 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MCORE_ELF"
7a7b06ef 10464 ;;
252b5132
RH
10465 esac
10466 fi
10467done
10468
42ecbf5e
DJ
10469if test "${with_windres+set}" = set; then
10470 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
10471fi
10472
10473
10474
10475
10476
10477
10478
10479
10480
10481
10482
10483
10484cat >>confdefs.h <<_ACEOF
10485#define TARGET "${target}"
10486_ACEOF
10487
10488
10489targ=$target
10490. $srcdir/../bfd/config.bfd
10491if test "x$targ_underscore" = "xyes"; then
10492 UNDERSCORE=1
10493else
10494 UNDERSCORE=0
10495fi
10496
10497cat >>confdefs.h <<_ACEOF
10498#define TARGET_PREPENDS_UNDERSCORE $UNDERSCORE
10499_ACEOF
10500
10501
10502# Emulation
10503for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'`
10504do
10505 # Canonicalize the secondary target names.
10506 result=`$ac_config_sub $targ_alias 2>/dev/null`
10507 if test -n "$result"; then
10508 targ=$result
10509 else
10510 targ=$targ_alias
10511 fi
10512
10513 . ${srcdir}/configure.tgt
10514
10515 EMULATION=$targ_emul
10516 EMULATION_VECTOR=$targ_emul_vector
10517done
10518
10519
10520
10521
10522 ac_config_files="$ac_config_files Makefile doc/Makefile po/Makefile.in:po/Make-in"
10523 ac_config_commands="$ac_config_commands default"
10524cat >confcache <<\_ACEOF
10525# This file is a shell script that caches the results of configure
10526# tests run on this system so they can be shared between configure
10527# scripts and configure runs, see configure's option --config-cache.
10528# It is not useful on other systems. If it contains results you don't
10529# want to keep, you may remove or edit it.
10530#
10531# config.status only pays attention to the cache file if you give it
10532# the --recheck option to rerun configure.
10533#
10534# `ac_cv_env_foo' variables (set or unset) will be overridden when
10535# loading this file, other *unset* `ac_cv_foo' will be assigned the
10536# following values.
10537
10538_ACEOF
10539
10540# The following way of writing the cache mishandles newlines in values,
10541# but we know of no workaround that is simple, portable, and efficient.
10542# So, don't put newlines in cache variables' values.
10543# Ultrix sh set writes to stderr and can't be redirected directly,
10544# and sets the high bit in the cache file unless we assign to the vars.
10545{
10546 (set) 2>&1 |
10547 case `(ac_space=' '; set | grep ac_space) 2>&1` in
10548 *ac_space=\ *)
10549 # `set' does not quote correctly, so add quotes (double-quote
10550 # substitution turns \\\\ into \\, and sed turns \\ into \).
10551 sed -n \
10552 "s/'/'\\\\''/g;
10553 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
10554 ;;
10555 *)
10556 # `set' quotes correctly as required by POSIX, so do not add quotes.
10557 sed -n \
10558 "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
10559 ;;
10560 esac;
10561} |
10562 sed '
10563 t clear
10564 : clear
10565 s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
10566 t end
10567 /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
10568 : end' >>confcache
10569if diff $cache_file confcache >/dev/null 2>&1; then :; else
10570 if test -w $cache_file; then
10571 test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
10572 cat confcache >$cache_file
10573 else
10574 echo "not updating unwritable cache $cache_file"
10575 fi
10576fi
10577rm -f confcache
10578
10579test "x$prefix" = xNONE && prefix=$ac_default_prefix
10580# Let make expand exec_prefix.
10581test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
10582
10583# VPATH may cause trouble with some makes, so we remove $(srcdir),
10584# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
10585# trailing colons and then remove the whole line if VPATH becomes empty
10586# (actually we leave an empty line to preserve line numbers).
10587if test "x$srcdir" = x.; then
10588 ac_vpsub='/^[ ]*VPATH[ ]*=/{
10589s/:*\$(srcdir):*/:/;
10590s/:*\${srcdir}:*/:/;
10591s/:*@srcdir@:*/:/;
10592s/^\([^=]*=[ ]*\):*/\1/;
10593s/:*$//;
10594s/^[^=]*=[ ]*$//;
10595}'
10596fi
10597
10598DEFS=-DHAVE_CONFIG_H
10599
10600ac_libobjs=
10601ac_ltlibobjs=
10602for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
10603 # 1. Remove the extension, and $U if already installed.
10604 ac_i=`echo "$ac_i" |
10605 sed 's/\$U\././;s/\.o$//;s/\.obj$//'`
10606 # 2. Add them.
10607 ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext"
10608 ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo'
10609done
10610LIBOBJS=$ac_libobjs
10611
10612LTLIBOBJS=$ac_ltlibobjs
10613
10614
10615if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
10616 { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined.
10617Usually this means the macro was only invoked conditionally." >&5
10618echo "$as_me: error: conditional \"AMDEP\" was never defined.
10619Usually this means the macro was only invoked conditionally." >&2;}
10620 { (exit 1); exit 1; }; }
10621fi
10622if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
10623 { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined.
10624Usually this means the macro was only invoked conditionally." >&5
10625echo "$as_me: error: conditional \"am__fastdepCC\" was never defined.
10626Usually this means the macro was only invoked conditionally." >&2;}
10627 { (exit 1); exit 1; }; }
10628fi
10629if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
10630 { { echo "$as_me:$LINENO: error: conditional \"MAINTAINER_MODE\" was never defined.
10631Usually this means the macro was only invoked conditionally." >&5
10632echo "$as_me: error: conditional \"MAINTAINER_MODE\" was never defined.
10633Usually this means the macro was only invoked conditionally." >&2;}
10634 { (exit 1); exit 1; }; }
10635fi
10636
10637: ${CONFIG_STATUS=./config.status}
10638ac_clean_files_save=$ac_clean_files
10639ac_clean_files="$ac_clean_files $CONFIG_STATUS"
10640{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
10641echo "$as_me: creating $CONFIG_STATUS" >&6;}
10642cat >$CONFIG_STATUS <<_ACEOF
10643#! $SHELL
10644# Generated by $as_me.
10645# Run this file to recreate the current configuration.
10646# Compiler output produced by configure, useful for debugging
10647# configure, is in config.log if it exists.
10648
10649debug=false
10650ac_cs_recheck=false
10651ac_cs_silent=false
10652SHELL=\${CONFIG_SHELL-$SHELL}
10653_ACEOF
252b5132 10654
42ecbf5e
DJ
10655cat >>$CONFIG_STATUS <<\_ACEOF
10656## --------------------- ##
10657## M4sh Initialization. ##
10658## --------------------- ##
252b5132 10659
42ecbf5e
DJ
10660# Be Bourne compatible
10661if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
10662 emulate sh
10663 NULLCMD=:
10664 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
10665 # is contrary to our usage. Disable this feature.
10666 alias -g '${1+"$@"}'='"$@"'
10667elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
10668 set -o posix
10669fi
10670DUALCASE=1; export DUALCASE # for MKS sh
252b5132 10671
42ecbf5e
DJ
10672# Support unset when possible.
10673if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
10674 as_unset=unset
10675else
10676 as_unset=false
10677fi
252b5132
RH
10678
10679
42ecbf5e
DJ
10680# Work around bugs in pre-3.0 UWIN ksh.
10681$as_unset ENV MAIL MAILPATH
10682PS1='$ '
10683PS2='> '
10684PS4='+ '
252b5132 10685
42ecbf5e
DJ
10686# NLS nuisances.
10687for as_var in \
10688 LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
10689 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
10690 LC_TELEPHONE LC_TIME
10691do
10692 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
10693 eval $as_var=C; export $as_var
10694 else
10695 $as_unset $as_var
10696 fi
10697done
252b5132 10698
42ecbf5e
DJ
10699# Required to use basename.
10700if expr a : '\(a\)' >/dev/null 2>&1; then
10701 as_expr=expr
10702else
10703 as_expr=false
10704fi
252b5132 10705
42ecbf5e
DJ
10706if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
10707 as_basename=basename
10708else
10709 as_basename=false
10710fi
252b5132 10711
8b1e6df3 10712
42ecbf5e
DJ
10713# Name of the executable.
10714as_me=`$as_basename "$0" ||
10715$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
10716 X"$0" : 'X\(//\)$' \| \
10717 X"$0" : 'X\(/\)$' \| \
10718 . : '\(.\)' 2>/dev/null ||
10719echo X/"$0" |
10720 sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
10721 /^X\/\(\/\/\)$/{ s//\1/; q; }
10722 /^X\/\(\/\).*/{ s//\1/; q; }
10723 s/.*/./; q'`
0218d1e4 10724
252b5132 10725
42ecbf5e
DJ
10726# PATH needs CR, and LINENO needs CR and PATH.
10727# Avoid depending upon Character Ranges.
10728as_cr_letters='abcdefghijklmnopqrstuvwxyz'
10729as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
10730as_cr_Letters=$as_cr_letters$as_cr_LETTERS
10731as_cr_digits='0123456789'
10732as_cr_alnum=$as_cr_Letters$as_cr_digits
252b5132 10733
42ecbf5e
DJ
10734# The user is always right.
10735if test "${PATH_SEPARATOR+set}" != set; then
10736 echo "#! /bin/sh" >conf$$.sh
10737 echo "exit 0" >>conf$$.sh
10738 chmod +x conf$$.sh
10739 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
10740 PATH_SEPARATOR=';'
10741 else
10742 PATH_SEPARATOR=:
10743 fi
10744 rm -f conf$$.sh
252b5132
RH
10745fi
10746
10747
42ecbf5e
DJ
10748 as_lineno_1=$LINENO
10749 as_lineno_2=$LINENO
10750 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
10751 test "x$as_lineno_1" != "x$as_lineno_2" &&
10752 test "x$as_lineno_3" = "x$as_lineno_2" || {
10753 # Find who we are. Look in the path if we contain no path at all
10754 # relative or not.
10755 case $0 in
10756 *[\\/]* ) as_myself=$0 ;;
10757 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10758for as_dir in $PATH
eb1e0e80 10759do
42ecbf5e
DJ
10760 IFS=$as_save_IFS
10761 test -z "$as_dir" && as_dir=.
10762 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
10763done
eb1e0e80 10764
42ecbf5e
DJ
10765 ;;
10766 esac
10767 # We did not find ourselves, most probably we were run as `sh COMMAND'
10768 # in which case we are not to be found in the path.
10769 if test "x$as_myself" = x; then
10770 as_myself=$0
10771 fi
10772 if test ! -f "$as_myself"; then
10773 { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
10774echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
10775 { (exit 1); exit 1; }; }
10776 fi
10777 case $CONFIG_SHELL in
10778 '')
10779 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10780for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
10781do
10782 IFS=$as_save_IFS
10783 test -z "$as_dir" && as_dir=.
10784 for as_base in sh bash ksh sh5; do
10785 case $as_dir in
10786 /*)
10787 if ("$as_dir/$as_base" -c '
10788 as_lineno_1=$LINENO
10789 as_lineno_2=$LINENO
10790 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
10791 test "x$as_lineno_1" != "x$as_lineno_2" &&
10792 test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then
10793 $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
10794 $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
10795 CONFIG_SHELL=$as_dir/$as_base
10796 export CONFIG_SHELL
10797 exec "$CONFIG_SHELL" "$0" ${1+"$@"}
10798 fi;;
10799 esac
10800 done
eb1e0e80 10801done
42ecbf5e
DJ
10802;;
10803 esac
eb1e0e80 10804
42ecbf5e
DJ
10805 # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
10806 # uniformly replaced by the line number. The first 'sed' inserts a
10807 # line-number line before each line; the second 'sed' does the real
10808 # work. The second script uses 'N' to pair each line-number line
10809 # with the numbered line, and appends trailing '-' during
10810 # substitution so that $LINENO is not a special case at line end.
10811 # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
10812 # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-)
10813 sed '=' <$as_myself |
10814 sed '
10815 N
10816 s,$,-,
10817 : loop
10818 s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
10819 t loop
10820 s,-$,,
10821 s,^['$as_cr_digits']*\n,,
10822 ' >$as_me.lineno &&
10823 chmod +x $as_me.lineno ||
10824 { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
10825echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
10826 { (exit 1); exit 1; }; }
10827
10828 # Don't try to exec as it changes $[0], causing all sort of problems
10829 # (the dirname of $[0] is not the place where we might find the
10830 # original and so on. Autoconf is especially sensible to this).
10831 . ./$as_me.lineno
10832 # Exit status is that of the last command.
10833 exit
10834}
eb1e0e80
NC
10835
10836
42ecbf5e
DJ
10837case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
10838 *c*,-n*) ECHO_N= ECHO_C='
10839' ECHO_T=' ' ;;
10840 *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;;
10841 *) ECHO_N= ECHO_C='\c' ECHO_T= ;;
10842esac
eb1e0e80 10843
42ecbf5e
DJ
10844if expr a : '\(a\)' >/dev/null 2>&1; then
10845 as_expr=expr
d15b04bd 10846else
42ecbf5e
DJ
10847 as_expr=false
10848fi
10849
10850rm -f conf$$ conf$$.exe conf$$.file
10851echo >conf$$.file
10852if ln -s conf$$.file conf$$ 2>/dev/null; then
10853 # We could just check for DJGPP; but this test a) works b) is more generic
10854 # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
10855 if test -f conf$$.exe; then
10856 # Don't use ln at all; we don't have any links
10857 as_ln_s='cp -p'
252b5132 10858 else
42ecbf5e 10859 as_ln_s='ln -s'
252b5132 10860 fi
42ecbf5e
DJ
10861elif ln conf$$.file conf$$ 2>/dev/null; then
10862 as_ln_s=ln
10863else
10864 as_ln_s='cp -p'
252b5132 10865fi
42ecbf5e 10866rm -f conf$$ conf$$.exe conf$$.file
252b5132 10867
42ecbf5e
DJ
10868if mkdir -p . 2>/dev/null; then
10869 as_mkdir_p=:
10870else
10871 test -d ./-p && rmdir ./-p
10872 as_mkdir_p=false
10873fi
d15b04bd 10874
42ecbf5e 10875as_executable_p="test -f"
252b5132 10876
42ecbf5e
DJ
10877# Sed expression to map a string onto a valid CPP name.
10878as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
10879
10880# Sed expression to map a string onto a valid variable name.
10881as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
10882
10883
10884# IFS
10885# We need space, tab and new line, in precisely that order.
10886as_nl='
10887'
10888IFS=" $as_nl"
10889
10890# CDPATH.
10891$as_unset CDPATH
10892
10893exec 6>&1
10894
10895# Open the log real soon, to keep \$[0] and so on meaningful, and to
10896# report actual input values of CONFIG_FILES etc. instead of their
10897# values after options handling. Logging --version etc. is OK.
10898exec 5>>config.log
10899{
10900 echo
10901 sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
10902## Running $as_me. ##
10903_ASBOX
10904} >&5
10905cat >&5 <<_CSEOF
10906
10907This file was extended by $as_me, which was
10908generated by GNU Autoconf 2.59. Invocation command line was
10909
10910 CONFIG_FILES = $CONFIG_FILES
10911 CONFIG_HEADERS = $CONFIG_HEADERS
10912 CONFIG_LINKS = $CONFIG_LINKS
10913 CONFIG_COMMANDS = $CONFIG_COMMANDS
10914 $ $0 $@
10915
10916_CSEOF
10917echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
10918echo >&5
10919_ACEOF
10920
10921# Files that config.status was made for.
10922if test -n "$ac_config_files"; then
10923 echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS
252b5132
RH
10924fi
10925
42ecbf5e
DJ
10926if test -n "$ac_config_headers"; then
10927 echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS
10928fi
e5a52504 10929
42ecbf5e
DJ
10930if test -n "$ac_config_links"; then
10931 echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS
10932fi
e5a52504 10933
42ecbf5e
DJ
10934if test -n "$ac_config_commands"; then
10935 echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
10936fi
d15b04bd 10937
42ecbf5e
DJ
10938cat >>$CONFIG_STATUS <<\_ACEOF
10939
10940ac_cs_usage="\
10941\`$as_me' instantiates files from templates according to the
10942current configuration.
10943
10944Usage: $0 [OPTIONS] [FILE]...
10945
10946 -h, --help print this help, then exit
10947 -V, --version print version number, then exit
10948 -q, --quiet do not print progress messages
10949 -d, --debug don't remove temporary files
10950 --recheck update $as_me by reconfiguring in the same conditions
10951 --file=FILE[:TEMPLATE]
10952 instantiate the configuration file FILE
10953 --header=FILE[:TEMPLATE]
10954 instantiate the configuration header FILE
10955
10956Configuration files:
10957$config_files
10958
10959Configuration headers:
10960$config_headers
10961
10962Configuration commands:
10963$config_commands
10964
10965Report bugs to <bug-autoconf@gnu.org>."
10966_ACEOF
10967
10968cat >>$CONFIG_STATUS <<_ACEOF
10969ac_cs_version="\\
10970config.status
10971configured by $0, generated by GNU Autoconf 2.59,
10972 with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
10973
10974Copyright (C) 2003 Free Software Foundation, Inc.
10975This config.status script is free software; the Free Software Foundation
10976gives unlimited permission to copy, distribute and modify it."
10977srcdir=$srcdir
10978INSTALL="$INSTALL"
10979_ACEOF
10980
10981cat >>$CONFIG_STATUS <<\_ACEOF
10982# If no file are specified by the user, then we need to provide default
10983# value. By we need to know if files were specified by the user.
10984ac_need_defaults=:
10985while test $# != 0
10986do
10987 case $1 in
10988 --*=*)
10989 ac_option=`expr "x$1" : 'x\([^=]*\)='`
10990 ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
10991 ac_shift=:
10992 ;;
10993 -*)
10994 ac_option=$1
10995 ac_optarg=$2
10996 ac_shift=shift
10997 ;;
10998 *) # This is not an option, so the user has probably given explicit
10999 # arguments.
11000 ac_option=$1
11001 ac_need_defaults=false;;
11002 esac
11003
11004 case $ac_option in
11005 # Handling of the options.
11006_ACEOF
11007cat >>$CONFIG_STATUS <<\_ACEOF
11008 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
11009 ac_cs_recheck=: ;;
11010 --version | --vers* | -V )
11011 echo "$ac_cs_version"; exit 0 ;;
11012 --he | --h)
11013 # Conflict between --help and --header
11014 { { echo "$as_me:$LINENO: error: ambiguous option: $1
11015Try \`$0 --help' for more information." >&5
11016echo "$as_me: error: ambiguous option: $1
11017Try \`$0 --help' for more information." >&2;}
11018 { (exit 1); exit 1; }; };;
11019 --help | --hel | -h )
11020 echo "$ac_cs_usage"; exit 0 ;;
11021 --debug | --d* | -d )
11022 debug=: ;;
11023 --file | --fil | --fi | --f )
11024 $ac_shift
11025 CONFIG_FILES="$CONFIG_FILES $ac_optarg"
11026 ac_need_defaults=false;;
11027 --header | --heade | --head | --hea )
11028 $ac_shift
11029 CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
11030 ac_need_defaults=false;;
11031 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
11032 | -silent | --silent | --silen | --sile | --sil | --si | --s)
11033 ac_cs_silent=: ;;
11034
11035 # This is an error.
11036 -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1
11037Try \`$0 --help' for more information." >&5
11038echo "$as_me: error: unrecognized option: $1
11039Try \`$0 --help' for more information." >&2;}
11040 { (exit 1); exit 1; }; } ;;
11041
11042 *) ac_config_targets="$ac_config_targets $1" ;;
11043
11044 esac
11045 shift
11046done
11047
11048ac_configure_extra_args=
11049
11050if $ac_cs_silent; then
11051 exec 6>/dev/null
11052 ac_configure_extra_args="$ac_configure_extra_args --silent"
11053fi
11054
11055_ACEOF
11056cat >>$CONFIG_STATUS <<_ACEOF
11057if \$ac_cs_recheck; then
11058 echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
11059 exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
11060fi
11061
11062_ACEOF
11063
11064cat >>$CONFIG_STATUS <<_ACEOF
d15b04bd 11065#
42ecbf5e 11066# INIT-COMMANDS section.
d15b04bd 11067#
e5a52504 11068
42ecbf5e
DJ
11069AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
11070
11071_ACEOF
11072
11073
11074
11075cat >>$CONFIG_STATUS <<\_ACEOF
11076for ac_config_target in $ac_config_targets
252b5132 11077do
42ecbf5e
DJ
11078 case "$ac_config_target" in
11079 # Handling of arguments.
11080 "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
11081 "doc/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
11082 "po/Makefile.in" ) CONFIG_FILES="$CONFIG_FILES po/Makefile.in:po/Make-in" ;;
11083 "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
11084 "default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
11085 "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h:config.in" ;;
11086 *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
11087echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
11088 { (exit 1); exit 1; }; };;
d15b04bd 11089 esac
252b5132
RH
11090done
11091
42ecbf5e
DJ
11092# If the user did not use the arguments to specify the items to instantiate,
11093# then the envvar interface is used. Set only those that are not.
11094# We use the long form for the default assignment because of an extremely
11095# bizarre bug on SunOS 4.1.3.
11096if $ac_need_defaults; then
11097 test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
11098 test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
11099 test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
11100fi
11101
11102# Have a temporary directory for convenience. Make it in the build tree
11103# simply because there is no reason to put it here, and in addition,
11104# creating and moving files from /tmp can sometimes cause problems.
11105# Create a temporary directory, and hook for its removal unless debugging.
11106$debug ||
11107{
11108 trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
11109 trap '{ (exit 1); exit 1; }' 1 2 13 15
11110}
252b5132 11111
42ecbf5e 11112# Create a (secure) tmp directory for tmp files.
e5a52504 11113
42ecbf5e
DJ
11114{
11115 tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` &&
11116 test -n "$tmp" && test -d "$tmp"
11117} ||
11118{
11119 tmp=./confstat$$-$RANDOM
11120 (umask 077 && mkdir $tmp)
11121} ||
11122{
11123 echo "$me: cannot create a temporary directory in ." >&2
11124 { (exit 1); exit 1; }
11125}
11126
11127_ACEOF
11128
11129cat >>$CONFIG_STATUS <<_ACEOF
11130
11131#
11132# CONFIG_FILES section.
11133#
e5a52504 11134
42ecbf5e
DJ
11135# No need to generate the scripts if there are no CONFIG_FILES.
11136# This happens for instance when ./config.status config.h
11137if test -n "\$CONFIG_FILES"; then
11138 # Protect against being on the right side of a sed subst in config.status.
11139 sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g;
11140 s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF
11141s,@SHELL@,$SHELL,;t t
11142s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t
11143s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t
11144s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t
11145s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t
11146s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t
11147s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t
11148s,@exec_prefix@,$exec_prefix,;t t
11149s,@prefix@,$prefix,;t t
11150s,@program_transform_name@,$program_transform_name,;t t
11151s,@bindir@,$bindir,;t t
11152s,@sbindir@,$sbindir,;t t
11153s,@libexecdir@,$libexecdir,;t t
11154s,@datadir@,$datadir,;t t
11155s,@sysconfdir@,$sysconfdir,;t t
11156s,@sharedstatedir@,$sharedstatedir,;t t
11157s,@localstatedir@,$localstatedir,;t t
11158s,@libdir@,$libdir,;t t
11159s,@includedir@,$includedir,;t t
11160s,@oldincludedir@,$oldincludedir,;t t
11161s,@infodir@,$infodir,;t t
11162s,@mandir@,$mandir,;t t
11163s,@build_alias@,$build_alias,;t t
11164s,@host_alias@,$host_alias,;t t
11165s,@target_alias@,$target_alias,;t t
11166s,@DEFS@,$DEFS,;t t
11167s,@ECHO_C@,$ECHO_C,;t t
11168s,@ECHO_N@,$ECHO_N,;t t
11169s,@ECHO_T@,$ECHO_T,;t t
11170s,@LIBS@,$LIBS,;t t
11171s,@build@,$build,;t t
11172s,@build_cpu@,$build_cpu,;t t
11173s,@build_vendor@,$build_vendor,;t t
11174s,@build_os@,$build_os,;t t
11175s,@host@,$host,;t t
11176s,@host_cpu@,$host_cpu,;t t
11177s,@host_vendor@,$host_vendor,;t t
11178s,@host_os@,$host_os,;t t
11179s,@target@,$target,;t t
11180s,@target_cpu@,$target_cpu,;t t
11181s,@target_vendor@,$target_vendor,;t t
11182s,@target_os@,$target_os,;t t
11183s,@CC@,$CC,;t t
11184s,@CFLAGS@,$CFLAGS,;t t
11185s,@LDFLAGS@,$LDFLAGS,;t t
11186s,@CPPFLAGS@,$CPPFLAGS,;t t
11187s,@ac_ct_CC@,$ac_ct_CC,;t t
11188s,@EXEEXT@,$EXEEXT,;t t
11189s,@OBJEXT@,$OBJEXT,;t t
11190s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
11191s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
11192s,@INSTALL_DATA@,$INSTALL_DATA,;t t
11193s,@CYGPATH_W@,$CYGPATH_W,;t t
11194s,@PACKAGE@,$PACKAGE,;t t
11195s,@VERSION@,$VERSION,;t t
11196s,@ACLOCAL@,$ACLOCAL,;t t
11197s,@AUTOCONF@,$AUTOCONF,;t t
11198s,@AUTOMAKE@,$AUTOMAKE,;t t
11199s,@AUTOHEADER@,$AUTOHEADER,;t t
11200s,@MAKEINFO@,$MAKEINFO,;t t
11201s,@install_sh@,$install_sh,;t t
11202s,@STRIP@,$STRIP,;t t
11203s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t
11204s,@INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t
11205s,@mkdir_p@,$mkdir_p,;t t
11206s,@AWK@,$AWK,;t t
11207s,@SET_MAKE@,$SET_MAKE,;t t
11208s,@am__leading_dot@,$am__leading_dot,;t t
11209s,@AMTAR@,$AMTAR,;t t
11210s,@am__tar@,$am__tar,;t t
11211s,@am__untar@,$am__untar,;t t
11212s,@DEPDIR@,$DEPDIR,;t t
11213s,@am__include@,$am__include,;t t
11214s,@am__quote@,$am__quote,;t t
11215s,@AMDEP_TRUE@,$AMDEP_TRUE,;t t
11216s,@AMDEP_FALSE@,$AMDEP_FALSE,;t t
11217s,@AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t
11218s,@CCDEPMODE@,$CCDEPMODE,;t t
11219s,@am__fastdepCC_TRUE@,$am__fastdepCC_TRUE,;t t
11220s,@am__fastdepCC_FALSE@,$am__fastdepCC_FALSE,;t t
11221s,@LN_S@,$LN_S,;t t
11222s,@RANLIB@,$RANLIB,;t t
11223s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t
11224s,@LIBTOOL@,$LIBTOOL,;t t
11225s,@WARN_CFLAGS@,$WARN_CFLAGS,;t t
11226s,@NO_WERROR@,$NO_WERROR,;t t
11227s,@YACC@,$YACC,;t t
11228s,@LEX@,$LEX,;t t
11229s,@LEXLIB@,$LEXLIB,;t t
11230s,@LEX_OUTPUT_ROOT@,$LEX_OUTPUT_ROOT,;t t
11231s,@CPP@,$CPP,;t t
11232s,@EGREP@,$EGREP,;t t
11233s,@ALLOCA@,$ALLOCA,;t t
11234s,@USE_NLS@,$USE_NLS,;t t
11235s,@MSGFMT@,$MSGFMT,;t t
11236s,@GMSGFMT@,$GMSGFMT,;t t
11237s,@XGETTEXT@,$XGETTEXT,;t t
11238s,@USE_INCLUDED_LIBINTL@,$USE_INCLUDED_LIBINTL,;t t
11239s,@CATALOGS@,$CATALOGS,;t t
11240s,@CATOBJEXT@,$CATOBJEXT,;t t
11241s,@DATADIRNAME@,$DATADIRNAME,;t t
11242s,@GMOFILES@,$GMOFILES,;t t
11243s,@INSTOBJEXT@,$INSTOBJEXT,;t t
11244s,@INTLDEPS@,$INTLDEPS,;t t
11245s,@INTLLIBS@,$INTLLIBS,;t t
11246s,@INTLOBJS@,$INTLOBJS,;t t
11247s,@POFILES@,$POFILES,;t t
11248s,@POSUB@,$POSUB,;t t
11249s,@INCLUDE_LOCALE_H@,$INCLUDE_LOCALE_H,;t t
11250s,@GT_NO@,$GT_NO,;t t
11251s,@GT_YES@,$GT_YES,;t t
11252s,@MKINSTALLDIRS@,$MKINSTALLDIRS,;t t
11253s,@l@,$l,;t t
11254s,@MAINTAINER_MODE_TRUE@,$MAINTAINER_MODE_TRUE,;t t
11255s,@MAINTAINER_MODE_FALSE@,$MAINTAINER_MODE_FALSE,;t t
11256s,@MAINT@,$MAINT,;t t
11257s,@HDEFINES@,$HDEFINES,;t t
11258s,@AR@,$AR,;t t
11259s,@CC_FOR_BUILD@,$CC_FOR_BUILD,;t t
11260s,@EXEEXT_FOR_BUILD@,$EXEEXT_FOR_BUILD,;t t
11261s,@DEMANGLER_NAME@,$DEMANGLER_NAME,;t t
11262s,@NLMCONV_DEFS@,$NLMCONV_DEFS,;t t
11263s,@BUILD_NLMCONV@,$BUILD_NLMCONV,;t t
11264s,@BUILD_SRCONV@,$BUILD_SRCONV,;t t
11265s,@BUILD_DLLTOOL@,$BUILD_DLLTOOL,;t t
11266s,@DLLTOOL_DEFS@,$DLLTOOL_DEFS,;t t
11267s,@BUILD_WINDRES@,$BUILD_WINDRES,;t t
11268s,@BUILD_DLLWRAP@,$BUILD_DLLWRAP,;t t
11269s,@BUILD_MISC@,$BUILD_MISC,;t t
11270s,@OBJDUMP_DEFS@,$OBJDUMP_DEFS,;t t
11271s,@EMULATION@,$EMULATION,;t t
11272s,@EMULATION_VECTOR@,$EMULATION_VECTOR,;t t
11273s,@LIBOBJS@,$LIBOBJS,;t t
11274s,@LTLIBOBJS@,$LTLIBOBJS,;t t
d15b04bd 11275CEOF
252b5132 11276
42ecbf5e
DJ
11277_ACEOF
11278
11279 cat >>$CONFIG_STATUS <<\_ACEOF
11280 # Split the substitutions into bite-sized pieces for seds with
11281 # small command number limits, like on Digital OSF/1 and HP-UX.
11282 ac_max_sed_lines=48
11283 ac_sed_frag=1 # Number of current file.
11284 ac_beg=1 # First line for current file.
11285 ac_end=$ac_max_sed_lines # Line after last line for current file.
11286 ac_more_lines=:
11287 ac_sed_cmds=
11288 while $ac_more_lines; do
11289 if test $ac_beg -gt 1; then
11290 sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
11291 else
11292 sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
11293 fi
11294 if test ! -s $tmp/subs.frag; then
11295 ac_more_lines=false
d15b04bd 11296 else
42ecbf5e
DJ
11297 # The purpose of the label and of the branching condition is to
11298 # speed up the sed processing (if there are no `@' at all, there
11299 # is no need to browse any of the substitutions).
11300 # These are the two extra sed commands mentioned above.
11301 (echo ':t
11302 /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
11303 if test -z "$ac_sed_cmds"; then
11304 ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
11305 else
11306 ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
11307 fi
11308 ac_sed_frag=`expr $ac_sed_frag + 1`
11309 ac_beg=$ac_end
11310 ac_end=`expr $ac_end + $ac_max_sed_lines`
d15b04bd 11311 fi
42ecbf5e
DJ
11312 done
11313 if test -z "$ac_sed_cmds"; then
11314 ac_sed_cmds=cat
252b5132 11315 fi
42ecbf5e 11316fi # test -n "$CONFIG_FILES"
252b5132 11317
42ecbf5e
DJ
11318_ACEOF
11319cat >>$CONFIG_STATUS <<\_ACEOF
11320for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
e5a52504 11321 # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
42ecbf5e
DJ
11322 case $ac_file in
11323 - | *:- | *:-:* ) # input from stdin
11324 cat >$tmp/stdin
11325 ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
11326 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
11327 *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
11328 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
11329 * ) ac_file_in=$ac_file.in ;;
252b5132
RH
11330 esac
11331
42ecbf5e
DJ
11332 # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
11333 ac_dir=`(dirname "$ac_file") 2>/dev/null ||
11334$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
11335 X"$ac_file" : 'X\(//\)[^/]' \| \
11336 X"$ac_file" : 'X\(//\)$' \| \
11337 X"$ac_file" : 'X\(/\)' \| \
11338 . : '\(.\)' 2>/dev/null ||
11339echo X"$ac_file" |
11340 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
11341 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
11342 /^X\(\/\/\)$/{ s//\1/; q; }
11343 /^X\(\/\).*/{ s//\1/; q; }
11344 s/.*/./; q'`
11345 { if $as_mkdir_p; then
11346 mkdir -p "$ac_dir"
d15b04bd 11347 else
42ecbf5e
DJ
11348 as_dir="$ac_dir"
11349 as_dirs=
11350 while test ! -d "$as_dir"; do
11351 as_dirs="$as_dir $as_dirs"
11352 as_dir=`(dirname "$as_dir") 2>/dev/null ||
11353$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
11354 X"$as_dir" : 'X\(//\)[^/]' \| \
11355 X"$as_dir" : 'X\(//\)$' \| \
11356 X"$as_dir" : 'X\(/\)' \| \
11357 . : '\(.\)' 2>/dev/null ||
11358echo X"$as_dir" |
11359 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
11360 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
11361 /^X\(\/\/\)$/{ s//\1/; q; }
11362 /^X\(\/\).*/{ s//\1/; q; }
11363 s/.*/./; q'`
11364 done
11365 test ! -n "$as_dirs" || mkdir $as_dirs
11366 fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
11367echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
11368 { (exit 1); exit 1; }; }; }
11369
11370 ac_builddir=.
e5a52504 11371
42ecbf5e
DJ
11372if test "$ac_dir" != .; then
11373 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
11374 # A "../" for each directory in $ac_dir_suffix.
11375 ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
11376else
11377 ac_dir_suffix= ac_top_builddir=
11378fi
11379
11380case $srcdir in
11381 .) # No --srcdir option. We are building in place.
11382 ac_srcdir=.
11383 if test -z "$ac_top_builddir"; then
11384 ac_top_srcdir=.
11385 else
11386 ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
11387 fi ;;
11388 [\\/]* | ?:[\\/]* ) # Absolute path.
11389 ac_srcdir=$srcdir$ac_dir_suffix;
11390 ac_top_srcdir=$srcdir ;;
e5a52504 11391 *) # Relative path.
42ecbf5e
DJ
11392 ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
11393 ac_top_srcdir=$ac_top_builddir$srcdir ;;
11394esac
252b5132 11395
42ecbf5e
DJ
11396# Do not use `cd foo && pwd` to compute absolute paths, because
11397# the directories may not exist.
11398case `pwd` in
11399.) ac_abs_builddir="$ac_dir";;
11400*)
11401 case "$ac_dir" in
11402 .) ac_abs_builddir=`pwd`;;
11403 [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
11404 *) ac_abs_builddir=`pwd`/"$ac_dir";;
11405 esac;;
11406esac
11407case $ac_abs_builddir in
11408.) ac_abs_top_builddir=${ac_top_builddir}.;;
11409*)
11410 case ${ac_top_builddir}. in
11411 .) ac_abs_top_builddir=$ac_abs_builddir;;
11412 [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
11413 *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
11414 esac;;
11415esac
11416case $ac_abs_builddir in
11417.) ac_abs_srcdir=$ac_srcdir;;
11418*)
11419 case $ac_srcdir in
11420 .) ac_abs_srcdir=$ac_abs_builddir;;
11421 [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
11422 *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
11423 esac;;
11424esac
11425case $ac_abs_builddir in
11426.) ac_abs_top_srcdir=$ac_top_srcdir;;
11427*)
11428 case $ac_top_srcdir in
11429 .) ac_abs_top_srcdir=$ac_abs_builddir;;
11430 [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
11431 *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
11432 esac;;
11433esac
e5a52504 11434
42ecbf5e
DJ
11435
11436 case $INSTALL in
11437 [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
11438 *) ac_INSTALL=$ac_top_builddir$INSTALL ;;
d15b04bd 11439 esac
e5a52504 11440
b7d4af3a
JW
11441 if test x"$ac_file" != x-; then
11442 { echo "$as_me:$LINENO: creating $ac_file" >&5
11443echo "$as_me: creating $ac_file" >&6;}
11444 rm -f "$ac_file"
11445 fi
42ecbf5e
DJ
11446 # Let's still pretend it is `configure' which instantiates (i.e., don't
11447 # use $as_me), people would be surprised to read:
11448 # /* config.h. Generated by config.status. */
11449 if test x"$ac_file" = x-; then
11450 configure_input=
11451 else
11452 configure_input="$ac_file. "
11453 fi
11454 configure_input=$configure_input"Generated from `echo $ac_file_in |
11455 sed 's,.*/,,'` by configure."
11456
11457 # First look for the input files in the build tree, otherwise in the
11458 # src tree.
11459 ac_file_inputs=`IFS=:
11460 for f in $ac_file_in; do
11461 case $f in
11462 -) echo $tmp/stdin ;;
11463 [\\/$]*)
11464 # Absolute (can't be DOS-style, as IFS=:)
11465 test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
11466echo "$as_me: error: cannot find input file: $f" >&2;}
11467 { (exit 1); exit 1; }; }
11468 echo "$f";;
11469 *) # Relative
11470 if test -f "$f"; then
11471 # Build tree
11472 echo "$f"
11473 elif test -f "$srcdir/$f"; then
11474 # Source tree
11475 echo "$srcdir/$f"
11476 else
11477 # /dev/null tree
11478 { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
11479echo "$as_me: error: cannot find input file: $f" >&2;}
11480 { (exit 1); exit 1; }; }
11481 fi;;
11482 esac
11483 done` || { (exit 1); exit 1; }
42ecbf5e
DJ
11484_ACEOF
11485cat >>$CONFIG_STATUS <<_ACEOF
11486 sed "$ac_vpsub
11487$extrasub
11488_ACEOF
11489cat >>$CONFIG_STATUS <<\_ACEOF
11490:t
11491/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
11492s,@configure_input@,$configure_input,;t t
11493s,@srcdir@,$ac_srcdir,;t t
11494s,@abs_srcdir@,$ac_abs_srcdir,;t t
11495s,@top_srcdir@,$ac_top_srcdir,;t t
11496s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t
11497s,@builddir@,$ac_builddir,;t t
11498s,@abs_builddir@,$ac_abs_builddir,;t t
11499s,@top_builddir@,$ac_top_builddir,;t t
11500s,@abs_top_builddir@,$ac_abs_top_builddir,;t t
11501s,@INSTALL@,$ac_INSTALL,;t t
11502" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
11503 rm -f $tmp/stdin
11504 if test x"$ac_file" != x-; then
11505 mv $tmp/out $ac_file
11506 else
11507 cat $tmp/out
11508 rm -f $tmp/out
11509 fi
11510
11511done
11512_ACEOF
11513cat >>$CONFIG_STATUS <<\_ACEOF
11514
11515#
11516# CONFIG_HEADER section.
11517#
252b5132
RH
11518
11519# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
11520# NAME is the cpp macro being defined and VALUE is the value it is being given.
11521#
11522# ac_d sets the value in "#define NAME VALUE" lines.
42ecbf5e
DJ
11523ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)'
11524ac_dB='[ ].*$,\1#\2'
11525ac_dC=' '
11526ac_dD=',;t'
11527# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
11528ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)'
11529ac_uB='$,\1#\2define\3'
252b5132 11530ac_uC=' '
42ecbf5e
DJ
11531ac_uD=',;t'
11532
11533for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
252b5132 11534 # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
42ecbf5e
DJ
11535 case $ac_file in
11536 - | *:- | *:-:* ) # input from stdin
11537 cat >$tmp/stdin
11538 ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
11539 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
11540 *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
11541 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
11542 * ) ac_file_in=$ac_file.in ;;
252b5132
RH
11543 esac
11544
42ecbf5e
DJ
11545 test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5
11546echo "$as_me: creating $ac_file" >&6;}
11547
11548 # First look for the input files in the build tree, otherwise in the
11549 # src tree.
11550 ac_file_inputs=`IFS=:
11551 for f in $ac_file_in; do
11552 case $f in
11553 -) echo $tmp/stdin ;;
11554 [\\/$]*)
11555 # Absolute (can't be DOS-style, as IFS=:)
11556 test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
11557echo "$as_me: error: cannot find input file: $f" >&2;}
11558 { (exit 1); exit 1; }; }
11559 # Do quote $f, to prevent DOS paths from being IFS'd.
11560 echo "$f";;
11561 *) # Relative
11562 if test -f "$f"; then
11563 # Build tree
11564 echo "$f"
11565 elif test -f "$srcdir/$f"; then
11566 # Source tree
11567 echo "$srcdir/$f"
11568 else
11569 # /dev/null tree
11570 { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
11571echo "$as_me: error: cannot find input file: $f" >&2;}
11572 { (exit 1); exit 1; }; }
11573 fi;;
11574 esac
11575 done` || { (exit 1); exit 1; }
11576 # Remove the trailing spaces.
11577 sed 's/[ ]*$//' $ac_file_inputs >$tmp/in
11578
11579_ACEOF
11580
11581# Transform confdefs.h into two sed scripts, `conftest.defines' and
11582# `conftest.undefs', that substitutes the proper values into
11583# config.h.in to produce config.h. The first handles `#define'
11584# templates, and the second `#undef' templates.
11585# And first: Protect against being on the right side of a sed subst in
11586# config.status. Protect against being in an unquoted here document
11587# in config.status.
11588rm -f conftest.defines conftest.undefs
11589# Using a here document instead of a string reduces the quoting nightmare.
11590# Putting comments in sed scripts is not portable.
11591#
11592# `end' is used to avoid that the second main sed command (meant for
11593# 0-ary CPP macros) applies to n-ary macro definitions.
11594# See the Autoconf documentation for `clear'.
11595cat >confdef2sed.sed <<\_ACEOF
11596s/[\\&,]/\\&/g
11597s,[\\$`],\\&,g
11598t clear
11599: clear
11600s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp
11601t end
11602s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp
11603: end
11604_ACEOF
11605# If some macros were called several times there might be several times
11606# the same #defines, which is useless. Nevertheless, we may not want to
11607# sort them, since we want the *last* AC-DEFINE to be honored.
11608uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines
11609sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs
11610rm -f confdef2sed.sed
252b5132
RH
11611
11612# This sed command replaces #undef with comments. This is necessary, for
11613# example, in the case of _POSIX_SOURCE, which is predefined and required
11614# on some systems where configure will not decide to define it.
42ecbf5e
DJ
11615cat >>conftest.undefs <<\_ACEOF
11616s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
11617_ACEOF
11618
11619# Break up conftest.defines because some shells have a limit on the size
11620# of here documents, and old seds have small limits too (100 cmds).
11621echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS
11622echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
11623echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS
11624echo ' :' >>$CONFIG_STATUS
11625rm -f conftest.tail
11626while grep . conftest.defines >/dev/null
11627do
11628 # Write a limited-size here document to $tmp/defines.sed.
11629 echo ' cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS
11630 # Speed up: don't consider the non `#define' lines.
11631 echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS
11632 # Work around the forget-to-reset-the-flag bug.
11633 echo 't clr' >>$CONFIG_STATUS
11634 echo ': clr' >>$CONFIG_STATUS
11635 sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS
11636 echo 'CEOF
11637 sed -f $tmp/defines.sed $tmp/in >$tmp/out
11638 rm -f $tmp/in
11639 mv $tmp/out $tmp/in
11640' >>$CONFIG_STATUS
11641 sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail
11642 rm -f conftest.defines
11643 mv conftest.tail conftest.defines
11644done
11645rm -f conftest.defines
11646echo ' fi # grep' >>$CONFIG_STATUS
11647echo >>$CONFIG_STATUS
252b5132 11648
42ecbf5e
DJ
11649# Break up conftest.undefs because some shells have a limit on the size
11650# of here documents, and old seds have small limits too (100 cmds).
11651echo ' # Handle all the #undef templates' >>$CONFIG_STATUS
252b5132 11652rm -f conftest.tail
42ecbf5e 11653while grep . conftest.undefs >/dev/null
252b5132 11654do
42ecbf5e
DJ
11655 # Write a limited-size here document to $tmp/undefs.sed.
11656 echo ' cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS
11657 # Speed up: don't consider the non `#undef'
11658 echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS
11659 # Work around the forget-to-reset-the-flag bug.
11660 echo 't clr' >>$CONFIG_STATUS
11661 echo ': clr' >>$CONFIG_STATUS
11662 sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS
252b5132 11663 echo 'CEOF
42ecbf5e
DJ
11664 sed -f $tmp/undefs.sed $tmp/in >$tmp/out
11665 rm -f $tmp/in
11666 mv $tmp/out $tmp/in
11667' >>$CONFIG_STATUS
11668 sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail
11669 rm -f conftest.undefs
11670 mv conftest.tail conftest.undefs
252b5132 11671done
42ecbf5e
DJ
11672rm -f conftest.undefs
11673
11674cat >>$CONFIG_STATUS <<\_ACEOF
11675 # Let's still pretend it is `configure' which instantiates (i.e., don't
11676 # use $as_me), people would be surprised to read:
11677 # /* config.h. Generated by config.status. */
11678 if test x"$ac_file" = x-; then
11679 echo "/* Generated by configure. */" >$tmp/config.h
11680 else
11681 echo "/* $ac_file. Generated by configure. */" >$tmp/config.h
11682 fi
11683 cat $tmp/in >>$tmp/config.h
11684 rm -f $tmp/in
11685 if test x"$ac_file" != x-; then
11686 if diff $ac_file $tmp/config.h >/dev/null 2>&1; then
11687 { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
11688echo "$as_me: $ac_file is unchanged" >&6;}
11689 else
11690 ac_dir=`(dirname "$ac_file") 2>/dev/null ||
11691$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
11692 X"$ac_file" : 'X\(//\)[^/]' \| \
11693 X"$ac_file" : 'X\(//\)$' \| \
11694 X"$ac_file" : 'X\(/\)' \| \
11695 . : '\(.\)' 2>/dev/null ||
11696echo X"$ac_file" |
11697 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
11698 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
11699 /^X\(\/\/\)$/{ s//\1/; q; }
11700 /^X\(\/\).*/{ s//\1/; q; }
11701 s/.*/./; q'`
11702 { if $as_mkdir_p; then
11703 mkdir -p "$ac_dir"
252b5132 11704 else
42ecbf5e
DJ
11705 as_dir="$ac_dir"
11706 as_dirs=
11707 while test ! -d "$as_dir"; do
11708 as_dirs="$as_dir $as_dirs"
11709 as_dir=`(dirname "$as_dir") 2>/dev/null ||
11710$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
11711 X"$as_dir" : 'X\(//\)[^/]' \| \
11712 X"$as_dir" : 'X\(//\)$' \| \
11713 X"$as_dir" : 'X\(/\)' \| \
11714 . : '\(.\)' 2>/dev/null ||
11715echo X"$as_dir" |
11716 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
11717 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
11718 /^X\(\/\/\)$/{ s//\1/; q; }
11719 /^X\(\/\).*/{ s//\1/; q; }
11720 s/.*/./; q'`
11721 done
11722 test ! -n "$as_dirs" || mkdir $as_dirs
11723 fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
11724echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
11725 { (exit 1); exit 1; }; }; }
11726
11727 rm -f $ac_file
11728 mv $tmp/config.h $ac_file
252b5132 11729 fi
42ecbf5e
DJ
11730 else
11731 cat $tmp/config.h
11732 rm -f $tmp/config.h
252b5132 11733 fi
42ecbf5e
DJ
11734# Compute $ac_file's index in $config_headers.
11735_am_stamp_count=1
11736for _am_header in $config_headers :; do
11737 case $_am_header in
11738 $ac_file | $ac_file:* )
11739 break ;;
11740 * )
11741 _am_stamp_count=`expr $_am_stamp_count + 1` ;;
11742 esac
11743done
11744echo "timestamp for $ac_file" >`(dirname $ac_file) 2>/dev/null ||
11745$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
11746 X$ac_file : 'X\(//\)[^/]' \| \
11747 X$ac_file : 'X\(//\)$' \| \
11748 X$ac_file : 'X\(/\)' \| \
11749 . : '\(.\)' 2>/dev/null ||
11750echo X$ac_file |
11751 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
11752 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
11753 /^X\(\/\/\)$/{ s//\1/; q; }
11754 /^X\(\/\).*/{ s//\1/; q; }
11755 s/.*/./; q'`/stamp-h$_am_stamp_count
11756done
11757_ACEOF
11758cat >>$CONFIG_STATUS <<\_ACEOF
252b5132 11759
42ecbf5e
DJ
11760#
11761# CONFIG_COMMANDS section.
11762#
11763for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue
11764 ac_dest=`echo "$ac_file" | sed 's,:.*,,'`
11765 ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`
11766 ac_dir=`(dirname "$ac_dest") 2>/dev/null ||
11767$as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
11768 X"$ac_dest" : 'X\(//\)[^/]' \| \
11769 X"$ac_dest" : 'X\(//\)$' \| \
11770 X"$ac_dest" : 'X\(/\)' \| \
11771 . : '\(.\)' 2>/dev/null ||
11772echo X"$ac_dest" |
11773 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
11774 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
11775 /^X\(\/\/\)$/{ s//\1/; q; }
11776 /^X\(\/\).*/{ s//\1/; q; }
11777 s/.*/./; q'`
11778 { if $as_mkdir_p; then
11779 mkdir -p "$ac_dir"
11780 else
11781 as_dir="$ac_dir"
11782 as_dirs=
11783 while test ! -d "$as_dir"; do
11784 as_dirs="$as_dir $as_dirs"
11785 as_dir=`(dirname "$as_dir") 2>/dev/null ||
11786$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
11787 X"$as_dir" : 'X\(//\)[^/]' \| \
11788 X"$as_dir" : 'X\(//\)$' \| \
11789 X"$as_dir" : 'X\(/\)' \| \
11790 . : '\(.\)' 2>/dev/null ||
11791echo X"$as_dir" |
11792 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
11793 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
11794 /^X\(\/\/\)$/{ s//\1/; q; }
11795 /^X\(\/\).*/{ s//\1/; q; }
11796 s/.*/./; q'`
11797 done
11798 test ! -n "$as_dirs" || mkdir $as_dirs
11799 fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
11800echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
11801 { (exit 1); exit 1; }; }; }
252b5132 11802
42ecbf5e 11803 ac_builddir=.
e5a52504 11804
42ecbf5e
DJ
11805if test "$ac_dir" != .; then
11806 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
11807 # A "../" for each directory in $ac_dir_suffix.
11808 ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
11809else
11810 ac_dir_suffix= ac_top_builddir=
11811fi
11812
11813case $srcdir in
11814 .) # No --srcdir option. We are building in place.
11815 ac_srcdir=.
11816 if test -z "$ac_top_builddir"; then
11817 ac_top_srcdir=.
11818 else
11819 ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
11820 fi ;;
11821 [\\/]* | ?:[\\/]* ) # Absolute path.
11822 ac_srcdir=$srcdir$ac_dir_suffix;
11823 ac_top_srcdir=$srcdir ;;
11824 *) # Relative path.
11825 ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
11826 ac_top_srcdir=$ac_top_builddir$srcdir ;;
11827esac
11828
11829# Do not use `cd foo && pwd` to compute absolute paths, because
11830# the directories may not exist.
11831case `pwd` in
11832.) ac_abs_builddir="$ac_dir";;
11833*)
11834 case "$ac_dir" in
11835 .) ac_abs_builddir=`pwd`;;
11836 [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
11837 *) ac_abs_builddir=`pwd`/"$ac_dir";;
11838 esac;;
11839esac
11840case $ac_abs_builddir in
11841.) ac_abs_top_builddir=${ac_top_builddir}.;;
11842*)
11843 case ${ac_top_builddir}. in
11844 .) ac_abs_top_builddir=$ac_abs_builddir;;
11845 [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
11846 *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
11847 esac;;
11848esac
11849case $ac_abs_builddir in
11850.) ac_abs_srcdir=$ac_srcdir;;
11851*)
11852 case $ac_srcdir in
11853 .) ac_abs_srcdir=$ac_abs_builddir;;
11854 [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
11855 *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
11856 esac;;
11857esac
11858case $ac_abs_builddir in
11859.) ac_abs_top_srcdir=$ac_top_srcdir;;
11860*)
11861 case $ac_top_srcdir in
11862 .) ac_abs_top_srcdir=$ac_abs_builddir;;
11863 [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
11864 *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
11865 esac;;
11866esac
e5a52504 11867
42ecbf5e
DJ
11868
11869 { echo "$as_me:$LINENO: executing $ac_dest commands" >&5
11870echo "$as_me: executing $ac_dest commands" >&6;}
11871 case $ac_dest in
11872 depfiles ) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
11873 # Strip MF so we end up with the name of the file.
11874 mf=`echo "$mf" | sed -e 's/:.*$//'`
11875 # Check whether this is an Automake generated Makefile or not.
11876 # We used to match only the files named `Makefile.in', but
11877 # some people rename them; so instead we look at the file content.
11878 # Grep'ing the first line is not enough: some people post-process
11879 # each Makefile.in and add a new line on top of each file to say so.
11880 # So let's grep whole file.
11881 if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
11882 dirpart=`(dirname "$mf") 2>/dev/null ||
11883$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
11884 X"$mf" : 'X\(//\)[^/]' \| \
11885 X"$mf" : 'X\(//\)$' \| \
11886 X"$mf" : 'X\(/\)' \| \
11887 . : '\(.\)' 2>/dev/null ||
11888echo X"$mf" |
11889 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
11890 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
11891 /^X\(\/\/\)$/{ s//\1/; q; }
11892 /^X\(\/\).*/{ s//\1/; q; }
11893 s/.*/./; q'`
11894 else
11895 continue
11896 fi
11897 # Extract the definition of DEPDIR, am__include, and am__quote
11898 # from the Makefile without running `make'.
11899 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
11900 test -z "$DEPDIR" && continue
11901 am__include=`sed -n 's/^am__include = //p' < "$mf"`
11902 test -z "am__include" && continue
11903 am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
11904 # When using ansi2knr, U may be empty or an underscore; expand it
11905 U=`sed -n 's/^U = //p' < "$mf"`
11906 # Find all dependency output files, they are included files with
11907 # $(DEPDIR) in their names. We invoke sed twice because it is the
11908 # simplest approach to changing $(DEPDIR) to its actual value in the
11909 # expansion.
11910 for file in `sed -n "
11911 s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
11912 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
11913 # Make sure the directory exists.
11914 test -f "$dirpart/$file" && continue
11915 fdir=`(dirname "$file") 2>/dev/null ||
11916$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
11917 X"$file" : 'X\(//\)[^/]' \| \
11918 X"$file" : 'X\(//\)$' \| \
11919 X"$file" : 'X\(/\)' \| \
11920 . : '\(.\)' 2>/dev/null ||
11921echo X"$file" |
11922 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
11923 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
11924 /^X\(\/\/\)$/{ s//\1/; q; }
11925 /^X\(\/\).*/{ s//\1/; q; }
11926 s/.*/./; q'`
11927 { if $as_mkdir_p; then
11928 mkdir -p $dirpart/$fdir
11929 else
11930 as_dir=$dirpart/$fdir
11931 as_dirs=
11932 while test ! -d "$as_dir"; do
11933 as_dirs="$as_dir $as_dirs"
11934 as_dir=`(dirname "$as_dir") 2>/dev/null ||
11935$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
11936 X"$as_dir" : 'X\(//\)[^/]' \| \
11937 X"$as_dir" : 'X\(//\)$' \| \
11938 X"$as_dir" : 'X\(/\)' \| \
11939 . : '\(.\)' 2>/dev/null ||
11940echo X"$as_dir" |
11941 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
11942 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
11943 /^X\(\/\/\)$/{ s//\1/; q; }
11944 /^X\(\/\).*/{ s//\1/; q; }
11945 s/.*/./; q'`
11946 done
11947 test ! -n "$as_dirs" || mkdir $as_dirs
11948 fi || { { echo "$as_me:$LINENO: error: cannot create directory $dirpart/$fdir" >&5
11949echo "$as_me: error: cannot create directory $dirpart/$fdir" >&2;}
11950 { (exit 1); exit 1; }; }; }
11951
11952 # echo "creating $dirpart/$file"
11953 echo '# dummy' > "$dirpart/$file"
11954 done
11955done
11956 ;;
11957 default )
252b5132
RH
11958case "x$CONFIG_FILES" in
11959*) sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile ;;
11960esac
42ecbf5e
DJ
11961 ;;
11962 esac
11963done
11964_ACEOF
e5a52504 11965
42ecbf5e
DJ
11966cat >>$CONFIG_STATUS <<\_ACEOF
11967
11968{ (exit 0); exit 0; }
11969_ACEOF
252b5132 11970chmod +x $CONFIG_STATUS
42ecbf5e
DJ
11971ac_clean_files=$ac_clean_files_save
11972
11973
11974# configure is writing to config.log, and then calls config.status.
11975# config.status does its own redirection, appending to config.log.
11976# Unfortunately, on DOS this fails, as config.log is still kept open
11977# by configure, so config.status won't be able to write to it; its
11978# output is simply discarded. So we exec the FD to /dev/null,
11979# effectively closing config.log, so it can be properly (re)opened and
11980# appended to by config.status. When coming back to configure, we
11981# need to make the FD available again.
11982if test "$no_create" != yes; then
11983 ac_cs_success=:
11984 ac_config_status_args=
11985 test "$silent" = yes &&
11986 ac_config_status_args="$ac_config_status_args --quiet"
11987 exec 5>/dev/null
11988 $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
11989 exec 5>>config.log
11990 # Use ||, not &&, to avoid exiting from the if with $? = 1, which
11991 # would make configure fail if this is the last instruction.
11992 $ac_cs_success || { (exit 1); exit 1; }
11993fi
252b5132 11994
This page took 1.104329 seconds and 4 git commands to generate.