PR libgcj/19877:
[deliverable/binutils-gdb.git] / gdb / gdbserver / configure
CommitLineData
d6e9fb05 1#! /bin/sh
d6e9fb05 2# Guess values for system-dependent variables and create Makefiles.
bec39cab 3# Generated by GNU Autoconf 2.59.
d6e9fb05 4#
bec39cab 5# Copyright (C) 2003 Free Software Foundation, Inc.
d6e9fb05
JK
6# This configure script is free software; the Free Software Foundation
7# gives unlimited permission to copy, distribute and modify it.
bec39cab
AC
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
d6e9fb05 224
bec39cab
AC
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`
248
249exec 6>&1
250
251#
252# Initializations.
253#
d6e9fb05 254ac_default_prefix=/usr/local
bec39cab
AC
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="server.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 CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CPP EGREP RDYNAMIC GDBSERVER_DEPFILES GDBSERVER_LIBS USE_THREAD_DB LIBOBJS LTLIBOBJS'
313ac_subst_files=''
d6e9fb05
JK
314
315# Initialize some variables set by options.
bec39cab
AC
316ac_init_help=
317ac_init_version=false
d6e9fb05
JK
318# The variables have the same names as the options, with
319# dashes changed to underlines.
bec39cab 320cache_file=/dev/null
d6e9fb05 321exec_prefix=NONE
d6e9fb05 322no_create=
d6e9fb05
JK
323no_recursion=
324prefix=NONE
325program_prefix=NONE
326program_suffix=NONE
327program_transform_name=s,x,x,
328silent=
329site=
330srcdir=
d6e9fb05
JK
331verbose=
332x_includes=NONE
333x_libraries=NONE
bec39cab
AC
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.
d6e9fb05
JK
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
d6e9fb05
JK
353ac_prev=
354for ac_option
355do
d6e9fb05
JK
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
bec39cab 363 ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
d6e9fb05
JK
364
365 # Accept the important Cygnus configure options, so we can diagnose typos.
366
bec39cab 367 case $ac_option in
d6e9fb05
JK
368
369 -bindir | --bindir | --bindi | --bind | --bin | --bi)
370 ac_prev=bindir ;;
371 -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
bec39cab 372 bindir=$ac_optarg ;;
d6e9fb05
JK
373
374 -build | --build | --buil | --bui | --bu)
bec39cab 375 ac_prev=build_alias ;;
d6e9fb05 376 -build=* | --build=* | --buil=* | --bui=* | --bu=*)
bec39cab 377 build_alias=$ac_optarg ;;
d6e9fb05
JK
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=*)
bec39cab
AC
384 cache_file=$ac_optarg ;;
385
386 --config-cache | -C)
387 cache_file=config.cache ;;
d6e9fb05
JK
388
389 -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
390 ac_prev=datadir ;;
391 -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
392 | --da=*)
bec39cab 393 datadir=$ac_optarg ;;
d6e9fb05
JK
394
395 -disable-* | --disable-*)
bec39cab 396 ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
d6e9fb05 397 # Reject names that are not valid shell variable names.
bec39cab
AC
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" ;;
d6e9fb05
JK
403
404 -enable-* | --enable-*)
bec39cab 405 ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
d6e9fb05 406 # Reject names that are not valid shell variable names.
bec39cab
AC
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"`;;
d6e9fb05
JK
413 *) ac_optarg=yes ;;
414 esac
bec39cab 415 eval "enable_$ac_feature='$ac_optarg'" ;;
d6e9fb05
JK
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=*)
bec39cab 424 exec_prefix=$ac_optarg ;;
d6e9fb05
JK
425
426 -gas | --gas | --ga | --g)
427 # Obsolete; use --with-gas.
428 with_gas=yes ;;
429
bec39cab
AC
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 ;;
d6e9fb05
JK
436
437 -host | --host | --hos | --ho)
bec39cab 438 ac_prev=host_alias ;;
d6e9fb05 439 -host=* | --host=* | --hos=* | --ho=*)
bec39cab 440 host_alias=$ac_optarg ;;
d6e9fb05
JK
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=*)
bec39cab 447 includedir=$ac_optarg ;;
d6e9fb05
JK
448
449 -infodir | --infodir | --infodi | --infod | --info | --inf)
450 ac_prev=infodir ;;
451 -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
bec39cab 452 infodir=$ac_optarg ;;
d6e9fb05
JK
453
454 -libdir | --libdir | --libdi | --libd)
455 ac_prev=libdir ;;
456 -libdir=* | --libdir=* | --libdi=* | --libd=*)
bec39cab 457 libdir=$ac_optarg ;;
d6e9fb05
JK
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=*)
bec39cab 464 libexecdir=$ac_optarg ;;
d6e9fb05
JK
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=*)
bec39cab 473 localstatedir=$ac_optarg ;;
d6e9fb05
JK
474
475 -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
476 ac_prev=mandir ;;
477 -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
bec39cab 478 mandir=$ac_optarg ;;
d6e9fb05
JK
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 \
bec39cab 485 | --no-cr | --no-c | -n)
d6e9fb05
JK
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=*)
bec39cab 499 oldincludedir=$ac_optarg ;;
d6e9fb05
JK
500
501 -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
502 ac_prev=prefix ;;
503 -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
bec39cab 504 prefix=$ac_optarg ;;
d6e9fb05
JK
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=*)
bec39cab 511 program_prefix=$ac_optarg ;;
d6e9fb05
JK
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=*)
bec39cab 518 program_suffix=$ac_optarg ;;
d6e9fb05
JK
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=*)
bec39cab 535 program_transform_name=$ac_optarg ;;
d6e9fb05
JK
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=*)
bec39cab 545 sbindir=$ac_optarg ;;
d6e9fb05
JK
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=*)
bec39cab 556 sharedstatedir=$ac_optarg ;;
d6e9fb05
JK
557
558 -site | --site | --sit)
559 ac_prev=site ;;
560 -site=* | --site=* | --sit=*)
bec39cab 561 site=$ac_optarg ;;
434c4c77 562
d6e9fb05
JK
563 -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
564 ac_prev=srcdir ;;
565 -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
bec39cab 566 srcdir=$ac_optarg ;;
d6e9fb05
JK
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=*)
bec39cab 573 sysconfdir=$ac_optarg ;;
d6e9fb05
JK
574
575 -target | --target | --targe | --targ | --tar | --ta | --t)
bec39cab 576 ac_prev=target_alias ;;
d6e9fb05 577 -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
bec39cab 578 target_alias=$ac_optarg ;;
d6e9fb05
JK
579
580 -v | -verbose | --verbose | --verbos | --verbo | --verb)
581 verbose=yes ;;
582
bec39cab
AC
583 -version | --version | --versio | --versi | --vers | -V)
584 ac_init_version=: ;;
d6e9fb05
JK
585
586 -with-* | --with-*)
bec39cab 587 ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
d6e9fb05 588 # Reject names that are not valid shell variable names.
bec39cab
AC
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; }; }
d6e9fb05 592 ac_package=`echo $ac_package| sed 's/-/_/g'`
bec39cab
AC
593 case $ac_option in
594 *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
d6e9fb05
JK
595 *) ac_optarg=yes ;;
596 esac
bec39cab 597 eval "with_$ac_package='$ac_optarg'" ;;
d6e9fb05
JK
598
599 -without-* | --without-*)
bec39cab 600 ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
d6e9fb05 601 # Reject names that are not valid shell variable names.
bec39cab
AC
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" ;;
d6e9fb05
JK
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=*)
bec39cab 617 x_includes=$ac_optarg ;;
d6e9fb05
JK
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=*)
bec39cab 624 x_libraries=$ac_optarg ;;
d6e9fb05 625
bec39cab
AC
626 -*) { echo "$as_me: error: unrecognized option: $ac_option
627Try \`$0 --help' for more information." >&2
628 { (exit 1); exit 1; }; }
d6e9fb05
JK
629 ;;
630
bec39cab
AC
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
d6e9fb05 641 *)
bec39cab
AC
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}
d6e9fb05
JK
647 ;;
648
649 esac
650done
651
652if test -n "$ac_prev"; then
bec39cab
AC
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; }; }
d6e9fb05 656fi
d6e9fb05 657
bec39cab
AC
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
d6e9fb05 668
bec39cab
AC
669# Be sure to have absolute paths.
670for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
671 localstatedir libdir includedir oldincludedir infodir mandir
d6e9fb05 672do
bec39cab
AC
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; }; };;
d6e9fb05
JK
678 esac
679done
680
bec39cab
AC
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
d6e9fb05 698
bec39cab
AC
699ac_tool_prefix=
700test -n "$host_alias" && ac_tool_prefix=$host_alias-
701
702test "$silent" = yes && exec 6>/dev/null
d6e9fb05 703
d6e9fb05
JK
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.
bec39cab
AC
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'`
d6e9fb05
JK
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
bec39cab
AC
730 { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2
731 { (exit 1); exit 1; }; }
d6e9fb05 732 else
bec39cab
AC
733 { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
734 { (exit 1); exit 1; }; }
d6e9fb05
JK
735 fi
736fi
bec39cab
AC
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
d6e9fb05 773
bec39cab
AC
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.
782
783Usage: $0 [OPTION]... [VAR=VALUE]...
784
785To assign environment variables (e.g., CC, CFLAGS...), specify them as
786VAR=VALUE. See below for descriptions of some of the useful variables.
787
788Defaults for the options are specified in brackets.
789
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]
809
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'.
814
815For better control, use the options below.
816
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
831
832 cat <<\_ACEOF
833
dcdb98d2
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
838
bec39cab
AC
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
844fi
845
846if test -n "$ac_init_help"; then
847
848 cat <<\_ACEOF
849
850Some influential environment variables:
851 CC C compiler command
852 CFLAGS C compiler flags
853 LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
854 nonstandard directory <lib dir>
855 CPPFLAGS C/C++ preprocessor flags, e.g. -I<include dir> if you have
856 headers in a nonstandard directory <include dir>
857 CPP C preprocessor
858
859Use these variables to override the choices made by `configure' or to help
860it to find libraries and programs with nonstandard names/locations.
861
862_ACEOF
863fi
864
865if test "$ac_init_help" = "recursive"; then
866 # If there are subdirs, report their specific --help.
867 ac_popdir=`pwd`
868 for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
869 test -d $ac_dir || continue
870 ac_builddir=.
871
872if test "$ac_dir" != .; then
873 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
874 # A "../" for each directory in $ac_dir_suffix.
875 ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
876else
877 ac_dir_suffix= ac_top_builddir=
878fi
879
880case $srcdir in
881 .) # No --srcdir option. We are building in place.
882 ac_srcdir=.
883 if test -z "$ac_top_builddir"; then
884 ac_top_srcdir=.
885 else
886 ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
887 fi ;;
888 [\\/]* | ?:[\\/]* ) # Absolute path.
889 ac_srcdir=$srcdir$ac_dir_suffix;
890 ac_top_srcdir=$srcdir ;;
891 *) # Relative path.
892 ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
893 ac_top_srcdir=$ac_top_builddir$srcdir ;;
894esac
895
896# Do not use `cd foo && pwd` to compute absolute paths, because
897# the directories may not exist.
898case `pwd` in
899.) ac_abs_builddir="$ac_dir";;
900*)
901 case "$ac_dir" in
902 .) ac_abs_builddir=`pwd`;;
903 [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
904 *) ac_abs_builddir=`pwd`/"$ac_dir";;
905 esac;;
906esac
907case $ac_abs_builddir in
908.) ac_abs_top_builddir=${ac_top_builddir}.;;
909*)
910 case ${ac_top_builddir}. in
911 .) ac_abs_top_builddir=$ac_abs_builddir;;
912 [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
913 *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
914 esac;;
915esac
916case $ac_abs_builddir in
917.) ac_abs_srcdir=$ac_srcdir;;
918*)
919 case $ac_srcdir in
920 .) ac_abs_srcdir=$ac_abs_builddir;;
921 [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
922 *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
923 esac;;
924esac
925case $ac_abs_builddir in
926.) ac_abs_top_srcdir=$ac_top_srcdir;;
927*)
928 case $ac_top_srcdir in
929 .) ac_abs_top_srcdir=$ac_abs_builddir;;
930 [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
931 *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
932 esac;;
933esac
934
935 cd $ac_dir
936 # Check for guested configure; otherwise get Cygnus style configure.
937 if test -f $ac_srcdir/configure.gnu; then
938 echo
939 $SHELL $ac_srcdir/configure.gnu --help=recursive
940 elif test -f $ac_srcdir/configure; then
941 echo
942 $SHELL $ac_srcdir/configure --help=recursive
943 elif test -f $ac_srcdir/configure.ac ||
944 test -f $ac_srcdir/configure.in; then
945 echo
946 $ac_configure --help
434c4c77 947 else
bec39cab
AC
948 echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
949 fi
dcdb98d2 950 cd "$ac_popdir"
bec39cab
AC
951 done
952fi
953
954test -n "$ac_init_help" && exit 0
955if $ac_init_version; then
956 cat <<\_ACEOF
957
958Copyright (C) 2003 Free Software Foundation, Inc.
959This configure script is free software; the Free Software Foundation
960gives unlimited permission to copy, distribute and modify it.
961_ACEOF
962 exit 0
963fi
964exec 5>config.log
965cat >&5 <<_ACEOF
966This file contains any messages produced by compilers while
967running configure, to aid debugging if configure makes a mistake.
968
969It was created by $as_me, which was
970generated by GNU Autoconf 2.59. Invocation command line was
971
972 $ $0 $@
973
974_ACEOF
975{
976cat <<_ASUNAME
977## --------- ##
978## Platform. ##
979## --------- ##
980
981hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
982uname -m = `(uname -m) 2>/dev/null || echo unknown`
983uname -r = `(uname -r) 2>/dev/null || echo unknown`
984uname -s = `(uname -s) 2>/dev/null || echo unknown`
985uname -v = `(uname -v) 2>/dev/null || echo unknown`
986
987/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
988/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
989
990/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
991/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
992/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
993hostinfo = `(hostinfo) 2>/dev/null || echo unknown`
994/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
995/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
996/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
997
998_ASUNAME
999
1000as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1001for as_dir in $PATH
1002do
1003 IFS=$as_save_IFS
1004 test -z "$as_dir" && as_dir=.
1005 echo "PATH: $as_dir"
1006done
1007
1008} >&5
1009
1010cat >&5 <<_ACEOF
1011
1012
1013## ----------- ##
1014## Core tests. ##
1015## ----------- ##
1016
1017_ACEOF
1018
1019
1020# Keep a trace of the command line.
1021# Strip out --no-create and --no-recursion so they do not pile up.
1022# Strip out --silent because we don't want to record it for future runs.
1023# Also quote any args containing shell meta-characters.
1024# Make two passes to allow for proper duplicate-argument suppression.
1025ac_configure_args=
1026ac_configure_args0=
1027ac_configure_args1=
1028ac_sep=
1029ac_must_keep_next=false
1030for ac_pass in 1 2
1031do
1032 for ac_arg
1033 do
1034 case $ac_arg in
1035 -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
1036 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1037 | -silent | --silent | --silen | --sile | --sil)
1038 continue ;;
1039 *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
1040 ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1041 esac
1042 case $ac_pass in
1043 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
1044 2)
1045 ac_configure_args1="$ac_configure_args1 '$ac_arg'"
1046 if test $ac_must_keep_next = true; then
1047 ac_must_keep_next=false # Got value, back to normal.
1048 else
1049 case $ac_arg in
1050 *=* | --config-cache | -C | -disable-* | --disable-* \
1051 | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
1052 | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
1053 | -with-* | --with-* | -without-* | --without-* | --x)
1054 case "$ac_configure_args0 " in
1055 "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
1056 esac
1057 ;;
1058 -* ) ac_must_keep_next=true ;;
1059 esac
1060 fi
1061 ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
1062 # Get rid of the leading space.
1063 ac_sep=" "
1064 ;;
1065 esac
1066 done
1067done
1068$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; }
1069$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; }
1070
1071# When interrupted or exit'd, cleanup temporary files, and complete
1072# config.log. We remove comments because anyway the quotes in there
1073# would cause problems or look ugly.
1074# WARNING: Be sure not to use single quotes in there, as some shells,
1075# such as our DU 5.0 friend, will then `close' the trap.
1076trap 'exit_status=$?
1077 # Save into config.log some information that might help in debugging.
1078 {
1079 echo
1080
1081 cat <<\_ASBOX
1082## ---------------- ##
1083## Cache variables. ##
1084## ---------------- ##
1085_ASBOX
1086 echo
1087 # The following way of writing the cache mishandles newlines in values,
1088{
1089 (set) 2>&1 |
1090 case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
1091 *ac_space=\ *)
1092 sed -n \
1093 "s/'"'"'/'"'"'\\\\'"'"''"'"'/g;
1094 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p"
1095 ;;
1096 *)
1097 sed -n \
1098 "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
1099 ;;
1100 esac;
1101}
1102 echo
1103
1104 cat <<\_ASBOX
1105## ----------------- ##
1106## Output variables. ##
1107## ----------------- ##
1108_ASBOX
1109 echo
1110 for ac_var in $ac_subst_vars
1111 do
1112 eval ac_val=$`echo $ac_var`
1113 echo "$ac_var='"'"'$ac_val'"'"'"
1114 done | sort
1115 echo
1116
1117 if test -n "$ac_subst_files"; then
1118 cat <<\_ASBOX
1119## ------------- ##
1120## Output files. ##
1121## ------------- ##
1122_ASBOX
1123 echo
1124 for ac_var in $ac_subst_files
1125 do
1126 eval ac_val=$`echo $ac_var`
1127 echo "$ac_var='"'"'$ac_val'"'"'"
1128 done | sort
1129 echo
434c4c77 1130 fi
bec39cab
AC
1131
1132 if test -s confdefs.h; then
1133 cat <<\_ASBOX
1134## ----------- ##
1135## confdefs.h. ##
1136## ----------- ##
1137_ASBOX
1138 echo
1139 sed "/^$/d" confdefs.h | sort
1140 echo
1141 fi
1142 test "$ac_signal" != 0 &&
1143 echo "$as_me: caught signal $ac_signal"
1144 echo "$as_me: exit $exit_status"
1145 } >&5
1146 rm -f core *.core &&
1147 rm -rf conftest* confdefs* conf$$* $ac_clean_files &&
1148 exit $exit_status
1149 ' 0
1150for ac_signal in 1 2 13 15; do
1151 trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
1152done
1153ac_signal=0
1154
1155# confdefs.h avoids OS command line length limits that DEFS can exceed.
1156rm -rf conftest* confdefs.h
1157# AIX cpp loses on an empty file, so make sure it contains at least a newline.
1158echo >confdefs.h
1159
1160# Predefined preprocessor variables.
1161
1162cat >>confdefs.h <<_ACEOF
1163#define PACKAGE_NAME "$PACKAGE_NAME"
1164_ACEOF
1165
1166
1167cat >>confdefs.h <<_ACEOF
1168#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
1169_ACEOF
1170
1171
1172cat >>confdefs.h <<_ACEOF
1173#define PACKAGE_VERSION "$PACKAGE_VERSION"
1174_ACEOF
1175
1176
1177cat >>confdefs.h <<_ACEOF
1178#define PACKAGE_STRING "$PACKAGE_STRING"
1179_ACEOF
1180
1181
1182cat >>confdefs.h <<_ACEOF
1183#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
1184_ACEOF
1185
1186
1187# Let the site file select an alternate cache file if it wants to.
1188# Prefer explicitly selected file to automatically selected ones.
1189if test -z "$CONFIG_SITE"; then
1190 if test "x$prefix" != xNONE; then
1191 CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
1192 else
1193 CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
d6e9fb05
JK
1194 fi
1195fi
1196for ac_site_file in $CONFIG_SITE; do
1197 if test -r "$ac_site_file"; then
bec39cab
AC
1198 { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
1199echo "$as_me: loading site script $ac_site_file" >&6;}
1200 sed 's/^/| /' "$ac_site_file" >&5
d6e9fb05
JK
1201 . "$ac_site_file"
1202 fi
1203done
1204
1205if test -r "$cache_file"; then
bec39cab
AC
1206 # Some versions of bash will fail to source /dev/null (special
1207 # files actually), so we avoid doing that.
1208 if test -f "$cache_file"; then
1209 { echo "$as_me:$LINENO: loading cache $cache_file" >&5
1210echo "$as_me: loading cache $cache_file" >&6;}
1211 case $cache_file in
1212 [\\/]* | ?:[\\/]* ) . $cache_file;;
1213 *) . ./$cache_file;;
1214 esac
1215 fi
d6e9fb05 1216else
bec39cab
AC
1217 { echo "$as_me:$LINENO: creating cache $cache_file" >&5
1218echo "$as_me: creating cache $cache_file" >&6;}
1219 >$cache_file
d6e9fb05
JK
1220fi
1221
bec39cab
AC
1222# Check that the precious variables saved in the cache have kept the same
1223# value.
1224ac_cache_corrupted=false
1225for ac_var in `(set) 2>&1 |
1226 sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
1227 eval ac_old_set=\$ac_cv_env_${ac_var}_set
1228 eval ac_new_set=\$ac_env_${ac_var}_set
1229 eval ac_old_val="\$ac_cv_env_${ac_var}_value"
1230 eval ac_new_val="\$ac_env_${ac_var}_value"
1231 case $ac_old_set,$ac_new_set in
1232 set,)
1233 { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
1234echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
1235 ac_cache_corrupted=: ;;
1236 ,set)
1237 { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
1238echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
1239 ac_cache_corrupted=: ;;
1240 ,);;
1241 *)
1242 if test "x$ac_old_val" != "x$ac_new_val"; then
1243 { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
1244echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
1245 { echo "$as_me:$LINENO: former value: $ac_old_val" >&5
1246echo "$as_me: former value: $ac_old_val" >&2;}
1247 { echo "$as_me:$LINENO: current value: $ac_new_val" >&5
1248echo "$as_me: current value: $ac_new_val" >&2;}
1249 ac_cache_corrupted=:
1250 fi;;
1251 esac
1252 # Pass precious variables to config.status.
1253 if test "$ac_new_set" = set; then
1254 case $ac_new_val in
1255 *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
1256 ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
1257 *) ac_arg=$ac_var=$ac_new_val ;;
1258 esac
1259 case " $ac_configure_args " in
1260 *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
1261 *) ac_configure_args="$ac_configure_args '$ac_arg'" ;;
1262 esac
d6e9fb05 1263 fi
bec39cab
AC
1264done
1265if $ac_cache_corrupted; then
1266 { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
1267echo "$as_me: error: changes in the environment can compromise the build" >&2;}
1268 { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
1269echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
1270 { (exit 1); exit 1; }; }
d6e9fb05
JK
1271fi
1272
bec39cab
AC
1273ac_ext=c
1274ac_cpp='$CPP $CPPFLAGS'
1275ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1276ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1277ac_compiler_gnu=$ac_cv_c_compiler_gnu
d6e9fb05
JK
1278
1279
84563040 1280
bec39cab
AC
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297 ac_config_headers="$ac_config_headers config.h:config.in"
1298
1299
1300ac_ext=c
1301ac_cpp='$CPP $CPPFLAGS'
1302ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1303ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1304ac_compiler_gnu=$ac_cv_c_compiler_gnu
1305if test -n "$ac_tool_prefix"; then
1306 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
1307set dummy ${ac_tool_prefix}gcc; ac_word=$2
1308echo "$as_me:$LINENO: checking for $ac_word" >&5
1309echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1310if test "${ac_cv_prog_CC+set}" = set; then
1311 echo $ECHO_N "(cached) $ECHO_C" >&6
84563040
DJ
1312else
1313 if test -n "$CC"; then
1314 ac_cv_prog_CC="$CC" # Let the user override the test.
1315else
bec39cab
AC
1316as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1317for as_dir in $PATH
1318do
1319 IFS=$as_save_IFS
1320 test -z "$as_dir" && as_dir=.
1321 for ac_exec_ext in '' $ac_executable_extensions; do
1322 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1323 ac_cv_prog_CC="${ac_tool_prefix}gcc"
1324 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1325 break 2
1326 fi
1327done
1328done
1329
84563040
DJ
1330fi
1331fi
bec39cab 1332CC=$ac_cv_prog_CC
84563040 1333if test -n "$CC"; then
bec39cab
AC
1334 echo "$as_me:$LINENO: result: $CC" >&5
1335echo "${ECHO_T}$CC" >&6
84563040 1336else
bec39cab
AC
1337 echo "$as_me:$LINENO: result: no" >&5
1338echo "${ECHO_T}no" >&6
84563040
DJ
1339fi
1340
bec39cab
AC
1341fi
1342if test -z "$ac_cv_prog_CC"; then
1343 ac_ct_CC=$CC
1344 # Extract the first word of "gcc", so it can be a program name with args.
1345set dummy gcc; ac_word=$2
1346echo "$as_me:$LINENO: checking for $ac_word" >&5
1347echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1348if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
1349 echo $ECHO_N "(cached) $ECHO_C" >&6
84563040 1350else
bec39cab
AC
1351 if test -n "$ac_ct_CC"; then
1352 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
84563040 1353else
bec39cab
AC
1354as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1355for as_dir in $PATH
1356do
1357 IFS=$as_save_IFS
1358 test -z "$as_dir" && as_dir=.
1359 for ac_exec_ext in '' $ac_executable_extensions; do
1360 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1361 ac_cv_prog_ac_ct_CC="gcc"
1362 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1363 break 2
1364 fi
1365done
1366done
1367
1368fi
1369fi
1370ac_ct_CC=$ac_cv_prog_ac_ct_CC
1371if test -n "$ac_ct_CC"; then
1372 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
1373echo "${ECHO_T}$ac_ct_CC" >&6
1374else
1375 echo "$as_me:$LINENO: result: no" >&5
1376echo "${ECHO_T}no" >&6
1377fi
1378
1379 CC=$ac_ct_CC
1380else
1381 CC="$ac_cv_prog_CC"
1382fi
1383
1384if test -z "$CC"; then
1385 if test -n "$ac_tool_prefix"; then
1386 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
1387set dummy ${ac_tool_prefix}cc; ac_word=$2
1388echo "$as_me:$LINENO: checking for $ac_word" >&5
1389echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1390if test "${ac_cv_prog_CC+set}" = set; then
1391 echo $ECHO_N "(cached) $ECHO_C" >&6
1392else
1393 if test -n "$CC"; then
1394 ac_cv_prog_CC="$CC" # Let the user override the test.
1395else
1396as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1397for as_dir in $PATH
1398do
1399 IFS=$as_save_IFS
1400 test -z "$as_dir" && as_dir=.
1401 for ac_exec_ext in '' $ac_executable_extensions; do
1402 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1403 ac_cv_prog_CC="${ac_tool_prefix}cc"
1404 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1405 break 2
1406 fi
1407done
1408done
1409
1410fi
1411fi
1412CC=$ac_cv_prog_CC
1413if test -n "$CC"; then
1414 echo "$as_me:$LINENO: result: $CC" >&5
1415echo "${ECHO_T}$CC" >&6
1416else
1417 echo "$as_me:$LINENO: result: no" >&5
1418echo "${ECHO_T}no" >&6
1419fi
1420
1421fi
1422if test -z "$ac_cv_prog_CC"; then
1423 ac_ct_CC=$CC
1424 # Extract the first word of "cc", so it can be a program name with args.
1425set dummy cc; ac_word=$2
1426echo "$as_me:$LINENO: checking for $ac_word" >&5
1427echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1428if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
1429 echo $ECHO_N "(cached) $ECHO_C" >&6
1430else
1431 if test -n "$ac_ct_CC"; then
1432 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
1433else
1434as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1435for as_dir in $PATH
1436do
1437 IFS=$as_save_IFS
1438 test -z "$as_dir" && as_dir=.
1439 for ac_exec_ext in '' $ac_executable_extensions; do
1440 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1441 ac_cv_prog_ac_ct_CC="cc"
1442 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1443 break 2
1444 fi
1445done
1446done
1447
1448fi
1449fi
1450ac_ct_CC=$ac_cv_prog_ac_ct_CC
1451if test -n "$ac_ct_CC"; then
1452 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
1453echo "${ECHO_T}$ac_ct_CC" >&6
1454else
1455 echo "$as_me:$LINENO: result: no" >&5
1456echo "${ECHO_T}no" >&6
1457fi
1458
1459 CC=$ac_ct_CC
1460else
1461 CC="$ac_cv_prog_CC"
1462fi
1463
1464fi
1465if test -z "$CC"; then
1466 # Extract the first word of "cc", so it can be a program name with args.
1467set dummy cc; ac_word=$2
1468echo "$as_me:$LINENO: checking for $ac_word" >&5
1469echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1470if test "${ac_cv_prog_CC+set}" = set; then
1471 echo $ECHO_N "(cached) $ECHO_C" >&6
1472else
1473 if test -n "$CC"; then
1474 ac_cv_prog_CC="$CC" # Let the user override the test.
1475else
1476 ac_prog_rejected=no
1477as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1478for as_dir in $PATH
1479do
1480 IFS=$as_save_IFS
1481 test -z "$as_dir" && as_dir=.
1482 for ac_exec_ext in '' $ac_executable_extensions; do
1483 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1484 if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
1485 ac_prog_rejected=yes
1486 continue
1487 fi
1488 ac_cv_prog_CC="cc"
1489 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1490 break 2
1491 fi
1492done
1493done
1494
84563040
DJ
1495if test $ac_prog_rejected = yes; then
1496 # We found a bogon in the path, so make sure we never use it.
1497 set dummy $ac_cv_prog_CC
1498 shift
bec39cab 1499 if test $# != 0; then
84563040
DJ
1500 # We chose a different compiler from the bogus one.
1501 # However, it has the same basename, so the bogon will be chosen
1502 # first if we set CC to just the basename; use the full file name.
1503 shift
bec39cab 1504 ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
84563040
DJ
1505 fi
1506fi
1507fi
1508fi
bec39cab 1509CC=$ac_cv_prog_CC
84563040 1510if test -n "$CC"; then
bec39cab
AC
1511 echo "$as_me:$LINENO: result: $CC" >&5
1512echo "${ECHO_T}$CC" >&6
84563040 1513else
bec39cab
AC
1514 echo "$as_me:$LINENO: result: no" >&5
1515echo "${ECHO_T}no" >&6
84563040
DJ
1516fi
1517
bec39cab
AC
1518fi
1519if test -z "$CC"; then
1520 if test -n "$ac_tool_prefix"; then
1521 for ac_prog in cl
1522 do
1523 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
1524set dummy $ac_tool_prefix$ac_prog; ac_word=$2
1525echo "$as_me:$LINENO: checking for $ac_word" >&5
1526echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1527if test "${ac_cv_prog_CC+set}" = set; then
1528 echo $ECHO_N "(cached) $ECHO_C" >&6
84563040
DJ
1529else
1530 if test -n "$CC"; then
1531 ac_cv_prog_CC="$CC" # Let the user override the test.
1532else
bec39cab
AC
1533as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1534for as_dir in $PATH
1535do
1536 IFS=$as_save_IFS
1537 test -z "$as_dir" && as_dir=.
1538 for ac_exec_ext in '' $ac_executable_extensions; do
1539 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1540 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
1541 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1542 break 2
1543 fi
1544done
1545done
1546
84563040
DJ
1547fi
1548fi
bec39cab 1549CC=$ac_cv_prog_CC
84563040 1550if test -n "$CC"; then
bec39cab
AC
1551 echo "$as_me:$LINENO: result: $CC" >&5
1552echo "${ECHO_T}$CC" >&6
84563040 1553else
bec39cab
AC
1554 echo "$as_me:$LINENO: result: no" >&5
1555echo "${ECHO_T}no" >&6
84563040 1556fi
bec39cab
AC
1557
1558 test -n "$CC" && break
1559 done
1560fi
1561if test -z "$CC"; then
1562 ac_ct_CC=$CC
1563 for ac_prog in cl
1564do
1565 # Extract the first word of "$ac_prog", so it can be a program name with args.
1566set dummy $ac_prog; ac_word=$2
1567echo "$as_me:$LINENO: checking for $ac_word" >&5
1568echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1569if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
1570 echo $ECHO_N "(cached) $ECHO_C" >&6
1571else
1572 if test -n "$ac_ct_CC"; then
1573 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
1574else
1575as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1576for as_dir in $PATH
1577do
1578 IFS=$as_save_IFS
1579 test -z "$as_dir" && as_dir=.
1580 for ac_exec_ext in '' $ac_executable_extensions; do
1581 if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1582 ac_cv_prog_ac_ct_CC="$ac_prog"
1583 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1584 break 2
84563040 1585 fi
bec39cab
AC
1586done
1587done
1588
1589fi
1590fi
1591ac_ct_CC=$ac_cv_prog_ac_ct_CC
1592if test -n "$ac_ct_CC"; then
1593 echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
1594echo "${ECHO_T}$ac_ct_CC" >&6
1595else
1596 echo "$as_me:$LINENO: result: no" >&5
1597echo "${ECHO_T}no" >&6
84563040
DJ
1598fi
1599
bec39cab
AC
1600 test -n "$ac_ct_CC" && break
1601done
84563040 1602
bec39cab
AC
1603 CC=$ac_ct_CC
1604fi
1605
1606fi
1607
1608
1609test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
1610See \`config.log' for more details." >&5
1611echo "$as_me: error: no acceptable C compiler found in \$PATH
1612See \`config.log' for more details." >&2;}
1613 { (exit 1); exit 1; }; }
1614
1615# Provide some information about the compiler.
1616echo "$as_me:$LINENO:" \
1617 "checking for C compiler version" >&5
1618ac_compiler=`set X $ac_compile; echo $2`
1619{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
1620 (eval $ac_compiler --version </dev/null >&5) 2>&5
1621 ac_status=$?
1622 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1623 (exit $ac_status); }
1624{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
1625 (eval $ac_compiler -v </dev/null >&5) 2>&5
1626 ac_status=$?
1627 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1628 (exit $ac_status); }
1629{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
1630 (eval $ac_compiler -V </dev/null >&5) 2>&5
1631 ac_status=$?
1632 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1633 (exit $ac_status); }
1634
1635cat >conftest.$ac_ext <<_ACEOF
1636/* confdefs.h. */
1637_ACEOF
1638cat confdefs.h >>conftest.$ac_ext
1639cat >>conftest.$ac_ext <<_ACEOF
1640/* end confdefs.h. */
1641
1642int
1643main ()
1644{
1645
1646 ;
1647 return 0;
1648}
1649_ACEOF
1650ac_clean_files_save=$ac_clean_files
1651ac_clean_files="$ac_clean_files a.out a.exe b.out"
1652# Try to create an executable without -o first, disregard a.out.
1653# It will help us diagnose broken compilers, and finding out an intuition
1654# of exeext.
1655echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
1656echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6
1657ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
1658if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5
1659 (eval $ac_link_default) 2>&5
1660 ac_status=$?
1661 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1662 (exit $ac_status); }; then
1663 # Find the output, starting from the most likely. This scheme is
1664# not robust to junk in `.', hence go to wildcards (a.*) only as a last
1665# resort.
1666
1667# Be careful to initialize this variable, since it used to be cached.
1668# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile.
1669ac_cv_exeext=
1670# b.out is created by i960 compilers.
1671for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out
1672do
1673 test -f "$ac_file" || continue
1674 case $ac_file in
1675 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj )
1676 ;;
1677 conftest.$ac_ext )
1678 # This is the source file.
1679 ;;
1680 [ab].out )
1681 # We found the default executable, but exeext='' is most
1682 # certainly right.
1683 break;;
1684 *.* )
1685 ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
1686 # FIXME: I believe we export ac_cv_exeext for Libtool,
1687 # but it would be cool to find out if it's true. Does anybody
1688 # maintain Libtool? --akim.
1689 export ac_cv_exeext
1690 break;;
1691 * )
1692 break;;
1693 esac
1694done
1695else
1696 echo "$as_me: failed program was:" >&5
1697sed 's/^/| /' conftest.$ac_ext >&5
1698
1699{ { echo "$as_me:$LINENO: error: C compiler cannot create executables
1700See \`config.log' for more details." >&5
1701echo "$as_me: error: C compiler cannot create executables
1702See \`config.log' for more details." >&2;}
1703 { (exit 77); exit 77; }; }
1704fi
1705
1706ac_exeext=$ac_cv_exeext
1707echo "$as_me:$LINENO: result: $ac_file" >&5
1708echo "${ECHO_T}$ac_file" >&6
1709
1710# Check the compiler produces executables we can run. If not, either
1711# the compiler is broken, or we cross compile.
1712echo "$as_me:$LINENO: checking whether the C compiler works" >&5
1713echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
1714# FIXME: These cross compiler hacks should be removed for Autoconf 3.0
1715# If not cross compiling, check that we can run a simple program.
1716if test "$cross_compiling" != yes; then
1717 if { ac_try='./$ac_file'
1718 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1719 (eval $ac_try) 2>&5
1720 ac_status=$?
1721 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1722 (exit $ac_status); }; }; then
1723 cross_compiling=no
84563040 1724 else
bec39cab
AC
1725 if test "$cross_compiling" = maybe; then
1726 cross_compiling=yes
1727 else
1728 { { echo "$as_me:$LINENO: error: cannot run C compiled programs.
1729If you meant to cross compile, use \`--host'.
1730See \`config.log' for more details." >&5
1731echo "$as_me: error: cannot run C compiled programs.
1732If you meant to cross compile, use \`--host'.
1733See \`config.log' for more details." >&2;}
1734 { (exit 1); exit 1; }; }
1735 fi
84563040 1736 fi
84563040 1737fi
bec39cab
AC
1738echo "$as_me:$LINENO: result: yes" >&5
1739echo "${ECHO_T}yes" >&6
1740
1741rm -f a.out a.exe conftest$ac_cv_exeext b.out
1742ac_clean_files=$ac_clean_files_save
1743# Check the compiler produces executables we can run. If not, either
1744# the compiler is broken, or we cross compile.
1745echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
1746echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
1747echo "$as_me:$LINENO: result: $cross_compiling" >&5
1748echo "${ECHO_T}$cross_compiling" >&6
1749
1750echo "$as_me:$LINENO: checking for suffix of executables" >&5
1751echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6
1752if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
1753 (eval $ac_link) 2>&5
1754 ac_status=$?
1755 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1756 (exit $ac_status); }; then
1757 # If both `conftest.exe' and `conftest' are `present' (well, observable)
1758# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
1759# work properly (i.e., refer to `conftest.exe'), while it won't with
1760# `rm'.
1761for ac_file in conftest.exe conftest conftest.*; do
1762 test -f "$ac_file" || continue
1763 case $ac_file in
1764 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;;
1765 *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
1766 export ac_cv_exeext
1767 break;;
1768 * ) break;;
1769 esac
1770done
84563040 1771else
bec39cab
AC
1772 { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
1773See \`config.log' for more details." >&5
1774echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
1775See \`config.log' for more details." >&2;}
1776 { (exit 1); exit 1; }; }
84563040 1777fi
bec39cab
AC
1778
1779rm -f conftest$ac_cv_exeext
1780echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
1781echo "${ECHO_T}$ac_cv_exeext" >&6
1782
1783rm -f conftest.$ac_ext
1784EXEEXT=$ac_cv_exeext
1785ac_exeext=$EXEEXT
1786echo "$as_me:$LINENO: checking for suffix of object files" >&5
1787echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6
1788if test "${ac_cv_objext+set}" = set; then
1789 echo $ECHO_N "(cached) $ECHO_C" >&6
1790else
1791 cat >conftest.$ac_ext <<_ACEOF
1792/* confdefs.h. */
1793_ACEOF
1794cat confdefs.h >>conftest.$ac_ext
1795cat >>conftest.$ac_ext <<_ACEOF
1796/* end confdefs.h. */
1797
1798int
1799main ()
1800{
1801
1802 ;
1803 return 0;
1804}
1805_ACEOF
1806rm -f conftest.o conftest.obj
1807if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1808 (eval $ac_compile) 2>&5
1809 ac_status=$?
1810 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1811 (exit $ac_status); }; then
1812 for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
1813 case $ac_file in
1814 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;;
1815 *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
1816 break;;
1817 esac
1818done
1819else
1820 echo "$as_me: failed program was:" >&5
1821sed 's/^/| /' conftest.$ac_ext >&5
1822
1823{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
1824See \`config.log' for more details." >&5
1825echo "$as_me: error: cannot compute suffix of object files: cannot compile
1826See \`config.log' for more details." >&2;}
1827 { (exit 1); exit 1; }; }
84563040
DJ
1828fi
1829
bec39cab
AC
1830rm -f conftest.$ac_cv_objext conftest.$ac_ext
1831fi
1832echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
1833echo "${ECHO_T}$ac_cv_objext" >&6
1834OBJEXT=$ac_cv_objext
1835ac_objext=$OBJEXT
1836echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
1837echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
1838if test "${ac_cv_c_compiler_gnu+set}" = set; then
1839 echo $ECHO_N "(cached) $ECHO_C" >&6
1840else
1841 cat >conftest.$ac_ext <<_ACEOF
1842/* confdefs.h. */
1843_ACEOF
1844cat confdefs.h >>conftest.$ac_ext
1845cat >>conftest.$ac_ext <<_ACEOF
1846/* end confdefs.h. */
1847
1848int
1849main ()
1850{
1851#ifndef __GNUC__
1852 choke me
1853#endif
84563040 1854
bec39cab
AC
1855 ;
1856 return 0;
1857}
1858_ACEOF
1859rm -f conftest.$ac_objext
1860if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1861 (eval $ac_compile) 2>conftest.er1
1862 ac_status=$?
1863 grep -v '^ *+' conftest.er1 >conftest.err
1864 rm -f conftest.er1
1865 cat conftest.err >&5
1866 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1867 (exit $ac_status); } &&
dcdb98d2 1868 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
bec39cab
AC
1869 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1870 (eval $ac_try) 2>&5
1871 ac_status=$?
1872 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1873 (exit $ac_status); }; } &&
1874 { ac_try='test -s conftest.$ac_objext'
1875 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1876 (eval $ac_try) 2>&5
1877 ac_status=$?
1878 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1879 (exit $ac_status); }; }; then
1880 ac_compiler_gnu=yes
84563040 1881else
bec39cab
AC
1882 echo "$as_me: failed program was:" >&5
1883sed 's/^/| /' conftest.$ac_ext >&5
1884
1885ac_compiler_gnu=no
84563040 1886fi
bec39cab
AC
1887rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
1888ac_cv_c_compiler_gnu=$ac_compiler_gnu
84563040 1889
bec39cab
AC
1890fi
1891echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
1892echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
1893GCC=`test $ac_compiler_gnu = yes && echo yes`
1894ac_test_CFLAGS=${CFLAGS+set}
1895ac_save_CFLAGS=$CFLAGS
1896CFLAGS="-g"
1897echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
1898echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
1899if test "${ac_cv_prog_cc_g+set}" = set; then
1900 echo $ECHO_N "(cached) $ECHO_C" >&6
84563040 1901else
bec39cab
AC
1902 cat >conftest.$ac_ext <<_ACEOF
1903/* confdefs.h. */
1904_ACEOF
1905cat confdefs.h >>conftest.$ac_ext
1906cat >>conftest.$ac_ext <<_ACEOF
1907/* end confdefs.h. */
1908
1909int
1910main ()
1911{
1912
1913 ;
1914 return 0;
1915}
1916_ACEOF
1917rm -f conftest.$ac_objext
1918if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1919 (eval $ac_compile) 2>conftest.er1
1920 ac_status=$?
1921 grep -v '^ *+' conftest.er1 >conftest.err
1922 rm -f conftest.er1
1923 cat conftest.err >&5
1924 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1925 (exit $ac_status); } &&
dcdb98d2 1926 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
bec39cab
AC
1927 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1928 (eval $ac_try) 2>&5
1929 ac_status=$?
1930 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1931 (exit $ac_status); }; } &&
1932 { ac_try='test -s conftest.$ac_objext'
1933 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1934 (eval $ac_try) 2>&5
1935 ac_status=$?
1936 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1937 (exit $ac_status); }; }; then
84563040
DJ
1938 ac_cv_prog_cc_g=yes
1939else
bec39cab
AC
1940 echo "$as_me: failed program was:" >&5
1941sed 's/^/| /' conftest.$ac_ext >&5
84563040 1942
bec39cab 1943ac_cv_prog_cc_g=no
84563040 1944fi
bec39cab
AC
1945rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
1946fi
1947echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
1948echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
84563040 1949if test "$ac_test_CFLAGS" = set; then
bec39cab 1950 CFLAGS=$ac_save_CFLAGS
84563040
DJ
1951elif test $ac_cv_prog_cc_g = yes; then
1952 if test "$GCC" = yes; then
1953 CFLAGS="-g -O2"
1954 else
1955 CFLAGS="-g"
1956 fi
1957else
1958 if test "$GCC" = yes; then
1959 CFLAGS="-O2"
1960 else
1961 CFLAGS=
1962 fi
1963fi
bec39cab
AC
1964echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
1965echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
1966if test "${ac_cv_prog_cc_stdc+set}" = set; then
1967 echo $ECHO_N "(cached) $ECHO_C" >&6
1968else
1969 ac_cv_prog_cc_stdc=no
1970ac_save_CC=$CC
1971cat >conftest.$ac_ext <<_ACEOF
1972/* confdefs.h. */
1973_ACEOF
1974cat confdefs.h >>conftest.$ac_ext
1975cat >>conftest.$ac_ext <<_ACEOF
1976/* end confdefs.h. */
1977#include <stdarg.h>
1978#include <stdio.h>
1979#include <sys/types.h>
1980#include <sys/stat.h>
1981/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
1982struct buf { int x; };
1983FILE * (*rcsopen) (struct buf *, struct stat *, int);
1984static char *e (p, i)
1985 char **p;
1986 int i;
1987{
1988 return p[i];
1989}
1990static char *f (char * (*g) (char **, int), char **p, ...)
1991{
1992 char *s;
1993 va_list v;
1994 va_start (v,p);
1995 s = g (p, va_arg (v,int));
1996 va_end (v);
1997 return s;
1998}
1999
2000/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
2001 function prototypes and stuff, but not '\xHH' hex character constants.
2002 These don't provoke an error unfortunately, instead are silently treated
2003 as 'x'. The following induces an error, until -std1 is added to get
2004 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
2005 array size at least. It's necessary to write '\x00'==0 to get something
2006 that's true only with -std1. */
2007int osf4_cc_array ['\x00' == 0 ? 1 : -1];
2008
2009int test (int i, double x);
2010struct s1 {int (*f) (int a);};
2011struct s2 {int (*f) (double a);};
2012int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
2013int argc;
2014char **argv;
2015int
2016main ()
2017{
2018return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
2019 ;
2020 return 0;
2021}
2022_ACEOF
2023# Don't try gcc -ansi; that turns off useful extensions and
2024# breaks some systems' header files.
2025# AIX -qlanglvl=ansi
2026# Ultrix and OSF/1 -std1
2027# HP-UX 10.20 and later -Ae
2028# HP-UX older versions -Aa -D_HPUX_SOURCE
2029# SVR4 -Xc -D__EXTENSIONS__
2030for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
2031do
2032 CC="$ac_save_CC $ac_arg"
2033 rm -f conftest.$ac_objext
2034if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2035 (eval $ac_compile) 2>conftest.er1
2036 ac_status=$?
2037 grep -v '^ *+' conftest.er1 >conftest.err
2038 rm -f conftest.er1
2039 cat conftest.err >&5
2040 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2041 (exit $ac_status); } &&
dcdb98d2 2042 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
bec39cab
AC
2043 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2044 (eval $ac_try) 2>&5
2045 ac_status=$?
2046 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2047 (exit $ac_status); }; } &&
2048 { ac_try='test -s conftest.$ac_objext'
2049 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2050 (eval $ac_try) 2>&5
2051 ac_status=$?
2052 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2053 (exit $ac_status); }; }; then
2054 ac_cv_prog_cc_stdc=$ac_arg
2055break
2056else
2057 echo "$as_me: failed program was:" >&5
2058sed 's/^/| /' conftest.$ac_ext >&5
2059
2060fi
2061rm -f conftest.err conftest.$ac_objext
2062done
2063rm -f conftest.$ac_ext conftest.$ac_objext
2064CC=$ac_save_CC
2065
2066fi
2067
2068case "x$ac_cv_prog_cc_stdc" in
2069 x|xno)
2070 echo "$as_me:$LINENO: result: none needed" >&5
2071echo "${ECHO_T}none needed" >&6 ;;
2072 *)
2073 echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
2074echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
2075 CC="$CC $ac_cv_prog_cc_stdc" ;;
2076esac
2077
2078# Some people use a C++ compiler to compile C. Since we use `exit',
2079# in C++ we need to declare it. In case someone uses the same compiler
2080# for both compiling C and C++ we need to have the C++ compiler decide
2081# the declaration of exit, since it's the most demanding environment.
2082cat >conftest.$ac_ext <<_ACEOF
2083#ifndef __cplusplus
2084 choke me
2085#endif
2086_ACEOF
2087rm -f conftest.$ac_objext
2088if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2089 (eval $ac_compile) 2>conftest.er1
2090 ac_status=$?
2091 grep -v '^ *+' conftest.er1 >conftest.err
2092 rm -f conftest.er1
2093 cat conftest.err >&5
2094 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2095 (exit $ac_status); } &&
dcdb98d2 2096 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
bec39cab
AC
2097 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2098 (eval $ac_try) 2>&5
2099 ac_status=$?
2100 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2101 (exit $ac_status); }; } &&
2102 { ac_try='test -s conftest.$ac_objext'
2103 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2104 (eval $ac_try) 2>&5
2105 ac_status=$?
2106 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2107 (exit $ac_status); }; }; then
2108 for ac_declaration in \
2109 '' \
2110 'extern "C" void std::exit (int) throw (); using std::exit;' \
2111 'extern "C" void std::exit (int); using std::exit;' \
2112 'extern "C" void exit (int) throw ();' \
2113 'extern "C" void exit (int);' \
2114 'void exit (int);'
2115do
2116 cat >conftest.$ac_ext <<_ACEOF
2117/* confdefs.h. */
2118_ACEOF
2119cat confdefs.h >>conftest.$ac_ext
2120cat >>conftest.$ac_ext <<_ACEOF
2121/* end confdefs.h. */
2122$ac_declaration
2123#include <stdlib.h>
2124int
2125main ()
2126{
2127exit (42);
2128 ;
2129 return 0;
2130}
2131_ACEOF
2132rm -f conftest.$ac_objext
2133if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2134 (eval $ac_compile) 2>conftest.er1
2135 ac_status=$?
2136 grep -v '^ *+' conftest.er1 >conftest.err
2137 rm -f conftest.er1
2138 cat conftest.err >&5
2139 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2140 (exit $ac_status); } &&
dcdb98d2 2141 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
bec39cab
AC
2142 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2143 (eval $ac_try) 2>&5
2144 ac_status=$?
2145 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2146 (exit $ac_status); }; } &&
2147 { ac_try='test -s conftest.$ac_objext'
2148 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2149 (eval $ac_try) 2>&5
2150 ac_status=$?
2151 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2152 (exit $ac_status); }; }; then
2153 :
2154else
2155 echo "$as_me: failed program was:" >&5
2156sed 's/^/| /' conftest.$ac_ext >&5
2157
2158continue
2159fi
2160rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
2161 cat >conftest.$ac_ext <<_ACEOF
2162/* confdefs.h. */
2163_ACEOF
2164cat confdefs.h >>conftest.$ac_ext
2165cat >>conftest.$ac_ext <<_ACEOF
2166/* end confdefs.h. */
2167$ac_declaration
2168int
2169main ()
2170{
2171exit (42);
2172 ;
2173 return 0;
2174}
2175_ACEOF
2176rm -f conftest.$ac_objext
2177if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2178 (eval $ac_compile) 2>conftest.er1
2179 ac_status=$?
2180 grep -v '^ *+' conftest.er1 >conftest.err
2181 rm -f conftest.er1
2182 cat conftest.err >&5
2183 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2184 (exit $ac_status); } &&
dcdb98d2 2185 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
bec39cab
AC
2186 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2187 (eval $ac_try) 2>&5
2188 ac_status=$?
2189 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2190 (exit $ac_status); }; } &&
2191 { ac_try='test -s conftest.$ac_objext'
2192 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2193 (eval $ac_try) 2>&5
2194 ac_status=$?
2195 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2196 (exit $ac_status); }; }; then
2197 break
2198else
2199 echo "$as_me: failed program was:" >&5
2200sed 's/^/| /' conftest.$ac_ext >&5
2201
2202fi
2203rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
2204done
2205rm -f conftest*
2206if test -n "$ac_declaration"; then
2207 echo '#ifdef __cplusplus' >>confdefs.h
2208 echo $ac_declaration >>confdefs.h
2209 echo '#endif' >>confdefs.h
2210fi
2211
2212else
2213 echo "$as_me: failed program was:" >&5
2214sed 's/^/| /' conftest.$ac_ext >&5
2215
2216fi
2217rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
2218ac_ext=c
2219ac_cpp='$CPP $CPPFLAGS'
2220ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
2221ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2222ac_compiler_gnu=$ac_cv_c_compiler_gnu
84563040
DJ
2223
2224
d6e9fb05
JK
2225ac_aux_dir=
2226for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
2227 if test -f $ac_dir/install-sh; then
2228 ac_aux_dir=$ac_dir
2229 ac_install_sh="$ac_aux_dir/install-sh -c"
2230 break
2231 elif test -f $ac_dir/install.sh; then
2232 ac_aux_dir=$ac_dir
2233 ac_install_sh="$ac_aux_dir/install.sh -c"
2234 break
bec39cab
AC
2235 elif test -f $ac_dir/shtool; then
2236 ac_aux_dir=$ac_dir
2237 ac_install_sh="$ac_aux_dir/shtool install -c"
2238 break
d6e9fb05
JK
2239 fi
2240done
2241if test -z "$ac_aux_dir"; then
bec39cab
AC
2242 { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
2243echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
2244 { (exit 1); exit 1; }; }
d6e9fb05 2245fi
bec39cab
AC
2246ac_config_guess="$SHELL $ac_aux_dir/config.guess"
2247ac_config_sub="$SHELL $ac_aux_dir/config.sub"
2248ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
d6e9fb05
JK
2249
2250# Make sure we can run config.sub.
bec39cab
AC
2251$ac_config_sub sun4 >/dev/null 2>&1 ||
2252 { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5
2253echo "$as_me: error: cannot run $ac_config_sub" >&2;}
2254 { (exit 1); exit 1; }; }
2255
2256echo "$as_me:$LINENO: checking build system type" >&5
2257echo $ECHO_N "checking build system type... $ECHO_C" >&6
2258if test "${ac_cv_build+set}" = set; then
2259 echo $ECHO_N "(cached) $ECHO_C" >&6
2260else
2261 ac_cv_build_alias=$build_alias
2262test -z "$ac_cv_build_alias" &&
2263 ac_cv_build_alias=`$ac_config_guess`
2264test -z "$ac_cv_build_alias" &&
2265 { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
2266echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
2267 { (exit 1); exit 1; }; }
2268ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
2269 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5
2270echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;}
2271 { (exit 1); exit 1; }; }
d6e9fb05 2272
bec39cab
AC
2273fi
2274echo "$as_me:$LINENO: result: $ac_cv_build" >&5
2275echo "${ECHO_T}$ac_cv_build" >&6
2276build=$ac_cv_build
2277build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
2278build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
2279build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
2280
2281
2282echo "$as_me:$LINENO: checking host system type" >&5
2283echo $ECHO_N "checking host system type... $ECHO_C" >&6
2284if test "${ac_cv_host+set}" = set; then
2285 echo $ECHO_N "(cached) $ECHO_C" >&6
2286else
2287 ac_cv_host_alias=$host_alias
2288test -z "$ac_cv_host_alias" &&
2289 ac_cv_host_alias=$ac_cv_build_alias
2290ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
2291 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5
2292echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
2293 { (exit 1); exit 1; }; }
d6e9fb05 2294
bec39cab
AC
2295fi
2296echo "$as_me:$LINENO: result: $ac_cv_host" >&5
2297echo "${ECHO_T}$ac_cv_host" >&6
2298host=$ac_cv_host
2299host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
2300host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
2301host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
2302
2303
2304echo "$as_me:$LINENO: checking target system type" >&5
2305echo $ECHO_N "checking target system type... $ECHO_C" >&6
2306if test "${ac_cv_target+set}" = set; then
2307 echo $ECHO_N "(cached) $ECHO_C" >&6
2308else
2309 ac_cv_target_alias=$target_alias
2310test "x$ac_cv_target_alias" = "x" &&
2311 ac_cv_target_alias=$ac_cv_host_alias
2312ac_cv_target=`$ac_config_sub $ac_cv_target_alias` ||
2313 { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_target_alias failed" >&5
2314echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;}
2315 { (exit 1); exit 1; }; }
d6e9fb05 2316
bec39cab
AC
2317fi
2318echo "$as_me:$LINENO: result: $ac_cv_target" >&5
2319echo "${ECHO_T}$ac_cv_target" >&6
2320target=$ac_cv_target
2321target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
2322target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
2323target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
d6e9fb05 2324
d6e9fb05 2325
bec39cab
AC
2326# The aliases save the names the user supplied, while $host etc.
2327# will get canonicalized.
2328test -n "$target_alias" &&
d6e9fb05
JK
2329 test "$program_prefix$program_suffix$program_transform_name" = \
2330 NONENONEs,x,x, &&
2331 program_prefix=${target_alias}-
2332
2333# Find a good install program. We prefer a C program (faster),
2334# so one script is as good as another. But avoid the broken or
2335# incompatible versions:
2336# SysV /etc/install, /usr/sbin/install
2337# SunOS /usr/etc/install
2338# IRIX /sbin/install
2339# AIX /bin/install
bec39cab 2340# AmigaOS /C/install, which installs bootblocks on floppy discs
e4f78295 2341# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
d6e9fb05
JK
2342# AFS /usr/afsws/bin/install, which mishandles nonexistent args
2343# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
bec39cab 2344# OS/2's system install, which has a completely different semantic
d6e9fb05 2345# ./install, which can be erroneously created by make from ./install.sh.
bec39cab
AC
2346echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
2347echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
d6e9fb05 2348if test -z "$INSTALL"; then
bec39cab
AC
2349if test "${ac_cv_path_install+set}" = set; then
2350 echo $ECHO_N "(cached) $ECHO_C" >&6
2351else
2352 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2353for as_dir in $PATH
2354do
2355 IFS=$as_save_IFS
2356 test -z "$as_dir" && as_dir=.
2357 # Account for people who put trailing slashes in PATH elements.
2358case $as_dir/ in
2359 ./ | .// | /cC/* | \
2360 /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
2361 ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \
2362 /usr/ucb/* ) ;;
2363 *)
2364 # OSF1 and SCO ODT 3.0 have their own names for install.
2365 # Don't use installbsd from OSF since it installs stuff as root
2366 # by default.
2367 for ac_prog in ginstall scoinst install; do
2368 for ac_exec_ext in '' $ac_executable_extensions; do
2369 if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
d6e9fb05 2370 if test $ac_prog = install &&
bec39cab 2371 grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
d6e9fb05 2372 # AIX install. It has an incompatible calling convention.
d6e9fb05 2373 :
bec39cab
AC
2374 elif test $ac_prog = install &&
2375 grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
2376 # program-specific install script used by HP pwplus--don't use.
2377 :
d6e9fb05 2378 else
bec39cab
AC
2379 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
2380 break 3
d6e9fb05
JK
2381 fi
2382 fi
2383 done
bec39cab
AC
2384 done
2385 ;;
2386esac
2387done
2388
d6e9fb05
JK
2389
2390fi
2391 if test "${ac_cv_path_install+set}" = set; then
bec39cab 2392 INSTALL=$ac_cv_path_install
d6e9fb05
JK
2393 else
2394 # As a last resort, use the slow shell script. We don't cache a
2395 # path for INSTALL within a source directory, because that will
2396 # break other packages using the cache if that directory is
2397 # removed, or if the path is relative.
bec39cab 2398 INSTALL=$ac_install_sh
d6e9fb05
JK
2399 fi
2400fi
bec39cab
AC
2401echo "$as_me:$LINENO: result: $INSTALL" >&5
2402echo "${ECHO_T}$INSTALL" >&6
d6e9fb05
JK
2403
2404# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
2405# It thinks the first close brace ends the variable substitution.
2406test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
2407
bec39cab 2408test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
e4f78295 2409
d6e9fb05
JK
2410test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
2411
2412
dcdb98d2
DJ
2413test "$program_prefix" != NONE &&
2414 program_transform_name="s,^,$program_prefix,;$program_transform_name"
2415# Use a double $ so make ignores it.
2416test "$program_suffix" != NONE &&
2417 program_transform_name="s,\$,$program_suffix,;$program_transform_name"
2418# Double any \ or $. echo might interpret backslashes.
2419# By default was `s,x,x', remove it if useless.
2420cat <<\_ACEOF >conftest.sed
2421s/[\\$]/&&/g;s/;s,x,x,$//
2422_ACEOF
2423program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
2424rm conftest.sed
2425
2426
bec39cab
AC
2427
2428ac_ext=c
2429ac_cpp='$CPP $CPPFLAGS'
2430ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
2431ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2432ac_compiler_gnu=$ac_cv_c_compiler_gnu
2433echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
2434echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
84563040
DJ
2435# On Suns, sometimes $CPP names a directory.
2436if test -n "$CPP" && test -d "$CPP"; then
2437 CPP=
2438fi
2439if test -z "$CPP"; then
bec39cab
AC
2440 if test "${ac_cv_prog_CPP+set}" = set; then
2441 echo $ECHO_N "(cached) $ECHO_C" >&6
84563040 2442else
bec39cab
AC
2443 # Double quotes because CPP needs to be expanded
2444 for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
2445 do
2446 ac_preproc_ok=false
2447for ac_c_preproc_warn_flag in '' yes
2448do
2449 # Use a header file that comes with gcc, so configuring glibc
2450 # with a fresh cross-compiler works.
2451 # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
2452 # <limits.h> exists even on freestanding compilers.
84563040 2453 # On the NeXT, cc -E runs the code through the compiler's parser,
bec39cab
AC
2454 # not just through cpp. "Syntax error" is here to catch this case.
2455 cat >conftest.$ac_ext <<_ACEOF
2456/* confdefs.h. */
2457_ACEOF
2458cat confdefs.h >>conftest.$ac_ext
2459cat >>conftest.$ac_ext <<_ACEOF
2460/* end confdefs.h. */
2461#ifdef __STDC__
2462# include <limits.h>
2463#else
2464# include <assert.h>
2465#endif
2466 Syntax error
2467_ACEOF
2468if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
2469 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2470 ac_status=$?
2471 grep -v '^ *+' conftest.er1 >conftest.err
2472 rm -f conftest.er1
2473 cat conftest.err >&5
2474 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2475 (exit $ac_status); } >/dev/null; then
2476 if test -s conftest.err; then
2477 ac_cpp_err=$ac_c_preproc_warn_flag
2478 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
2479 else
2480 ac_cpp_err=
2481 fi
84563040 2482else
bec39cab
AC
2483 ac_cpp_err=yes
2484fi
2485if test -z "$ac_cpp_err"; then
84563040
DJ
2486 :
2487else
bec39cab
AC
2488 echo "$as_me: failed program was:" >&5
2489sed 's/^/| /' conftest.$ac_ext >&5
2490
2491 # Broken: fails on valid input.
2492continue
2493fi
2494rm -f conftest.err conftest.$ac_ext
2495
2496 # OK, works on sane cases. Now check whether non-existent headers
2497 # can be detected and how.
2498 cat >conftest.$ac_ext <<_ACEOF
2499/* confdefs.h. */
2500_ACEOF
2501cat confdefs.h >>conftest.$ac_ext
2502cat >>conftest.$ac_ext <<_ACEOF
2503/* end confdefs.h. */
2504#include <ac_nonexistent.h>
2505_ACEOF
2506if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
2507 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2508 ac_status=$?
2509 grep -v '^ *+' conftest.er1 >conftest.err
2510 rm -f conftest.er1
2511 cat conftest.err >&5
2512 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2513 (exit $ac_status); } >/dev/null; then
2514 if test -s conftest.err; then
2515 ac_cpp_err=$ac_c_preproc_warn_flag
2516 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
2517 else
2518 ac_cpp_err=
2519 fi
2520else
2521 ac_cpp_err=yes
2522fi
2523if test -z "$ac_cpp_err"; then
2524 # Broken: success on invalid input.
2525continue
2526else
2527 echo "$as_me: failed program was:" >&5
2528sed 's/^/| /' conftest.$ac_ext >&5
2529
2530 # Passes both tests.
2531ac_preproc_ok=:
2532break
2533fi
2534rm -f conftest.err conftest.$ac_ext
2535
2536done
2537# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
2538rm -f conftest.err conftest.$ac_ext
2539if $ac_preproc_ok; then
2540 break
2541fi
2542
2543 done
2544 ac_cv_prog_CPP=$CPP
2545
2546fi
2547 CPP=$ac_cv_prog_CPP
2548else
2549 ac_cv_prog_CPP=$CPP
2550fi
2551echo "$as_me:$LINENO: result: $CPP" >&5
2552echo "${ECHO_T}$CPP" >&6
2553ac_preproc_ok=false
2554for ac_c_preproc_warn_flag in '' yes
2555do
2556 # Use a header file that comes with gcc, so configuring glibc
2557 # with a fresh cross-compiler works.
2558 # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
2559 # <limits.h> exists even on freestanding compilers.
2560 # On the NeXT, cc -E runs the code through the compiler's parser,
2561 # not just through cpp. "Syntax error" is here to catch this case.
2562 cat >conftest.$ac_ext <<_ACEOF
2563/* confdefs.h. */
2564_ACEOF
2565cat confdefs.h >>conftest.$ac_ext
2566cat >>conftest.$ac_ext <<_ACEOF
2567/* end confdefs.h. */
2568#ifdef __STDC__
2569# include <limits.h>
2570#else
2571# include <assert.h>
2572#endif
2573 Syntax error
2574_ACEOF
2575if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
2576 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2577 ac_status=$?
2578 grep -v '^ *+' conftest.er1 >conftest.err
2579 rm -f conftest.er1
2580 cat conftest.err >&5
2581 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2582 (exit $ac_status); } >/dev/null; then
2583 if test -s conftest.err; then
2584 ac_cpp_err=$ac_c_preproc_warn_flag
2585 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
2586 else
2587 ac_cpp_err=
2588 fi
2589else
2590 ac_cpp_err=yes
2591fi
2592if test -z "$ac_cpp_err"; then
84563040
DJ
2593 :
2594else
bec39cab
AC
2595 echo "$as_me: failed program was:" >&5
2596sed 's/^/| /' conftest.$ac_ext >&5
2597
2598 # Broken: fails on valid input.
2599continue
84563040 2600fi
bec39cab
AC
2601rm -f conftest.err conftest.$ac_ext
2602
2603 # OK, works on sane cases. Now check whether non-existent headers
2604 # can be detected and how.
2605 cat >conftest.$ac_ext <<_ACEOF
2606/* confdefs.h. */
2607_ACEOF
2608cat confdefs.h >>conftest.$ac_ext
2609cat >>conftest.$ac_ext <<_ACEOF
2610/* end confdefs.h. */
2611#include <ac_nonexistent.h>
2612_ACEOF
2613if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
2614 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2615 ac_status=$?
2616 grep -v '^ *+' conftest.er1 >conftest.err
2617 rm -f conftest.er1
2618 cat conftest.err >&5
2619 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2620 (exit $ac_status); } >/dev/null; then
2621 if test -s conftest.err; then
2622 ac_cpp_err=$ac_c_preproc_warn_flag
2623 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
2624 else
2625 ac_cpp_err=
2626 fi
2627else
2628 ac_cpp_err=yes
84563040 2629fi
bec39cab
AC
2630if test -z "$ac_cpp_err"; then
2631 # Broken: success on invalid input.
2632continue
2633else
2634 echo "$as_me: failed program was:" >&5
2635sed 's/^/| /' conftest.$ac_ext >&5
2636
2637 # Passes both tests.
2638ac_preproc_ok=:
2639break
84563040 2640fi
bec39cab
AC
2641rm -f conftest.err conftest.$ac_ext
2642
2643done
2644# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
2645rm -f conftest.err conftest.$ac_ext
2646if $ac_preproc_ok; then
2647 :
2648else
2649 { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
2650See \`config.log' for more details." >&5
2651echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check
2652See \`config.log' for more details." >&2;}
2653 { (exit 1); exit 1; }; }
84563040 2654fi
bec39cab
AC
2655
2656ac_ext=c
2657ac_cpp='$CPP $CPPFLAGS'
2658ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
2659ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2660ac_compiler_gnu=$ac_cv_c_compiler_gnu
2661
2662
2663echo "$as_me:$LINENO: checking for egrep" >&5
2664echo $ECHO_N "checking for egrep... $ECHO_C" >&6
2665if test "${ac_cv_prog_egrep+set}" = set; then
2666 echo $ECHO_N "(cached) $ECHO_C" >&6
84563040 2667else
bec39cab
AC
2668 if echo a | (grep -E '(a|b)') >/dev/null 2>&1
2669 then ac_cv_prog_egrep='grep -E'
2670 else ac_cv_prog_egrep='egrep'
2671 fi
84563040 2672fi
bec39cab
AC
2673echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5
2674echo "${ECHO_T}$ac_cv_prog_egrep" >&6
2675 EGREP=$ac_cv_prog_egrep
84563040 2676
bec39cab
AC
2677
2678echo "$as_me:$LINENO: checking for ANSI C header files" >&5
2679echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
2680if test "${ac_cv_header_stdc+set}" = set; then
2681 echo $ECHO_N "(cached) $ECHO_C" >&6
84563040 2682else
bec39cab
AC
2683 cat >conftest.$ac_ext <<_ACEOF
2684/* confdefs.h. */
2685_ACEOF
2686cat confdefs.h >>conftest.$ac_ext
2687cat >>conftest.$ac_ext <<_ACEOF
2688/* end confdefs.h. */
84563040
DJ
2689#include <stdlib.h>
2690#include <stdarg.h>
2691#include <string.h>
2692#include <float.h>
bec39cab
AC
2693
2694int
2695main ()
2696{
2697
2698 ;
2699 return 0;
2700}
2701_ACEOF
2702rm -f conftest.$ac_objext
2703if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2704 (eval $ac_compile) 2>conftest.er1
2705 ac_status=$?
2706 grep -v '^ *+' conftest.er1 >conftest.err
2707 rm -f conftest.er1
2708 cat conftest.err >&5
2709 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2710 (exit $ac_status); } &&
dcdb98d2 2711 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
bec39cab
AC
2712 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2713 (eval $ac_try) 2>&5
2714 ac_status=$?
2715 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2716 (exit $ac_status); }; } &&
2717 { ac_try='test -s conftest.$ac_objext'
2718 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2719 (eval $ac_try) 2>&5
2720 ac_status=$?
2721 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2722 (exit $ac_status); }; }; then
84563040
DJ
2723 ac_cv_header_stdc=yes
2724else
bec39cab
AC
2725 echo "$as_me: failed program was:" >&5
2726sed 's/^/| /' conftest.$ac_ext >&5
2727
2728ac_cv_header_stdc=no
84563040 2729fi
bec39cab 2730rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
84563040
DJ
2731
2732if test $ac_cv_header_stdc = yes; then
2733 # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
bec39cab
AC
2734 cat >conftest.$ac_ext <<_ACEOF
2735/* confdefs.h. */
2736_ACEOF
2737cat confdefs.h >>conftest.$ac_ext
2738cat >>conftest.$ac_ext <<_ACEOF
2739/* end confdefs.h. */
84563040 2740#include <string.h>
bec39cab
AC
2741
2742_ACEOF
84563040 2743if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
bec39cab 2744 $EGREP "memchr" >/dev/null 2>&1; then
84563040
DJ
2745 :
2746else
84563040
DJ
2747 ac_cv_header_stdc=no
2748fi
2749rm -f conftest*
2750
2751fi
2752
2753if test $ac_cv_header_stdc = yes; then
2754 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
bec39cab
AC
2755 cat >conftest.$ac_ext <<_ACEOF
2756/* confdefs.h. */
2757_ACEOF
2758cat confdefs.h >>conftest.$ac_ext
2759cat >>conftest.$ac_ext <<_ACEOF
2760/* end confdefs.h. */
84563040 2761#include <stdlib.h>
bec39cab
AC
2762
2763_ACEOF
84563040 2764if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
bec39cab 2765 $EGREP "free" >/dev/null 2>&1; then
84563040
DJ
2766 :
2767else
84563040
DJ
2768 ac_cv_header_stdc=no
2769fi
2770rm -f conftest*
2771
2772fi
bec39cab
AC
2773
2774if test $ac_cv_header_stdc = yes; then
2775 # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
2776 if test "$cross_compiling" = yes; then
2777 :
2778else
2779 cat >conftest.$ac_ext <<_ACEOF
2780/* confdefs.h. */
2781_ACEOF
2782cat confdefs.h >>conftest.$ac_ext
2783cat >>conftest.$ac_ext <<_ACEOF
2784/* end confdefs.h. */
2785#include <ctype.h>
2786#if ((' ' & 0x0FF) == 0x020)
2787# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
2788# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
2789#else
2790# define ISLOWER(c) \
2791 (('a' <= (c) && (c) <= 'i') \
2792 || ('j' <= (c) && (c) <= 'r') \
2793 || ('s' <= (c) && (c) <= 'z'))
2794# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
2795#endif
2796
2797#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
2798int
2799main ()
2800{
2801 int i;
2802 for (i = 0; i < 256; i++)
2803 if (XOR (islower (i), ISLOWER (i))
2804 || toupper (i) != TOUPPER (i))
2805 exit(2);
2806 exit (0);
2807}
2808_ACEOF
2809rm -f conftest$ac_exeext
2810if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2811 (eval $ac_link) 2>&5
2812 ac_status=$?
2813 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2814 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
2815 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2816 (eval $ac_try) 2>&5
2817 ac_status=$?
2818 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2819 (exit $ac_status); }; }; then
2820 :
2821else
2822 echo "$as_me: program exited with status $ac_status" >&5
2823echo "$as_me: failed program was:" >&5
2824sed 's/^/| /' conftest.$ac_ext >&5
2825
2826( exit $ac_status )
2827ac_cv_header_stdc=no
2828fi
2829rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
2830fi
2831fi
2832fi
2833echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
2834echo "${ECHO_T}$ac_cv_header_stdc" >&6
2835if test $ac_cv_header_stdc = yes; then
2836
2837cat >>confdefs.h <<\_ACEOF
2838#define STDC_HEADERS 1
2839_ACEOF
2840
2841fi
2842
2843
2844# On IRIX 5.3, sys/types and inttypes.h are conflicting.
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
2855 inttypes.h stdint.h unistd.h
2856do
2857as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
2858echo "$as_me:$LINENO: checking for $ac_header" >&5
2859echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2860if eval "test \"\${$as_ac_Header+set}\" = set"; then
2861 echo $ECHO_N "(cached) $ECHO_C" >&6
2862else
2863 cat >conftest.$ac_ext <<_ACEOF
2864/* confdefs.h. */
2865_ACEOF
2866cat confdefs.h >>conftest.$ac_ext
2867cat >>conftest.$ac_ext <<_ACEOF
2868/* end confdefs.h. */
2869$ac_includes_default
2870
2871#include <$ac_header>
2872_ACEOF
2873rm -f conftest.$ac_objext
2874if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2875 (eval $ac_compile) 2>conftest.er1
2876 ac_status=$?
2877 grep -v '^ *+' conftest.er1 >conftest.err
2878 rm -f conftest.er1
2879 cat conftest.err >&5
2880 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2881 (exit $ac_status); } &&
dcdb98d2 2882 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
bec39cab
AC
2883 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2884 (eval $ac_try) 2>&5
2885 ac_status=$?
2886 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2887 (exit $ac_status); }; } &&
2888 { ac_try='test -s conftest.$ac_objext'
2889 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2890 (eval $ac_try) 2>&5
2891 ac_status=$?
2892 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2893 (exit $ac_status); }; }; then
2894 eval "$as_ac_Header=yes"
2895else
2896 echo "$as_me: failed program was:" >&5
2897sed 's/^/| /' conftest.$ac_ext >&5
2898
2899eval "$as_ac_Header=no"
2900fi
2901rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
2902fi
2903echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
2904echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
2905if test `eval echo '${'$as_ac_Header'}'` = yes; then
2906 cat >>confdefs.h <<_ACEOF
2907#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
2908_ACEOF
2909
2910fi
2911
2912done
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926for ac_header in sgtty.h termio.h termios.h sys/reg.h string.h proc_service.h sys/procfs.h thread_db.h linux/elf.h stdlib.h unistd.h
2927do
2928as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
2929if eval "test \"\${$as_ac_Header+set}\" = set"; then
2930 echo "$as_me:$LINENO: checking for $ac_header" >&5
2931echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2932if eval "test \"\${$as_ac_Header+set}\" = set"; then
2933 echo $ECHO_N "(cached) $ECHO_C" >&6
2934fi
2935echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
2936echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
84563040 2937else
bec39cab
AC
2938 # Is the header compilable?
2939echo "$as_me:$LINENO: checking $ac_header usability" >&5
2940echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
2941cat >conftest.$ac_ext <<_ACEOF
2942/* confdefs.h. */
2943_ACEOF
2944cat confdefs.h >>conftest.$ac_ext
2945cat >>conftest.$ac_ext <<_ACEOF
2946/* end confdefs.h. */
2947$ac_includes_default
2948#include <$ac_header>
2949_ACEOF
2950rm -f conftest.$ac_objext
2951if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
2952 (eval $ac_compile) 2>conftest.er1
2953 ac_status=$?
2954 grep -v '^ *+' conftest.er1 >conftest.err
2955 rm -f conftest.er1
2956 cat conftest.err >&5
2957 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2958 (exit $ac_status); } &&
dcdb98d2 2959 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
bec39cab
AC
2960 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2961 (eval $ac_try) 2>&5
2962 ac_status=$?
2963 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2964 (exit $ac_status); }; } &&
2965 { ac_try='test -s conftest.$ac_objext'
2966 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2967 (eval $ac_try) 2>&5
2968 ac_status=$?
2969 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2970 (exit $ac_status); }; }; then
2971 ac_header_compiler=yes
84563040 2972else
bec39cab
AC
2973 echo "$as_me: failed program was:" >&5
2974sed 's/^/| /' conftest.$ac_ext >&5
2975
2976ac_header_compiler=no
84563040 2977fi
bec39cab
AC
2978rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
2979echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
2980echo "${ECHO_T}$ac_header_compiler" >&6
2981
2982# Is the header present?
2983echo "$as_me:$LINENO: checking $ac_header presence" >&5
2984echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
2985cat >conftest.$ac_ext <<_ACEOF
2986/* confdefs.h. */
2987_ACEOF
2988cat confdefs.h >>conftest.$ac_ext
2989cat >>conftest.$ac_ext <<_ACEOF
2990/* end confdefs.h. */
2991#include <$ac_header>
2992_ACEOF
2993if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
2994 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2995 ac_status=$?
2996 grep -v '^ *+' conftest.er1 >conftest.err
2997 rm -f conftest.er1
2998 cat conftest.err >&5
2999 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3000 (exit $ac_status); } >/dev/null; then
3001 if test -s conftest.err; then
3002 ac_cpp_err=$ac_c_preproc_warn_flag
3003 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
3004 else
3005 ac_cpp_err=
3006 fi
3007else
3008 ac_cpp_err=yes
84563040 3009fi
bec39cab
AC
3010if test -z "$ac_cpp_err"; then
3011 ac_header_preproc=yes
3012else
3013 echo "$as_me: failed program was:" >&5
3014sed 's/^/| /' conftest.$ac_ext >&5
84563040 3015
bec39cab 3016 ac_header_preproc=no
84563040 3017fi
bec39cab
AC
3018rm -f conftest.err conftest.$ac_ext
3019echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
3020echo "${ECHO_T}$ac_header_preproc" >&6
3021
3022# So? What about this header?
3023case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
3024 yes:no: )
3025 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
3026echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
3027 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
3028echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
3029 ac_header_preproc=yes
3030 ;;
3031 no:yes:* )
3032 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
3033echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
3034 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
3035echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
3036 { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
3037echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
3038 { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5
3039echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}
3040 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
3041echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
3042 { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
3043echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
3044 (
3045 cat <<\_ASBOX
3046## ------------------------------------------ ##
3047## Report this to the AC_PACKAGE_NAME lists. ##
3048## ------------------------------------------ ##
3049_ASBOX
3050 ) |
3051 sed "s/^/$as_me: WARNING: /" >&2
3052 ;;
3053esac
3054echo "$as_me:$LINENO: checking for $ac_header" >&5
3055echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
3056if eval "test \"\${$as_ac_Header+set}\" = set"; then
3057 echo $ECHO_N "(cached) $ECHO_C" >&6
3058else
3059 eval "$as_ac_Header=\$ac_header_preproc"
84563040 3060fi
bec39cab
AC
3061echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
3062echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
84563040
DJ
3063
3064fi
bec39cab
AC
3065if test `eval echo '${'$as_ac_Header'}'` = yes; then
3066 cat >>confdefs.h <<_ACEOF
3067#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
3068_ACEOF
84563040 3069
84563040 3070fi
bec39cab 3071
84563040
DJ
3072done
3073
3074
bec39cab
AC
3075echo "$as_me:$LINENO: checking whether strerror must be declared" >&5
3076echo $ECHO_N "checking whether strerror must be declared... $ECHO_C" >&6
3077if test "${bfd_cv_decl_needed_strerror+set}" = set; then
3078 echo $ECHO_N "(cached) $ECHO_C" >&6
43d5792c 3079else
bec39cab
AC
3080 cat >conftest.$ac_ext <<_ACEOF
3081/* confdefs.h. */
3082_ACEOF
3083cat confdefs.h >>conftest.$ac_ext
3084cat >>conftest.$ac_ext <<_ACEOF
3085/* end confdefs.h. */
43d5792c
DJ
3086
3087#include <stdio.h>
3088#ifdef HAVE_STRING_H
3089#include <string.h>
3090#else
3091#ifdef HAVE_STRINGS_H
3092#include <strings.h>
3093#endif
3094#endif
3095#ifdef HAVE_STDLIB_H
3096#include <stdlib.h>
3097#endif
3098#ifdef HAVE_UNISTD_H
3099#include <unistd.h>
3100#endif
bec39cab
AC
3101int
3102main ()
3103{
43d5792c 3104char *(*pfn) = (char *(*)) strerror
bec39cab
AC
3105 ;
3106 return 0;
3107}
3108_ACEOF
3109rm -f conftest.$ac_objext
3110if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3111 (eval $ac_compile) 2>conftest.er1
3112 ac_status=$?
3113 grep -v '^ *+' conftest.er1 >conftest.err
3114 rm -f conftest.er1
3115 cat conftest.err >&5
3116 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3117 (exit $ac_status); } &&
dcdb98d2 3118 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
bec39cab
AC
3119 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3120 (eval $ac_try) 2>&5
3121 ac_status=$?
3122 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3123 (exit $ac_status); }; } &&
3124 { ac_try='test -s conftest.$ac_objext'
3125 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3126 (eval $ac_try) 2>&5
3127 ac_status=$?
3128 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3129 (exit $ac_status); }; }; then
43d5792c
DJ
3130 bfd_cv_decl_needed_strerror=no
3131else
bec39cab
AC
3132 echo "$as_me: failed program was:" >&5
3133sed 's/^/| /' conftest.$ac_ext >&5
3134
3135bfd_cv_decl_needed_strerror=yes
43d5792c 3136fi
bec39cab 3137rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
43d5792c
DJ
3138fi
3139
bec39cab
AC
3140echo "$as_me:$LINENO: result: $bfd_cv_decl_needed_strerror" >&5
3141echo "${ECHO_T}$bfd_cv_decl_needed_strerror" >&6
43d5792c 3142if test $bfd_cv_decl_needed_strerror = yes; then
bec39cab
AC
3143
3144cat >>confdefs.h <<\_ACEOF
43d5792c 3145#define NEED_DECLARATION_STRERROR 1
bec39cab 3146_ACEOF
43d5792c
DJ
3147
3148fi
3149
3150
f450004a
DJ
3151echo "$as_me:$LINENO: checking for socklen_t" >&5
3152echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6
3153if test "${ac_cv_type_socklen_t+set}" = set; then
3154 echo $ECHO_N "(cached) $ECHO_C" >&6
3155else
3156 cat >conftest.$ac_ext <<_ACEOF
3157/* confdefs.h. */
3158_ACEOF
3159cat confdefs.h >>conftest.$ac_ext
3160cat >>conftest.$ac_ext <<_ACEOF
3161/* end confdefs.h. */
3162#include <sys/socket.h>
3163
3164int
3165main ()
3166{
3167if ((socklen_t *) 0)
3168 return 0;
3169if (sizeof (socklen_t))
3170 return 0;
3171 ;
3172 return 0;
3173}
3174_ACEOF
3175rm -f conftest.$ac_objext
3176if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3177 (eval $ac_compile) 2>conftest.er1
3178 ac_status=$?
3179 grep -v '^ *+' conftest.er1 >conftest.err
3180 rm -f conftest.er1
3181 cat conftest.err >&5
3182 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3183 (exit $ac_status); } &&
3184 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3185 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3186 (eval $ac_try) 2>&5
3187 ac_status=$?
3188 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3189 (exit $ac_status); }; } &&
3190 { ac_try='test -s conftest.$ac_objext'
3191 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3192 (eval $ac_try) 2>&5
3193 ac_status=$?
3194 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3195 (exit $ac_status); }; }; then
3196 ac_cv_type_socklen_t=yes
3197else
3198 echo "$as_me: failed program was:" >&5
3199sed 's/^/| /' conftest.$ac_ext >&5
3200
3201ac_cv_type_socklen_t=no
3202fi
3203rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
3204fi
3205echo "$as_me:$LINENO: result: $ac_cv_type_socklen_t" >&5
3206echo "${ECHO_T}$ac_cv_type_socklen_t" >&6
3207if test $ac_cv_type_socklen_t = yes; then
3208
3209cat >>confdefs.h <<\_ACEOF
3210#define HAVE_SOCKLEN_T 1
3211_ACEOF
3212
3213fi
3214
3215
7ea81414 3216. ${srcdir}/configure.srv
d6e9fb05 3217
58caa3dc 3218if test "${srv_linux_usrregs}" = "yes"; then
f450004a
DJ
3219
3220cat >>confdefs.h <<\_ACEOF
58caa3dc 3221#define HAVE_LINUX_USRREGS 1
bec39cab 3222_ACEOF
58caa3dc
DJ
3223
3224fi
3225
3226if test "${srv_linux_regsets}" = "yes"; then
bec39cab
AC
3227 echo "$as_me:$LINENO: checking for PTRACE_GETREGS" >&5
3228echo $ECHO_N "checking for PTRACE_GETREGS... $ECHO_C" >&6
3229 if test "${gdbsrv_cv_have_ptrace_getregs+set}" = set; then
3230 echo $ECHO_N "(cached) $ECHO_C" >&6
3231else
3232 cat >conftest.$ac_ext <<_ACEOF
3233/* confdefs.h. */
3234_ACEOF
3235cat confdefs.h >>conftest.$ac_ext
3236cat >>conftest.$ac_ext <<_ACEOF
3237/* end confdefs.h. */
58caa3dc 3238#include <sys/ptrace.h>
bec39cab
AC
3239int
3240main ()
3241{
58caa3dc 3242PTRACE_GETREGS;
bec39cab
AC
3243 ;
3244 return 0;
3245}
3246_ACEOF
3247rm -f conftest.$ac_objext
3248if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3249 (eval $ac_compile) 2>conftest.er1
3250 ac_status=$?
3251 grep -v '^ *+' conftest.er1 >conftest.err
3252 rm -f conftest.er1
3253 cat conftest.err >&5
3254 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3255 (exit $ac_status); } &&
dcdb98d2 3256 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
bec39cab
AC
3257 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3258 (eval $ac_try) 2>&5
3259 ac_status=$?
3260 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3261 (exit $ac_status); }; } &&
3262 { ac_try='test -s conftest.$ac_objext'
3263 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3264 (eval $ac_try) 2>&5
3265 ac_status=$?
3266 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3267 (exit $ac_status); }; }; then
58caa3dc
DJ
3268 gdbsrv_cv_have_ptrace_getregs=yes
3269else
bec39cab
AC
3270 echo "$as_me: failed program was:" >&5
3271sed 's/^/| /' conftest.$ac_ext >&5
3272
3273gdbsrv_cv_have_ptrace_getregs=no
58caa3dc 3274fi
bec39cab 3275rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
58caa3dc
DJ
3276fi
3277
bec39cab
AC
3278 echo "$as_me:$LINENO: result: $gdbsrv_cv_have_ptrace_getregs" >&5
3279echo "${ECHO_T}$gdbsrv_cv_have_ptrace_getregs" >&6
58caa3dc 3280 if test "${gdbsrv_cv_have_ptrace_getregs}" = "yes"; then
f450004a
DJ
3281
3282cat >>confdefs.h <<\_ACEOF
58caa3dc 3283#define HAVE_LINUX_REGSETS 1
bec39cab 3284_ACEOF
58caa3dc
DJ
3285
3286 fi
3287
bec39cab
AC
3288 echo "$as_me:$LINENO: checking for PTRACE_GETFPXREGS" >&5
3289echo $ECHO_N "checking for PTRACE_GETFPXREGS... $ECHO_C" >&6
3290 if test "${gdbsrv_cv_have_ptrace_getfpxregs+set}" = set; then
3291 echo $ECHO_N "(cached) $ECHO_C" >&6
58caa3dc 3292else
bec39cab
AC
3293 cat >conftest.$ac_ext <<_ACEOF
3294/* confdefs.h. */
3295_ACEOF
3296cat confdefs.h >>conftest.$ac_ext
3297cat >>conftest.$ac_ext <<_ACEOF
3298/* end confdefs.h. */
58caa3dc 3299#include <sys/ptrace.h>
bec39cab
AC
3300int
3301main ()
3302{
58caa3dc 3303PTRACE_GETFPXREGS;
bec39cab
AC
3304 ;
3305 return 0;
3306}
3307_ACEOF
3308rm -f conftest.$ac_objext
3309if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3310 (eval $ac_compile) 2>conftest.er1
3311 ac_status=$?
3312 grep -v '^ *+' conftest.er1 >conftest.err
3313 rm -f conftest.er1
3314 cat conftest.err >&5
3315 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3316 (exit $ac_status); } &&
dcdb98d2 3317 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
bec39cab
AC
3318 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3319 (eval $ac_try) 2>&5
3320 ac_status=$?
3321 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3322 (exit $ac_status); }; } &&
3323 { ac_try='test -s conftest.$ac_objext'
3324 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3325 (eval $ac_try) 2>&5
3326 ac_status=$?
3327 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3328 (exit $ac_status); }; }; then
58caa3dc
DJ
3329 gdbsrv_cv_have_ptrace_getfpxregs=yes
3330else
bec39cab
AC
3331 echo "$as_me: failed program was:" >&5
3332sed 's/^/| /' conftest.$ac_ext >&5
3333
3334gdbsrv_cv_have_ptrace_getfpxregs=no
58caa3dc 3335fi
bec39cab 3336rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
58caa3dc
DJ
3337fi
3338
bec39cab
AC
3339 echo "$as_me:$LINENO: result: $gdbsrv_cv_have_ptrace_getfpxregs" >&5
3340echo "${ECHO_T}$gdbsrv_cv_have_ptrace_getfpxregs" >&6
58caa3dc 3341 if test "${gdbsrv_cv_have_ptrace_getfpxregs}" = "yes"; then
f450004a
DJ
3342
3343cat >>confdefs.h <<\_ACEOF
58caa3dc 3344#define HAVE_PTRACE_GETFPXREGS 1
bec39cab 3345_ACEOF
58caa3dc
DJ
3346
3347 fi
3348fi
3349
0d62e5e8 3350if test "$ac_cv_header_sys_procfs_h" = yes; then
bec39cab
AC
3351 echo "$as_me:$LINENO: checking for lwpid_t in sys/procfs.h" >&5
3352echo $ECHO_N "checking for lwpid_t in sys/procfs.h... $ECHO_C" >&6
3353 if test "${bfd_cv_have_sys_procfs_type_lwpid_t+set}" = set; then
3354 echo $ECHO_N "(cached) $ECHO_C" >&6
0d62e5e8 3355else
bec39cab
AC
3356 cat >conftest.$ac_ext <<_ACEOF
3357/* confdefs.h. */
3358_ACEOF
3359cat confdefs.h >>conftest.$ac_ext
3360cat >>conftest.$ac_ext <<_ACEOF
3361/* end confdefs.h. */
0d62e5e8
DJ
3362
3363#define _SYSCALL32
3364#include <sys/procfs.h>
bec39cab
AC
3365int
3366main ()
3367{
0d62e5e8 3368lwpid_t avar
bec39cab
AC
3369 ;
3370 return 0;
3371}
3372_ACEOF
3373rm -f conftest.$ac_objext
3374if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3375 (eval $ac_compile) 2>conftest.er1
3376 ac_status=$?
3377 grep -v '^ *+' conftest.er1 >conftest.err
3378 rm -f conftest.er1
3379 cat conftest.err >&5
3380 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3381 (exit $ac_status); } &&
dcdb98d2 3382 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
bec39cab
AC
3383 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3384 (eval $ac_try) 2>&5
3385 ac_status=$?
3386 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3387 (exit $ac_status); }; } &&
3388 { ac_try='test -s conftest.$ac_objext'
3389 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3390 (eval $ac_try) 2>&5
3391 ac_status=$?
3392 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3393 (exit $ac_status); }; }; then
0d62e5e8
DJ
3394 bfd_cv_have_sys_procfs_type_lwpid_t=yes
3395else
bec39cab
AC
3396 echo "$as_me: failed program was:" >&5
3397sed 's/^/| /' conftest.$ac_ext >&5
3398
3399bfd_cv_have_sys_procfs_type_lwpid_t=no
3400
0d62e5e8 3401fi
bec39cab 3402rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
0d62e5e8
DJ
3403fi
3404
3405 if test $bfd_cv_have_sys_procfs_type_lwpid_t = yes; then
bec39cab
AC
3406
3407cat >>confdefs.h <<\_ACEOF
0d62e5e8 3408#define HAVE_LWPID_T 1
bec39cab 3409_ACEOF
0d62e5e8
DJ
3410
3411 fi
bec39cab
AC
3412 echo "$as_me:$LINENO: result: $bfd_cv_have_sys_procfs_type_lwpid_t" >&5
3413echo "${ECHO_T}$bfd_cv_have_sys_procfs_type_lwpid_t" >&6
0d62e5e8 3414
bec39cab
AC
3415 echo "$as_me:$LINENO: checking for psaddr_t in sys/procfs.h" >&5
3416echo $ECHO_N "checking for psaddr_t in sys/procfs.h... $ECHO_C" >&6
3417 if test "${bfd_cv_have_sys_procfs_type_psaddr_t+set}" = set; then
3418 echo $ECHO_N "(cached) $ECHO_C" >&6
0d62e5e8 3419else
bec39cab
AC
3420 cat >conftest.$ac_ext <<_ACEOF
3421/* confdefs.h. */
3422_ACEOF
3423cat confdefs.h >>conftest.$ac_ext
3424cat >>conftest.$ac_ext <<_ACEOF
3425/* end confdefs.h. */
0d62e5e8
DJ
3426
3427#define _SYSCALL32
3428#include <sys/procfs.h>
bec39cab
AC
3429int
3430main ()
3431{
0d62e5e8 3432psaddr_t avar
bec39cab
AC
3433 ;
3434 return 0;
3435}
3436_ACEOF
3437rm -f conftest.$ac_objext
3438if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3439 (eval $ac_compile) 2>conftest.er1
3440 ac_status=$?
3441 grep -v '^ *+' conftest.er1 >conftest.err
3442 rm -f conftest.er1
3443 cat conftest.err >&5
3444 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3445 (exit $ac_status); } &&
dcdb98d2 3446 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
bec39cab
AC
3447 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3448 (eval $ac_try) 2>&5
3449 ac_status=$?
3450 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3451 (exit $ac_status); }; } &&
3452 { ac_try='test -s conftest.$ac_objext'
3453 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3454 (eval $ac_try) 2>&5
3455 ac_status=$?
3456 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3457 (exit $ac_status); }; }; then
0d62e5e8
DJ
3458 bfd_cv_have_sys_procfs_type_psaddr_t=yes
3459else
bec39cab
AC
3460 echo "$as_me: failed program was:" >&5
3461sed 's/^/| /' conftest.$ac_ext >&5
3462
3463bfd_cv_have_sys_procfs_type_psaddr_t=no
3464
0d62e5e8 3465fi
bec39cab 3466rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
0d62e5e8
DJ
3467fi
3468
3469 if test $bfd_cv_have_sys_procfs_type_psaddr_t = yes; then
bec39cab
AC
3470
3471cat >>confdefs.h <<\_ACEOF
0d62e5e8 3472#define HAVE_PSADDR_T 1
bec39cab 3473_ACEOF
0d62e5e8
DJ
3474
3475 fi
bec39cab
AC
3476 echo "$as_me:$LINENO: result: $bfd_cv_have_sys_procfs_type_psaddr_t" >&5
3477echo "${ECHO_T}$bfd_cv_have_sys_procfs_type_psaddr_t" >&6
0d62e5e8 3478
bec39cab
AC
3479 echo "$as_me:$LINENO: checking for prgregset_t in sys/procfs.h" >&5
3480echo $ECHO_N "checking for prgregset_t in sys/procfs.h... $ECHO_C" >&6
3481 if test "${bfd_cv_have_sys_procfs_type_prgregset_t+set}" = set; then
3482 echo $ECHO_N "(cached) $ECHO_C" >&6
0d62e5e8 3483else
bec39cab
AC
3484 cat >conftest.$ac_ext <<_ACEOF
3485/* confdefs.h. */
3486_ACEOF
3487cat confdefs.h >>conftest.$ac_ext
3488cat >>conftest.$ac_ext <<_ACEOF
3489/* end confdefs.h. */
0d62e5e8
DJ
3490
3491#define _SYSCALL32
3492#include <sys/procfs.h>
bec39cab
AC
3493int
3494main ()
3495{
0d62e5e8 3496prgregset_t avar
bec39cab
AC
3497 ;
3498 return 0;
3499}
3500_ACEOF
3501rm -f conftest.$ac_objext
3502if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3503 (eval $ac_compile) 2>conftest.er1
3504 ac_status=$?
3505 grep -v '^ *+' conftest.er1 >conftest.err
3506 rm -f conftest.er1
3507 cat conftest.err >&5
3508 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3509 (exit $ac_status); } &&
dcdb98d2 3510 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
bec39cab
AC
3511 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3512 (eval $ac_try) 2>&5
3513 ac_status=$?
3514 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3515 (exit $ac_status); }; } &&
3516 { ac_try='test -s conftest.$ac_objext'
3517 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3518 (eval $ac_try) 2>&5
3519 ac_status=$?
3520 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3521 (exit $ac_status); }; }; then
0d62e5e8
DJ
3522 bfd_cv_have_sys_procfs_type_prgregset_t=yes
3523else
bec39cab
AC
3524 echo "$as_me: failed program was:" >&5
3525sed 's/^/| /' conftest.$ac_ext >&5
3526
3527bfd_cv_have_sys_procfs_type_prgregset_t=no
3528
0d62e5e8 3529fi
bec39cab 3530rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
0d62e5e8
DJ
3531fi
3532
3533 if test $bfd_cv_have_sys_procfs_type_prgregset_t = yes; then
bec39cab
AC
3534
3535cat >>confdefs.h <<\_ACEOF
0d62e5e8 3536#define HAVE_PRGREGSET_T 1
bec39cab 3537_ACEOF
0d62e5e8
DJ
3538
3539 fi
bec39cab
AC
3540 echo "$as_me:$LINENO: result: $bfd_cv_have_sys_procfs_type_prgregset_t" >&5
3541echo "${ECHO_T}$bfd_cv_have_sys_procfs_type_prgregset_t" >&6
0d62e5e8 3542
bec39cab
AC
3543 echo "$as_me:$LINENO: checking for prfpregset_t in sys/procfs.h" >&5
3544echo $ECHO_N "checking for prfpregset_t in sys/procfs.h... $ECHO_C" >&6
3545 if test "${bfd_cv_have_sys_procfs_type_prfpregset_t+set}" = set; then
3546 echo $ECHO_N "(cached) $ECHO_C" >&6
0d62e5e8 3547else
bec39cab
AC
3548 cat >conftest.$ac_ext <<_ACEOF
3549/* confdefs.h. */
3550_ACEOF
3551cat confdefs.h >>conftest.$ac_ext
3552cat >>conftest.$ac_ext <<_ACEOF
3553/* end confdefs.h. */
0d62e5e8
DJ
3554
3555#define _SYSCALL32
3556#include <sys/procfs.h>
bec39cab
AC
3557int
3558main ()
3559{
0d62e5e8 3560prfpregset_t avar
bec39cab
AC
3561 ;
3562 return 0;
3563}
3564_ACEOF
3565rm -f conftest.$ac_objext
3566if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3567 (eval $ac_compile) 2>conftest.er1
3568 ac_status=$?
3569 grep -v '^ *+' conftest.er1 >conftest.err
3570 rm -f conftest.er1
3571 cat conftest.err >&5
3572 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3573 (exit $ac_status); } &&
dcdb98d2 3574 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
bec39cab
AC
3575 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3576 (eval $ac_try) 2>&5
3577 ac_status=$?
3578 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3579 (exit $ac_status); }; } &&
3580 { ac_try='test -s conftest.$ac_objext'
3581 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3582 (eval $ac_try) 2>&5
3583 ac_status=$?
3584 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3585 (exit $ac_status); }; }; then
0d62e5e8
DJ
3586 bfd_cv_have_sys_procfs_type_prfpregset_t=yes
3587else
bec39cab
AC
3588 echo "$as_me: failed program was:" >&5
3589sed 's/^/| /' conftest.$ac_ext >&5
3590
3591bfd_cv_have_sys_procfs_type_prfpregset_t=no
3592
0d62e5e8 3593fi
bec39cab 3594rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
0d62e5e8
DJ
3595fi
3596
3597 if test $bfd_cv_have_sys_procfs_type_prfpregset_t = yes; then
bec39cab
AC
3598
3599cat >>confdefs.h <<\_ACEOF
0d62e5e8 3600#define HAVE_PRFPREGSET_T 1
bec39cab 3601_ACEOF
0d62e5e8
DJ
3602
3603 fi
bec39cab
AC
3604 echo "$as_me:$LINENO: result: $bfd_cv_have_sys_procfs_type_prfpregset_t" >&5
3605echo "${ECHO_T}$bfd_cv_have_sys_procfs_type_prfpregset_t" >&6
3606
3607
0d62e5e8
DJ
3608
3609
0d62e5e8 3610 if test $bfd_cv_have_sys_procfs_type_prfpregset_t = yes; then
bec39cab
AC
3611 echo "$as_me:$LINENO: checking whether prfpregset_t type is broken" >&5
3612echo $ECHO_N "checking whether prfpregset_t type is broken... $ECHO_C" >&6
3613 if test "${gdb_cv_prfpregset_t_broken+set}" = set; then
3614 echo $ECHO_N "(cached) $ECHO_C" >&6
0d62e5e8
DJ
3615else
3616 if test "$cross_compiling" = yes; then
3617 gdb_cv_prfpregset_t_broken=yes
3618else
bec39cab
AC
3619 cat >conftest.$ac_ext <<_ACEOF
3620/* confdefs.h. */
3621_ACEOF
3622cat confdefs.h >>conftest.$ac_ext
3623cat >>conftest.$ac_ext <<_ACEOF
3624/* end confdefs.h. */
0d62e5e8
DJ
3625#include <sys/procfs.h>
3626 int main ()
3627 {
3628 if (sizeof (prfpregset_t) == sizeof (void *))
3629 return 1;
3630 return 0;
3631 }
bec39cab
AC
3632_ACEOF
3633rm -f conftest$ac_exeext
3634if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3635 (eval $ac_link) 2>&5
3636 ac_status=$?
3637 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3638 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
3639 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3640 (eval $ac_try) 2>&5
3641 ac_status=$?
3642 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3643 (exit $ac_status); }; }; then
0d62e5e8
DJ
3644 gdb_cv_prfpregset_t_broken=no
3645else
bec39cab
AC
3646 echo "$as_me: program exited with status $ac_status" >&5
3647echo "$as_me: failed program was:" >&5
3648sed 's/^/| /' conftest.$ac_ext >&5
3649
3650( exit $ac_status )
3651gdb_cv_prfpregset_t_broken=yes
0d62e5e8 3652fi
bec39cab 3653rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
0d62e5e8 3654fi
0d62e5e8
DJ
3655fi
3656
bec39cab
AC
3657 echo "$as_me:$LINENO: result: $gdb_cv_prfpregset_t_broken" >&5
3658echo "${ECHO_T}$gdb_cv_prfpregset_t_broken" >&6
0d62e5e8 3659 if test $gdb_cv_prfpregset_t_broken = yes; then
f450004a
DJ
3660
3661cat >>confdefs.h <<\_ACEOF
0d62e5e8 3662#define PRFPREGSET_T_BROKEN 1
bec39cab 3663_ACEOF
0d62e5e8
DJ
3664
3665 fi
3666 fi
3667
bec39cab
AC
3668 echo "$as_me:$LINENO: checking for elf_fpregset_t in sys/procfs.h" >&5
3669echo $ECHO_N "checking for elf_fpregset_t in sys/procfs.h... $ECHO_C" >&6
3670 if test "${bfd_cv_have_sys_procfs_type_elf_fpregset_t+set}" = set; then
3671 echo $ECHO_N "(cached) $ECHO_C" >&6
0d62e5e8 3672else
bec39cab
AC
3673 cat >conftest.$ac_ext <<_ACEOF
3674/* confdefs.h. */
3675_ACEOF
3676cat confdefs.h >>conftest.$ac_ext
3677cat >>conftest.$ac_ext <<_ACEOF
3678/* end confdefs.h. */
0d62e5e8
DJ
3679
3680#define _SYSCALL32
3681#include <sys/procfs.h>
bec39cab
AC
3682int
3683main ()
3684{
0d62e5e8 3685elf_fpregset_t avar
bec39cab
AC
3686 ;
3687 return 0;
3688}
3689_ACEOF
3690rm -f conftest.$ac_objext
3691if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3692 (eval $ac_compile) 2>conftest.er1
3693 ac_status=$?
3694 grep -v '^ *+' conftest.er1 >conftest.err
3695 rm -f conftest.er1
3696 cat conftest.err >&5
3697 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3698 (exit $ac_status); } &&
dcdb98d2 3699 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
bec39cab
AC
3700 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3701 (eval $ac_try) 2>&5
3702 ac_status=$?
3703 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3704 (exit $ac_status); }; } &&
3705 { ac_try='test -s conftest.$ac_objext'
3706 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3707 (eval $ac_try) 2>&5
3708 ac_status=$?
3709 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3710 (exit $ac_status); }; }; then
0d62e5e8
DJ
3711 bfd_cv_have_sys_procfs_type_elf_fpregset_t=yes
3712else
bec39cab
AC
3713 echo "$as_me: failed program was:" >&5
3714sed 's/^/| /' conftest.$ac_ext >&5
3715
3716bfd_cv_have_sys_procfs_type_elf_fpregset_t=no
3717
0d62e5e8 3718fi
bec39cab 3719rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
0d62e5e8
DJ
3720fi
3721
3722 if test $bfd_cv_have_sys_procfs_type_elf_fpregset_t = yes; then
bec39cab
AC
3723
3724cat >>confdefs.h <<\_ACEOF
0d62e5e8 3725#define HAVE_ELF_FPREGSET_T 1
bec39cab 3726_ACEOF
0d62e5e8
DJ
3727
3728 fi
bec39cab
AC
3729 echo "$as_me:$LINENO: result: $bfd_cv_have_sys_procfs_type_elf_fpregset_t" >&5
3730echo "${ECHO_T}$bfd_cv_have_sys_procfs_type_elf_fpregset_t" >&6
0d62e5e8
DJ
3731
3732fi
3733
3734srv_thread_depfiles=
3735srv_libs=
3736USE_THREAD_DB=
3737
3738if test "$srv_linux_thread_db" = "yes"; then
bec39cab
AC
3739 echo "$as_me:$LINENO: checking for libthread_db" >&5
3740echo $ECHO_N "checking for libthread_db... $ECHO_C" >&6
3741if test "${srv_cv_thread_db+set}" = set; then
3742 echo $ECHO_N "(cached) $ECHO_C" >&6
0d62e5e8
DJ
3743else
3744 old_LIBS="$LIBS"
3745 LIBS="$LIBS -lthread_db"
bec39cab
AC
3746 cat >conftest.$ac_ext <<_ACEOF
3747/* confdefs.h. */
3748_ACEOF
3749cat confdefs.h >>conftest.$ac_ext
3750cat >>conftest.$ac_ext <<_ACEOF
3751/* end confdefs.h. */
0d62e5e8
DJ
3752void ps_pglobal_lookup() {}
3753 void ps_pdread() {}
3754 void ps_pdwrite() {}
3755 void ps_lgetregs() {}
3756 void ps_lsetregs() {}
3757 void ps_lgetfpregs() {}
3758 void ps_lsetfpregs() {}
434c4c77 3759 void ps_get_thread_area() {}
0d62e5e8 3760 void ps_getpid() {}
bec39cab
AC
3761int
3762main ()
3763{
0d62e5e8 3764td_ta_new();
bec39cab
AC
3765 ;
3766 return 0;
3767}
3768_ACEOF
3769rm -f conftest.$ac_objext conftest$ac_exeext
3770if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3771 (eval $ac_link) 2>conftest.er1
3772 ac_status=$?
3773 grep -v '^ *+' conftest.er1 >conftest.err
3774 rm -f conftest.er1
3775 cat conftest.err >&5
3776 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3777 (exit $ac_status); } &&
dcdb98d2 3778 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
bec39cab
AC
3779 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3780 (eval $ac_try) 2>&5
3781 ac_status=$?
3782 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3783 (exit $ac_status); }; } &&
3784 { ac_try='test -s conftest$ac_exeext'
3785 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3786 (eval $ac_try) 2>&5
3787 ac_status=$?
3788 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3789 (exit $ac_status); }; }; then
0d62e5e8
DJ
3790 srv_cv_thread_db="-lthread_db"
3791else
bec39cab
AC
3792 echo "$as_me: failed program was:" >&5
3793sed 's/^/| /' conftest.$ac_ext >&5
3794
3795srv_cv_thread_db=no
0d62e5e8
DJ
3796
3797 if test "$prefix" = "/usr" || test "$prefix" = "NONE"; then
3798 thread_db="/lib/libthread_db.so.1"
3799 else
3800 thread_db='$prefix/lib/libthread_db.so.1'
3801 fi
3802 LIBS="$old_LIBS `eval echo "$thread_db"`"
bec39cab
AC
3803 cat >conftest.$ac_ext <<_ACEOF
3804/* confdefs.h. */
3805_ACEOF
3806cat confdefs.h >>conftest.$ac_ext
3807cat >>conftest.$ac_ext <<_ACEOF
3808/* end confdefs.h. */
0d62e5e8
DJ
3809void ps_pglobal_lookup() {}
3810 void ps_pdread() {}
3811 void ps_pdwrite() {}
3812 void ps_lgetregs() {}
3813 void ps_lsetregs() {}
3814 void ps_lgetfpregs() {}
3815 void ps_lsetfpregs() {}
434c4c77 3816 void ps_get_thread_area() {}
0d62e5e8 3817 void ps_getpid() {}
bec39cab
AC
3818int
3819main ()
3820{
0d62e5e8 3821td_ta_new();
bec39cab
AC
3822 ;
3823 return 0;
3824}
3825_ACEOF
3826rm -f conftest.$ac_objext conftest$ac_exeext
3827if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3828 (eval $ac_link) 2>conftest.er1
3829 ac_status=$?
3830 grep -v '^ *+' conftest.er1 >conftest.err
3831 rm -f conftest.er1
3832 cat conftest.err >&5
3833 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3834 (exit $ac_status); } &&
dcdb98d2 3835 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
bec39cab
AC
3836 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3837 (eval $ac_try) 2>&5
3838 ac_status=$?
3839 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3840 (exit $ac_status); }; } &&
3841 { ac_try='test -s conftest$ac_exeext'
3842 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3843 (eval $ac_try) 2>&5
3844 ac_status=$?
3845 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3846 (exit $ac_status); }; }; then
0d62e5e8
DJ
3847 srv_cv_thread_db="$thread_db"
3848else
bec39cab
AC
3849 echo "$as_me: failed program was:" >&5
3850sed 's/^/| /' conftest.$ac_ext >&5
3851
3852srv_cv_thread_db=no
0d62e5e8 3853fi
bec39cab
AC
3854rm -f conftest.err conftest.$ac_objext \
3855 conftest$ac_exeext conftest.$ac_ext
0d62e5e8 3856
bec39cab
AC
3857fi
3858echo "$as_me:$LINENO: result: $srv_cv_thread_db" >&5
3859echo "${ECHO_T}$srv_cv_thread_db" >&6
434c4c77 3860 LIBS="$old_LIBS"
0d62e5e8
DJ
3861
3862fi
bec39cab
AC
3863rm -f conftest.err conftest.$ac_objext \
3864 conftest$ac_exeext conftest.$ac_ext
0d62e5e8 3865 if test "$srv_cv_thread_db" = no; then
bec39cab
AC
3866 { echo "$as_me:$LINENO: WARNING: Could not find libthread_db." >&5
3867echo "$as_me: WARNING: Could not find libthread_db." >&2;}
3868 { echo "$as_me:$LINENO: WARNING: Disabling thread support in gdbserver." >&5
3869echo "$as_me: WARNING: Disabling thread support in gdbserver." >&2;}
0d62e5e8
DJ
3870 srv_linux_thread_db=no
3871 else
3872 srv_libs="$srv_cv_thread_db"
3873 fi
f6de3c42
DJ
3874 old_LDFLAGS="$LDFLAGS"
3875 LDFLAGS="$LDFLAGS -rdynamic"
bec39cab
AC
3876 cat >conftest.$ac_ext <<_ACEOF
3877/* confdefs.h. */
3878_ACEOF
3879cat confdefs.h >>conftest.$ac_ext
3880cat >>conftest.$ac_ext <<_ACEOF
3881/* end confdefs.h. */
3882
3883int
3884main ()
3885{
3886
3887 ;
3888 return 0;
3889}
3890_ACEOF
3891rm -f conftest.$ac_objext conftest$ac_exeext
3892if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3893 (eval $ac_link) 2>conftest.er1
3894 ac_status=$?
3895 grep -v '^ *+' conftest.er1 >conftest.err
3896 rm -f conftest.er1
3897 cat conftest.err >&5
3898 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3899 (exit $ac_status); } &&
dcdb98d2 3900 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
bec39cab
AC
3901 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3902 (eval $ac_try) 2>&5
3903 ac_status=$?
3904 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3905 (exit $ac_status); }; } &&
3906 { ac_try='test -s conftest$ac_exeext'
3907 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3908 (eval $ac_try) 2>&5
3909 ac_status=$?
3910 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3911 (exit $ac_status); }; }; then
f6de3c42
DJ
3912 RDYNAMIC=-rdynamic
3913else
bec39cab
AC
3914 echo "$as_me: failed program was:" >&5
3915sed 's/^/| /' conftest.$ac_ext >&5
3916
3917RDYNAMIC=
f6de3c42 3918fi
bec39cab
AC
3919rm -f conftest.err conftest.$ac_objext \
3920 conftest$ac_exeext conftest.$ac_ext
3921
f6de3c42 3922 LDFLAGS="$old_LDFLAGS"
0d62e5e8
DJ
3923fi
3924
3925if test "$srv_linux_thread_db" = "yes"; then
3926 srv_thread_depfiles="thread-db.o proc-service.o"
3927 USE_THREAD_DB="-DUSE_THREAD_DB"
3928fi
3929
3930GDBSERVER_DEPFILES="$srv_regobj $srv_tgtobj $srv_thread_depfiles"
3931GDBSERVER_LIBS="$srv_libs"
3932
3933
d6e9fb05
JK
3934
3935
3936
bec39cab
AC
3937 ac_config_files="$ac_config_files Makefile"
3938 ac_config_commands="$ac_config_commands default"
3939cat >confcache <<\_ACEOF
d6e9fb05
JK
3940# This file is a shell script that caches the results of configure
3941# tests run on this system so they can be shared between configure
bec39cab
AC
3942# scripts and configure runs, see configure's option --config-cache.
3943# It is not useful on other systems. If it contains results you don't
3944# want to keep, you may remove or edit it.
d6e9fb05 3945#
bec39cab
AC
3946# config.status only pays attention to the cache file if you give it
3947# the --recheck option to rerun configure.
d6e9fb05 3948#
bec39cab
AC
3949# `ac_cv_env_foo' variables (set or unset) will be overridden when
3950# loading this file, other *unset* `ac_cv_foo' will be assigned the
3951# following values.
3952
3953_ACEOF
3954
d6e9fb05
JK
3955# The following way of writing the cache mishandles newlines in values,
3956# but we know of no workaround that is simple, portable, and efficient.
3957# So, don't put newlines in cache variables' values.
3958# Ultrix sh set writes to stderr and can't be redirected directly,
3959# and sets the high bit in the cache file unless we assign to the vars.
bec39cab
AC
3960{
3961 (set) 2>&1 |
3962 case `(ac_space=' '; set | grep ac_space) 2>&1` in
3963 *ac_space=\ *)
3964 # `set' does not quote correctly, so add quotes (double-quote
3965 # substitution turns \\\\ into \\, and sed turns \\ into \).
3966 sed -n \
3967 "s/'/'\\\\''/g;
3968 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
3969 ;;
3970 *)
3971 # `set' quotes correctly as required by POSIX, so do not add quotes.
3972 sed -n \
3973 "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
3974 ;;
3975 esac;
3976} |
3977 sed '
3978 t clear
3979 : clear
3980 s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
3981 t end
3982 /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
3983 : end' >>confcache
3984if diff $cache_file confcache >/dev/null 2>&1; then :; else
d6e9fb05 3985 if test -w $cache_file; then
bec39cab
AC
3986 test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
3987 cat confcache >$cache_file
d6e9fb05
JK
3988 else
3989 echo "not updating unwritable cache $cache_file"
3990 fi
3991fi
3992rm -f confcache
3993
d6e9fb05
JK
3994test "x$prefix" = xNONE && prefix=$ac_default_prefix
3995# Let make expand exec_prefix.
3996test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
3997
bec39cab
AC
3998# VPATH may cause trouble with some makes, so we remove $(srcdir),
3999# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
4000# trailing colons and then remove the whole line if VPATH becomes empty
4001# (actually we leave an empty line to preserve line numbers).
d6e9fb05 4002if test "x$srcdir" = x.; then
bec39cab
AC
4003 ac_vpsub='/^[ ]*VPATH[ ]*=/{
4004s/:*\$(srcdir):*/:/;
4005s/:*\${srcdir}:*/:/;
4006s/:*@srcdir@:*/:/;
4007s/^\([^=]*=[ ]*\):*/\1/;
4008s/:*$//;
4009s/^[^=]*=[ ]*$//;
4010}'
d6e9fb05
JK
4011fi
4012
84563040 4013DEFS=-DHAVE_CONFIG_H
d6e9fb05 4014
bec39cab
AC
4015ac_libobjs=
4016ac_ltlibobjs=
4017for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
4018 # 1. Remove the extension, and $U if already installed.
4019 ac_i=`echo "$ac_i" |
4020 sed 's/\$U\././;s/\.o$//;s/\.obj$//'`
4021 # 2. Add them.
4022 ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext"
4023 ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo'
4024done
4025LIBOBJS=$ac_libobjs
d6e9fb05 4026
bec39cab
AC
4027LTLIBOBJS=$ac_ltlibobjs
4028
4029
4030
4031: ${CONFIG_STATUS=./config.status}
4032ac_clean_files_save=$ac_clean_files
4033ac_clean_files="$ac_clean_files $CONFIG_STATUS"
4034{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
4035echo "$as_me: creating $CONFIG_STATUS" >&6;}
4036cat >$CONFIG_STATUS <<_ACEOF
4037#! $SHELL
4038# Generated by $as_me.
d6e9fb05 4039# Run this file to recreate the current configuration.
d6e9fb05 4040# Compiler output produced by configure, useful for debugging
bec39cab
AC
4041# configure, is in config.log if it exists.
4042
4043debug=false
4044ac_cs_recheck=false
4045ac_cs_silent=false
4046SHELL=\${CONFIG_SHELL-$SHELL}
4047_ACEOF
4048
4049cat >>$CONFIG_STATUS <<\_ACEOF
4050## --------------------- ##
4051## M4sh Initialization. ##
4052## --------------------- ##
4053
4054# Be Bourne compatible
4055if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
4056 emulate sh
4057 NULLCMD=:
4058 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
4059 # is contrary to our usage. Disable this feature.
4060 alias -g '${1+"$@"}'='"$@"'
4061elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
4062 set -o posix
4063fi
4064DUALCASE=1; export DUALCASE # for MKS sh
d6e9fb05 4065
bec39cab
AC
4066# Support unset when possible.
4067if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
4068 as_unset=unset
4069else
4070 as_unset=false
4071fi
4072
4073
4074# Work around bugs in pre-3.0 UWIN ksh.
4075$as_unset ENV MAIL MAILPATH
4076PS1='$ '
4077PS2='> '
4078PS4='+ '
4079
4080# NLS nuisances.
4081for as_var in \
4082 LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
4083 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
4084 LC_TELEPHONE LC_TIME
d6e9fb05 4085do
bec39cab
AC
4086 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
4087 eval $as_var=C; export $as_var
4088 else
4089 $as_unset $as_var
4090 fi
d6e9fb05
JK
4091done
4092
bec39cab
AC
4093# Required to use basename.
4094if expr a : '\(a\)' >/dev/null 2>&1; then
4095 as_expr=expr
4096else
4097 as_expr=false
4098fi
d6e9fb05 4099
bec39cab
AC
4100if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
4101 as_basename=basename
4102else
4103 as_basename=false
4104fi
d6e9fb05 4105
d6e9fb05 4106
bec39cab
AC
4107# Name of the executable.
4108as_me=`$as_basename "$0" ||
4109$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
4110 X"$0" : 'X\(//\)$' \| \
4111 X"$0" : 'X\(/\)$' \| \
4112 . : '\(.\)' 2>/dev/null ||
4113echo X/"$0" |
4114 sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
4115 /^X\/\(\/\/\)$/{ s//\1/; q; }
4116 /^X\/\(\/\).*/{ s//\1/; q; }
4117 s/.*/./; q'`
4118
4119
4120# PATH needs CR, and LINENO needs CR and PATH.
4121# Avoid depending upon Character Ranges.
4122as_cr_letters='abcdefghijklmnopqrstuvwxyz'
4123as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
4124as_cr_Letters=$as_cr_letters$as_cr_LETTERS
4125as_cr_digits='0123456789'
4126as_cr_alnum=$as_cr_Letters$as_cr_digits
4127
4128# The user is always right.
4129if test "${PATH_SEPARATOR+set}" != set; then
4130 echo "#! /bin/sh" >conf$$.sh
4131 echo "exit 0" >>conf$$.sh
4132 chmod +x conf$$.sh
4133 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
4134 PATH_SEPARATOR=';'
d6e9fb05 4135 else
bec39cab 4136 PATH_SEPARATOR=:
d6e9fb05 4137 fi
bec39cab
AC
4138 rm -f conf$$.sh
4139fi
4140
4141
4142 as_lineno_1=$LINENO
4143 as_lineno_2=$LINENO
4144 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
4145 test "x$as_lineno_1" != "x$as_lineno_2" &&
4146 test "x$as_lineno_3" = "x$as_lineno_2" || {
4147 # Find who we are. Look in the path if we contain no path at all
4148 # relative or not.
4149 case $0 in
4150 *[\\/]* ) as_myself=$0 ;;
4151 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4152for as_dir in $PATH
4153do
4154 IFS=$as_save_IFS
4155 test -z "$as_dir" && as_dir=.
4156 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
4157done
4158
4159 ;;
4160 esac
4161 # We did not find ourselves, most probably we were run as `sh COMMAND'
4162 # in which case we are not to be found in the path.
4163 if test "x$as_myself" = x; then
4164 as_myself=$0
4165 fi
4166 if test ! -f "$as_myself"; then
4167 { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
4168echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
4169 { (exit 1); exit 1; }; }
4170 fi
4171 case $CONFIG_SHELL in
4172 '')
4173 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4174for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
4175do
4176 IFS=$as_save_IFS
4177 test -z "$as_dir" && as_dir=.
4178 for as_base in sh bash ksh sh5; do
4179 case $as_dir in
4180 /*)
4181 if ("$as_dir/$as_base" -c '
4182 as_lineno_1=$LINENO
4183 as_lineno_2=$LINENO
4184 as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
4185 test "x$as_lineno_1" != "x$as_lineno_2" &&
4186 test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then
4187 $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
4188 $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
4189 CONFIG_SHELL=$as_dir/$as_base
4190 export CONFIG_SHELL
4191 exec "$CONFIG_SHELL" "$0" ${1+"$@"}
4192 fi;;
4193 esac
4194 done
4195done
4196;;
4197 esac
4198
4199 # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
4200 # uniformly replaced by the line number. The first 'sed' inserts a
4201 # line-number line before each line; the second 'sed' does the real
4202 # work. The second script uses 'N' to pair each line-number line
4203 # with the numbered line, and appends trailing '-' during
4204 # substitution so that $LINENO is not a special case at line end.
4205 # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
4206 # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-)
4207 sed '=' <$as_myself |
4208 sed '
4209 N
4210 s,$,-,
4211 : loop
4212 s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
4213 t loop
4214 s,-$,,
4215 s,^['$as_cr_digits']*\n,,
4216 ' >$as_me.lineno &&
4217 chmod +x $as_me.lineno ||
4218 { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
4219echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
4220 { (exit 1); exit 1; }; }
4221
4222 # Don't try to exec as it changes $[0], causing all sort of problems
4223 # (the dirname of $[0] is not the place where we might find the
4224 # original and so on. Autoconf is especially sensible to this).
4225 . ./$as_me.lineno
4226 # Exit status is that of the last command.
4227 exit
4228}
4229
4230
4231case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
4232 *c*,-n*) ECHO_N= ECHO_C='
4233' ECHO_T=' ' ;;
4234 *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;;
4235 *) ECHO_N= ECHO_C='\c' ECHO_T= ;;
4236esac
4237
4238if expr a : '\(a\)' >/dev/null 2>&1; then
4239 as_expr=expr
4240else
4241 as_expr=false
4242fi
4243
4244rm -f conf$$ conf$$.exe conf$$.file
4245echo >conf$$.file
4246if ln -s conf$$.file conf$$ 2>/dev/null; then
4247 # We could just check for DJGPP; but this test a) works b) is more generic
4248 # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
4249 if test -f conf$$.exe; then
4250 # Don't use ln at all; we don't have any links
4251 as_ln_s='cp -p'
d6e9fb05 4252 else
bec39cab 4253 as_ln_s='ln -s'
d6e9fb05 4254 fi
bec39cab
AC
4255elif ln conf$$.file conf$$ 2>/dev/null; then
4256 as_ln_s=ln
4257else
4258 as_ln_s='cp -p'
4259fi
4260rm -f conf$$ conf$$.exe conf$$.file
4261
4262if mkdir -p . 2>/dev/null; then
4263 as_mkdir_p=:
4264else
4265 test -d ./-p && rmdir ./-p
4266 as_mkdir_p=false
4267fi
4268
4269as_executable_p="test -f"
4270
4271# Sed expression to map a string onto a valid CPP name.
4272as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
4273
4274# Sed expression to map a string onto a valid variable name.
4275as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
4276
4277
4278# IFS
4279# We need space, tab and new line, in precisely that order.
4280as_nl='
4281'
4282IFS=" $as_nl"
4283
4284# CDPATH.
4285$as_unset CDPATH
4286
4287exec 6>&1
4288
4289# Open the log real soon, to keep \$[0] and so on meaningful, and to
4290# report actual input values of CONFIG_FILES etc. instead of their
4291# values after options handling. Logging --version etc. is OK.
4292exec 5>>config.log
4293{
4294 echo
4295 sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
4296## Running $as_me. ##
4297_ASBOX
4298} >&5
4299cat >&5 <<_CSEOF
4300
4301This file was extended by $as_me, which was
4302generated by GNU Autoconf 2.59. Invocation command line was
4303
4304 CONFIG_FILES = $CONFIG_FILES
4305 CONFIG_HEADERS = $CONFIG_HEADERS
4306 CONFIG_LINKS = $CONFIG_LINKS
4307 CONFIG_COMMANDS = $CONFIG_COMMANDS
4308 $ $0 $@
4309
4310_CSEOF
4311echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
4312echo >&5
4313_ACEOF
4314
4315# Files that config.status was made for.
4316if test -n "$ac_config_files"; then
4317 echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS
4318fi
4319
4320if test -n "$ac_config_headers"; then
4321 echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS
4322fi
4323
4324if test -n "$ac_config_links"; then
4325 echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS
4326fi
4327
4328if test -n "$ac_config_commands"; then
4329 echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
4330fi
4331
4332cat >>$CONFIG_STATUS <<\_ACEOF
4333
4334ac_cs_usage="\
4335\`$as_me' instantiates files from templates according to the
4336current configuration.
4337
4338Usage: $0 [OPTIONS] [FILE]...
4339
4340 -h, --help print this help, then exit
4341 -V, --version print version number, then exit
4342 -q, --quiet do not print progress messages
4343 -d, --debug don't remove temporary files
4344 --recheck update $as_me by reconfiguring in the same conditions
4345 --file=FILE[:TEMPLATE]
4346 instantiate the configuration file FILE
4347 --header=FILE[:TEMPLATE]
4348 instantiate the configuration header FILE
4349
4350Configuration files:
4351$config_files
4352
4353Configuration headers:
4354$config_headers
4355
4356Configuration commands:
4357$config_commands
4358
4359Report bugs to <bug-autoconf@gnu.org>."
4360_ACEOF
4361
4362cat >>$CONFIG_STATUS <<_ACEOF
4363ac_cs_version="\\
4364config.status
4365configured by $0, generated by GNU Autoconf 2.59,
4366 with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
4367
4368Copyright (C) 2003 Free Software Foundation, Inc.
4369This config.status script is free software; the Free Software Foundation
4370gives unlimited permission to copy, distribute and modify it."
4371srcdir=$srcdir
4372INSTALL="$INSTALL"
4373_ACEOF
4374
4375cat >>$CONFIG_STATUS <<\_ACEOF
4376# If no file are specified by the user, then we need to provide default
4377# value. By we need to know if files were specified by the user.
4378ac_need_defaults=:
4379while test $# != 0
4380do
4381 case $1 in
4382 --*=*)
4383 ac_option=`expr "x$1" : 'x\([^=]*\)='`
4384 ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
4385 ac_shift=:
4386 ;;
4387 -*)
4388 ac_option=$1
4389 ac_optarg=$2
4390 ac_shift=shift
4391 ;;
4392 *) # This is not an option, so the user has probably given explicit
4393 # arguments.
4394 ac_option=$1
4395 ac_need_defaults=false;;
4396 esac
4397
4398 case $ac_option in
4399 # Handling of the options.
4400_ACEOF
4401cat >>$CONFIG_STATUS <<\_ACEOF
4402 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
4403 ac_cs_recheck=: ;;
4404 --version | --vers* | -V )
4405 echo "$ac_cs_version"; exit 0 ;;
4406 --he | --h)
4407 # Conflict between --help and --header
4408 { { echo "$as_me:$LINENO: error: ambiguous option: $1
4409Try \`$0 --help' for more information." >&5
4410echo "$as_me: error: ambiguous option: $1
4411Try \`$0 --help' for more information." >&2;}
4412 { (exit 1); exit 1; }; };;
4413 --help | --hel | -h )
4414 echo "$ac_cs_usage"; exit 0 ;;
4415 --debug | --d* | -d )
4416 debug=: ;;
4417 --file | --fil | --fi | --f )
4418 $ac_shift
4419 CONFIG_FILES="$CONFIG_FILES $ac_optarg"
4420 ac_need_defaults=false;;
4421 --header | --heade | --head | --hea )
4422 $ac_shift
4423 CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
4424 ac_need_defaults=false;;
4425 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
4426 | -silent | --silent | --silen | --sile | --sil | --si | --s)
4427 ac_cs_silent=: ;;
4428
4429 # This is an error.
4430 -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1
4431Try \`$0 --help' for more information." >&5
4432echo "$as_me: error: unrecognized option: $1
4433Try \`$0 --help' for more information." >&2;}
4434 { (exit 1); exit 1; }; } ;;
4435
4436 *) ac_config_targets="$ac_config_targets $1" ;;
4437
4438 esac
4439 shift
d6e9fb05 4440done
bec39cab
AC
4441
4442ac_configure_extra_args=
4443
4444if $ac_cs_silent; then
4445 exec 6>/dev/null
4446 ac_configure_extra_args="$ac_configure_extra_args --silent"
d6e9fb05 4447fi
d6e9fb05 4448
bec39cab
AC
4449_ACEOF
4450cat >>$CONFIG_STATUS <<_ACEOF
4451if \$ac_cs_recheck; then
4452 echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
4453 exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
4454fi
d6e9fb05 4455
bec39cab
AC
4456_ACEOF
4457
4458
4459
4460
4461
4462cat >>$CONFIG_STATUS <<\_ACEOF
4463for ac_config_target in $ac_config_targets
4464do
4465 case "$ac_config_target" in
4466 # Handling of arguments.
4467 "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
4468 "default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
4469 "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h:config.in" ;;
4470 *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
4471echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
4472 { (exit 1); exit 1; }; };;
d6e9fb05 4473 esac
bec39cab
AC
4474done
4475
4476# If the user did not use the arguments to specify the items to instantiate,
4477# then the envvar interface is used. Set only those that are not.
4478# We use the long form for the default assignment because of an extremely
4479# bizarre bug on SunOS 4.1.3.
4480if $ac_need_defaults; then
4481 test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
4482 test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
4483 test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
4484fi
d6e9fb05 4485
bec39cab
AC
4486# Have a temporary directory for convenience. Make it in the build tree
4487# simply because there is no reason to put it here, and in addition,
4488# creating and moving files from /tmp can sometimes cause problems.
4489# Create a temporary directory, and hook for its removal unless debugging.
4490$debug ||
4491{
4492 trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
4493 trap '{ (exit 1); exit 1; }' 1 2 13 15
4494}
4495
4496# Create a (secure) tmp directory for tmp files.
4497
4498{
4499 tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` &&
4500 test -n "$tmp" && test -d "$tmp"
4501} ||
4502{
4503 tmp=./confstat$$-$RANDOM
4504 (umask 077 && mkdir $tmp)
4505} ||
4506{
4507 echo "$me: cannot create a temporary directory in ." >&2
4508 { (exit 1); exit 1; }
4509}
4510
4511_ACEOF
4512
4513cat >>$CONFIG_STATUS <<_ACEOF
d6e9fb05 4514
bec39cab
AC
4515#
4516# CONFIG_FILES section.
4517#
4518
4519# No need to generate the scripts if there are no CONFIG_FILES.
4520# This happens for instance when ./config.status config.h
4521if test -n "\$CONFIG_FILES"; then
4522 # Protect against being on the right side of a sed subst in config.status.
4523 sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g;
4524 s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF
4525s,@SHELL@,$SHELL,;t t
4526s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t
4527s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t
4528s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t
4529s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t
4530s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t
4531s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t
4532s,@exec_prefix@,$exec_prefix,;t t
4533s,@prefix@,$prefix,;t t
4534s,@program_transform_name@,$program_transform_name,;t t
4535s,@bindir@,$bindir,;t t
4536s,@sbindir@,$sbindir,;t t
4537s,@libexecdir@,$libexecdir,;t t
4538s,@datadir@,$datadir,;t t
4539s,@sysconfdir@,$sysconfdir,;t t
4540s,@sharedstatedir@,$sharedstatedir,;t t
4541s,@localstatedir@,$localstatedir,;t t
4542s,@libdir@,$libdir,;t t
4543s,@includedir@,$includedir,;t t
4544s,@oldincludedir@,$oldincludedir,;t t
4545s,@infodir@,$infodir,;t t
4546s,@mandir@,$mandir,;t t
4547s,@build_alias@,$build_alias,;t t
4548s,@host_alias@,$host_alias,;t t
4549s,@target_alias@,$target_alias,;t t
4550s,@DEFS@,$DEFS,;t t
4551s,@ECHO_C@,$ECHO_C,;t t
4552s,@ECHO_N@,$ECHO_N,;t t
4553s,@ECHO_T@,$ECHO_T,;t t
4554s,@LIBS@,$LIBS,;t t
4555s,@CC@,$CC,;t t
4556s,@CFLAGS@,$CFLAGS,;t t
4557s,@LDFLAGS@,$LDFLAGS,;t t
4558s,@CPPFLAGS@,$CPPFLAGS,;t t
4559s,@ac_ct_CC@,$ac_ct_CC,;t t
4560s,@EXEEXT@,$EXEEXT,;t t
4561s,@OBJEXT@,$OBJEXT,;t t
4562s,@build@,$build,;t t
4563s,@build_cpu@,$build_cpu,;t t
4564s,@build_vendor@,$build_vendor,;t t
4565s,@build_os@,$build_os,;t t
4566s,@host@,$host,;t t
4567s,@host_cpu@,$host_cpu,;t t
4568s,@host_vendor@,$host_vendor,;t t
4569s,@host_os@,$host_os,;t t
4570s,@target@,$target,;t t
4571s,@target_cpu@,$target_cpu,;t t
4572s,@target_vendor@,$target_vendor,;t t
4573s,@target_os@,$target_os,;t t
4574s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
4575s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
4576s,@INSTALL_DATA@,$INSTALL_DATA,;t t
4577s,@CPP@,$CPP,;t t
4578s,@EGREP@,$EGREP,;t t
4579s,@RDYNAMIC@,$RDYNAMIC,;t t
4580s,@GDBSERVER_DEPFILES@,$GDBSERVER_DEPFILES,;t t
4581s,@GDBSERVER_LIBS@,$GDBSERVER_LIBS,;t t
4582s,@USE_THREAD_DB@,$USE_THREAD_DB,;t t
4583s,@LIBOBJS@,$LIBOBJS,;t t
4584s,@LTLIBOBJS@,$LTLIBOBJS,;t t
4585CEOF
4586
4587_ACEOF
4588
4589 cat >>$CONFIG_STATUS <<\_ACEOF
4590 # Split the substitutions into bite-sized pieces for seds with
4591 # small command number limits, like on Digital OSF/1 and HP-UX.
4592 ac_max_sed_lines=48
4593 ac_sed_frag=1 # Number of current file.
4594 ac_beg=1 # First line for current file.
4595 ac_end=$ac_max_sed_lines # Line after last line for current file.
4596 ac_more_lines=:
4597 ac_sed_cmds=
4598 while $ac_more_lines; do
4599 if test $ac_beg -gt 1; then
4600 sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
4601 else
4602 sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
4603 fi
4604 if test ! -s $tmp/subs.frag; then
4605 ac_more_lines=false
4606 else
4607 # The purpose of the label and of the branching condition is to
4608 # speed up the sed processing (if there are no `@' at all, there
4609 # is no need to browse any of the substitutions).
4610 # These are the two extra sed commands mentioned above.
4611 (echo ':t
4612 /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
4613 if test -z "$ac_sed_cmds"; then
4614 ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
4615 else
4616 ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
4617 fi
4618 ac_sed_frag=`expr $ac_sed_frag + 1`
4619 ac_beg=$ac_end
4620 ac_end=`expr $ac_end + $ac_max_sed_lines`
4621 fi
4622 done
4623 if test -z "$ac_sed_cmds"; then
4624 ac_sed_cmds=cat
d6e9fb05 4625 fi
bec39cab 4626fi # test -n "$CONFIG_FILES"
d6e9fb05 4627
bec39cab
AC
4628_ACEOF
4629cat >>$CONFIG_STATUS <<\_ACEOF
4630for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
4631 # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
4632 case $ac_file in
4633 - | *:- | *:-:* ) # input from stdin
4634 cat >$tmp/stdin
4635 ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
4636 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
4637 *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
4638 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
4639 * ) ac_file_in=$ac_file.in ;;
d6e9fb05
JK
4640 esac
4641
bec39cab
AC
4642 # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
4643 ac_dir=`(dirname "$ac_file") 2>/dev/null ||
4644$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
4645 X"$ac_file" : 'X\(//\)[^/]' \| \
4646 X"$ac_file" : 'X\(//\)$' \| \
4647 X"$ac_file" : 'X\(/\)' \| \
4648 . : '\(.\)' 2>/dev/null ||
4649echo X"$ac_file" |
4650 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
4651 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
4652 /^X\(\/\/\)$/{ s//\1/; q; }
4653 /^X\(\/\).*/{ s//\1/; q; }
4654 s/.*/./; q'`
4655 { if $as_mkdir_p; then
4656 mkdir -p "$ac_dir"
4657 else
4658 as_dir="$ac_dir"
4659 as_dirs=
4660 while test ! -d "$as_dir"; do
4661 as_dirs="$as_dir $as_dirs"
4662 as_dir=`(dirname "$as_dir") 2>/dev/null ||
4663$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
4664 X"$as_dir" : 'X\(//\)[^/]' \| \
4665 X"$as_dir" : 'X\(//\)$' \| \
4666 X"$as_dir" : 'X\(/\)' \| \
4667 . : '\(.\)' 2>/dev/null ||
4668echo X"$as_dir" |
4669 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
4670 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
4671 /^X\(\/\/\)$/{ s//\1/; q; }
4672 /^X\(\/\).*/{ s//\1/; q; }
4673 s/.*/./; q'`
4674 done
4675 test ! -n "$as_dirs" || mkdir $as_dirs
4676 fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
4677echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
4678 { (exit 1); exit 1; }; }; }
4679
4680 ac_builddir=.
4681
4682if test "$ac_dir" != .; then
4683 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
4684 # A "../" for each directory in $ac_dir_suffix.
4685 ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
4686else
4687 ac_dir_suffix= ac_top_builddir=
4688fi
4689
4690case $srcdir in
4691 .) # No --srcdir option. We are building in place.
4692 ac_srcdir=.
4693 if test -z "$ac_top_builddir"; then
4694 ac_top_srcdir=.
4695 else
4696 ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
4697 fi ;;
4698 [\\/]* | ?:[\\/]* ) # Absolute path.
4699 ac_srcdir=$srcdir$ac_dir_suffix;
4700 ac_top_srcdir=$srcdir ;;
4701 *) # Relative path.
4702 ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
4703 ac_top_srcdir=$ac_top_builddir$srcdir ;;
4704esac
4705
4706# Do not use `cd foo && pwd` to compute absolute paths, because
4707# the directories may not exist.
4708case `pwd` in
4709.) ac_abs_builddir="$ac_dir";;
4710*)
4711 case "$ac_dir" in
4712 .) ac_abs_builddir=`pwd`;;
4713 [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
4714 *) ac_abs_builddir=`pwd`/"$ac_dir";;
4715 esac;;
4716esac
4717case $ac_abs_builddir in
4718.) ac_abs_top_builddir=${ac_top_builddir}.;;
4719*)
4720 case ${ac_top_builddir}. in
4721 .) ac_abs_top_builddir=$ac_abs_builddir;;
4722 [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
4723 *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
4724 esac;;
4725esac
4726case $ac_abs_builddir in
4727.) ac_abs_srcdir=$ac_srcdir;;
4728*)
4729 case $ac_srcdir in
4730 .) ac_abs_srcdir=$ac_abs_builddir;;
4731 [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
4732 *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
4733 esac;;
4734esac
4735case $ac_abs_builddir in
4736.) ac_abs_top_srcdir=$ac_top_srcdir;;
4737*)
4738 case $ac_top_srcdir in
4739 .) ac_abs_top_srcdir=$ac_abs_builddir;;
4740 [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
4741 *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
4742 esac;;
4743esac
4744
d6e9fb05 4745
bec39cab
AC
4746 case $INSTALL in
4747 [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
4748 *) ac_INSTALL=$ac_top_builddir$INSTALL ;;
d6e9fb05
JK
4749 esac
4750
bec39cab
AC
4751 # Let's still pretend it is `configure' which instantiates (i.e., don't
4752 # use $as_me), people would be surprised to read:
4753 # /* config.h. Generated by config.status. */
4754 if test x"$ac_file" = x-; then
4755 configure_input=
4756 else
4757 configure_input="$ac_file. "
4758 fi
4759 configure_input=$configure_input"Generated from `echo $ac_file_in |
4760 sed 's,.*/,,'` by configure."
4761
4762 # First look for the input files in the build tree, otherwise in the
4763 # src tree.
4764 ac_file_inputs=`IFS=:
4765 for f in $ac_file_in; do
4766 case $f in
4767 -) echo $tmp/stdin ;;
4768 [\\/$]*)
4769 # Absolute (can't be DOS-style, as IFS=:)
4770 test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
4771echo "$as_me: error: cannot find input file: $f" >&2;}
4772 { (exit 1); exit 1; }; }
4773 echo "$f";;
4774 *) # Relative
4775 if test -f "$f"; then
4776 # Build tree
4777 echo "$f"
4778 elif test -f "$srcdir/$f"; then
4779 # Source tree
4780 echo "$srcdir/$f"
4781 else
4782 # /dev/null tree
4783 { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
4784echo "$as_me: error: cannot find input file: $f" >&2;}
4785 { (exit 1); exit 1; }; }
4786 fi;;
4787 esac
4788 done` || { (exit 1); exit 1; }
dcdb98d2
DJ
4789
4790 if test x"$ac_file" != x-; then
4791 { echo "$as_me:$LINENO: creating $ac_file" >&5
4792echo "$as_me: creating $ac_file" >&6;}
4793 rm -f "$ac_file"
4794 fi
bec39cab
AC
4795_ACEOF
4796cat >>$CONFIG_STATUS <<_ACEOF
4797 sed "$ac_vpsub
4798$extrasub
4799_ACEOF
4800cat >>$CONFIG_STATUS <<\_ACEOF
4801:t
4802/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
4803s,@configure_input@,$configure_input,;t t
4804s,@srcdir@,$ac_srcdir,;t t
4805s,@abs_srcdir@,$ac_abs_srcdir,;t t
4806s,@top_srcdir@,$ac_top_srcdir,;t t
4807s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t
4808s,@builddir@,$ac_builddir,;t t
4809s,@abs_builddir@,$ac_abs_builddir,;t t
4810s,@top_builddir@,$ac_top_builddir,;t t
4811s,@abs_top_builddir@,$ac_abs_top_builddir,;t t
4812s,@INSTALL@,$ac_INSTALL,;t t
4813" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
4814 rm -f $tmp/stdin
4815 if test x"$ac_file" != x-; then
4816 mv $tmp/out $ac_file
4817 else
4818 cat $tmp/out
4819 rm -f $tmp/out
4820 fi
4821
4822done
4823_ACEOF
4824cat >>$CONFIG_STATUS <<\_ACEOF
4825
4826#
4827# CONFIG_HEADER section.
4828#
d6e9fb05 4829
84563040
DJ
4830# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
4831# NAME is the cpp macro being defined and VALUE is the value it is being given.
4832#
4833# ac_d sets the value in "#define NAME VALUE" lines.
bec39cab
AC
4834ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)'
4835ac_dB='[ ].*$,\1#\2'
4836ac_dC=' '
4837ac_dD=',;t'
4838# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
4839ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)'
4840ac_uB='$,\1#\2define\3'
84563040 4841ac_uC=' '
bec39cab
AC
4842ac_uD=',;t'
4843
4844for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
84563040 4845 # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
bec39cab
AC
4846 case $ac_file in
4847 - | *:- | *:-:* ) # input from stdin
4848 cat >$tmp/stdin
4849 ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
4850 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
4851 *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
4852 ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
4853 * ) ac_file_in=$ac_file.in ;;
84563040 4854 esac
d6e9fb05 4855
bec39cab
AC
4856 test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5
4857echo "$as_me: creating $ac_file" >&6;}
4858
4859 # First look for the input files in the build tree, otherwise in the
4860 # src tree.
4861 ac_file_inputs=`IFS=:
4862 for f in $ac_file_in; do
4863 case $f in
4864 -) echo $tmp/stdin ;;
4865 [\\/$]*)
4866 # Absolute (can't be DOS-style, as IFS=:)
4867 test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
4868echo "$as_me: error: cannot find input file: $f" >&2;}
4869 { (exit 1); exit 1; }; }
4870 # Do quote $f, to prevent DOS paths from being IFS'd.
4871 echo "$f";;
4872 *) # Relative
4873 if test -f "$f"; then
4874 # Build tree
4875 echo "$f"
4876 elif test -f "$srcdir/$f"; then
4877 # Source tree
4878 echo "$srcdir/$f"
4879 else
4880 # /dev/null tree
4881 { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
4882echo "$as_me: error: cannot find input file: $f" >&2;}
4883 { (exit 1); exit 1; }; }
4884 fi;;
4885 esac
4886 done` || { (exit 1); exit 1; }
4887 # Remove the trailing spaces.
4888 sed 's/[ ]*$//' $ac_file_inputs >$tmp/in
4889
4890_ACEOF
4891
4892# Transform confdefs.h into two sed scripts, `conftest.defines' and
4893# `conftest.undefs', that substitutes the proper values into
4894# config.h.in to produce config.h. The first handles `#define'
4895# templates, and the second `#undef' templates.
4896# And first: Protect against being on the right side of a sed subst in
4897# config.status. Protect against being in an unquoted here document
4898# in config.status.
4899rm -f conftest.defines conftest.undefs
4900# Using a here document instead of a string reduces the quoting nightmare.
4901# Putting comments in sed scripts is not portable.
4902#
4903# `end' is used to avoid that the second main sed command (meant for
4904# 0-ary CPP macros) applies to n-ary macro definitions.
4905# See the Autoconf documentation for `clear'.
4906cat >confdef2sed.sed <<\_ACEOF
4907s/[\\&,]/\\&/g
4908s,[\\$`],\\&,g
4909t clear
4910: clear
4911s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp
4912t end
4913s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp
4914: end
4915_ACEOF
4916# If some macros were called several times there might be several times
4917# the same #defines, which is useless. Nevertheless, we may not want to
4918# sort them, since we want the *last* AC-DEFINE to be honored.
4919uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines
4920sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs
4921rm -f confdef2sed.sed
84563040
DJ
4922
4923# This sed command replaces #undef with comments. This is necessary, for
4924# example, in the case of _POSIX_SOURCE, which is predefined and required
4925# on some systems where configure will not decide to define it.
bec39cab
AC
4926cat >>conftest.undefs <<\_ACEOF
4927s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
4928_ACEOF
4929
4930# Break up conftest.defines because some shells have a limit on the size
4931# of here documents, and old seds have small limits too (100 cmds).
4932echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS
4933echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
4934echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS
4935echo ' :' >>$CONFIG_STATUS
4936rm -f conftest.tail
4937while grep . conftest.defines >/dev/null
4938do
4939 # Write a limited-size here document to $tmp/defines.sed.
4940 echo ' cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS
4941 # Speed up: don't consider the non `#define' lines.
4942 echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS
4943 # Work around the forget-to-reset-the-flag bug.
4944 echo 't clr' >>$CONFIG_STATUS
4945 echo ': clr' >>$CONFIG_STATUS
4946 sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS
4947 echo 'CEOF
4948 sed -f $tmp/defines.sed $tmp/in >$tmp/out
4949 rm -f $tmp/in
4950 mv $tmp/out $tmp/in
4951' >>$CONFIG_STATUS
4952 sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail
4953 rm -f conftest.defines
4954 mv conftest.tail conftest.defines
4955done
4956rm -f conftest.defines
4957echo ' fi # grep' >>$CONFIG_STATUS
4958echo >>$CONFIG_STATUS
84563040 4959
bec39cab
AC
4960# Break up conftest.undefs because some shells have a limit on the size
4961# of here documents, and old seds have small limits too (100 cmds).
4962echo ' # Handle all the #undef templates' >>$CONFIG_STATUS
84563040 4963rm -f conftest.tail
bec39cab 4964while grep . conftest.undefs >/dev/null
84563040 4965do
bec39cab
AC
4966 # Write a limited-size here document to $tmp/undefs.sed.
4967 echo ' cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS
4968 # Speed up: don't consider the non `#undef'
4969 echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS
4970 # Work around the forget-to-reset-the-flag bug.
4971 echo 't clr' >>$CONFIG_STATUS
4972 echo ': clr' >>$CONFIG_STATUS
4973 sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS
84563040 4974 echo 'CEOF
bec39cab
AC
4975 sed -f $tmp/undefs.sed $tmp/in >$tmp/out
4976 rm -f $tmp/in
4977 mv $tmp/out $tmp/in
4978' >>$CONFIG_STATUS
4979 sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail
4980 rm -f conftest.undefs
4981 mv conftest.tail conftest.undefs
84563040 4982done
bec39cab
AC
4983rm -f conftest.undefs
4984
4985cat >>$CONFIG_STATUS <<\_ACEOF
4986 # Let's still pretend it is `configure' which instantiates (i.e., don't
4987 # use $as_me), people would be surprised to read:
4988 # /* config.h. Generated by config.status. */
4989 if test x"$ac_file" = x-; then
4990 echo "/* Generated by configure. */" >$tmp/config.h
4991 else
4992 echo "/* $ac_file. Generated by configure. */" >$tmp/config.h
4993 fi
4994 cat $tmp/in >>$tmp/config.h
4995 rm -f $tmp/in
4996 if test x"$ac_file" != x-; then
4997 if diff $ac_file $tmp/config.h >/dev/null 2>&1; then
4998 { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
4999echo "$as_me: $ac_file is unchanged" >&6;}
5000 else
5001 ac_dir=`(dirname "$ac_file") 2>/dev/null ||
5002$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
5003 X"$ac_file" : 'X\(//\)[^/]' \| \
5004 X"$ac_file" : 'X\(//\)$' \| \
5005 X"$ac_file" : 'X\(/\)' \| \
5006 . : '\(.\)' 2>/dev/null ||
5007echo X"$ac_file" |
5008 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
5009 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
5010 /^X\(\/\/\)$/{ s//\1/; q; }
5011 /^X\(\/\).*/{ s//\1/; q; }
5012 s/.*/./; q'`
5013 { if $as_mkdir_p; then
5014 mkdir -p "$ac_dir"
d6e9fb05 5015 else
bec39cab
AC
5016 as_dir="$ac_dir"
5017 as_dirs=
5018 while test ! -d "$as_dir"; do
5019 as_dirs="$as_dir $as_dirs"
5020 as_dir=`(dirname "$as_dir") 2>/dev/null ||
5021$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
5022 X"$as_dir" : 'X\(//\)[^/]' \| \
5023 X"$as_dir" : 'X\(//\)$' \| \
5024 X"$as_dir" : 'X\(/\)' \| \
5025 . : '\(.\)' 2>/dev/null ||
5026echo X"$as_dir" |
5027 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
5028 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
5029 /^X\(\/\/\)$/{ s//\1/; q; }
5030 /^X\(\/\).*/{ s//\1/; q; }
5031 s/.*/./; q'`
5032 done
5033 test ! -n "$as_dirs" || mkdir $as_dirs
5034 fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
5035echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
5036 { (exit 1); exit 1; }; }; }
5037
5038 rm -f $ac_file
5039 mv $tmp/config.h $ac_file
84563040 5040 fi
bec39cab
AC
5041 else
5042 cat $tmp/config.h
5043 rm -f $tmp/config.h
d6e9fb05 5044 fi
bec39cab
AC
5045done
5046_ACEOF
5047cat >>$CONFIG_STATUS <<\_ACEOF
5048
5049#
5050# CONFIG_COMMANDS section.
5051#
5052for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue
5053 ac_dest=`echo "$ac_file" | sed 's,:.*,,'`
5054 ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`
5055 ac_dir=`(dirname "$ac_dest") 2>/dev/null ||
5056$as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
5057 X"$ac_dest" : 'X\(//\)[^/]' \| \
5058 X"$ac_dest" : 'X\(//\)$' \| \
5059 X"$ac_dest" : 'X\(/\)' \| \
5060 . : '\(.\)' 2>/dev/null ||
5061echo X"$ac_dest" |
5062 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
5063 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
5064 /^X\(\/\/\)$/{ s//\1/; q; }
5065 /^X\(\/\).*/{ s//\1/; q; }
5066 s/.*/./; q'`
5067 { if $as_mkdir_p; then
5068 mkdir -p "$ac_dir"
5069 else
5070 as_dir="$ac_dir"
5071 as_dirs=
5072 while test ! -d "$as_dir"; do
5073 as_dirs="$as_dir $as_dirs"
5074 as_dir=`(dirname "$as_dir") 2>/dev/null ||
5075$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
5076 X"$as_dir" : 'X\(//\)[^/]' \| \
5077 X"$as_dir" : 'X\(//\)$' \| \
5078 X"$as_dir" : 'X\(/\)' \| \
5079 . : '\(.\)' 2>/dev/null ||
5080echo X"$as_dir" |
5081 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
5082 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
5083 /^X\(\/\/\)$/{ s//\1/; q; }
5084 /^X\(\/\).*/{ s//\1/; q; }
5085 s/.*/./; q'`
5086 done
5087 test ! -n "$as_dirs" || mkdir $as_dirs
5088 fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
5089echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
5090 { (exit 1); exit 1; }; }; }
5091
5092 ac_builddir=.
5093
5094if test "$ac_dir" != .; then
5095 ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
5096 # A "../" for each directory in $ac_dir_suffix.
5097 ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
5098else
5099 ac_dir_suffix= ac_top_builddir=
5100fi
5101
5102case $srcdir in
5103 .) # No --srcdir option. We are building in place.
5104 ac_srcdir=.
5105 if test -z "$ac_top_builddir"; then
5106 ac_top_srcdir=.
5107 else
5108 ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
5109 fi ;;
5110 [\\/]* | ?:[\\/]* ) # Absolute path.
5111 ac_srcdir=$srcdir$ac_dir_suffix;
5112 ac_top_srcdir=$srcdir ;;
5113 *) # Relative path.
5114 ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
5115 ac_top_srcdir=$ac_top_builddir$srcdir ;;
5116esac
5117
5118# Do not use `cd foo && pwd` to compute absolute paths, because
5119# the directories may not exist.
5120case `pwd` in
5121.) ac_abs_builddir="$ac_dir";;
5122*)
5123 case "$ac_dir" in
5124 .) ac_abs_builddir=`pwd`;;
5125 [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
5126 *) ac_abs_builddir=`pwd`/"$ac_dir";;
5127 esac;;
5128esac
5129case $ac_abs_builddir in
5130.) ac_abs_top_builddir=${ac_top_builddir}.;;
5131*)
5132 case ${ac_top_builddir}. in
5133 .) ac_abs_top_builddir=$ac_abs_builddir;;
5134 [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
5135 *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
5136 esac;;
5137esac
5138case $ac_abs_builddir in
5139.) ac_abs_srcdir=$ac_srcdir;;
5140*)
5141 case $ac_srcdir in
5142 .) ac_abs_srcdir=$ac_abs_builddir;;
5143 [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
5144 *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
5145 esac;;
5146esac
5147case $ac_abs_builddir in
5148.) ac_abs_top_srcdir=$ac_top_srcdir;;
5149*)
5150 case $ac_top_srcdir in
5151 .) ac_abs_top_srcdir=$ac_abs_builddir;;
5152 [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
5153 *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
5154 esac;;
5155esac
84563040 5156
d6e9fb05 5157
bec39cab
AC
5158 { echo "$as_me:$LINENO: executing $ac_dest commands" >&5
5159echo "$as_me: executing $ac_dest commands" >&6;}
5160 case $ac_dest in
5161 default ) case x$CONFIG_HEADERS in
c3a3ccc7
DJ
5162xconfig.h:config.in)
5163echo > stamp-h ;;
5164esac
bec39cab
AC
5165 ;;
5166 esac
5167done
5168_ACEOF
d6e9fb05 5169
bec39cab
AC
5170cat >>$CONFIG_STATUS <<\_ACEOF
5171
5172{ (exit 0); exit 0; }
5173_ACEOF
d6e9fb05 5174chmod +x $CONFIG_STATUS
bec39cab
AC
5175ac_clean_files=$ac_clean_files_save
5176
5177
5178# configure is writing to config.log, and then calls config.status.
5179# config.status does its own redirection, appending to config.log.
5180# Unfortunately, on DOS this fails, as config.log is still kept open
5181# by configure, so config.status won't be able to write to it; its
5182# output is simply discarded. So we exec the FD to /dev/null,
5183# effectively closing config.log, so it can be properly (re)opened and
5184# appended to by config.status. When coming back to configure, we
5185# need to make the FD available again.
5186if test "$no_create" != yes; then
5187 ac_cs_success=:
5188 ac_config_status_args=
5189 test "$silent" = yes &&
5190 ac_config_status_args="$ac_config_status_args --quiet"
5191 exec 5>/dev/null
5192 $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
5193 exec 5>>config.log
5194 # Use ||, not &&, to avoid exiting from the if with $? = 1, which
5195 # would make configure fail if this is the last instruction.
5196 $ac_cs_success || { (exit 1); exit 1; }
5197fi
d6e9fb05 5198
This page took 0.658703 seconds and 4 git commands to generate.