]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blame - configure
mke2fs: don't set root dir UID/GID automatically
[thirdparty/e2fsprogs.git] / configure
CommitLineData
50e1e10f 1#! /bin/sh
50e1e10f 2# Guess values for system-dependent variables and create Makefiles.
91d11da1 3# Generated by GNU Autoconf 2.69.
61ef2474 4#
50e1e10f 5#
91d11da1 6# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
61ef2474 7#
57aa50d4 8#
50e1e10f
TT
9# This configure script is free software; the Free Software Foundation
10# gives unlimited permission to copy, distribute and modify it.
57aa50d4
TT
11## -------------------- ##
12## M4sh Initialization. ##
13## -------------------- ##
b0cacab0 14
29a5deed
TT
15# Be more Bourne compatible
16DUALCASE=1; export DUALCASE # for MKS sh
57aa50d4 17if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
b0cacab0
TT
18 emulate sh
19 NULLCMD=:
39fd3d4f 20 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
b0cacab0
TT
21 # is contrary to our usage. Disable this feature.
22 alias -g '${1+"$@"}'='"$@"'
e1052144
TT
23 setopt NO_GLOB_SUBST
24else
57aa50d4
TT
25 case `(set -o) 2>/dev/null` in #(
26 *posix*) :
27 set -o posix ;; #(
28 *) :
29 ;;
29a5deed 30esac
b0cacab0 31fi
29a5deed
TT
32
33
39fd3d4f
SJR
34as_nl='
35'
36export as_nl
37# Printing a long string crashes Solaris 7 /usr/bin/printf.
38as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
39as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
40as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
57aa50d4
TT
41# Prefer a ksh shell builtin over an external printf program on Solaris,
42# but without wasting forks for bash or zsh.
43if test -z "$BASH_VERSION$ZSH_VERSION" \
44 && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
45 as_echo='print -r --'
46 as_echo_n='print -rn --'
47elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
39fd3d4f
SJR
48 as_echo='printf %s\n'
49 as_echo_n='printf %s'
50else
51 if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
52 as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
53 as_echo_n='/usr/ucb/echo -n'
e1052144 54 else
39fd3d4f
SJR
55 as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
56 as_echo_n_body='eval
57 arg=$1;
57aa50d4 58 case $arg in #(
39fd3d4f
SJR
59 *"$as_nl"*)
60 expr "X$arg" : "X\\(.*\\)$as_nl";
61 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
62 esac;
63 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
64 '
65 export as_echo_n_body
66 as_echo_n='sh -c $as_echo_n_body as_echo'
e1052144 67 fi
39fd3d4f
SJR
68 export as_echo_body
69 as_echo='sh -c $as_echo_body as_echo'
70fi
71
72# The user is always right.
73if test "${PATH_SEPARATOR+set}" != set; then
74 PATH_SEPARATOR=:
75 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
76 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
77 PATH_SEPARATOR=';'
78 }
e1052144
TT
79fi
80
b0cacab0 81
e1052144
TT
82# IFS
83# We need space, tab and new line, in precisely that order. Quoting is
84# there to prevent editors from complaining about space-tab.
85# (If _AS_PATH_WALK were called with IFS unset, it would disable word
86# splitting by setting IFS to empty value.)
e1052144
TT
87IFS=" "" $as_nl"
88
89# Find who we are. Look in the path if we contain no directory separator.
91d11da1 90as_myself=
57aa50d4 91case $0 in #((
e1052144
TT
92 *[\\/]* ) as_myself=$0 ;;
93 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
94for as_dir in $PATH
95do
96 IFS=$as_save_IFS
97 test -z "$as_dir" && as_dir=.
57aa50d4
TT
98 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
99 done
e1052144
TT
100IFS=$as_save_IFS
101
102 ;;
103esac
104# We did not find ourselves, most probably we were run as `sh COMMAND'
105# in which case we are not to be found in the path.
106if test "x$as_myself" = x; then
107 as_myself=$0
108fi
109if test ! -f "$as_myself"; then
39fd3d4f 110 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
57aa50d4 111 exit 1
e1052144
TT
112fi
113
57aa50d4
TT
114# Unset variables that we do not need and which cause bugs (e.g. in
115# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
116# suppresses any "Segmentation fault" message there. '((' could
117# trigger a bug in pdksh 5.2.14.
118for as_var in BASH_ENV ENV MAIL MAILPATH
119do eval test x\${$as_var+set} = xset \
120 && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
e1052144 121done
b0cacab0
TT
122PS1='$ '
123PS2='> '
124PS4='+ '
125
126# NLS nuisances.
39fd3d4f
SJR
127LC_ALL=C
128export LC_ALL
129LANGUAGE=C
130export LANGUAGE
b0cacab0 131
57aa50d4
TT
132# CDPATH.
133(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
134
91d11da1
TT
135# Use a proper internal environment variable to ensure we don't fall
136 # into an infinite loop, continuously re-executing ourselves.
137 if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
138 _as_can_reexec=no; export _as_can_reexec;
139 # We cannot yet assume a decent shell, so we have to provide a
140# neutralization value for shells without unset; and this also
141# works around shells that cannot unset nonexistent variables.
142# Preserve -v and -x to the replacement shell.
143BASH_ENV=/dev/null
144ENV=/dev/null
145(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
146case $- in # ((((
147 *v*x* | *x*v* ) as_opts=-vx ;;
148 *v* ) as_opts=-v ;;
149 *x* ) as_opts=-x ;;
150 * ) as_opts= ;;
151esac
152exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
153# Admittedly, this is quite paranoid, since all the known shells bail
154# out after a failed `exec'.
155$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
156as_fn_exit 255
157 fi
158 # We don't want this to propagate to other subprocesses.
159 { _as_can_reexec=; unset _as_can_reexec;}
57aa50d4
TT
160if test "x$CONFIG_SHELL" = x; then
161 as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
162 emulate sh
163 NULLCMD=:
164 # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
165 # is contrary to our usage. Disable this feature.
166 alias -g '\${1+\"\$@\"}'='\"\$@\"'
167 setopt NO_GLOB_SUBST
168else
169 case \`(set -o) 2>/dev/null\` in #(
170 *posix*) :
171 set -o posix ;; #(
172 *) :
173 ;;
174esac
175fi
176"
177 as_required="as_fn_return () { (exit \$1); }
178as_fn_success () { as_fn_return 0; }
179as_fn_failure () { as_fn_return 1; }
180as_fn_ret_success () { return 0; }
181as_fn_ret_failure () { return 1; }
182
183exitcode=0
184as_fn_success || { exitcode=1; echo as_fn_success failed.; }
185as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
186as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
187as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
188if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
189
190else
191 exitcode=1; echo positional parameters were not saved.
192fi
91d11da1
TT
193test x\$exitcode = x0 || exit 1
194test -x / || exit 1"
57aa50d4
TT
195 as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
196 as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
197 eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
198 test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
199test \$(( 1 + 1 )) = 2 || exit 1"
200 if (eval "$as_required") 2>/dev/null; then :
201 as_have_required=yes
202else
203 as_have_required=no
204fi
205 if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
206
207else
208 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
209as_found=false
210for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
211do
212 IFS=$as_save_IFS
213 test -z "$as_dir" && as_dir=.
214 as_found=:
215 case $as_dir in #(
216 /*)
217 for as_base in sh bash ksh sh5; do
218 # Try only shells that exist, to save several forks.
219 as_shell=$as_dir/$as_base
220 if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
221 { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
222 CONFIG_SHELL=$as_shell as_have_required=yes
223 if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
224 break 2
225fi
226fi
227 done;;
228 esac
229 as_found=false
230done
231$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
232 { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
233 CONFIG_SHELL=$SHELL as_have_required=yes
234fi; }
235IFS=$as_save_IFS
236
237
238 if test "x$CONFIG_SHELL" != x; then :
91d11da1
TT
239 export CONFIG_SHELL
240 # We cannot yet assume a decent shell, so we have to provide a
241# neutralization value for shells without unset; and this also
242# works around shells that cannot unset nonexistent variables.
243# Preserve -v and -x to the replacement shell.
244BASH_ENV=/dev/null
245ENV=/dev/null
246(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
247case $- in # ((((
248 *v*x* | *x*v* ) as_opts=-vx ;;
249 *v* ) as_opts=-v ;;
250 *x* ) as_opts=-x ;;
251 * ) as_opts= ;;
252esac
253exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
254# Admittedly, this is quite paranoid, since all the known shells bail
255# out after a failed `exec'.
256$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
257exit 255
57aa50d4
TT
258fi
259
260 if test x$as_have_required = xno; then :
261 $as_echo "$0: This script requires a shell more modern than all"
262 $as_echo "$0: the shells that I found on your system."
263 if test x${ZSH_VERSION+set} = xset ; then
264 $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
265 $as_echo "$0: be upgraded to zsh 4.3.4 or later."
266 else
267 $as_echo "$0: Please tell bug-autoconf@gnu.org about your system,
268$0: including any error possibly output before this
269$0: message. Then install a modern shell, or manually run
270$0: the script under such a shell if you do have one."
271 fi
272 exit 1
273fi
274fi
275fi
276SHELL=${CONFIG_SHELL-/bin/sh}
277export SHELL
278# Unset more variables known to interfere with behavior of common tools.
279CLICOLOR_FORCE= GREP_OPTIONS=
280unset CLICOLOR_FORCE GREP_OPTIONS
281
282## --------------------- ##
283## M4sh Shell Functions. ##
284## --------------------- ##
285# as_fn_unset VAR
286# ---------------
287# Portably unset VAR.
288as_fn_unset ()
289{
290 { eval $1=; unset $1;}
291}
292as_unset=as_fn_unset
293
294# as_fn_set_status STATUS
295# -----------------------
296# Set $? to STATUS, without forking.
297as_fn_set_status ()
298{
299 return $1
300} # as_fn_set_status
301
302# as_fn_exit STATUS
303# -----------------
304# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
305as_fn_exit ()
306{
307 set +e
308 as_fn_set_status $1
309 exit $1
310} # as_fn_exit
311
312# as_fn_mkdir_p
313# -------------
314# Create "$as_dir" as a directory, including parents if necessary.
315as_fn_mkdir_p ()
316{
317
318 case $as_dir in #(
319 -*) as_dir=./$as_dir;;
320 esac
321 test -d "$as_dir" || eval $as_mkdir_p || {
322 as_dirs=
323 while :; do
324 case $as_dir in #(
325 *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
326 *) as_qdir=$as_dir;;
327 esac
328 as_dirs="'$as_qdir' $as_dirs"
329 as_dir=`$as_dirname -- "$as_dir" ||
330$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
331 X"$as_dir" : 'X\(//\)[^/]' \| \
332 X"$as_dir" : 'X\(//\)$' \| \
333 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
334$as_echo X"$as_dir" |
335 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
336 s//\1/
337 q
338 }
339 /^X\(\/\/\)[^/].*/{
340 s//\1/
341 q
342 }
343 /^X\(\/\/\)$/{
344 s//\1/
345 q
346 }
347 /^X\(\/\).*/{
348 s//\1/
349 q
350 }
351 s/.*/./; q'`
352 test -d "$as_dir" && break
353 done
354 test -z "$as_dirs" || eval "mkdir $as_dirs"
91d11da1 355 } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
57aa50d4
TT
356
357
358} # as_fn_mkdir_p
91d11da1
TT
359
360# as_fn_executable_p FILE
361# -----------------------
362# Test if FILE is an executable regular file.
363as_fn_executable_p ()
364{
365 test -f "$1" && test -x "$1"
366} # as_fn_executable_p
57aa50d4
TT
367# as_fn_append VAR VALUE
368# ----------------------
369# Append the text in VALUE to the end of the definition contained in VAR. Take
370# advantage of any shell optimizations that allow amortized linear growth over
371# repeated appends, instead of the typical quadratic growth present in naive
372# implementations.
373if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
374 eval 'as_fn_append ()
375 {
376 eval $1+=\$2
377 }'
378else
379 as_fn_append ()
380 {
381 eval $1=\$$1\$2
382 }
383fi # as_fn_append
384
385# as_fn_arith ARG...
386# ------------------
387# Perform arithmetic evaluation on the ARGs, and store the result in the
388# global $as_val. Take advantage of shells that can avoid forks. The arguments
389# must be portable across $(()) and expr.
390if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
391 eval 'as_fn_arith ()
392 {
393 as_val=$(( $* ))
394 }'
395else
396 as_fn_arith ()
397 {
398 as_val=`expr "$@" || test $? -eq 1`
399 }
400fi # as_fn_arith
401
402
91d11da1
TT
403# as_fn_error STATUS ERROR [LINENO LOG_FD]
404# ----------------------------------------
57aa50d4
TT
405# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
406# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
91d11da1 407# script with STATUS, using 1 if that was 0.
57aa50d4
TT
408as_fn_error ()
409{
91d11da1
TT
410 as_status=$1; test $as_status -eq 0 && as_status=1
411 if test "$4"; then
412 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
413 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
57aa50d4 414 fi
91d11da1 415 $as_echo "$as_me: error: $2" >&2
57aa50d4
TT
416 as_fn_exit $as_status
417} # as_fn_error
418
e1052144
TT
419if expr a : '\(a\)' >/dev/null 2>&1 &&
420 test "X`expr 00001 : '.*\(...\)'`" = X001; then
b0cacab0
TT
421 as_expr=expr
422else
423 as_expr=false
424fi
425
e1052144 426if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
b0cacab0
TT
427 as_basename=basename
428else
429 as_basename=false
430fi
431
57aa50d4
TT
432if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
433 as_dirname=dirname
434else
435 as_dirname=false
436fi
b0cacab0 437
e1052144 438as_me=`$as_basename -- "$0" ||
b0cacab0
TT
439$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
440 X"$0" : 'X\(//\)$' \| \
e1052144 441 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
39fd3d4f 442$as_echo X/"$0" |
e1052144
TT
443 sed '/^.*\/\([^/][^/]*\)\/*$/{
444 s//\1/
445 q
446 }
447 /^X\/\(\/\/\)$/{
448 s//\1/
449 q
450 }
451 /^X\/\(\/\).*/{
452 s//\1/
453 q
454 }
455 s/.*/./; q'`
b0cacab0 456
57aa50d4
TT
457# Avoid depending upon Character Ranges.
458as_cr_letters='abcdefghijklmnopqrstuvwxyz'
459as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
460as_cr_Letters=$as_cr_letters$as_cr_LETTERS
461as_cr_digits='0123456789'
462as_cr_alnum=$as_cr_Letters$as_cr_digits
b0cacab0 463
b0cacab0 464
57aa50d4
TT
465 as_lineno_1=$LINENO as_lineno_1a=$LINENO
466 as_lineno_2=$LINENO as_lineno_2a=$LINENO
467 eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
468 test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
469 # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-)
470 sed -n '
471 p
472 /[$]LINENO/=
473 ' <$as_myself |
474 sed '
475 s/[$]LINENO.*/&-/
476 t lineno
477 b
478 :lineno
479 N
480 :loop
481 s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
482 t loop
483 s/-\n.*//
484 ' >$as_me.lineno &&
485 chmod +x "$as_me.lineno" ||
486 { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
e1052144 487
91d11da1
TT
488 # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
489 # already done that, so ensure we don't try to do so again and fall
490 # in an infinite loop. This has already happened in practice.
491 _as_can_reexec=no; export _as_can_reexec
57aa50d4
TT
492 # Don't try to exec as it changes $[0], causing all sort of problems
493 # (the dirname of $[0] is not the place where we might find the
494 # original and so on. Autoconf is especially sensitive to this).
495 . "./$as_me.lineno"
496 # Exit status is that of the last command.
497 exit
e1052144
TT
498}
499
57aa50d4
TT
500ECHO_C= ECHO_N= ECHO_T=
501case `echo -n x` in #(((((
502-n*)
503 case `echo 'xy\c'` in
504 *c*) ECHO_T=' ';; # ECHO_T is single tab character.
505 xy) ECHO_C='\c';;
506 *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
507 ECHO_T=' ';;
508 esac;;
509*)
510 ECHO_N='-n';;
511esac
b0cacab0 512
57aa50d4
TT
513rm -f conf$$ conf$$.exe conf$$.file
514if test -d conf$$.dir; then
515 rm -f conf$$.dir/conf$$.file
516else
517 rm -f conf$$.dir
518 mkdir conf$$.dir 2>/dev/null
e1052144 519fi
57aa50d4
TT
520if (echo >conf$$.file) 2>/dev/null; then
521 if ln -s conf$$.file conf$$ 2>/dev/null; then
522 as_ln_s='ln -s'
523 # ... but there are two gotchas:
524 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
525 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
91d11da1 526 # In both cases, we have to default to `cp -pR'.
57aa50d4 527 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
91d11da1 528 as_ln_s='cp -pR'
57aa50d4
TT
529 elif ln conf$$.file conf$$ 2>/dev/null; then
530 as_ln_s=ln
531 else
91d11da1 532 as_ln_s='cp -pR'
57aa50d4 533 fi
e1052144 534else
91d11da1 535 as_ln_s='cp -pR'
e1052144 536fi
57aa50d4
TT
537rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
538rmdir conf$$.dir 2>/dev/null
b0cacab0 539
57aa50d4
TT
540if mkdir -p . 2>/dev/null; then
541 as_mkdir_p='mkdir -p "$as_dir"'
542else
543 test -d ./-p && rmdir ./-p
544 as_mkdir_p=false
e1052144
TT
545fi
546
91d11da1
TT
547as_test_x='test -x'
548as_executable_p=as_fn_executable_p
e1052144 549
57aa50d4
TT
550# Sed expression to map a string onto a valid CPP name.
551as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
e1052144 552
57aa50d4
TT
553# Sed expression to map a string onto a valid variable name.
554as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
e1052144 555
29a5deed 556
61ef2474
TT
557test -n "$DJDIR" || exec 7<&0 </dev/null
558exec 6>&1
b0cacab0
TT
559
560# Name of the host.
91d11da1 561# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
b0cacab0
TT
562# so uname gets run too.
563ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
50e1e10f 564
b0cacab0
TT
565#
566# Initializations.
567#
50e1e10f 568ac_default_prefix=/usr/local
e1052144 569ac_clean_files=
b0cacab0 570ac_config_libobj_dir=.
e1052144 571LIBOBJS=
b0cacab0
TT
572cross_compiling=no
573subdirs=
574MFLAGS=
575MAKEFLAGS=
b0cacab0 576
b0cacab0
TT
577# Identity of this package.
578PACKAGE_NAME=
579PACKAGE_TARNAME=
580PACKAGE_VERSION=
581PACKAGE_STRING=
582PACKAGE_BUGREPORT=
57aa50d4 583PACKAGE_URL=
b0cacab0
TT
584
585ac_unique_file="version.h"
586# Factoring default headers for most tests.
587ac_includes_default="\
588#include <stdio.h>
29a5deed 589#ifdef HAVE_SYS_TYPES_H
b0cacab0
TT
590# include <sys/types.h>
591#endif
29a5deed 592#ifdef HAVE_SYS_STAT_H
b0cacab0
TT
593# include <sys/stat.h>
594#endif
29a5deed 595#ifdef STDC_HEADERS
b0cacab0
TT
596# include <stdlib.h>
597# include <stddef.h>
598#else
29a5deed 599# ifdef HAVE_STDLIB_H
b0cacab0
TT
600# include <stdlib.h>
601# endif
602#endif
29a5deed
TT
603#ifdef HAVE_STRING_H
604# if !defined STDC_HEADERS && defined HAVE_MEMORY_H
b0cacab0
TT
605# include <memory.h>
606# endif
607# include <string.h>
608#endif
29a5deed 609#ifdef HAVE_STRINGS_H
b0cacab0
TT
610# include <strings.h>
611#endif
29a5deed 612#ifdef HAVE_INTTYPES_H
b0cacab0 613# include <inttypes.h>
e1052144 614#endif
29a5deed 615#ifdef HAVE_STDINT_H
e1052144 616# include <stdint.h>
b0cacab0 617#endif
29a5deed 618#ifdef HAVE_UNISTD_H
b0cacab0
TT
619# include <unistd.h>
620#endif"
621
61ef2474 622ac_header_list=
39fd3d4f 623ac_subst_vars='LTLIBOBJS
e1052144 624LIBOBJS
39fd3d4f
SJR
625BUILD_LDFLAGS
626BUILD_CFLAGS
d1154eb4 627INCLUDES
39fd3d4f
SJR
628DO_TEST_SUITE
629ET_DIR
630SS_DIR
631LDFLAG_STATIC
632root_sysconfdir
633root_libdir
634root_sbindir
635root_bindir
636root_prefix
637UNIX_CMT
638CYGWIN_CMT
639LINUX_CMT
640UNI_DIFF_OPTS
641SEM_INIT_LIB
39fd3d4f 642SOCKET_LIB
cc68e8a6 643SIZEOF_OFF_T
39fd3d4f
SJR
644SIZEOF_LONG_LONG
645SIZEOF_LONG
646SIZEOF_INT
647SIZEOF_SHORT
648BUILD_CC
649MAKEINFO
650STRIP
651AR
652LDCONFIG
653PERL
654SED
655AWK
656CHMOD
657RM
658CP
659MV
660LN_S
661LN
bcb915b0
TT
662ifNotGNUmake
663ifGNUmake
39fd3d4f
SJR
664BINARY_TYPE
665POSUB
666LTLIBINTL
667LIBINTL
668INTLLIBS
669INTL_LIBTOOL_SUFFIX_PREFIX
670INTLOBJS
671GENCAT
672INSTOBJEXT
673DATADIRNAME
674CATOBJEXT
675USE_INCLUDED_LIBINTL
676BUILD_INCLUDED_LIBINTL
677INTLBISON
678LTLIBICONV
679LIBICONV
680HAVE_WPRINTF
681HAVE_SNPRINTF
682HAVE_ASPRINTF
683HAVE_POSIX_PRINTF
684GLIBC21
685ALLOCA
d1154eb4
TT
686EGREP
687GREP
39fd3d4f
SJR
688RANLIB
689MSGMERGE
690XGETTEXT
691GMSGFMT
692MSGFMT
693USE_NLS
694MKINSTALLDIRS
695INSTALL_DATA
696INSTALL_SCRIPT
697INSTALL_PROGRAM
698SET_MAKE
699VERSION
700PACKAGE
701GETTEXT_PACKAGE
702UUIDD_CMT
703E2INITRD_MAN
704E2INITRD_PROG
705FSCK_MAN
706FSCK_PROG
8d9c50c5 707DEFRAG_CMT
39fd3d4f
SJR
708RESIZER_CMT
709IMAGER_CMT
710DEBUGFS_CMT
f239fefc
AK
711QUOTA_CMT
712DEPPROFILED_LIBQUOTA
713PROFILED_LIBQUOTA
714DEPSTATIC_LIBQUOTA
715STATIC_LIBQUOTA
716DEPLIBQUOTA
717LIBQUOTA
39fd3d4f
SJR
718BLKID_CMT
719DEPPROFILED_LIBBLKID
720PROFILED_LIBBLKID
721DEPSTATIC_LIBBLKID
722STATIC_LIBBLKID
723DEPLIBBLKID
724LIBBLKID
725UUID_CMT
726DEPPROFILED_LIBUUID
727PROFILED_LIBUUID
728DEPSTATIC_LIBUUID
729STATIC_LIBUUID
730DEPLIBUUID
731LIBUUID
732PKG_CONFIG
733TEST_IO_CMT
734PRIVATE_LIBS_CMT
735LDFLAG_DYNAMIC
736PROFILED_LIB_EXT
737STATIC_LIB_EXT
738LIB_EXT
739CHECKER_CMT
740PROFILE_CMT
741BSDLIB_CMT
742ELF_CMT
743HTREE_CMT
c13351f6 744Q
c1986ecb 745ES
c13351f6 746E
5aa6c3f6 747LINK_BUILD_FLAGS
183c73b0 748SYMLINK_RELATIVE
5aa6c3f6 749LINK_INSTALL_FLAGS
39fd3d4f 750MAINTAINER_CMT
39fd3d4f 751CPP
9b3018a8 752RDYNAMIC
57aa50d4 753DLOPEN_LIB
39fd3d4f
SJR
754OBJEXT
755EXEEXT
756ac_ct_CC
757CPPFLAGS
758LDFLAGS
759CFLAGS
760CC
761host_os
762host_vendor
763host_cpu
764host
765build_os
766build_vendor
767build_cpu
768build
769E2FSPROGS_PKGVER
770E2FSPROGS_VERSION
771E2FSPROGS_DAY
772E2FSPROGS_MONTH
773E2FSPROGS_YEAR
774target_alias
775host_alias
776build_alias
777LIBS
778ECHO_T
779ECHO_N
780ECHO_C
781DEFS
782mandir
783localedir
784libdir
785psdir
786pdfdir
787dvidir
788htmldir
789infodir
790docdir
791oldincludedir
792includedir
793localstatedir
794sharedstatedir
795sysconfdir
796datadir
797datarootdir
798libexecdir
799sbindir
800bindir
801program_transform_name
802prefix
803exec_prefix
57aa50d4 804PACKAGE_URL
39fd3d4f
SJR
805PACKAGE_BUGREPORT
806PACKAGE_STRING
807PACKAGE_VERSION
808PACKAGE_TARNAME
809PACKAGE_NAME
810PATH_SEPARATOR
811SHELL'
e1052144
TT
812ac_subst_files='MCONFIG
813MAKEFILE_ELF
814MAKEFILE_BSDLIB
815MAKEFILE_PROFILE
816MAKEFILE_CHECKER
817MAKEFILE_LIBRARY
488c75a6
TT
818ASM_TYPES_HEADER
819PUBLIC_CONFIG_HEADER'
39fd3d4f
SJR
820ac_user_opts='
821enable_option_checking
822with_diet_libc
823with_cc
39fd3d4f
SJR
824with_ccopts
825with_ldopts
826with_root_prefix
827enable_maintainer_mode
5aa6c3f6 828enable_symlink_install
91d11da1 829enable_relative_symlinks
183c73b0 830enable_symlink_relative_symlinks
5aa6c3f6 831enable_symlink_build
c13351f6 832enable_verbose_makecmds
39fd3d4f
SJR
833enable_compression
834enable_htree
835enable_elf_shlibs
836enable_bsd_shlibs
837enable_profile
838enable_checker
839enable_jbd_debug
840enable_blkid_debug
841enable_testio_debug
842enable_libuuid
843enable_libblkid
7becb206 844enable_quota
39fd3d4f
SJR
845enable_debugfs
846enable_imager
847enable_resizer
8d9c50c5 848enable_defrag
39fd3d4f
SJR
849enable_fsck
850enable_e2initrd_helper
851enable_tls
852enable_uuidd
853enable_nls
854with_gnu_ld
855enable_rpath
856with_libiconv_prefix
857with_included_gettext
858with_libintl_prefix
55e00a25 859with_multiarch
39fd3d4f 860'
e1052144
TT
861 ac_precious_vars='build_alias
862host_alias
863target_alias
864CC
865CFLAGS
866LDFLAGS
29a5deed 867LIBS
e1052144 868CPPFLAGS
14b596d4
TT
869CPP
870PKG_CONFIG'
e1052144 871
50e1e10f
TT
872
873# Initialize some variables set by options.
b0cacab0
TT
874ac_init_help=
875ac_init_version=false
39fd3d4f
SJR
876ac_unrecognized_opts=
877ac_unrecognized_sep=
50e1e10f
TT
878# The variables have the same names as the options, with
879# dashes changed to underlines.
b0cacab0 880cache_file=/dev/null
50e1e10f 881exec_prefix=NONE
50e1e10f 882no_create=
50e1e10f
TT
883no_recursion=
884prefix=NONE
885program_prefix=NONE
886program_suffix=NONE
887program_transform_name=s,x,x,
888silent=
889site=
890srcdir=
50e1e10f
TT
891verbose=
892x_includes=NONE
893x_libraries=NONE
b0cacab0
TT
894
895# Installation directory options.
896# These are left unexpanded so users can "make install exec_prefix=/foo"
897# and all the variables that are supposed to be based on exec_prefix
898# by default will actually change.
899# Use braces instead of parens because sh, perl, etc. also accept them.
e1052144 900# (The list follows the same order as the GNU Coding Standards.)
21c84b71
TT
901bindir='${exec_prefix}/bin'
902sbindir='${exec_prefix}/sbin'
903libexecdir='${exec_prefix}/libexec'
e1052144
TT
904datarootdir='${prefix}/share'
905datadir='${datarootdir}'
21c84b71
TT
906sysconfdir='${prefix}/etc'
907sharedstatedir='${prefix}/com'
908localstatedir='${prefix}/var'
21c84b71
TT
909includedir='${prefix}/include'
910oldincludedir='/usr/include'
e1052144
TT
911docdir='${datarootdir}/doc/${PACKAGE}'
912infodir='${datarootdir}/info'
913htmldir='${docdir}'
914dvidir='${docdir}'
915pdfdir='${docdir}'
916psdir='${docdir}'
917libdir='${exec_prefix}/lib'
918localedir='${datarootdir}/locale'
919mandir='${datarootdir}/man'
50e1e10f 920
50e1e10f 921ac_prev=
e1052144 922ac_dashdash=
50e1e10f
TT
923for ac_option
924do
50e1e10f
TT
925 # If the previous option needs an argument, assign it.
926 if test -n "$ac_prev"; then
e1052144 927 eval $ac_prev=\$ac_option
50e1e10f
TT
928 ac_prev=
929 continue
930 fi
931
e1052144 932 case $ac_option in
91d11da1
TT
933 *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
934 *=) ac_optarg= ;;
935 *) ac_optarg=yes ;;
e1052144 936 esac
50e1e10f
TT
937
938 # Accept the important Cygnus configure options, so we can diagnose typos.
939
e1052144
TT
940 case $ac_dashdash$ac_option in
941 --)
942 ac_dashdash=yes ;;
50e1e10f 943
21c84b71
TT
944 -bindir | --bindir | --bindi | --bind | --bin | --bi)
945 ac_prev=bindir ;;
946 -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
b0cacab0 947 bindir=$ac_optarg ;;
21c84b71
TT
948
949 -build | --build | --buil | --bui | --bu)
b0cacab0 950 ac_prev=build_alias ;;
21c84b71 951 -build=* | --build=* | --buil=* | --bui=* | --bu=*)
b0cacab0 952 build_alias=$ac_optarg ;;
50e1e10f
TT
953
954 -cache-file | --cache-file | --cache-fil | --cache-fi \
955 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
956 ac_prev=cache_file ;;
957 -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
958 | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
b0cacab0
TT
959 cache_file=$ac_optarg ;;
960
961 --config-cache | -C)
962 cache_file=config.cache ;;
50e1e10f 963
e1052144 964 -datadir | --datadir | --datadi | --datad)
21c84b71 965 ac_prev=datadir ;;
e1052144 966 -datadir=* | --datadir=* | --datadi=* | --datad=*)
b0cacab0 967 datadir=$ac_optarg ;;
21c84b71 968
e1052144
TT
969 -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
970 | --dataroo | --dataro | --datar)
971 ac_prev=datarootdir ;;
972 -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
973 | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
974 datarootdir=$ac_optarg ;;
975
50e1e10f 976 -disable-* | --disable-*)
39fd3d4f 977 ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
50e1e10f 978 # Reject names that are not valid shell variable names.
39fd3d4f 979 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
91d11da1 980 as_fn_error $? "invalid feature name: $ac_useropt"
39fd3d4f
SJR
981 ac_useropt_orig=$ac_useropt
982 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
983 case $ac_user_opts in
984 *"
985"enable_$ac_useropt"
986"*) ;;
987 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
988 ac_unrecognized_sep=', ';;
989 esac
990 eval enable_$ac_useropt=no ;;
e1052144
TT
991
992 -docdir | --docdir | --docdi | --doc | --do)
993 ac_prev=docdir ;;
994 -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
995 docdir=$ac_optarg ;;
996
997 -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
998 ac_prev=dvidir ;;
999 -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
1000 dvidir=$ac_optarg ;;
50e1e10f
TT
1001
1002 -enable-* | --enable-*)
39fd3d4f 1003 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
50e1e10f 1004 # Reject names that are not valid shell variable names.
39fd3d4f 1005 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
91d11da1 1006 as_fn_error $? "invalid feature name: $ac_useropt"
39fd3d4f
SJR
1007 ac_useropt_orig=$ac_useropt
1008 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1009 case $ac_user_opts in
1010 *"
1011"enable_$ac_useropt"
1012"*) ;;
1013 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
1014 ac_unrecognized_sep=', ';;
1015 esac
1016 eval enable_$ac_useropt=\$ac_optarg ;;
50e1e10f
TT
1017
1018 -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
1019 | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
1020 | --exec | --exe | --ex)
1021 ac_prev=exec_prefix ;;
1022 -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
1023 | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
1024 | --exec=* | --exe=* | --ex=*)
b0cacab0 1025 exec_prefix=$ac_optarg ;;
50e1e10f
TT
1026
1027 -gas | --gas | --ga | --g)
1028 # Obsolete; use --with-gas.
1029 with_gas=yes ;;
1030
b0cacab0
TT
1031 -help | --help | --hel | --he | -h)
1032 ac_init_help=long ;;
1033 -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
1034 ac_init_help=recursive ;;
1035 -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
1036 ac_init_help=short ;;
50e1e10f
TT
1037
1038 -host | --host | --hos | --ho)
b0cacab0 1039 ac_prev=host_alias ;;
50e1e10f 1040 -host=* | --host=* | --hos=* | --ho=*)
b0cacab0 1041 host_alias=$ac_optarg ;;
50e1e10f 1042
e1052144
TT
1043 -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
1044 ac_prev=htmldir ;;
1045 -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
1046 | --ht=*)
1047 htmldir=$ac_optarg ;;
1048
21c84b71
TT
1049 -includedir | --includedir | --includedi | --included | --include \
1050 | --includ | --inclu | --incl | --inc)
1051 ac_prev=includedir ;;
1052 -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
1053 | --includ=* | --inclu=* | --incl=* | --inc=*)
b0cacab0 1054 includedir=$ac_optarg ;;
21c84b71
TT
1055
1056 -infodir | --infodir | --infodi | --infod | --info | --inf)
1057 ac_prev=infodir ;;
1058 -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
b0cacab0 1059 infodir=$ac_optarg ;;
21c84b71
TT
1060
1061 -libdir | --libdir | --libdi | --libd)
1062 ac_prev=libdir ;;
1063 -libdir=* | --libdir=* | --libdi=* | --libd=*)
b0cacab0 1064 libdir=$ac_optarg ;;
21c84b71
TT
1065
1066 -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
1067 | --libexe | --libex | --libe)
1068 ac_prev=libexecdir ;;
1069 -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
1070 | --libexe=* | --libex=* | --libe=*)
b0cacab0 1071 libexecdir=$ac_optarg ;;
21c84b71 1072
e1052144
TT
1073 -localedir | --localedir | --localedi | --localed | --locale)
1074 ac_prev=localedir ;;
1075 -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
1076 localedir=$ac_optarg ;;
1077
21c84b71 1078 -localstatedir | --localstatedir | --localstatedi | --localstated \
e1052144 1079 | --localstate | --localstat | --localsta | --localst | --locals)
21c84b71
TT
1080 ac_prev=localstatedir ;;
1081 -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
e1052144 1082 | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
b0cacab0 1083 localstatedir=$ac_optarg ;;
21c84b71
TT
1084
1085 -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
1086 ac_prev=mandir ;;
1087 -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
b0cacab0 1088 mandir=$ac_optarg ;;
21c84b71 1089
50e1e10f
TT
1090 -nfp | --nfp | --nf)
1091 # Obsolete; use --without-fp.
1092 with_fp=no ;;
1093
1094 -no-create | --no-create | --no-creat | --no-crea | --no-cre \
b0cacab0 1095 | --no-cr | --no-c | -n)
50e1e10f
TT
1096 no_create=yes ;;
1097
1098 -no-recursion | --no-recursion | --no-recursio | --no-recursi \
1099 | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
1100 no_recursion=yes ;;
1101
21c84b71
TT
1102 -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
1103 | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
1104 | --oldin | --oldi | --old | --ol | --o)
1105 ac_prev=oldincludedir ;;
1106 -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
1107 | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
1108 | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
b0cacab0 1109 oldincludedir=$ac_optarg ;;
21c84b71 1110
50e1e10f
TT
1111 -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
1112 ac_prev=prefix ;;
1113 -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
b0cacab0 1114 prefix=$ac_optarg ;;
50e1e10f
TT
1115
1116 -program-prefix | --program-prefix | --program-prefi | --program-pref \
1117 | --program-pre | --program-pr | --program-p)
1118 ac_prev=program_prefix ;;
1119 -program-prefix=* | --program-prefix=* | --program-prefi=* \
1120 | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
b0cacab0 1121 program_prefix=$ac_optarg ;;
50e1e10f
TT
1122
1123 -program-suffix | --program-suffix | --program-suffi | --program-suff \
1124 | --program-suf | --program-su | --program-s)
1125 ac_prev=program_suffix ;;
1126 -program-suffix=* | --program-suffix=* | --program-suffi=* \
1127 | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
b0cacab0 1128 program_suffix=$ac_optarg ;;
50e1e10f
TT
1129
1130 -program-transform-name | --program-transform-name \
1131 | --program-transform-nam | --program-transform-na \
1132 | --program-transform-n | --program-transform- \
1133 | --program-transform | --program-transfor \
1134 | --program-transfo | --program-transf \
1135 | --program-trans | --program-tran \
1136 | --progr-tra | --program-tr | --program-t)
1137 ac_prev=program_transform_name ;;
1138 -program-transform-name=* | --program-transform-name=* \
1139 | --program-transform-nam=* | --program-transform-na=* \
1140 | --program-transform-n=* | --program-transform-=* \
1141 | --program-transform=* | --program-transfor=* \
1142 | --program-transfo=* | --program-transf=* \
1143 | --program-trans=* | --program-tran=* \
1144 | --progr-tra=* | --program-tr=* | --program-t=*)
b0cacab0 1145 program_transform_name=$ac_optarg ;;
50e1e10f 1146
e1052144
TT
1147 -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
1148 ac_prev=pdfdir ;;
1149 -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
1150 pdfdir=$ac_optarg ;;
1151
1152 -psdir | --psdir | --psdi | --psd | --ps)
1153 ac_prev=psdir ;;
1154 -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
1155 psdir=$ac_optarg ;;
1156
50e1e10f
TT
1157 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1158 | -silent | --silent | --silen | --sile | --sil)
1159 silent=yes ;;
1160
21c84b71
TT
1161 -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
1162 ac_prev=sbindir ;;
1163 -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
1164 | --sbi=* | --sb=*)
b0cacab0 1165 sbindir=$ac_optarg ;;
21c84b71
TT
1166
1167 -sharedstatedir | --sharedstatedir | --sharedstatedi \
1168 | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
1169 | --sharedst | --shareds | --shared | --share | --shar \
1170 | --sha | --sh)
1171 ac_prev=sharedstatedir ;;
1172 -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
1173 | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
1174 | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
1175 | --sha=* | --sh=*)
b0cacab0 1176 sharedstatedir=$ac_optarg ;;
21c84b71 1177
50e1e10f
TT
1178 -site | --site | --sit)
1179 ac_prev=site ;;
1180 -site=* | --site=* | --sit=*)
b0cacab0 1181 site=$ac_optarg ;;
50e1e10f
TT
1182
1183 -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
1184 ac_prev=srcdir ;;
1185 -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
b0cacab0 1186 srcdir=$ac_optarg ;;
50e1e10f 1187
21c84b71
TT
1188 -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
1189 | --syscon | --sysco | --sysc | --sys | --sy)
1190 ac_prev=sysconfdir ;;
1191 -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
1192 | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
b0cacab0 1193 sysconfdir=$ac_optarg ;;
21c84b71 1194
50e1e10f 1195 -target | --target | --targe | --targ | --tar | --ta | --t)
b0cacab0 1196 ac_prev=target_alias ;;
50e1e10f 1197 -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
b0cacab0 1198 target_alias=$ac_optarg ;;
50e1e10f
TT
1199
1200 -v | -verbose | --verbose | --verbos | --verbo | --verb)
1201 verbose=yes ;;
1202
b0cacab0
TT
1203 -version | --version | --versio | --versi | --vers | -V)
1204 ac_init_version=: ;;
50e1e10f
TT
1205
1206 -with-* | --with-*)
39fd3d4f 1207 ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
50e1e10f 1208 # Reject names that are not valid shell variable names.
39fd3d4f 1209 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
91d11da1 1210 as_fn_error $? "invalid package name: $ac_useropt"
39fd3d4f
SJR
1211 ac_useropt_orig=$ac_useropt
1212 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1213 case $ac_user_opts in
1214 *"
1215"with_$ac_useropt"
1216"*) ;;
1217 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
1218 ac_unrecognized_sep=', ';;
1219 esac
1220 eval with_$ac_useropt=\$ac_optarg ;;
50e1e10f
TT
1221
1222 -without-* | --without-*)
39fd3d4f 1223 ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
50e1e10f 1224 # Reject names that are not valid shell variable names.
39fd3d4f 1225 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
91d11da1 1226 as_fn_error $? "invalid package name: $ac_useropt"
39fd3d4f
SJR
1227 ac_useropt_orig=$ac_useropt
1228 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1229 case $ac_user_opts in
1230 *"
1231"with_$ac_useropt"
1232"*) ;;
1233 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
1234 ac_unrecognized_sep=', ';;
1235 esac
1236 eval with_$ac_useropt=no ;;
50e1e10f
TT
1237
1238 --x)
1239 # Obsolete; use --with-x.
1240 with_x=yes ;;
1241
1242 -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
1243 | --x-incl | --x-inc | --x-in | --x-i)
1244 ac_prev=x_includes ;;
1245 -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
1246 | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
b0cacab0 1247 x_includes=$ac_optarg ;;
50e1e10f
TT
1248
1249 -x-libraries | --x-libraries | --x-librarie | --x-librari \
1250 | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
1251 ac_prev=x_libraries ;;
1252 -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
1253 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
b0cacab0 1254 x_libraries=$ac_optarg ;;
50e1e10f 1255
91d11da1
TT
1256 -*) as_fn_error $? "unrecognized option: \`$ac_option'
1257Try \`$0 --help' for more information"
50e1e10f
TT
1258 ;;
1259
b0cacab0
TT
1260 *=*)
1261 ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
1262 # Reject names that are not valid shell variable names.
57aa50d4
TT
1263 case $ac_envvar in #(
1264 '' | [0-9]* | *[!_$as_cr_alnum]* )
91d11da1 1265 as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
57aa50d4 1266 esac
e1052144 1267 eval $ac_envvar=\$ac_optarg
b0cacab0
TT
1268 export $ac_envvar ;;
1269
21c84b71 1270 *)
b0cacab0 1271 # FIXME: should be removed in autoconf 3.0.
39fd3d4f 1272 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
b0cacab0 1273 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
39fd3d4f 1274 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
91d11da1 1275 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
50e1e10f
TT
1276 ;;
1277
1278 esac
1279done
1280
1281if test -n "$ac_prev"; then
b0cacab0 1282 ac_option=--`echo $ac_prev | sed 's/_/-/g'`
91d11da1 1283 as_fn_error $? "missing argument to $ac_option"
50e1e10f 1284fi
50e1e10f 1285
39fd3d4f
SJR
1286if test -n "$ac_unrecognized_opts"; then
1287 case $enable_option_checking in
1288 no) ;;
91d11da1 1289 fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
39fd3d4f
SJR
1290 *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
1291 esac
1292fi
1293
1294# Check all directory arguments for consistency.
e1052144
TT
1295for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
1296 datadir sysconfdir sharedstatedir localstatedir includedir \
1297 oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
1298 libdir localedir mandir
50e1e10f 1299do
e1052144 1300 eval ac_val=\$$ac_var
39fd3d4f
SJR
1301 # Remove trailing slashes.
1302 case $ac_val in
1303 */ )
1304 ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
1305 eval $ac_var=\$ac_val;;
1306 esac
1307 # Be sure to have absolute directory names.
b0cacab0 1308 case $ac_val in
e1052144
TT
1309 [\\/$]* | ?:[\\/]* ) continue;;
1310 NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
50e1e10f 1311 esac
91d11da1 1312 as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
50e1e10f
TT
1313done
1314
b0cacab0
TT
1315# There might be people who depend on the old broken behavior: `$host'
1316# used to hold the argument of --host etc.
1317# FIXME: To remove some day.
1318build=$build_alias
1319host=$host_alias
1320target=$target_alias
1321
1322# FIXME: To remove some day.
1323if test "x$host_alias" != x; then
1324 if test "x$build_alias" = x; then
1325 cross_compiling=maybe
b0cacab0
TT
1326 elif test "x$build_alias" != "x$host_alias"; then
1327 cross_compiling=yes
1328 fi
1329fi
50e1e10f 1330
b0cacab0
TT
1331ac_tool_prefix=
1332test -n "$host_alias" && ac_tool_prefix=$host_alias-
1333
1334test "$silent" = yes && exec 6>/dev/null
50e1e10f 1335
50e1e10f 1336
e1052144
TT
1337ac_pwd=`pwd` && test -n "$ac_pwd" &&
1338ac_ls_di=`ls -di .` &&
1339ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
91d11da1 1340 as_fn_error $? "working directory cannot be determined"
e1052144 1341test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
91d11da1 1342 as_fn_error $? "pwd does not report name of working directory"
e1052144
TT
1343
1344
50e1e10f
TT
1345# Find the source files, if location was not specified.
1346if test -z "$srcdir"; then
1347 ac_srcdir_defaulted=yes
e1052144 1348 # Try the directory containing this script, then the parent directory.
39fd3d4f
SJR
1349 ac_confdir=`$as_dirname -- "$as_myself" ||
1350$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1351 X"$as_myself" : 'X\(//\)[^/]' \| \
1352 X"$as_myself" : 'X\(//\)$' \| \
1353 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
1354$as_echo X"$as_myself" |
e1052144
TT
1355 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1356 s//\1/
1357 q
1358 }
1359 /^X\(\/\/\)[^/].*/{
1360 s//\1/
1361 q
1362 }
1363 /^X\(\/\/\)$/{
1364 s//\1/
1365 q
1366 }
1367 /^X\(\/\).*/{
1368 s//\1/
1369 q
1370 }
1371 s/.*/./; q'`
50e1e10f 1372 srcdir=$ac_confdir
e1052144 1373 if test ! -r "$srcdir/$ac_unique_file"; then
50e1e10f
TT
1374 srcdir=..
1375 fi
1376else
1377 ac_srcdir_defaulted=no
1378fi
e1052144
TT
1379if test ! -r "$srcdir/$ac_unique_file"; then
1380 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
91d11da1 1381 as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
50e1e10f 1382fi
e1052144
TT
1383ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
1384ac_abs_confdir=`(
91d11da1 1385 cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
e1052144
TT
1386 pwd)`
1387# When building in place, set srcdir=.
1388if test "$ac_abs_confdir" = "$ac_pwd"; then
1389 srcdir=.
1390fi
1391# Remove unnecessary trailing slashes from srcdir.
1392# Double slashes in file names in object file debugging info
1393# mess up M-x gdb in Emacs.
1394case $srcdir in
1395*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
1396esac
1397for ac_var in $ac_precious_vars; do
1398 eval ac_env_${ac_var}_set=\${${ac_var}+set}
1399 eval ac_env_${ac_var}_value=\$${ac_var}
1400 eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
1401 eval ac_cv_env_${ac_var}_value=\$${ac_var}
1402done
b0cacab0
TT
1403
1404#
1405# Report the --help message.
1406#
1407if test "$ac_init_help" = "long"; then
1408 # Omit some internal or obsolete options to make the list less imposing.
1409 # This message is too long to be a string in the A/UX 3.1 sh.
1410 cat <<_ACEOF
1411\`configure' configures this package to adapt to many kinds of systems.
1412
1413Usage: $0 [OPTION]... [VAR=VALUE]...
1414
1415To assign environment variables (e.g., CC, CFLAGS...), specify them as
1416VAR=VALUE. See below for descriptions of some of the useful variables.
1417
1418Defaults for the options are specified in brackets.
1419
1420Configuration:
1421 -h, --help display this help and exit
1422 --help=short display options specific to this package
1423 --help=recursive display the short help of all the included packages
1424 -V, --version display version information and exit
91d11da1 1425 -q, --quiet, --silent do not print \`checking ...' messages
b0cacab0
TT
1426 --cache-file=FILE cache test results in FILE [disabled]
1427 -C, --config-cache alias for \`--cache-file=config.cache'
1428 -n, --no-create do not create output files
1429 --srcdir=DIR find the sources in DIR [configure dir or \`..']
1430
b0cacab0
TT
1431Installation directories:
1432 --prefix=PREFIX install architecture-independent files in PREFIX
39fd3d4f 1433 [$ac_default_prefix]
b0cacab0 1434 --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
39fd3d4f 1435 [PREFIX]
b0cacab0
TT
1436
1437By default, \`make install' will install all the files in
1438\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
1439an installation prefix other than \`$ac_default_prefix' using \`--prefix',
1440for instance \`--prefix=\$HOME'.
1441
1442For better control, use the options below.
1443
1444Fine tuning of the installation directories:
39fd3d4f
SJR
1445 --bindir=DIR user executables [EPREFIX/bin]
1446 --sbindir=DIR system admin executables [EPREFIX/sbin]
1447 --libexecdir=DIR program executables [EPREFIX/libexec]
1448 --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
1449 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
1450 --localstatedir=DIR modifiable single-machine data [PREFIX/var]
1451 --libdir=DIR object code libraries [EPREFIX/lib]
1452 --includedir=DIR C header files [PREFIX/include]
1453 --oldincludedir=DIR C header files for non-gcc [/usr/include]
1454 --datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
1455 --datadir=DIR read-only architecture-independent data [DATAROOTDIR]
1456 --infodir=DIR info documentation [DATAROOTDIR/info]
1457 --localedir=DIR locale-dependent data [DATAROOTDIR/locale]
1458 --mandir=DIR man documentation [DATAROOTDIR/man]
1459 --docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE]
1460 --htmldir=DIR html documentation [DOCDIR]
1461 --dvidir=DIR dvi documentation [DOCDIR]
1462 --pdfdir=DIR pdf documentation [DOCDIR]
1463 --psdir=DIR ps documentation [DOCDIR]
b0cacab0
TT
1464_ACEOF
1465
1466 cat <<\_ACEOF
1467
1468System types:
1469 --build=BUILD configure for building on BUILD [guessed]
1470 --host=HOST cross-compile to build programs to run on HOST [BUILD]
1471_ACEOF
1472fi
1473
1474if test -n "$ac_init_help"; then
1475
1476 cat <<\_ACEOF
1477
1478Optional Features:
39fd3d4f 1479 --disable-option-checking ignore unrecognized --enable/--with options
b0cacab0
TT
1480 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
1481 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
98919bdb 1482 --enable-maintainer-mode enable makefile rules useful for maintainers
5aa6c3f6 1483 --enable-symlink-install use symlinks when installing instead of hard links
183c73b0 1484 --enable-relative-symlinks use relative symlinks when installing
91d11da1 1485
5aa6c3f6
TT
1486 --enable-symlink-build use symlinks while building instead of hard links
1487 --enable-verbose-makecmds enable verbose make command output
b0cacab0
TT
1488 --enable-compression enable EXPERIMENTAL compression support
1489 --enable-htree enable EXPERIMENTAL htree directory support
b0cacab0
TT
1490 --enable-elf-shlibs select ELF shared libraries
1491 --enable-bsd-shlibs select BSD shared libraries
1492 --enable-profile build profiling libraries
1493 --enable-checker build checker libraries
1494 --enable-jbd-debug enable journal debugging
1495 --enable-blkid-debug enable blkid debugging
af773654 1496 --disable-testio-debug disable the use of the test I/O manager for debugging
39fd3d4f 1497 --disable-libuuid do not build private uuid library
14b596d4 1498 --disable-libblkid do not build private blkid library
7b8912ea 1499 --enable-quota enable quota support
b0cacab0
TT
1500 --disable-debugfs disable support of debugfs program
1501 --disable-imager disable support of e2image program
1502 --disable-resizer disable support of e2resize program
8d9c50c5 1503 --disable-defrag disable support of e4defrag program
b0cacab0
TT
1504 --enable-fsck build fsck wrapper program
1505 --enable-e2initrd-helper build e2initrd-helper program
3249394d 1506 --disable-tls disable use of thread local support
5610f992 1507 --disable-uuidd disable building the uuid daemon
b0cacab0
TT
1508 --disable-nls do not use Native Language Support
1509 --disable-rpath do not hardcode runtime library paths
1510
1511Optional Packages:
1512 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
1513 --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
3249394d 1514 --with-diet-libc use diet libc
0b5b9f90
TT
1515 --with-cc no longer supported, use CC= instead
1516 --with-ccopts no longer supported, use CFLAGS= instead
1517 --with-ldopts no longer supported, use LDFLAGS= instead
b0cacab0
TT
1518 --with-root-prefix=PREFIX override prefix variable for files to be placed in the root
1519 --with-gnu-ld assume the C compiler uses GNU ld default=no
1520 --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib
1521 --without-libiconv-prefix don't search for libiconv in includedir and libdir
1522 --with-included-gettext use the GNU gettext library included here
1523 --with-libintl-prefix[=DIR] search for libintl in DIR/include and DIR/lib
1524 --without-libintl-prefix don't search for libintl in includedir and libdir
55e00a25 1525 --with-multiarch=ARCH specify the multiarch triplet
b0cacab0
TT
1526
1527Some influential environment variables:
1528 CC C compiler command
1529 CFLAGS C compiler flags
1530 LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
1531 nonstandard directory <lib dir>
29a5deed 1532 LIBS libraries to pass to the linker, e.g. -l<library>
61ef2474 1533 CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
e1052144 1534 you have headers in a nonstandard directory <include dir>
b0cacab0 1535 CPP C preprocessor
14b596d4 1536 PKG_CONFIG path to pkg-config utility
b0cacab0
TT
1537
1538Use these variables to override the choices made by `configure' or to help
1539it to find libraries and programs with nonstandard names/locations.
1540
57aa50d4 1541Report bugs to the package provider.
b0cacab0 1542_ACEOF
e1052144 1543ac_status=$?
b0cacab0
TT
1544fi
1545
1546if test "$ac_init_help" = "recursive"; then
1547 # If there are subdirs, report their specific --help.
b0cacab0 1548 for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
39fd3d4f
SJR
1549 test -d "$ac_dir" ||
1550 { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
1551 continue
b0cacab0
TT
1552 ac_builddir=.
1553
e1052144
TT
1554case "$ac_dir" in
1555.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1556*)
39fd3d4f 1557 ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
e1052144 1558 # A ".." for each directory in $ac_dir_suffix.
39fd3d4f 1559 ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
e1052144
TT
1560 case $ac_top_builddir_sub in
1561 "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1562 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
1563 esac ;;
1564esac
1565ac_abs_top_builddir=$ac_pwd
1566ac_abs_builddir=$ac_pwd$ac_dir_suffix
1567# for backward compatibility:
1568ac_top_builddir=$ac_top_build_prefix
b0cacab0
TT
1569
1570case $srcdir in
e1052144 1571 .) # We are building in place.
b0cacab0 1572 ac_srcdir=.
e1052144
TT
1573 ac_top_srcdir=$ac_top_builddir_sub
1574 ac_abs_top_srcdir=$ac_pwd ;;
1575 [\\/]* | ?:[\\/]* ) # Absolute name.
b0cacab0 1576 ac_srcdir=$srcdir$ac_dir_suffix;
e1052144
TT
1577 ac_top_srcdir=$srcdir
1578 ac_abs_top_srcdir=$srcdir ;;
1579 *) # Relative name.
1580 ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
1581 ac_top_srcdir=$ac_top_build_prefix$srcdir
1582 ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
b0cacab0 1583esac
e1052144
TT
1584ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1585
1586 cd "$ac_dir" || { ac_status=$?; continue; }
1587 # Check for guested configure.
1588 if test -f "$ac_srcdir/configure.gnu"; then
1589 echo &&
1590 $SHELL "$ac_srcdir/configure.gnu" --help=recursive
1591 elif test -f "$ac_srcdir/configure"; then
1592 echo &&
1593 $SHELL "$ac_srcdir/configure" --help=recursive
b0cacab0 1594 else
39fd3d4f 1595 $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
e1052144
TT
1596 fi || ac_status=$?
1597 cd "$ac_pwd" || { ac_status=$?; break; }
b0cacab0
TT
1598 done
1599fi
1600
e1052144 1601test -n "$ac_init_help" && exit $ac_status
b0cacab0
TT
1602if $ac_init_version; then
1603 cat <<\_ACEOF
e1052144 1604configure
91d11da1 1605generated by GNU Autoconf 2.69
b0cacab0 1606
91d11da1 1607Copyright (C) 2012 Free Software Foundation, Inc.
b0cacab0
TT
1608This configure script is free software; the Free Software Foundation
1609gives unlimited permission to copy, distribute and modify it.
1610_ACEOF
e1052144 1611 exit
b0cacab0 1612fi
b0cacab0 1613
57aa50d4
TT
1614## ------------------------ ##
1615## Autoconf initialization. ##
1616## ------------------------ ##
b0cacab0 1617
57aa50d4
TT
1618# ac_fn_c_try_compile LINENO
1619# --------------------------
1620# Try to compile conftest.$ac_ext, and return whether this succeeded.
1621ac_fn_c_try_compile ()
1622{
1623 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1624 rm -f conftest.$ac_objext
1625 if { { ac_try="$ac_compile"
1626case "(($ac_try" in
1627 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
1628 *) ac_try_echo=$ac_try;;
1629esac
1630eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
1631$as_echo "$ac_try_echo"; } >&5
1632 (eval "$ac_compile") 2>conftest.err
1633 ac_status=$?
1634 if test -s conftest.err; then
1635 grep -v '^ *+' conftest.err >conftest.er1
1636 cat conftest.er1 >&5
1637 mv -f conftest.er1 conftest.err
1638 fi
1639 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1640 test $ac_status = 0; } && {
1641 test -z "$ac_c_werror_flag" ||
1642 test ! -s conftest.err
1643 } && test -s conftest.$ac_objext; then :
1644 ac_retval=0
1645else
1646 $as_echo "$as_me: failed program was:" >&5
1647sed 's/^/| /' conftest.$ac_ext >&5
b0cacab0 1648
57aa50d4
TT
1649 ac_retval=1
1650fi
91d11da1 1651 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
61ef2474 1652 as_fn_set_status $ac_retval
57aa50d4
TT
1653
1654} # ac_fn_c_try_compile
1655
1656# ac_fn_c_try_link LINENO
1657# -----------------------
1658# Try to link conftest.$ac_ext, and return whether this succeeded.
1659ac_fn_c_try_link ()
b0cacab0 1660{
57aa50d4
TT
1661 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1662 rm -f conftest.$ac_objext conftest$ac_exeext
1663 if { { ac_try="$ac_link"
1664case "(($ac_try" in
1665 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
1666 *) ac_try_echo=$ac_try;;
1667esac
1668eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
1669$as_echo "$ac_try_echo"; } >&5
1670 (eval "$ac_link") 2>conftest.err
1671 ac_status=$?
1672 if test -s conftest.err; then
1673 grep -v '^ *+' conftest.err >conftest.er1
1674 cat conftest.er1 >&5
1675 mv -f conftest.er1 conftest.err
1676 fi
1677 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1678 test $ac_status = 0; } && {
1679 test -z "$ac_c_werror_flag" ||
1680 test ! -s conftest.err
1681 } && test -s conftest$ac_exeext && {
1682 test "$cross_compiling" = yes ||
91d11da1 1683 test -x conftest$ac_exeext
57aa50d4
TT
1684 }; then :
1685 ac_retval=0
1686else
1687 $as_echo "$as_me: failed program was:" >&5
1688sed 's/^/| /' conftest.$ac_ext >&5
b0cacab0 1689
57aa50d4
TT
1690 ac_retval=1
1691fi
1692 # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information
1693 # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would
1694 # interfere with the next link command; also delete a directory that is
1695 # left behind by Apple's compiler. We do this before executing the actions.
1696 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
91d11da1 1697 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
61ef2474 1698 as_fn_set_status $ac_retval
b0cacab0 1699
57aa50d4 1700} # ac_fn_c_try_link
b0cacab0 1701
57aa50d4
TT
1702# ac_fn_c_try_cpp LINENO
1703# ----------------------
1704# Try to preprocess conftest.$ac_ext, and return whether this succeeded.
1705ac_fn_c_try_cpp ()
1706{
1707 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1708 if { { ac_try="$ac_cpp conftest.$ac_ext"
1709case "(($ac_try" in
1710 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
1711 *) ac_try_echo=$ac_try;;
1712esac
1713eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
1714$as_echo "$ac_try_echo"; } >&5
1715 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err
1716 ac_status=$?
1717 if test -s conftest.err; then
1718 grep -v '^ *+' conftest.err >conftest.er1
1719 cat conftest.er1 >&5
1720 mv -f conftest.er1 conftest.err
1721 fi
1722 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
91d11da1 1723 test $ac_status = 0; } > conftest.i && {
57aa50d4
TT
1724 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
1725 test ! -s conftest.err
1726 }; then :
1727 ac_retval=0
1728else
1729 $as_echo "$as_me: failed program was:" >&5
1730sed 's/^/| /' conftest.$ac_ext >&5
b0cacab0 1731
57aa50d4
TT
1732 ac_retval=1
1733fi
91d11da1 1734 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
61ef2474 1735 as_fn_set_status $ac_retval
b0cacab0 1736
57aa50d4 1737} # ac_fn_c_try_cpp
b0cacab0 1738
57aa50d4
TT
1739# ac_fn_c_try_run LINENO
1740# ----------------------
1741# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes
1742# that executables *can* be run.
1743ac_fn_c_try_run ()
1744{
1745 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1746 if { { ac_try="$ac_link"
1747case "(($ac_try" in
1748 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
1749 *) ac_try_echo=$ac_try;;
1750esac
1751eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
1752$as_echo "$ac_try_echo"; } >&5
1753 (eval "$ac_link") 2>&5
1754 ac_status=$?
1755 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1756 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext'
1757 { { case "(($ac_try" in
1758 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
1759 *) ac_try_echo=$ac_try;;
1760esac
1761eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
1762$as_echo "$ac_try_echo"; } >&5
1763 (eval "$ac_try") 2>&5
1764 ac_status=$?
1765 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1766 test $ac_status = 0; }; }; then :
1767 ac_retval=0
1768else
1769 $as_echo "$as_me: program exited with status $ac_status" >&5
1770 $as_echo "$as_me: failed program was:" >&5
1771sed 's/^/| /' conftest.$ac_ext >&5
b0cacab0 1772
57aa50d4
TT
1773 ac_retval=$ac_status
1774fi
1775 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
91d11da1 1776 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
61ef2474 1777 as_fn_set_status $ac_retval
b0cacab0 1778
57aa50d4 1779} # ac_fn_c_try_run
b0cacab0 1780
57aa50d4
TT
1781# ac_fn_c_check_type LINENO TYPE VAR INCLUDES
1782# -------------------------------------------
1783# Tests whether TYPE exists after having included INCLUDES, setting cache
1784# variable VAR accordingly.
1785ac_fn_c_check_type ()
1786{
1787 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1788 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1789$as_echo_n "checking for $2... " >&6; }
91d11da1 1790if eval \${$3+:} false; then :
57aa50d4 1791 $as_echo_n "(cached) " >&6
e1052144 1792else
57aa50d4
TT
1793 eval "$3=no"
1794 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1795/* end confdefs.h. */
1796$4
1797int
1798main ()
1799{
1800if (sizeof ($2))
1801 return 0;
1802 ;
1803 return 0;
1804}
1805_ACEOF
1806if ac_fn_c_try_compile "$LINENO"; then :
1807 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1808/* end confdefs.h. */
1809$4
1810int
1811main ()
1812{
1813if (sizeof (($2)))
1814 return 0;
1815 ;
1816 return 0;
1817}
1818_ACEOF
1819if ac_fn_c_try_compile "$LINENO"; then :
50e1e10f 1820
50e1e10f 1821else
57aa50d4 1822 eval "$3=yes"
b0cacab0 1823fi
57aa50d4 1824rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
50e1e10f 1825fi
57aa50d4
TT
1826rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
1827fi
1828eval ac_res=\$$3
1829 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1830$as_echo "$ac_res" >&6; }
91d11da1 1831 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
50e1e10f 1832
57aa50d4 1833} # ac_fn_c_check_type
b0cacab0 1834
d1154eb4
TT
1835# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES
1836# -------------------------------------------------------
1837# Tests whether HEADER exists and can be compiled using the include files in
1838# INCLUDES, setting the cache variable VAR accordingly.
1839ac_fn_c_check_header_compile ()
1840{
1841 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1842 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1843$as_echo_n "checking for $2... " >&6; }
91d11da1 1844if eval \${$3+:} false; then :
d1154eb4
TT
1845 $as_echo_n "(cached) " >&6
1846else
1847 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1848/* end confdefs.h. */
1849$4
1850#include <$2>
1851_ACEOF
1852if ac_fn_c_try_compile "$LINENO"; then :
1853 eval "$3=yes"
1854else
1855 eval "$3=no"
1856fi
1857rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
1858fi
1859eval ac_res=\$$3
1860 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1861$as_echo "$ac_res" >&6; }
91d11da1 1862 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
d1154eb4
TT
1863
1864} # ac_fn_c_check_header_compile
1865
57aa50d4
TT
1866# ac_fn_c_check_func LINENO FUNC VAR
1867# ----------------------------------
1868# Tests whether FUNC exists, setting the cache variable VAR accordingly
1869ac_fn_c_check_func ()
1870{
1871 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1872 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1873$as_echo_n "checking for $2... " >&6; }
91d11da1 1874if eval \${$3+:} false; then :
57aa50d4
TT
1875 $as_echo_n "(cached) " >&6
1876else
1877 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1878/* end confdefs.h. */
1879/* Define $2 to an innocuous variant, in case <limits.h> declares $2.
1880 For example, HP-UX 11i <limits.h> declares gettimeofday. */
1881#define $2 innocuous_$2
b0cacab0 1882
57aa50d4
TT
1883/* System header to define __stub macros and hopefully few prototypes,
1884 which can conflict with char $2 (); below.
1885 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
1886 <limits.h> exists even on freestanding compilers. */
b0cacab0 1887
57aa50d4
TT
1888#ifdef __STDC__
1889# include <limits.h>
1890#else
1891# include <assert.h>
1892#endif
a04eba3f 1893
57aa50d4 1894#undef $2
07a0db15 1895
57aa50d4
TT
1896/* Override any GCC internal prototype to avoid an error.
1897 Use char because int might match the return type of a GCC
1898 builtin and then its argument prototype would still apply. */
1899#ifdef __cplusplus
1900extern "C"
1901#endif
1902char $2 ();
1903/* The GNU C library defines this for functions which it implements
1904 to always fail with ENOSYS. Some functions are actually named
1905 something starting with __ and the normal name is an alias. */
1906#if defined __stub_$2 || defined __stub___$2
1907choke me
1908#endif
74becf3c 1909
57aa50d4
TT
1910int
1911main ()
1912{
1913return $2 ();
1914 ;
1915 return 0;
1916}
1917_ACEOF
1918if ac_fn_c_try_link "$LINENO"; then :
1919 eval "$3=yes"
1920else
1921 eval "$3=no"
1922fi
1923rm -f core conftest.err conftest.$ac_objext \
1924 conftest$ac_exeext conftest.$ac_ext
1925fi
1926eval ac_res=\$$3
1927 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1928$as_echo "$ac_res" >&6; }
91d11da1 1929 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
93636bde 1930
57aa50d4 1931} # ac_fn_c_check_func
93636bde 1932
d1154eb4
TT
1933# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES
1934# -------------------------------------------------------
1935# Tests whether HEADER exists, giving a warning if it cannot be compiled using
1936# the include files in INCLUDES and setting the cache variable VAR
1937# accordingly.
1938ac_fn_c_check_header_mongrel ()
1939{
1940 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
91d11da1 1941 if eval \${$3+:} false; then :
d1154eb4
TT
1942 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1943$as_echo_n "checking for $2... " >&6; }
91d11da1 1944if eval \${$3+:} false; then :
d1154eb4
TT
1945 $as_echo_n "(cached) " >&6
1946fi
1947eval ac_res=\$$3
1948 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1949$as_echo "$ac_res" >&6; }
1950else
1951 # Is the header compilable?
1952{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5
1953$as_echo_n "checking $2 usability... " >&6; }
1954cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1955/* end confdefs.h. */
1956$4
1957#include <$2>
1958_ACEOF
1959if ac_fn_c_try_compile "$LINENO"; then :
1960 ac_header_compiler=yes
1961else
1962 ac_header_compiler=no
1963fi
1964rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
1965{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5
1966$as_echo "$ac_header_compiler" >&6; }
1967
1968# Is the header present?
1969{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5
1970$as_echo_n "checking $2 presence... " >&6; }
1971cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1972/* end confdefs.h. */
1973#include <$2>
1974_ACEOF
1975if ac_fn_c_try_cpp "$LINENO"; then :
1976 ac_header_preproc=yes
1977else
1978 ac_header_preproc=no
1979fi
91d11da1 1980rm -f conftest.err conftest.i conftest.$ac_ext
d1154eb4
TT
1981{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
1982$as_echo "$ac_header_preproc" >&6; }
1983
1984# So? What about this header?
1985case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #((
1986 yes:no: )
1987 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5
1988$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;}
1989 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
1990$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
1991 ;;
1992 no:yes:* )
1993 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5
1994$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;}
1995 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5
1996$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;}
1997 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5
1998$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
1999 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5
2000$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;}
2001 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
2002$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
2003 ;;
2004esac
2005 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
2006$as_echo_n "checking for $2... " >&6; }
91d11da1 2007if eval \${$3+:} false; then :
d1154eb4
TT
2008 $as_echo_n "(cached) " >&6
2009else
2010 eval "$3=\$ac_header_compiler"
2011fi
2012eval ac_res=\$$3
2013 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
2014$as_echo "$ac_res" >&6; }
2015fi
91d11da1 2016 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
d1154eb4
TT
2017
2018} # ac_fn_c_check_header_mongrel
2019
57aa50d4
TT
2020# ac_fn_c_compute_int LINENO EXPR VAR INCLUDES
2021# --------------------------------------------
2022# Tries to find the compile-time value of EXPR in a program that includes
2023# INCLUDES, setting VAR accordingly. Returns whether the value could be
2024# computed
2025ac_fn_c_compute_int ()
2026{
2027 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2028 if test "$cross_compiling" = yes; then
2029 # Depending upon the size, compute the lo and hi bounds.
2030cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2031/* end confdefs.h. */
2032$4
2033int
2034main ()
2035{
2036static int test_array [1 - 2 * !(($2) >= 0)];
91d11da1
TT
2037test_array [0] = 0;
2038return test_array [0];
93636bde 2039
57aa50d4
TT
2040 ;
2041 return 0;
2042}
2043_ACEOF
2044if ac_fn_c_try_compile "$LINENO"; then :
2045 ac_lo=0 ac_mid=0
2046 while :; do
2047 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2048/* end confdefs.h. */
2049$4
2050int
2051main ()
2052{
2053static int test_array [1 - 2 * !(($2) <= $ac_mid)];
91d11da1
TT
2054test_array [0] = 0;
2055return test_array [0];
93636bde 2056
57aa50d4
TT
2057 ;
2058 return 0;
2059}
2060_ACEOF
2061if ac_fn_c_try_compile "$LINENO"; then :
2062 ac_hi=$ac_mid; break
2063else
2064 as_fn_arith $ac_mid + 1 && ac_lo=$as_val
2065 if test $ac_lo -le $ac_mid; then
2066 ac_lo= ac_hi=
2067 break
2068 fi
2069 as_fn_arith 2 '*' $ac_mid + 1 && ac_mid=$as_val
b0cacab0 2070fi
57aa50d4
TT
2071rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2072 done
2073else
2074 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2075/* end confdefs.h. */
2076$4
2077int
2078main ()
2079{
2080static int test_array [1 - 2 * !(($2) < 0)];
91d11da1
TT
2081test_array [0] = 0;
2082return test_array [0];
e1052144 2083
57aa50d4
TT
2084 ;
2085 return 0;
2086}
2087_ACEOF
2088if ac_fn_c_try_compile "$LINENO"; then :
2089 ac_hi=-1 ac_mid=-1
2090 while :; do
2091 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2092/* end confdefs.h. */
2093$4
2094int
2095main ()
2096{
2097static int test_array [1 - 2 * !(($2) >= $ac_mid)];
91d11da1
TT
2098test_array [0] = 0;
2099return test_array [0];
93636bde 2100
57aa50d4
TT
2101 ;
2102 return 0;
2103}
2104_ACEOF
2105if ac_fn_c_try_compile "$LINENO"; then :
2106 ac_lo=$ac_mid; break
93636bde 2107else
57aa50d4
TT
2108 as_fn_arith '(' $ac_mid ')' - 1 && ac_hi=$as_val
2109 if test $ac_mid -le $ac_hi; then
2110 ac_lo= ac_hi=
2111 break
2112 fi
2113 as_fn_arith 2 '*' $ac_mid && ac_mid=$as_val
93636bde 2114fi
57aa50d4
TT
2115rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2116 done
2117else
2118 ac_lo= ac_hi=
2119fi
2120rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2121fi
2122rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2123# Binary search between lo and hi bounds.
2124while test "x$ac_lo" != "x$ac_hi"; do
2125 as_fn_arith '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo && ac_mid=$as_val
2126 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2127/* end confdefs.h. */
2128$4
2129int
2130main ()
2131{
2132static int test_array [1 - 2 * !(($2) <= $ac_mid)];
91d11da1
TT
2133test_array [0] = 0;
2134return test_array [0];
93636bde 2135
57aa50d4
TT
2136 ;
2137 return 0;
2138}
2139_ACEOF
2140if ac_fn_c_try_compile "$LINENO"; then :
2141 ac_hi=$ac_mid
2142else
2143 as_fn_arith '(' $ac_mid ')' + 1 && ac_lo=$as_val
2144fi
2145rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2146done
2147case $ac_lo in #((
2148?*) eval "$3=\$ac_lo"; ac_retval=0 ;;
2149'') ac_retval=1 ;;
927566a3 2150esac
57aa50d4
TT
2151 else
2152 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2153/* end confdefs.h. */
2154$4
2155static long int longval () { return $2; }
2156static unsigned long int ulongval () { return $2; }
2157#include <stdio.h>
2158#include <stdlib.h>
2159int
2160main ()
2161{
927566a3 2162
57aa50d4
TT
2163 FILE *f = fopen ("conftest.val", "w");
2164 if (! f)
2165 return 1;
2166 if (($2) < 0)
2167 {
2168 long int i = longval ();
2169 if (i != ($2))
2170 return 1;
2171 fprintf (f, "%ld", i);
2172 }
2173 else
2174 {
2175 unsigned long int i = ulongval ();
2176 if (i != ($2))
2177 return 1;
2178 fprintf (f, "%lu", i);
2179 }
2180 /* Do not output a trailing newline, as this causes \r\n confusion
2181 on some platforms. */
2182 return ferror (f) || fclose (f) != 0;
93636bde 2183
57aa50d4
TT
2184 ;
2185 return 0;
2186}
2187_ACEOF
2188if ac_fn_c_try_run "$LINENO"; then :
2189 echo >>conftest.val; read $3 <conftest.val; ac_retval=0
2190else
2191 ac_retval=1
2192fi
2193rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
2194 conftest.$ac_objext conftest.beam conftest.$ac_ext
2195rm -f conftest.val
93636bde 2196
57aa50d4 2197 fi
91d11da1 2198 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
61ef2474 2199 as_fn_set_status $ac_retval
927566a3 2200
57aa50d4 2201} # ac_fn_c_compute_int
b0cacab0 2202
57aa50d4
TT
2203# ac_fn_c_check_member LINENO AGGR MEMBER VAR INCLUDES
2204# ----------------------------------------------------
2205# Tries to find if the field MEMBER exists in type AGGR, after including
2206# INCLUDES, setting cache variable VAR accordingly.
2207ac_fn_c_check_member ()
2208{
2209 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2210 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5
2211$as_echo_n "checking for $2.$3... " >&6; }
91d11da1 2212if eval \${$4+:} false; then :
39fd3d4f 2213 $as_echo_n "(cached) " >&6
b0cacab0 2214else
57aa50d4
TT
2215 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2216/* end confdefs.h. */
2217$5
2218int
2219main ()
2220{
2221static $2 ac_aggr;
2222if (ac_aggr.$3)
2223return 0;
2224 ;
2225 return 0;
2226}
2227_ACEOF
2228if ac_fn_c_try_compile "$LINENO"; then :
2229 eval "$4=yes"
2230else
2231 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2232/* end confdefs.h. */
2233$5
2234int
2235main ()
2236{
2237static $2 ac_aggr;
2238if (sizeof ac_aggr.$3)
2239return 0;
2240 ;
2241 return 0;
2242}
2243_ACEOF
2244if ac_fn_c_try_compile "$LINENO"; then :
2245 eval "$4=yes"
2246else
2247 eval "$4=no"
b0cacab0 2248fi
57aa50d4
TT
2249rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2250fi
2251rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2252fi
2253eval ac_res=\$$4
2254 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
2255$as_echo "$ac_res" >&6; }
91d11da1 2256 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
e1052144 2257
57aa50d4 2258} # ac_fn_c_check_member
e1052144 2259
91d11da1
TT
2260# ac_fn_c_check_decl LINENO SYMBOL VAR INCLUDES
2261# ---------------------------------------------
2262# Tests whether SYMBOL is declared in INCLUDES, setting cache variable VAR
2263# accordingly.
57aa50d4
TT
2264ac_fn_c_check_decl ()
2265{
2266 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
91d11da1
TT
2267 as_decl_name=`echo $2|sed 's/ *(.*//'`
2268 as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'`
2269 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5
2270$as_echo_n "checking whether $as_decl_name is declared... " >&6; }
2271if eval \${$3+:} false; then :
39fd3d4f 2272 $as_echo_n "(cached) " >&6
b0cacab0 2273else
57aa50d4
TT
2274 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2275/* end confdefs.h. */
2276$4
2277int
2278main ()
2279{
91d11da1
TT
2280#ifndef $as_decl_name
2281#ifdef __cplusplus
2282 (void) $as_decl_use;
2283#else
2284 (void) $as_decl_name;
2285#endif
57aa50d4
TT
2286#endif
2287
2288 ;
2289 return 0;
2290}
2291_ACEOF
2292if ac_fn_c_try_compile "$LINENO"; then :
2293 eval "$3=yes"
e1052144 2294else
57aa50d4 2295 eval "$3=no"
e1052144 2296fi
57aa50d4 2297rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
b0cacab0 2298fi
57aa50d4
TT
2299eval ac_res=\$$3
2300 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
2301$as_echo "$ac_res" >&6; }
91d11da1 2302 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
93636bde 2303
57aa50d4
TT
2304} # ac_fn_c_check_decl
2305cat >config.log <<_ACEOF
2306This file contains any messages produced by compilers while
2307running configure, to aid debugging if configure makes a mistake.
93636bde 2308
57aa50d4 2309It was created by $as_me, which was
91d11da1 2310generated by GNU Autoconf 2.69. Invocation command line was
07a0db15 2311
57aa50d4 2312 $ $0 $@
e1052144 2313
57aa50d4
TT
2314_ACEOF
2315exec 5>>config.log
2316{
2317cat <<_ASUNAME
2318## --------- ##
2319## Platform. ##
2320## --------- ##
0b5b9f90 2321
57aa50d4
TT
2322hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
2323uname -m = `(uname -m) 2>/dev/null || echo unknown`
2324uname -r = `(uname -r) 2>/dev/null || echo unknown`
2325uname -s = `(uname -s) 2>/dev/null || echo unknown`
2326uname -v = `(uname -v) 2>/dev/null || echo unknown`
0b5b9f90 2327
57aa50d4
TT
2328/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
2329/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
0b5b9f90 2330
57aa50d4
TT
2331/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
2332/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
2333/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
2334/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown`
2335/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
2336/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
2337/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
0b5b9f90 2338
57aa50d4 2339_ASUNAME
b0cacab0 2340
b0cacab0
TT
2341as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2342for as_dir in $PATH
2343do
2344 IFS=$as_save_IFS
2345 test -z "$as_dir" && as_dir=.
57aa50d4
TT
2346 $as_echo "PATH: $as_dir"
2347 done
e1052144 2348IFS=$as_save_IFS
b0cacab0 2349
57aa50d4 2350} >&5
74becf3c 2351
57aa50d4 2352cat >&5 <<_ACEOF
e1052144 2353
b0cacab0 2354
57aa50d4
TT
2355## ----------- ##
2356## Core tests. ##
2357## ----------- ##
b0cacab0 2358
57aa50d4 2359_ACEOF
b0cacab0 2360
57aa50d4
TT
2361
2362# Keep a trace of the command line.
2363# Strip out --no-create and --no-recursion so they do not pile up.
2364# Strip out --silent because we don't want to record it for future runs.
2365# Also quote any args containing shell meta-characters.
2366# Make two passes to allow for proper duplicate-argument suppression.
2367ac_configure_args=
2368ac_configure_args0=
2369ac_configure_args1=
2370ac_must_keep_next=false
2371for ac_pass in 1 2
b0cacab0 2372do
57aa50d4
TT
2373 for ac_arg
2374 do
2375 case $ac_arg in
2376 -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
2377 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
2378 | -silent | --silent | --silen | --sile | --sil)
2379 continue ;;
2380 *\'*)
2381 ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
2382 esac
2383 case $ac_pass in
2384 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
2385 2)
2386 as_fn_append ac_configure_args1 " '$ac_arg'"
2387 if test $ac_must_keep_next = true; then
2388 ac_must_keep_next=false # Got value, back to normal.
2389 else
2390 case $ac_arg in
2391 *=* | --config-cache | -C | -disable-* | --disable-* \
2392 | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
2393 | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
2394 | -with-* | --with-* | -without-* | --without-* | --x)
2395 case "$ac_configure_args0 " in
2396 "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
2397 esac
2398 ;;
2399 -* ) ac_must_keep_next=true ;;
2400 esac
2401 fi
2402 as_fn_append ac_configure_args " '$ac_arg'"
2403 ;;
2404 esac
2405 done
b0cacab0 2406done
57aa50d4
TT
2407{ ac_configure_args0=; unset ac_configure_args0;}
2408{ ac_configure_args1=; unset ac_configure_args1;}
2409
2410# When interrupted or exit'd, cleanup temporary files, and complete
2411# config.log. We remove comments because anyway the quotes in there
2412# would cause problems or look ugly.
2413# WARNING: Use '\'' to represent an apostrophe within the trap.
2414# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
2415trap 'exit_status=$?
2416 # Save into config.log some information that might help in debugging.
2417 {
2418 echo
2419
91d11da1 2420 $as_echo "## ---------------- ##
57aa50d4 2421## Cache variables. ##
91d11da1 2422## ---------------- ##"
57aa50d4
TT
2423 echo
2424 # The following way of writing the cache mishandles newlines in values,
2425(
2426 for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
2427 eval ac_val=\$$ac_var
2428 case $ac_val in #(
2429 *${as_nl}*)
2430 case $ac_var in #(
2431 *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
2432$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
2433 esac
2434 case $ac_var in #(
2435 _ | IFS | as_nl) ;; #(
2436 BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
2437 *) { eval $ac_var=; unset $ac_var;} ;;
2438 esac ;;
2439 esac
2440 done
2441 (set) 2>&1 |
2442 case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
2443 *${as_nl}ac_space=\ *)
2444 sed -n \
2445 "s/'\''/'\''\\\\'\'''\''/g;
2446 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
2447 ;; #(
2448 *)
2449 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
2450 ;;
2451 esac |
2452 sort
2453)
2454 echo
2455
91d11da1 2456 $as_echo "## ----------------- ##
57aa50d4 2457## Output variables. ##
91d11da1 2458## ----------------- ##"
57aa50d4
TT
2459 echo
2460 for ac_var in $ac_subst_vars
2461 do
2462 eval ac_val=\$$ac_var
2463 case $ac_val in
2464 *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
2465 esac
2466 $as_echo "$ac_var='\''$ac_val'\''"
2467 done | sort
2468 echo
2469
2470 if test -n "$ac_subst_files"; then
91d11da1 2471 $as_echo "## ------------------- ##
57aa50d4 2472## File substitutions. ##
91d11da1 2473## ------------------- ##"
57aa50d4
TT
2474 echo
2475 for ac_var in $ac_subst_files
2476 do
2477 eval ac_val=\$$ac_var
2478 case $ac_val in
2479 *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
2480 esac
2481 $as_echo "$ac_var='\''$ac_val'\''"
2482 done | sort
2483 echo
2484 fi
2485
2486 if test -s confdefs.h; then
91d11da1 2487 $as_echo "## ----------- ##
57aa50d4 2488## confdefs.h. ##
91d11da1 2489## ----------- ##"
57aa50d4
TT
2490 echo
2491 cat confdefs.h
2492 echo
2493 fi
2494 test "$ac_signal" != 0 &&
2495 $as_echo "$as_me: caught signal $ac_signal"
2496 $as_echo "$as_me: exit $exit_status"
2497 } >&5
2498 rm -f core *.core core.conftest.* &&
2499 rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
2500 exit $exit_status
2501' 0
2502for ac_signal in 1 2 13 15; do
2503 trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
b0cacab0 2504done
57aa50d4 2505ac_signal=0
b0cacab0 2506
57aa50d4
TT
2507# confdefs.h avoids OS command line length limits that DEFS can exceed.
2508rm -f -r conftest* confdefs.h
b0cacab0 2509
57aa50d4 2510$as_echo "/* confdefs.h */" > confdefs.h
73ae2d4a 2511
57aa50d4
TT
2512# Predefined preprocessor variables.
2513
2514cat >>confdefs.h <<_ACEOF
2515#define PACKAGE_NAME "$PACKAGE_NAME"
2516_ACEOF
2517
2518cat >>confdefs.h <<_ACEOF
2519#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
2520_ACEOF
2521
2522cat >>confdefs.h <<_ACEOF
2523#define PACKAGE_VERSION "$PACKAGE_VERSION"
2524_ACEOF
2525
2526cat >>confdefs.h <<_ACEOF
2527#define PACKAGE_STRING "$PACKAGE_STRING"
2528_ACEOF
2529
2530cat >>confdefs.h <<_ACEOF
2531#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
2532_ACEOF
2533
2534cat >>confdefs.h <<_ACEOF
2535#define PACKAGE_URL "$PACKAGE_URL"
2536_ACEOF
2537
2538
2539# Let the site file select an alternate cache file if it wants to.
2540# Prefer an explicitly selected file to automatically selected ones.
2541ac_site_file1=NONE
2542ac_site_file2=NONE
2543if test -n "$CONFIG_SITE"; then
91d11da1
TT
2544 # We do not want a PATH search for config.site.
2545 case $CONFIG_SITE in #((
2546 -*) ac_site_file1=./$CONFIG_SITE;;
2547 */*) ac_site_file1=$CONFIG_SITE;;
2548 *) ac_site_file1=./$CONFIG_SITE;;
2549 esac
57aa50d4
TT
2550elif test "x$prefix" != xNONE; then
2551 ac_site_file1=$prefix/share/config.site
2552 ac_site_file2=$prefix/etc/config.site
73ae2d4a 2553else
57aa50d4
TT
2554 ac_site_file1=$ac_default_prefix/share/config.site
2555 ac_site_file2=$ac_default_prefix/etc/config.site
2556fi
2557for ac_site_file in "$ac_site_file1" "$ac_site_file2"
b0cacab0 2558do
57aa50d4 2559 test "x$ac_site_file" = xNONE && continue
61ef2474 2560 if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
57aa50d4
TT
2561 { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
2562$as_echo "$as_me: loading site script $ac_site_file" >&6;}
2563 sed 's/^/| /' "$ac_site_file" >&5
91d11da1
TT
2564 . "$ac_site_file" \
2565 || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2566$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2567as_fn_error $? "failed to load site script $ac_site_file
2568See \`config.log' for more details" "$LINENO" 5; }
b0cacab0
TT
2569 fi
2570done
b0cacab0 2571
57aa50d4 2572if test -r "$cache_file"; then
61ef2474
TT
2573 # Some versions of bash will fail to source /dev/null (special files
2574 # actually), so we avoid doing that. DJGPP emulates it as a regular file.
2575 if test /dev/null != "$cache_file" && test -f "$cache_file"; then
57aa50d4
TT
2576 { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
2577$as_echo "$as_me: loading cache $cache_file" >&6;}
2578 case $cache_file in
2579 [\\/]* | ?:[\\/]* ) . "$cache_file";;
2580 *) . "./$cache_file";;
2581 esac
73ae2d4a 2582 fi
57aa50d4
TT
2583else
2584 { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
2585$as_echo "$as_me: creating cache $cache_file" >&6;}
2586 >$cache_file
73ae2d4a 2587fi
57aa50d4 2588
61ef2474
TT
2589as_fn_append ac_header_list " stdlib.h"
2590as_fn_append ac_header_list " unistd.h"
2591as_fn_append ac_header_list " sys/param.h"
57aa50d4
TT
2592# Check that the precious variables saved in the cache have kept the same
2593# value.
2594ac_cache_corrupted=false
2595for ac_var in $ac_precious_vars; do
2596 eval ac_old_set=\$ac_cv_env_${ac_var}_set
2597 eval ac_new_set=\$ac_env_${ac_var}_set
2598 eval ac_old_val=\$ac_cv_env_${ac_var}_value
2599 eval ac_new_val=\$ac_env_${ac_var}_value
2600 case $ac_old_set,$ac_new_set in
2601 set,)
2602 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
2603$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
2604 ac_cache_corrupted=: ;;
2605 ,set)
2606 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
2607$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
2608 ac_cache_corrupted=: ;;
2609 ,);;
2610 *)
2611 if test "x$ac_old_val" != "x$ac_new_val"; then
2612 # differences in whitespace do not lead to failure.
2613 ac_old_val_w=`echo x $ac_old_val`
2614 ac_new_val_w=`echo x $ac_new_val`
2615 if test "$ac_old_val_w" != "$ac_new_val_w"; then
2616 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
2617$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
2618 ac_cache_corrupted=:
2619 else
2620 { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
2621$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
2622 eval $ac_var=\$ac_old_val
2623 fi
2624 { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5
2625$as_echo "$as_me: former value: \`$ac_old_val'" >&2;}
2626 { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5
2627$as_echo "$as_me: current value: \`$ac_new_val'" >&2;}
2628 fi;;
2629 esac
2630 # Pass precious variables to config.status.
2631 if test "$ac_new_set" = set; then
2632 case $ac_new_val in
2633 *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
2634 *) ac_arg=$ac_var=$ac_new_val ;;
2635 esac
2636 case " $ac_configure_args " in
2637 *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
2638 *) as_fn_append ac_configure_args " '$ac_arg'" ;;
2639 esac
2640 fi
2641done
2642if $ac_cache_corrupted; then
2643 { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2644$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2645 { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
2646$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
91d11da1 2647 as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
73ae2d4a 2648fi
57aa50d4
TT
2649## -------------------- ##
2650## Main body of script. ##
2651## -------------------- ##
2652
2653ac_ext=c
2654ac_cpp='$CPP $CPPFLAGS'
2655ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
2656ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2657ac_compiler_gnu=$ac_cv_c_compiler_gnu
2658
2659
2660
2661ac_aux_dir=
2662for ac_dir in config "$srcdir"/config; do
91d11da1
TT
2663 if test -f "$ac_dir/install-sh"; then
2664 ac_aux_dir=$ac_dir
2665 ac_install_sh="$ac_aux_dir/install-sh -c"
2666 break
2667 elif test -f "$ac_dir/install.sh"; then
2668 ac_aux_dir=$ac_dir
2669 ac_install_sh="$ac_aux_dir/install.sh -c"
2670 break
2671 elif test -f "$ac_dir/shtool"; then
2672 ac_aux_dir=$ac_dir
2673 ac_install_sh="$ac_aux_dir/shtool install -c"
2674 break
2675 fi
57aa50d4
TT
2676done
2677if test -z "$ac_aux_dir"; then
91d11da1 2678 as_fn_error $? "cannot find install-sh, install.sh, or shtool in config \"$srcdir\"/config" "$LINENO" 5
73ae2d4a 2679fi
57aa50d4
TT
2680
2681# These three variables are undocumented and unsupported,
2682# and are intended to be withdrawn in a future Autoconf release.
2683# They can cause serious problems if a builder's source tree is in a directory
2684# whose full name contains unusual characters.
2685ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var.
2686ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var.
2687ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
2688
2689
d1154eb4
TT
2690ac_config_headers="$ac_config_headers lib/config.h"
2691
2692
57aa50d4
TT
2693MCONFIG=./MCONFIG
2694
2695BINARY_TYPE=bin
2696E2FSPROGS_VERSION=`grep E2FSPROGS_VERSION ${srcdir}/version.h \
2697 | awk '{print $3}' | tr \" " " | awk '{print $1}'`
2698DATE=`grep E2FSPROGS_DATE ${srcdir}/version.h | awk '{print $3}' \
2699 | tr \" " "`
2700E2FSPROGS_DAY=`echo $DATE | awk -F- '{print $1}'`
2701MONTH=`echo $DATE | awk -F- '{print $2}'`
2702YEAR=`echo $DATE | awk -F- '{print $3}'`
2703
2704if expr $YEAR ">" 1900 > /dev/null ; then
2705 E2FSPROGS_YEAR=$YEAR
2706elif expr $YEAR ">" 90 >/dev/null ; then
2707 E2FSPROGS_YEAR=19$YEAR
73ae2d4a 2708else
57aa50d4
TT
2709 E2FSPROGS_YEAR=20$YEAR
2710fi
2711
2712case $MONTH in
2713Jan) MONTH_NUM=01; E2FSPROGS_MONTH="January" ;;
2714Feb) MONTH_NUM=02; E2FSPROGS_MONTH="February" ;;
2715Mar) MONTH_NUM=03; E2FSPROGS_MONTH="March" ;;
2716Apr) MONTH_NUM=04; E2FSPROGS_MONTH="April" ;;
2717May) MONTH_NUM=05; E2FSPROGS_MONTH="May" ;;
2718Jun) MONTH_NUM=06; E2FSPROGS_MONTH="June" ;;
2719Jul) MONTH_NUM=07; E2FSPROGS_MONTH="July" ;;
2720Aug) MONTH_NUM=08; E2FSPROGS_MONTH="August" ;;
2721Sep) MONTH_NUM=09; E2FSPROGS_MONTH="September" ;;
2722Oct) MONTH_NUM=10; E2FSPROGS_MONTH="October" ;;
2723Nov) MONTH_NUM=11; E2FSPROGS_MONTH="November" ;;
2724Dec) MONTH_NUM=12; E2FSPROGS_MONTH="December" ;;
2725*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unknown month $MONTH??" >&5
2726$as_echo "$as_me: WARNING: Unknown month $MONTH??" >&2;} ;;
2727esac
2728
2729base_ver=`echo $E2FSPROGS_VERSION | \
2730 sed -e 's/-WIP//' -e 's/pre-//' -e 's/-PLUS//'`
2731
2732date_spec=${E2FSPROGS_YEAR}.${MONTH_NUM}.${E2FSPROGS_DAY}
2733
2734case $E2FSPROGS_VERSION in
2735*-WIP|pre-*)
2736 E2FSPROGS_PKGVER="$base_ver~WIP-$E2FSPROGS_YEAR-$MONTH_NUM-$E2FSPROGS_DAY"
2737 ;;
2738*)
2739 E2FSPROGS_PKGVER="$base_ver"
2740 ;;
2741esac
2742
2743unset DATE MONTH YEAR base_ver pre_vers date_spec
2744{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Generating configuration file for e2fsprogs version $E2FSPROGS_VERSION" >&5
2745$as_echo "Generating configuration file for e2fsprogs version $E2FSPROGS_VERSION" >&6; }
2746{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Release date is ${E2FSPROGS_MONTH}, ${E2FSPROGS_YEAR}" >&5
2747$as_echo "Release date is ${E2FSPROGS_MONTH}, ${E2FSPROGS_YEAR}" >&6; }
2748
2749
2750
2751
2752
2753# Make sure we can run config.sub.
2754$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
91d11da1 2755 as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
57aa50d4
TT
2756
2757{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
2758$as_echo_n "checking build system type... " >&6; }
91d11da1 2759if ${ac_cv_build+:} false; then :
57aa50d4
TT
2760 $as_echo_n "(cached) " >&6
2761else
2762 ac_build_alias=$build_alias
2763test "x$ac_build_alias" = x &&
2764 ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
2765test "x$ac_build_alias" = x &&
91d11da1 2766 as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
57aa50d4 2767ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
91d11da1 2768 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
57aa50d4 2769
73ae2d4a 2770fi
57aa50d4
TT
2771{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
2772$as_echo "$ac_cv_build" >&6; }
2773case $ac_cv_build in
2774*-*-*) ;;
91d11da1 2775*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
57aa50d4
TT
2776esac
2777build=$ac_cv_build
2778ac_save_IFS=$IFS; IFS='-'
2779set x $ac_cv_build
2780shift
2781build_cpu=$1
2782build_vendor=$2
2783shift; shift
2784# Remember, the first character of IFS is used to create $*,
2785# except with old shells:
2786build_os=$*
2787IFS=$ac_save_IFS
2788case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
73ae2d4a 2789
e1052144 2790
57aa50d4
TT
2791{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
2792$as_echo_n "checking host system type... " >&6; }
91d11da1 2793if ${ac_cv_host+:} false; then :
57aa50d4
TT
2794 $as_echo_n "(cached) " >&6
2795else
2796 if test "x$host_alias" = x; then
2797 ac_cv_host=$ac_cv_build
2798else
2799 ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
91d11da1 2800 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
b0cacab0 2801fi
57aa50d4
TT
2802
2803fi
2804{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5
2805$as_echo "$ac_cv_host" >&6; }
2806case $ac_cv_host in
2807*-*-*) ;;
91d11da1 2808*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
57aa50d4
TT
2809esac
2810host=$ac_cv_host
2811ac_save_IFS=$IFS; IFS='-'
2812set x $ac_cv_host
2813shift
2814host_cpu=$1
2815host_vendor=$2
2816shift; shift
2817# Remember, the first character of IFS is used to create $*,
2818# except with old shells:
2819host_os=$*
2820IFS=$ac_save_IFS
2821case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
2822
2823
2824DLOPEN_LIB=''
2825ac_ext=c
2826ac_cpp='$CPP $CPPFLAGS'
2827ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
2828ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2829ac_compiler_gnu=$ac_cv_c_compiler_gnu
2830if test -n "$ac_tool_prefix"; then
2831 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
2832set dummy ${ac_tool_prefix}gcc; ac_word=$2
2833{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
39fd3d4f 2834$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 2835if ${ac_cv_prog_CC+:} false; then :
39fd3d4f 2836 $as_echo_n "(cached) " >&6
73ae2d4a
TT
2837else
2838 if test -n "$CC"; then
2839 ac_cv_prog_CC="$CC" # Let the user override the test.
2840else
b0cacab0
TT
2841as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2842for as_dir in $PATH
2843do
2844 IFS=$as_save_IFS
2845 test -z "$as_dir" && as_dir=.
57aa50d4 2846 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 2847 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
2848 ac_cv_prog_CC="${ac_tool_prefix}gcc"
2849 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
b0cacab0
TT
2850 break 2
2851 fi
2852done
57aa50d4 2853 done
e1052144 2854IFS=$as_save_IFS
b0cacab0 2855
73ae2d4a
TT
2856fi
2857fi
b0cacab0 2858CC=$ac_cv_prog_CC
73ae2d4a 2859if test -n "$CC"; then
57aa50d4 2860 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
39fd3d4f 2861$as_echo "$CC" >&6; }
73ae2d4a 2862else
57aa50d4 2863 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
39fd3d4f 2864$as_echo "no" >&6; }
73ae2d4a 2865fi
b0cacab0 2866
e1052144 2867
b0cacab0 2868fi
57aa50d4 2869if test -z "$ac_cv_prog_CC"; then
b0cacab0 2870 ac_ct_CC=$CC
57aa50d4
TT
2871 # Extract the first word of "gcc", so it can be a program name with args.
2872set dummy gcc; ac_word=$2
2873{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
39fd3d4f 2874$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 2875if ${ac_cv_prog_ac_ct_CC+:} false; then :
39fd3d4f 2876 $as_echo_n "(cached) " >&6
b0cacab0
TT
2877else
2878 if test -n "$ac_ct_CC"; then
2879 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
2880else
2881as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2882for as_dir in $PATH
2883do
2884 IFS=$as_save_IFS
2885 test -z "$as_dir" && as_dir=.
57aa50d4 2886 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 2887 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
2888 ac_cv_prog_ac_ct_CC="gcc"
2889 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
b0cacab0 2890 break 2
93636bde 2891 fi
b0cacab0 2892done
57aa50d4 2893 done
e1052144 2894IFS=$as_save_IFS
b0cacab0
TT
2895
2896fi
2897fi
2898ac_ct_CC=$ac_cv_prog_ac_ct_CC
2899if test -n "$ac_ct_CC"; then
57aa50d4 2900 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
39fd3d4f 2901$as_echo "$ac_ct_CC" >&6; }
b0cacab0 2902else
57aa50d4 2903 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
39fd3d4f 2904$as_echo "no" >&6; }
07a0db15 2905fi
73ae2d4a 2906
e1052144
TT
2907 if test "x$ac_ct_CC" = x; then
2908 CC=""
2909 else
2910 case $cross_compiling:$ac_tool_warned in
2911yes:)
57aa50d4 2912{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
39fd3d4f 2913$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
e1052144
TT
2914ac_tool_warned=yes ;;
2915esac
2916 CC=$ac_ct_CC
2917 fi
57aa50d4
TT
2918else
2919 CC="$ac_cv_prog_CC"
b0cacab0
TT
2920fi
2921
57aa50d4
TT
2922if test -z "$CC"; then
2923 if test -n "$ac_tool_prefix"; then
2924 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
2925set dummy ${ac_tool_prefix}cc; ac_word=$2
2926{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2927$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 2928if ${ac_cv_prog_CC+:} false; then :
57aa50d4
TT
2929 $as_echo_n "(cached) " >&6
2930else
2931 if test -n "$CC"; then
2932 ac_cv_prog_CC="$CC" # Let the user override the test.
2933else
2934as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2935for as_dir in $PATH
2936do
2937 IFS=$as_save_IFS
2938 test -z "$as_dir" && as_dir=.
2939 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 2940 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
2941 ac_cv_prog_CC="${ac_tool_prefix}cc"
2942 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2943 break 2
2944 fi
2945done
2946 done
2947IFS=$as_save_IFS
2948
2949fi
2950fi
2951CC=$ac_cv_prog_CC
2952if test -n "$CC"; then
2953 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
2954$as_echo "$CC" >&6; }
2955else
2956 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2957$as_echo "no" >&6; }
2958fi
2959
2960
2961 fi
2962fi
2963if test -z "$CC"; then
2964 # Extract the first word of "cc", so it can be a program name with args.
2965set dummy cc; ac_word=$2
2966{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2967$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 2968if ${ac_cv_prog_CC+:} false; then :
57aa50d4
TT
2969 $as_echo_n "(cached) " >&6
2970else
2971 if test -n "$CC"; then
2972 ac_cv_prog_CC="$CC" # Let the user override the test.
2973else
2974 ac_prog_rejected=no
2975as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2976for as_dir in $PATH
2977do
2978 IFS=$as_save_IFS
2979 test -z "$as_dir" && as_dir=.
2980 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 2981 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
2982 if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
2983 ac_prog_rejected=yes
2984 continue
2985 fi
2986 ac_cv_prog_CC="cc"
2987 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2988 break 2
2989 fi
2990done
2991 done
2992IFS=$as_save_IFS
2993
2994if test $ac_prog_rejected = yes; then
2995 # We found a bogon in the path, so make sure we never use it.
2996 set dummy $ac_cv_prog_CC
2997 shift
2998 if test $# != 0; then
2999 # We chose a different compiler from the bogus one.
3000 # However, it has the same basename, so the bogon will be chosen
3001 # first if we set CC to just the basename; use the full file name.
3002 shift
3003 ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
3004 fi
3005fi
3006fi
3007fi
3008CC=$ac_cv_prog_CC
3009if test -n "$CC"; then
3010 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
3011$as_echo "$CC" >&6; }
3012else
3013 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3014$as_echo "no" >&6; }
3015fi
3016
3017
3018fi
3019if test -z "$CC"; then
3020 if test -n "$ac_tool_prefix"; then
3021 for ac_prog in cl.exe
3022 do
3023 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
3024set dummy $ac_tool_prefix$ac_prog; ac_word=$2
3025{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3026$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 3027if ${ac_cv_prog_CC+:} false; then :
57aa50d4
TT
3028 $as_echo_n "(cached) " >&6
3029else
3030 if test -n "$CC"; then
3031 ac_cv_prog_CC="$CC" # Let the user override the test.
3032else
3033as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3034for as_dir in $PATH
3035do
3036 IFS=$as_save_IFS
3037 test -z "$as_dir" && as_dir=.
3038 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 3039 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
3040 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
3041 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3042 break 2
3043 fi
3044done
3045 done
3046IFS=$as_save_IFS
3047
3048fi
3049fi
3050CC=$ac_cv_prog_CC
3051if test -n "$CC"; then
3052 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
3053$as_echo "$CC" >&6; }
3054else
3055 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3056$as_echo "no" >&6; }
3057fi
3058
3059
3060 test -n "$CC" && break
3061 done
3062fi
3063if test -z "$CC"; then
3064 ac_ct_CC=$CC
3065 for ac_prog in cl.exe
3066do
3067 # Extract the first word of "$ac_prog", so it can be a program name with args.
3068set dummy $ac_prog; ac_word=$2
3069{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3070$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 3071if ${ac_cv_prog_ac_ct_CC+:} false; then :
57aa50d4
TT
3072 $as_echo_n "(cached) " >&6
3073else
3074 if test -n "$ac_ct_CC"; then
3075 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
3076else
3077as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3078for as_dir in $PATH
3079do
3080 IFS=$as_save_IFS
3081 test -z "$as_dir" && as_dir=.
3082 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 3083 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
3084 ac_cv_prog_ac_ct_CC="$ac_prog"
3085 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3086 break 2
3087 fi
3088done
3089 done
3090IFS=$as_save_IFS
3091
3092fi
3093fi
3094ac_ct_CC=$ac_cv_prog_ac_ct_CC
3095if test -n "$ac_ct_CC"; then
3096 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
3097$as_echo "$ac_ct_CC" >&6; }
3098else
3099 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3100$as_echo "no" >&6; }
3101fi
3102
3103
3104 test -n "$ac_ct_CC" && break
3105done
3106
3107 if test "x$ac_ct_CC" = x; then
3108 CC=""
3109 else
3110 case $cross_compiling:$ac_tool_warned in
3111yes:)
3112{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
3113$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
3114ac_tool_warned=yes ;;
3115esac
3116 CC=$ac_ct_CC
3117 fi
3118fi
3119
3120fi
3121
3122
3123test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3124$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
91d11da1
TT
3125as_fn_error $? "no acceptable C compiler found in \$PATH
3126See \`config.log' for more details" "$LINENO" 5; }
b0cacab0
TT
3127
3128# Provide some information about the compiler.
57aa50d4 3129$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
39fd3d4f
SJR
3130set X $ac_compile
3131ac_compiler=$2
57aa50d4
TT
3132for ac_option in --version -v -V -qversion; do
3133 { { ac_try="$ac_compiler $ac_option >&5"
e1052144
TT
3134case "(($ac_try" in
3135 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3136 *) ac_try_echo=$ac_try;;
3137esac
57aa50d4
TT
3138eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
3139$as_echo "$ac_try_echo"; } >&5
3140 (eval "$ac_compiler $ac_option >&5") 2>conftest.err
b0cacab0 3141 ac_status=$?
57aa50d4
TT
3142 if test -s conftest.err; then
3143 sed '10a\
3144... rest of stderr output deleted ...
3145 10q' conftest.err >conftest.er1
3146 cat conftest.er1 >&5
57aa50d4 3147 fi
61ef2474 3148 rm -f conftest.er1 conftest.err
57aa50d4
TT
3149 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
3150 test $ac_status = 0; }
3151done
b0cacab0 3152
57aa50d4 3153cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0 3154/* end confdefs.h. */
61ef2474 3155
b0cacab0
TT
3156int
3157main ()
3158{
3159
3160 ;
3161 return 0;
3162}
3163_ACEOF
3164ac_clean_files_save=$ac_clean_files
61ef2474 3165ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
b0cacab0
TT
3166# Try to create an executable without -o first, disregard a.out.
3167# It will help us diagnose broken compilers, and finding out an intuition
3168# of exeext.
61ef2474
TT
3169{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
3170$as_echo_n "checking whether the C compiler works... " >&6; }
39fd3d4f
SJR
3171ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
3172
3173# The possible output files:
3174ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
3175
e1052144
TT
3176ac_rmfiles=
3177for ac_file in $ac_files
3178do
3179 case $ac_file in
39fd3d4f 3180 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
e1052144
TT
3181 * ) ac_rmfiles="$ac_rmfiles $ac_file";;
3182 esac
3183done
3184rm -f $ac_rmfiles
3185
57aa50d4 3186if { { ac_try="$ac_link_default"
e1052144
TT
3187case "(($ac_try" in
3188 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3189 *) ac_try_echo=$ac_try;;
3190esac
57aa50d4
TT
3191eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
3192$as_echo "$ac_try_echo"; } >&5
e1052144 3193 (eval "$ac_link_default") 2>&5
b0cacab0 3194 ac_status=$?
57aa50d4
TT
3195 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
3196 test $ac_status = 0; }; then :
e1052144
TT
3197 # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
3198# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
3199# in a Makefile. We should not override ac_cv_exeext if it was cached,
3200# so that the user can short-circuit this test for compilers unknown to
3201# Autoconf.
29a5deed 3202for ac_file in $ac_files ''
b0cacab0
TT
3203do
3204 test -f "$ac_file" || continue
3205 case $ac_file in
39fd3d4f 3206 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
b0cacab0
TT
3207 ;;
3208 [ab].out )
3209 # We found the default executable, but exeext='' is most
3210 # certainly right.
3211 break;;
3212 *.* )
57aa50d4 3213 if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
e1052144
TT
3214 then :; else
3215 ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
3216 fi
3217 # We set ac_cv_exeext here because the later test for it is not
3218 # safe: cross compilers may not add the suffix if given an `-o'
3219 # argument, so we may need to know it at that point already.
3220 # Even if this section looks crufty: it has the advantage of
3221 # actually working.
b0cacab0
TT
3222 break;;
3223 * )
3224 break;;
3225 esac
3226done
e1052144
TT
3227test "$ac_cv_exeext" = no && ac_cv_exeext=
3228
b0cacab0 3229else
29a5deed
TT
3230 ac_file=''
3231fi
57aa50d4 3232if test -z "$ac_file"; then :
61ef2474
TT
3233 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3234$as_echo "no" >&6; }
3235$as_echo "$as_me: failed program was:" >&5
b0cacab0
TT
3236sed 's/^/| /' conftest.$ac_ext >&5
3237
57aa50d4 3238{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
39fd3d4f 3239$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
91d11da1
TT
3240as_fn_error 77 "C compiler cannot create executables
3241See \`config.log' for more details" "$LINENO" 5; }
61ef2474
TT
3242else
3243 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
3244$as_echo "yes" >&6; }
b0cacab0 3245fi
61ef2474
TT
3246{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
3247$as_echo_n "checking for C compiler default output file name... " >&6; }
3248{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
3249$as_echo "$ac_file" >&6; }
b0cacab0 3250ac_exeext=$ac_cv_exeext
b0cacab0 3251
61ef2474 3252rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
b0cacab0 3253ac_clean_files=$ac_clean_files_save
57aa50d4 3254{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
39fd3d4f 3255$as_echo_n "checking for suffix of executables... " >&6; }
57aa50d4 3256if { { ac_try="$ac_link"
e1052144
TT
3257case "(($ac_try" in
3258 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3259 *) ac_try_echo=$ac_try;;
3260esac
57aa50d4
TT
3261eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
3262$as_echo "$ac_try_echo"; } >&5
e1052144 3263 (eval "$ac_link") 2>&5
b0cacab0 3264 ac_status=$?
57aa50d4
TT
3265 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
3266 test $ac_status = 0; }; then :
b0cacab0
TT
3267 # If both `conftest.exe' and `conftest' are `present' (well, observable)
3268# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
3269# work properly (i.e., refer to `conftest.exe'), while it won't with
3270# `rm'.
3271for ac_file in conftest.exe conftest conftest.*; do
3272 test -f "$ac_file" || continue
3273 case $ac_file in
39fd3d4f 3274 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
b0cacab0 3275 *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
b0cacab0
TT
3276 break;;
3277 * ) break;;
3278 esac
3279done
73ae2d4a 3280else
57aa50d4 3281 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
39fd3d4f 3282$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
91d11da1
TT
3283as_fn_error $? "cannot compute suffix of executables: cannot compile and link
3284See \`config.log' for more details" "$LINENO" 5; }
73ae2d4a 3285fi
61ef2474 3286rm -f conftest conftest$ac_cv_exeext
57aa50d4 3287{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
39fd3d4f 3288$as_echo "$ac_cv_exeext" >&6; }
73ae2d4a 3289
b0cacab0
TT
3290rm -f conftest.$ac_ext
3291EXEEXT=$ac_cv_exeext
3292ac_exeext=$EXEEXT
61ef2474
TT
3293cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3294/* end confdefs.h. */
3295#include <stdio.h>
3296int
3297main ()
3298{
3299FILE *f = fopen ("conftest.out", "w");
3300 return ferror (f) || fclose (f) != 0;
3301
3302 ;
3303 return 0;
3304}
3305_ACEOF
3306ac_clean_files="$ac_clean_files conftest.out"
3307# Check that the compiler produces executables we can run. If not, either
3308# the compiler is broken, or we cross compile.
3309{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
3310$as_echo_n "checking whether we are cross compiling... " >&6; }
3311if test "$cross_compiling" != yes; then
3312 { { ac_try="$ac_link"
3313case "(($ac_try" in
3314 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3315 *) ac_try_echo=$ac_try;;
3316esac
3317eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
3318$as_echo "$ac_try_echo"; } >&5
3319 (eval "$ac_link") 2>&5
3320 ac_status=$?
3321 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
3322 test $ac_status = 0; }
3323 if { ac_try='./conftest$ac_cv_exeext'
3324 { { case "(($ac_try" in
3325 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3326 *) ac_try_echo=$ac_try;;
3327esac
3328eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
3329$as_echo "$ac_try_echo"; } >&5
3330 (eval "$ac_try") 2>&5
3331 ac_status=$?
3332 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
3333 test $ac_status = 0; }; }; then
3334 cross_compiling=no
3335 else
3336 if test "$cross_compiling" = maybe; then
3337 cross_compiling=yes
3338 else
3339 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3340$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
91d11da1 3341as_fn_error $? "cannot run C compiled programs.
61ef2474 3342If you meant to cross compile, use \`--host'.
91d11da1 3343See \`config.log' for more details" "$LINENO" 5; }
61ef2474
TT
3344 fi
3345 fi
3346fi
3347{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
3348$as_echo "$cross_compiling" >&6; }
3349
3350rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
3351ac_clean_files=$ac_clean_files_save
57aa50d4 3352{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
39fd3d4f 3353$as_echo_n "checking for suffix of object files... " >&6; }
91d11da1 3354if ${ac_cv_objext+:} false; then :
39fd3d4f 3355 $as_echo_n "(cached) " >&6
73ae2d4a 3356else
57aa50d4 3357 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0 3358/* end confdefs.h. */
07a0db15 3359
b0cacab0
TT
3360int
3361main ()
3362{
07a0db15 3363
b0cacab0
TT
3364 ;
3365 return 0;
3366}
3367_ACEOF
3368rm -f conftest.o conftest.obj
57aa50d4 3369if { { ac_try="$ac_compile"
e1052144
TT
3370case "(($ac_try" in
3371 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3372 *) ac_try_echo=$ac_try;;
3373esac
57aa50d4
TT
3374eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
3375$as_echo "$ac_try_echo"; } >&5
e1052144 3376 (eval "$ac_compile") 2>&5
b0cacab0 3377 ac_status=$?
57aa50d4
TT
3378 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
3379 test $ac_status = 0; }; then :
e1052144
TT
3380 for ac_file in conftest.o conftest.obj conftest.*; do
3381 test -f "$ac_file" || continue;
b0cacab0 3382 case $ac_file in
39fd3d4f 3383 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
b0cacab0
TT
3384 *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
3385 break;;
3386 esac
3387done
93636bde 3388else
39fd3d4f 3389 $as_echo "$as_me: failed program was:" >&5
b0cacab0 3390sed 's/^/| /' conftest.$ac_ext >&5
07a0db15 3391
57aa50d4 3392{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
39fd3d4f 3393$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
91d11da1
TT
3394as_fn_error $? "cannot compute suffix of object files: cannot compile
3395See \`config.log' for more details" "$LINENO" 5; }
73ae2d4a 3396fi
b0cacab0 3397rm -f conftest.$ac_cv_objext conftest.$ac_ext
73ae2d4a 3398fi
57aa50d4 3399{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
39fd3d4f 3400$as_echo "$ac_cv_objext" >&6; }
b0cacab0
TT
3401OBJEXT=$ac_cv_objext
3402ac_objext=$OBJEXT
57aa50d4 3403{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
39fd3d4f 3404$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
91d11da1 3405if ${ac_cv_c_compiler_gnu+:} false; then :
39fd3d4f 3406 $as_echo_n "(cached) " >&6
b0cacab0 3407else
57aa50d4 3408 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0
TT
3409/* end confdefs.h. */
3410
3411int
3412main ()
3413{
3414#ifndef __GNUC__
3415 choke me
3416#endif
3417
3418 ;
3419 return 0;
3420}
3421_ACEOF
57aa50d4 3422if ac_fn_c_try_compile "$LINENO"; then :
b0cacab0
TT
3423 ac_compiler_gnu=yes
3424else
57aa50d4 3425 ac_compiler_gnu=no
b0cacab0 3426fi
e1052144 3427rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
b0cacab0
TT
3428ac_cv_c_compiler_gnu=$ac_compiler_gnu
3429
3430fi
57aa50d4 3431{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
39fd3d4f
SJR
3432$as_echo "$ac_cv_c_compiler_gnu" >&6; }
3433if test $ac_compiler_gnu = yes; then
3434 GCC=yes
3435else
3436 GCC=
3437fi
b0cacab0
TT
3438ac_test_CFLAGS=${CFLAGS+set}
3439ac_save_CFLAGS=$CFLAGS
57aa50d4 3440{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
39fd3d4f 3441$as_echo_n "checking whether $CC accepts -g... " >&6; }
91d11da1 3442if ${ac_cv_prog_cc_g+:} false; then :
39fd3d4f 3443 $as_echo_n "(cached) " >&6
b0cacab0 3444else
e1052144
TT
3445 ac_save_c_werror_flag=$ac_c_werror_flag
3446 ac_c_werror_flag=yes
3447 ac_cv_prog_cc_g=no
3448 CFLAGS="-g"
57aa50d4 3449 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
e1052144
TT
3450/* end confdefs.h. */
3451
3452int
3453main ()
3454{
3455
3456 ;
3457 return 0;
3458}
3459_ACEOF
57aa50d4 3460if ac_fn_c_try_compile "$LINENO"; then :
e1052144
TT
3461 ac_cv_prog_cc_g=yes
3462else
57aa50d4
TT
3463 CFLAGS=""
3464 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
e1052144
TT
3465/* end confdefs.h. */
3466
3467int
3468main ()
3469{
3470
3471 ;
3472 return 0;
3473}
3474_ACEOF
57aa50d4 3475if ac_fn_c_try_compile "$LINENO"; then :
e1052144 3476
57aa50d4
TT
3477else
3478 ac_c_werror_flag=$ac_save_c_werror_flag
e1052144 3479 CFLAGS="-g"
57aa50d4 3480 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0
TT
3481/* end confdefs.h. */
3482
3483int
3484main ()
3485{
3486
3487 ;
3488 return 0;
3489}
3490_ACEOF
57aa50d4 3491if ac_fn_c_try_compile "$LINENO"; then :
b0cacab0 3492 ac_cv_prog_cc_g=yes
e1052144 3493fi
e1052144
TT
3494rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3495fi
e1052144 3496rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
b0cacab0 3497fi
e1052144
TT
3498rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3499 ac_c_werror_flag=$ac_save_c_werror_flag
b0cacab0 3500fi
57aa50d4 3501{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
39fd3d4f 3502$as_echo "$ac_cv_prog_cc_g" >&6; }
b0cacab0
TT
3503if test "$ac_test_CFLAGS" = set; then
3504 CFLAGS=$ac_save_CFLAGS
3505elif test $ac_cv_prog_cc_g = yes; then
3506 if test "$GCC" = yes; then
3507 CFLAGS="-g -O2"
3508 else
3509 CFLAGS="-g"
3510 fi
73ae2d4a
TT
3511else
3512 if test "$GCC" = yes; then
3513 CFLAGS="-O2"
3514 else
3515 CFLAGS=
3516 fi
3517fi
57aa50d4 3518{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
39fd3d4f 3519$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
91d11da1 3520if ${ac_cv_prog_cc_c89+:} false; then :
39fd3d4f 3521 $as_echo_n "(cached) " >&6
b0cacab0 3522else
e1052144 3523 ac_cv_prog_cc_c89=no
b0cacab0 3524ac_save_CC=$CC
57aa50d4 3525cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0
TT
3526/* end confdefs.h. */
3527#include <stdarg.h>
3528#include <stdio.h>
91d11da1 3529struct stat;
b0cacab0
TT
3530/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
3531struct buf { int x; };
3532FILE * (*rcsopen) (struct buf *, struct stat *, int);
3533static char *e (p, i)
3534 char **p;
3535 int i;
3536{
3537 return p[i];
3538}
3539static char *f (char * (*g) (char **, int), char **p, ...)
3540{
3541 char *s;
3542 va_list v;
3543 va_start (v,p);
3544 s = g (p, va_arg (v,int));
3545 va_end (v);
3546 return s;
3547}
3548
3549/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
3550 function prototypes and stuff, but not '\xHH' hex character constants.
3551 These don't provoke an error unfortunately, instead are silently treated
e1052144 3552 as 'x'. The following induces an error, until -std is added to get
b0cacab0
TT
3553 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
3554 array size at least. It's necessary to write '\x00'==0 to get something
e1052144 3555 that's true only with -std. */
b0cacab0
TT
3556int osf4_cc_array ['\x00' == 0 ? 1 : -1];
3557
e1052144
TT
3558/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
3559 inside strings and character constants. */
3560#define FOO(x) 'x'
3561int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
3562
b0cacab0
TT
3563int test (int i, double x);
3564struct s1 {int (*f) (int a);};
3565struct s2 {int (*f) (double a);};
3566int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
3567int argc;
3568char **argv;
3569int
3570main ()
3571{
3572return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
3573 ;
3574 return 0;
3575}
3576_ACEOF
e1052144
TT
3577for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
3578 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
b0cacab0
TT
3579do
3580 CC="$ac_save_CC $ac_arg"
57aa50d4 3581 if ac_fn_c_try_compile "$LINENO"; then :
e1052144 3582 ac_cv_prog_cc_c89=$ac_arg
b0cacab0 3583fi
e1052144
TT
3584rm -f core conftest.err conftest.$ac_objext
3585 test "x$ac_cv_prog_cc_c89" != "xno" && break
b0cacab0 3586done
e1052144 3587rm -f conftest.$ac_ext
b0cacab0
TT
3588CC=$ac_save_CC
3589
3590fi
e1052144
TT
3591# AC_CACHE_VAL
3592case "x$ac_cv_prog_cc_c89" in
3593 x)
57aa50d4 3594 { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
39fd3d4f 3595$as_echo "none needed" >&6; } ;;
e1052144 3596 xno)
57aa50d4 3597 { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
39fd3d4f 3598$as_echo "unsupported" >&6; } ;;
b0cacab0 3599 *)
e1052144 3600 CC="$CC $ac_cv_prog_cc_c89"
57aa50d4 3601 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
39fd3d4f 3602$as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
b0cacab0 3603esac
57aa50d4 3604if test "x$ac_cv_prog_cc_c89" != xno; then :
b0cacab0 3605
57aa50d4 3606fi
b0cacab0 3607
b0cacab0
TT
3608ac_ext=c
3609ac_cpp='$CPP $CPPFLAGS'
3610ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
3611ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
3612ac_compiler_gnu=$ac_cv_c_compiler_gnu
3613
57aa50d4
TT
3614
3615{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
3616$as_echo_n "checking for dlopen in -ldl... " >&6; }
91d11da1 3617if ${ac_cv_lib_dl_dlopen+:} false; then :
39fd3d4f 3618 $as_echo_n "(cached) " >&6
b0cacab0 3619else
57aa50d4
TT
3620 ac_check_lib_save_LIBS=$LIBS
3621LIBS="-ldl $LIBS"
3622cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0 3623/* end confdefs.h. */
57aa50d4
TT
3624
3625/* Override any GCC internal prototype to avoid an error.
3626 Use char because int might match the return type of a GCC
3627 builtin and then its argument prototype would still apply. */
3628#ifdef __cplusplus
3629extern "C"
b0cacab0 3630#endif
57aa50d4
TT
3631char dlopen ();
3632int
3633main ()
3634{
3635return dlopen ();
3636 ;
3637 return 0;
3638}
b0cacab0 3639_ACEOF
57aa50d4
TT
3640if ac_fn_c_try_link "$LINENO"; then :
3641 ac_cv_lib_dl_dlopen=yes
b0cacab0 3642else
57aa50d4 3643 ac_cv_lib_dl_dlopen=no
b0cacab0 3644fi
57aa50d4
TT
3645rm -f core conftest.err conftest.$ac_objext \
3646 conftest$ac_exeext conftest.$ac_ext
3647LIBS=$ac_check_lib_save_LIBS
b0cacab0 3648fi
57aa50d4
TT
3649{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
3650$as_echo "$ac_cv_lib_dl_dlopen" >&6; }
91d11da1 3651if test "x$ac_cv_lib_dl_dlopen" = xyes; then :
57aa50d4 3652 DLOPEN_LIB=-ldl
d1154eb4 3653
57aa50d4 3654$as_echo "#define HAVE_DLOPEN 1" >>confdefs.h
e1052144 3655
b0cacab0
TT
3656fi
3657
b0cacab0 3658
57aa50d4 3659WITH_DIET_LIBC=
b0cacab0 3660
57aa50d4
TT
3661# Check whether --with-diet-libc was given.
3662if test "${with_diet_libc+set}" = set; then :
3663 withval=$with_diet_libc; CC="diet cc -nostdinc"
3664WITH_DIET_LIBC=yes
3665{ $as_echo "$as_me:${as_lineno-$LINENO}: result: CC=$CC" >&5
3666$as_echo "CC=$CC" >&6; }
b0cacab0 3667fi
e1052144 3668
57aa50d4
TT
3669# Check whether --with-cc was given.
3670if test "${with_cc+set}" = set; then :
91d11da1 3671 withval=$with_cc; as_fn_error $? "--with-cc no longer supported; use CC= instead" "$LINENO" 5
57aa50d4 3672fi
b0cacab0 3673
b0cacab0 3674
57aa50d4
TT
3675# Check whether --with-ccopts was given.
3676if test "${with_ccopts+set}" = set; then :
91d11da1 3677 withval=$with_ccopts; as_fn_error $? "--with-ccopts no longer supported; use CFLAGS= instead" "$LINENO" 5
b0cacab0 3678fi
e1052144 3679
b0cacab0 3680
57aa50d4
TT
3681# Check whether --with-ldopts was given.
3682if test "${with_ldopts+set}" = set; then :
91d11da1 3683 withval=$with_ldopts; as_fn_error $? "--with-ldopts no longer supported; use LDFLAGS= instead" "$LINENO" 5
b0cacab0
TT
3684fi
3685
3686ac_ext=c
3687ac_cpp='$CPP $CPPFLAGS'
3688ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
3689ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
3690ac_compiler_gnu=$ac_cv_c_compiler_gnu
57aa50d4
TT
3691if test -n "$ac_tool_prefix"; then
3692 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
3693set dummy ${ac_tool_prefix}gcc; ac_word=$2
3694{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3695$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 3696if ${ac_cv_prog_CC+:} false; then :
39fd3d4f 3697 $as_echo_n "(cached) " >&6
e1052144 3698else
57aa50d4
TT
3699 if test -n "$CC"; then
3700 ac_cv_prog_CC="$CC" # Let the user override the test.
3701else
3702as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3703for as_dir in $PATH
e1052144
TT
3704do
3705 IFS=$as_save_IFS
3706 test -z "$as_dir" && as_dir=.
39fd3d4f 3707 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 3708 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
3709 ac_cv_prog_CC="${ac_tool_prefix}gcc"
3710 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3711 break 2
3712 fi
e1052144 3713done
57aa50d4 3714 done
e1052144 3715IFS=$as_save_IFS
e1052144 3716
e1052144 3717fi
57aa50d4
TT
3718fi
3719CC=$ac_cv_prog_CC
3720if test -n "$CC"; then
3721 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
3722$as_echo "$CC" >&6; }
3723else
3724 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3725$as_echo "no" >&6; }
3726fi
e1052144
TT
3727
3728
57aa50d4
TT
3729fi
3730if test -z "$ac_cv_prog_CC"; then
3731 ac_ct_CC=$CC
3732 # Extract the first word of "gcc", so it can be a program name with args.
3733set dummy gcc; ac_word=$2
3734{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3735$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 3736if ${ac_cv_prog_ac_ct_CC+:} false; then :
39fd3d4f 3737 $as_echo_n "(cached) " >&6
e1052144 3738else
57aa50d4
TT
3739 if test -n "$ac_ct_CC"; then
3740 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
3741else
3742as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3743for as_dir in $PATH
e1052144
TT
3744do
3745 IFS=$as_save_IFS
3746 test -z "$as_dir" && as_dir=.
39fd3d4f 3747 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 3748 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
3749 ac_cv_prog_ac_ct_CC="gcc"
3750 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3751 break 2
3752 fi
e1052144 3753done
57aa50d4 3754 done
e1052144 3755IFS=$as_save_IFS
b0cacab0 3756
e1052144 3757fi
57aa50d4
TT
3758fi
3759ac_ct_CC=$ac_cv_prog_ac_ct_CC
3760if test -n "$ac_ct_CC"; then
3761 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
3762$as_echo "$ac_ct_CC" >&6; }
b0cacab0 3763else
57aa50d4
TT
3764 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3765$as_echo "no" >&6; }
3766fi
b0cacab0 3767
57aa50d4
TT
3768 if test "x$ac_ct_CC" = x; then
3769 CC=""
3770 else
3771 case $cross_compiling:$ac_tool_warned in
3772yes:)
3773{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
3774$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
3775ac_tool_warned=yes ;;
e1052144 3776esac
57aa50d4
TT
3777 CC=$ac_ct_CC
3778 fi
b0cacab0 3779else
57aa50d4 3780 CC="$ac_cv_prog_CC"
b0cacab0 3781fi
e1052144 3782
57aa50d4
TT
3783if test -z "$CC"; then
3784 if test -n "$ac_tool_prefix"; then
3785 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
3786set dummy ${ac_tool_prefix}cc; ac_word=$2
3787{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3788$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 3789if ${ac_cv_prog_CC+:} false; then :
57aa50d4 3790 $as_echo_n "(cached) " >&6
a64c9c13 3791else
57aa50d4
TT
3792 if test -n "$CC"; then
3793 ac_cv_prog_CC="$CC" # Let the user override the test.
3794else
3795as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3796for as_dir in $PATH
3797do
3798 IFS=$as_save_IFS
3799 test -z "$as_dir" && as_dir=.
3800 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 3801 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
3802 ac_cv_prog_CC="${ac_tool_prefix}cc"
3803 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3804 break 2
3805 fi
3806done
3807 done
3808IFS=$as_save_IFS
b0cacab0 3809
a64c9c13 3810fi
57aa50d4
TT
3811fi
3812CC=$ac_cv_prog_CC
3813if test -n "$CC"; then
3814 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
3815$as_echo "$CC" >&6; }
b0cacab0 3816else
57aa50d4
TT
3817 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3818$as_echo "no" >&6; }
a64c9c13 3819fi
b0cacab0 3820
b0cacab0 3821
57aa50d4
TT
3822 fi
3823fi
3824if test -z "$CC"; then
3825 # Extract the first word of "cc", so it can be a program name with args.
3826set dummy cc; ac_word=$2
3827{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3828$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 3829if ${ac_cv_prog_CC+:} false; then :
57aa50d4 3830 $as_echo_n "(cached) " >&6
a64c9c13 3831else
57aa50d4
TT
3832 if test -n "$CC"; then
3833 ac_cv_prog_CC="$CC" # Let the user override the test.
a64c9c13 3834else
57aa50d4
TT
3835 ac_prog_rejected=no
3836as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3837for as_dir in $PATH
3838do
3839 IFS=$as_save_IFS
3840 test -z "$as_dir" && as_dir=.
3841 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 3842 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
3843 if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
3844 ac_prog_rejected=yes
3845 continue
3846 fi
3847 ac_cv_prog_CC="cc"
3848 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3849 break 2
3850 fi
3851done
3852 done
3853IFS=$as_save_IFS
b0cacab0 3854
57aa50d4
TT
3855if test $ac_prog_rejected = yes; then
3856 # We found a bogon in the path, so make sure we never use it.
3857 set dummy $ac_cv_prog_CC
3858 shift
3859 if test $# != 0; then
3860 # We chose a different compiler from the bogus one.
3861 # However, it has the same basename, so the bogon will be chosen
3862 # first if we set CC to just the basename; use the full file name.
3863 shift
3864 ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
3865 fi
b0cacab0 3866fi
b0cacab0
TT
3867fi
3868fi
57aa50d4
TT
3869CC=$ac_cv_prog_CC
3870if test -n "$CC"; then
3871 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
3872$as_echo "$CC" >&6; }
3873else
3874 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3875$as_echo "no" >&6; }
b0cacab0 3876fi
b0cacab0 3877
b0cacab0
TT
3878
3879fi
57aa50d4
TT
3880if test -z "$CC"; then
3881 if test -n "$ac_tool_prefix"; then
3882 for ac_prog in cl.exe
3883 do
3884 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
3885set dummy $ac_tool_prefix$ac_prog; ac_word=$2
3886{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3887$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 3888if ${ac_cv_prog_CC+:} false; then :
57aa50d4
TT
3889 $as_echo_n "(cached) " >&6
3890else
3891 if test -n "$CC"; then
3892 ac_cv_prog_CC="$CC" # Let the user override the test.
3893else
3894as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3895for as_dir in $PATH
3896do
3897 IFS=$as_save_IFS
3898 test -z "$as_dir" && as_dir=.
3899 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 3900 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
3901 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
3902 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3903 break 2
3904 fi
3905done
3906 done
3907IFS=$as_save_IFS
b0cacab0 3908
57aa50d4
TT
3909fi
3910fi
3911CC=$ac_cv_prog_CC
3912if test -n "$CC"; then
3913 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
3914$as_echo "$CC" >&6; }
3915else
3916 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3917$as_echo "no" >&6; }
3918fi
b0cacab0
TT
3919
3920
57aa50d4
TT
3921 test -n "$CC" && break
3922 done
3923fi
3924if test -z "$CC"; then
3925 ac_ct_CC=$CC
3926 for ac_prog in cl.exe
b0cacab0 3927do
57aa50d4
TT
3928 # Extract the first word of "$ac_prog", so it can be a program name with args.
3929set dummy $ac_prog; ac_word=$2
3930{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3931$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 3932if ${ac_cv_prog_ac_ct_CC+:} false; then :
39fd3d4f 3933 $as_echo_n "(cached) " >&6
b0cacab0 3934else
57aa50d4
TT
3935 if test -n "$ac_ct_CC"; then
3936 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
b0cacab0 3937else
57aa50d4
TT
3938as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3939for as_dir in $PATH
3940do
3941 IFS=$as_save_IFS
3942 test -z "$as_dir" && as_dir=.
3943 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 3944 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
3945 ac_cv_prog_ac_ct_CC="$ac_prog"
3946 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3947 break 2
3948 fi
3949done
3950 done
3951IFS=$as_save_IFS
b0cacab0 3952
b0cacab0 3953fi
b0cacab0 3954fi
57aa50d4
TT
3955ac_ct_CC=$ac_cv_prog_ac_ct_CC
3956if test -n "$ac_ct_CC"; then
3957 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
3958$as_echo "$ac_ct_CC" >&6; }
3959else
3960 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3961$as_echo "no" >&6; }
b0cacab0
TT
3962fi
3963
b0cacab0 3964
57aa50d4
TT
3965 test -n "$ac_ct_CC" && break
3966done
b0cacab0 3967
57aa50d4
TT
3968 if test "x$ac_ct_CC" = x; then
3969 CC=""
3970 else
3971 case $cross_compiling:$ac_tool_warned in
3972yes:)
3973{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
3974$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
3975ac_tool_warned=yes ;;
e1052144 3976esac
57aa50d4
TT
3977 CC=$ac_ct_CC
3978 fi
3979fi
b0cacab0 3980
b0cacab0 3981fi
e1052144 3982
b0cacab0 3983
57aa50d4
TT
3984test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3985$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
91d11da1
TT
3986as_fn_error $? "no acceptable C compiler found in \$PATH
3987See \`config.log' for more details" "$LINENO" 5; }
57aa50d4
TT
3988
3989# Provide some information about the compiler.
3990$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
3991set X $ac_compile
3992ac_compiler=$2
3993for ac_option in --version -v -V -qversion; do
3994 { { ac_try="$ac_compiler $ac_option >&5"
e1052144
TT
3995case "(($ac_try" in
3996 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
3997 *) ac_try_echo=$ac_try;;
3998esac
57aa50d4
TT
3999eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
4000$as_echo "$ac_try_echo"; } >&5
4001 (eval "$ac_compiler $ac_option >&5") 2>conftest.err
b0cacab0 4002 ac_status=$?
57aa50d4
TT
4003 if test -s conftest.err; then
4004 sed '10a\
4005... rest of stderr output deleted ...
4006 10q' conftest.err >conftest.er1
4007 cat conftest.er1 >&5
57aa50d4 4008 fi
61ef2474 4009 rm -f conftest.er1 conftest.err
57aa50d4
TT
4010 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
4011 test $ac_status = 0; }
4012done
e1052144 4013
57aa50d4
TT
4014{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
4015$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
91d11da1 4016if ${ac_cv_c_compiler_gnu+:} false; then :
39fd3d4f 4017 $as_echo_n "(cached) " >&6
b0cacab0 4018else
57aa50d4
TT
4019 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4020/* end confdefs.h. */
b0cacab0 4021
57aa50d4
TT
4022int
4023main ()
4024{
4025#ifndef __GNUC__
4026 choke me
4027#endif
a64c9c13 4028
57aa50d4
TT
4029 ;
4030 return 0;
4031}
4032_ACEOF
4033if ac_fn_c_try_compile "$LINENO"; then :
4034 ac_compiler_gnu=yes
b1c92f91 4035else
57aa50d4 4036 ac_compiler_gnu=no
b1c92f91 4037fi
57aa50d4
TT
4038rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
4039ac_cv_c_compiler_gnu=$ac_compiler_gnu
b0cacab0 4040
e1052144 4041fi
57aa50d4
TT
4042{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
4043$as_echo "$ac_cv_c_compiler_gnu" >&6; }
4044if test $ac_compiler_gnu = yes; then
4045 GCC=yes
98919bdb 4046else
57aa50d4 4047 GCC=
98919bdb 4048fi
57aa50d4
TT
4049ac_test_CFLAGS=${CFLAGS+set}
4050ac_save_CFLAGS=$CFLAGS
4051{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
4052$as_echo_n "checking whether $CC accepts -g... " >&6; }
91d11da1 4053if ${ac_cv_prog_cc_g+:} false; then :
57aa50d4 4054 $as_echo_n "(cached) " >&6
98919bdb 4055else
57aa50d4
TT
4056 ac_save_c_werror_flag=$ac_c_werror_flag
4057 ac_c_werror_flag=yes
4058 ac_cv_prog_cc_g=no
4059 CFLAGS="-g"
4060 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4061/* end confdefs.h. */
e1052144 4062
57aa50d4
TT
4063int
4064main ()
4065{
98919bdb 4066
57aa50d4
TT
4067 ;
4068 return 0;
4069}
4070_ACEOF
4071if ac_fn_c_try_compile "$LINENO"; then :
4072 ac_cv_prog_cc_g=yes
c13351f6 4073else
57aa50d4
TT
4074 CFLAGS=""
4075 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4076/* end confdefs.h. */
c13351f6 4077
57aa50d4
TT
4078int
4079main ()
4080{
c13351f6 4081
57aa50d4
TT
4082 ;
4083 return 0;
4084}
4085_ACEOF
4086if ac_fn_c_try_compile "$LINENO"; then :
c13351f6 4087
57aa50d4
TT
4088else
4089 ac_c_werror_flag=$ac_save_c_werror_flag
4090 CFLAGS="-g"
4091 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4092/* end confdefs.h. */
c13351f6 4093
57aa50d4
TT
4094int
4095main ()
4096{
c13351f6 4097
57aa50d4
TT
4098 ;
4099 return 0;
4100}
b0cacab0 4101_ACEOF
57aa50d4
TT
4102if ac_fn_c_try_compile "$LINENO"; then :
4103 ac_cv_prog_cc_g=yes
1917875f 4104fi
57aa50d4 4105rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
e1052144 4106fi
57aa50d4 4107rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
8fdc9985 4108fi
57aa50d4
TT
4109rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
4110 ac_c_werror_flag=$ac_save_c_werror_flag
e1052144 4111fi
57aa50d4
TT
4112{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
4113$as_echo "$ac_cv_prog_cc_g" >&6; }
4114if test "$ac_test_CFLAGS" = set; then
4115 CFLAGS=$ac_save_CFLAGS
4116elif test $ac_cv_prog_cc_g = yes; then
4117 if test "$GCC" = yes; then
4118 CFLAGS="-g -O2"
4119 else
4120 CFLAGS="-g"
4121 fi
a64c9c13 4122else
57aa50d4
TT
4123 if test "$GCC" = yes; then
4124 CFLAGS="-O2"
4125 else
4126 CFLAGS=
4127 fi
a64c9c13 4128fi
57aa50d4
TT
4129{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
4130$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
91d11da1 4131if ${ac_cv_prog_cc_c89+:} false; then :
57aa50d4 4132 $as_echo_n "(cached) " >&6
a64c9c13 4133else
57aa50d4
TT
4134 ac_cv_prog_cc_c89=no
4135ac_save_CC=$CC
4136cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4137/* end confdefs.h. */
4138#include <stdarg.h>
4139#include <stdio.h>
91d11da1 4140struct stat;
57aa50d4
TT
4141/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
4142struct buf { int x; };
4143FILE * (*rcsopen) (struct buf *, struct stat *, int);
4144static char *e (p, i)
4145 char **p;
4146 int i;
4147{
4148 return p[i];
4149}
4150static char *f (char * (*g) (char **, int), char **p, ...)
4151{
4152 char *s;
4153 va_list v;
4154 va_start (v,p);
4155 s = g (p, va_arg (v,int));
4156 va_end (v);
4157 return s;
4158}
e1052144 4159
57aa50d4
TT
4160/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
4161 function prototypes and stuff, but not '\xHH' hex character constants.
4162 These don't provoke an error unfortunately, instead are silently treated
4163 as 'x'. The following induces an error, until -std is added to get
4164 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
4165 array size at least. It's necessary to write '\x00'==0 to get something
4166 that's true only with -std. */
4167int osf4_cc_array ['\x00' == 0 ? 1 : -1];
93636bde 4168
57aa50d4
TT
4169/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
4170 inside strings and character constants. */
4171#define FOO(x) 'x'
4172int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
a64c9c13 4173
57aa50d4
TT
4174int test (int i, double x);
4175struct s1 {int (*f) (int a);};
4176struct s2 {int (*f) (double a);};
4177int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
4178int argc;
4179char **argv;
4180int
4181main ()
4182{
4183return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
4184 ;
4185 return 0;
4186}
4187_ACEOF
4188for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
4189 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
4190do
4191 CC="$ac_save_CC $ac_arg"
4192 if ac_fn_c_try_compile "$LINENO"; then :
4193 ac_cv_prog_cc_c89=$ac_arg
a64c9c13 4194fi
57aa50d4
TT
4195rm -f core conftest.err conftest.$ac_objext
4196 test "x$ac_cv_prog_cc_c89" != "xno" && break
4197done
4198rm -f conftest.$ac_ext
4199CC=$ac_save_CC
a64c9c13 4200
57aa50d4
TT
4201fi
4202# AC_CACHE_VAL
4203case "x$ac_cv_prog_cc_c89" in
4204 x)
4205 { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
4206$as_echo "none needed" >&6; } ;;
4207 xno)
4208 { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
4209$as_echo "unsupported" >&6; } ;;
4210 *)
4211 CC="$CC $ac_cv_prog_cc_c89"
4212 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
4213$as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
4214esac
4215if test "x$ac_cv_prog_cc_c89" != xno; then :
a64c9c13 4216
e1052144
TT
4217fi
4218
57aa50d4
TT
4219ac_ext=c
4220ac_cpp='$CPP $CPPFLAGS'
4221ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
4222ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
4223ac_compiler_gnu=$ac_cv_c_compiler_gnu
93636bde 4224
9b3018a8
TT
4225if test "$GCC" = yes; then
4226 RDYNAMIC="-rdynamic"
4227
4228fi
57aa50d4
TT
4229ac_ext=c
4230ac_cpp='$CPP $CPPFLAGS'
4231ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
4232ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
4233ac_compiler_gnu=$ac_cv_c_compiler_gnu
4234{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5
4235$as_echo_n "checking how to run the C preprocessor... " >&6; }
4236# On Suns, sometimes $CPP names a directory.
4237if test -n "$CPP" && test -d "$CPP"; then
4238 CPP=
4239fi
4240if test -z "$CPP"; then
91d11da1 4241 if ${ac_cv_prog_CPP+:} false; then :
57aa50d4
TT
4242 $as_echo_n "(cached) " >&6
4243else
4244 # Double quotes because CPP needs to be expanded
4245 for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
4246 do
4247 ac_preproc_ok=false
4248for ac_c_preproc_warn_flag in '' yes
4249do
4250 # Use a header file that comes with gcc, so configuring glibc
4251 # with a fresh cross-compiler works.
4252 # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
4253 # <limits.h> exists even on freestanding compilers.
4254 # On the NeXT, cc -E runs the code through the compiler's parser,
4255 # not just through cpp. "Syntax error" is here to catch this case.
4256 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4257/* end confdefs.h. */
4258#ifdef __STDC__
4259# include <limits.h>
4260#else
4261# include <assert.h>
4262#endif
4263 Syntax error
4264_ACEOF
4265if ac_fn_c_try_cpp "$LINENO"; then :
a64c9c13 4266
cdf186e4 4267else
57aa50d4
TT
4268 # Broken: fails on valid input.
4269continue
cdf186e4 4270fi
91d11da1 4271rm -f conftest.err conftest.i conftest.$ac_ext
cdf186e4 4272
57aa50d4
TT
4273 # OK, works on sane cases. Now check whether nonexistent headers
4274 # can be detected and how.
4275 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4276/* end confdefs.h. */
4277#include <ac_nonexistent.h>
4278_ACEOF
4279if ac_fn_c_try_cpp "$LINENO"; then :
4280 # Broken: success on invalid input.
4281continue
cdf186e4 4282else
57aa50d4
TT
4283 # Passes both tests.
4284ac_preproc_ok=:
4285break
4286fi
91d11da1 4287rm -f conftest.err conftest.i conftest.$ac_ext
cdf186e4 4288
57aa50d4
TT
4289done
4290# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
91d11da1 4291rm -f conftest.i conftest.err conftest.$ac_ext
57aa50d4
TT
4292if $ac_preproc_ok; then :
4293 break
e1052144
TT
4294fi
4295
57aa50d4
TT
4296 done
4297 ac_cv_prog_CPP=$CPP
93636bde 4298
cdf186e4 4299fi
57aa50d4 4300 CPP=$ac_cv_prog_CPP
cdf186e4 4301else
57aa50d4 4302 ac_cv_prog_CPP=$CPP
e1052144 4303fi
57aa50d4
TT
4304{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5
4305$as_echo "$CPP" >&6; }
4306ac_preproc_ok=false
4307for ac_c_preproc_warn_flag in '' yes
4308do
4309 # Use a header file that comes with gcc, so configuring glibc
4310 # with a fresh cross-compiler works.
4311 # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
4312 # <limits.h> exists even on freestanding compilers.
4313 # On the NeXT, cc -E runs the code through the compiler's parser,
4314 # not just through cpp. "Syntax error" is here to catch this case.
4315 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4316/* end confdefs.h. */
4317#ifdef __STDC__
4318# include <limits.h>
4319#else
4320# include <assert.h>
4321#endif
4322 Syntax error
b0cacab0 4323_ACEOF
57aa50d4 4324if ac_fn_c_try_cpp "$LINENO"; then :
80bfaa3e
TT
4325
4326else
57aa50d4
TT
4327 # Broken: fails on valid input.
4328continue
e1052144 4329fi
91d11da1 4330rm -f conftest.err conftest.i conftest.$ac_ext
e1052144 4331
57aa50d4
TT
4332 # OK, works on sane cases. Now check whether nonexistent headers
4333 # can be detected and how.
4334 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4335/* end confdefs.h. */
4336#include <ac_nonexistent.h>
b0cacab0 4337_ACEOF
57aa50d4
TT
4338if ac_fn_c_try_cpp "$LINENO"; then :
4339 # Broken: success on invalid input.
4340continue
f0a22d0f 4341else
57aa50d4
TT
4342 # Passes both tests.
4343ac_preproc_ok=:
4344break
e1052144 4345fi
91d11da1 4346rm -f conftest.err conftest.i conftest.$ac_ext
e1052144 4347
57aa50d4
TT
4348done
4349# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
91d11da1 4350rm -f conftest.i conftest.err conftest.$ac_ext
57aa50d4 4351if $ac_preproc_ok; then :
2a29f135
TT
4352
4353else
57aa50d4
TT
4354 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
4355$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
91d11da1
TT
4356as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
4357See \`config.log' for more details" "$LINENO" 5; }
e1052144
TT
4358fi
4359
57aa50d4
TT
4360ac_ext=c
4361ac_cpp='$CPP $CPPFLAGS'
4362ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
4363ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
4364ac_compiler_gnu=$ac_cv_c_compiler_gnu
af773654 4365
57aa50d4
TT
4366{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for additional special compiler flags" >&5
4367$as_echo_n "checking for additional special compiler flags... " >&6; }
4368if test "$GCC" = yes
4369then
4370 case "$host_cpu" in
4371 alpha) addcflags="-mieee" ;;
4372 esac
14b596d4 4373fi
57aa50d4
TT
4374if test "x$addcflags" != x
4375then
4376 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $addcflags" >&5
4377$as_echo "$addcflags" >&6; }
4378 CFLAGS="$addcflags $CFLAGS"
14b596d4 4379else
57aa50d4
TT
4380 { $as_echo "$as_me:${as_lineno-$LINENO}: result: (none)" >&5
4381$as_echo "(none)" >&6; }
14b596d4 4382fi
57aa50d4
TT
4383LIB_EXT=.a
4384STATIC_LIB_EXT=.a
4385PROFILED_LIB_EXT=.a
14b596d4 4386
57aa50d4
TT
4387# Check whether --with-root-prefix was given.
4388if test "${with_root_prefix+set}" = set; then :
4389 withval=$with_root_prefix; root_prefix=$withval
14b596d4 4390else
57aa50d4
TT
4391 root_prefix=NONE
4392fi
4393# Check whether --enable-maintainer-mode was given.
4394if test "${enable_maintainer_mode+set}" = set; then :
4395 enableval=$enable_maintainer_mode; if test "$enableval" = "no"
4396then
4397 MAINTAINER_CMT=#
4398 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling maintainer mode" >&5
4399$as_echo "Disabling maintainer mode" >&6; }
4400else
4401 MAINTAINER_CMT=
4402 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling maintainer mode" >&5
4403$as_echo "Enabling maintainer mode" >&6; }
14b596d4
TT
4404fi
4405
57aa50d4
TT
4406else
4407 MAINTAINER_CMT=#
4408{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling maintainer mode by default" >&5
4409$as_echo "Disabling maintainer mode by default" >&6; }
4410
14b596d4 4411fi
14b596d4 4412
14b596d4 4413
5aa6c3f6
TT
4414# Check whether --enable-symlink-install was given.
4415if test "${enable_symlink_install+set}" = set; then :
4416 enableval=$enable_symlink_install; if test "$enableval" = "no"
4417then
4418 LINK_INSTALL_FLAGS=-f
4419 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling symlinks for install" >&5
4420$as_echo "Disabling symlinks for install" >&6; }
4421else
4422 LINK_INSTALL_FLAGS=-sf
4423 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling symlinks for install" >&5
4424$as_echo "Enabling symlinks for install" >&6; }
4425fi
4426
4427else
4428 LINK_INSTALL_FLAGS=-f
183c73b0
TT
4429{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling symlinks for install by default" >&5
4430$as_echo "Disabling symlinks for install by default" >&6; }
4431
4432fi
4433
4434
91d11da1
TT
4435relative_symlink_defined=
4436# Check whether --enable-relative-symlinks was given.
4437if test "${enable_relative_symlinks+set}" = set; then :
4438 enableval=$enable_relative_symlinks; if test "$enableval" = "no"
4439then
4440 SYMLINK_RELATIVE=
4441 relative_symlink_defined=yes
4442 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling relative symlinks for install" >&5
4443$as_echo "Disabling relative symlinks for install" >&6; }
4444else
4445 SYMLINK_RELATIVE=--relative
4446 relative_symlink_defined=yes
4447 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling relative symlinks for install" >&5
4448$as_echo "Enabling relative symlinks for install" >&6; }
4449fi
4450fi
4451
183c73b0
TT
4452# Check whether --enable-symlink-relative-symlinks was given.
4453if test "${enable_symlink_relative_symlinks+set}" = set; then :
4454 enableval=$enable_symlink_relative_symlinks; if test "$enableval" = "no"
4455then
91d11da1 4456 SYMLINK_RELATIVE=yes
183c73b0
TT
4457 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling relative symlinks for install" >&5
4458$as_echo "Disabling relative symlinks for install" >&6; }
4459else
4460 SYMLINK_RELATIVE=--relative
91d11da1
TT
4461 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling relative symlinks for install" >&5
4462$as_echo "Enabling relative symlinks for install" >&6; }
183c73b0
TT
4463fi
4464
4465else
91d11da1
TT
4466 if test -z "$relative_symlink_defined"
4467then
4468 SYMLINK_RELATIVE=
183c73b0
TT
4469{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling relative symlinks for install by default" >&5
4470$as_echo "Disabling relative symlinks for install by default" >&6; }
91d11da1 4471fi
5aa6c3f6
TT
4472
4473fi
4474
4475
4476# Check whether --enable-symlink-build was given.
4477if test "${enable_symlink_build+set}" = set; then :
4478 enableval=$enable_symlink_build; if test "$enableval" = "no"
4479then
4480 LINK_BUILD_FLAGS=
4481 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling symlinks for build" >&5
4482$as_echo "Disabling symlinks for build" >&6; }
4483else
4484 LINK_BUILD_FLAGS=-s
4485 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling symlinks for build" >&5
4486$as_echo "Enabling symlinks for build" >&6; }
4487fi
4488
4489else
4490 LINK_BUILD_FLAGS=
183c73b0
TT
4491{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling symlinks for build by default" >&5
4492$as_echo "Disabling symlinks for build by default" >&6; }
5aa6c3f6
TT
4493
4494fi
4495
4496
57aa50d4
TT
4497# Check whether --enable-verbose-makecmds was given.
4498if test "${enable_verbose_makecmds+set}" = set; then :
4499 enableval=$enable_verbose_makecmds; if test "$enableval" = "no"
4500then
4501 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling verbose make commands" >&5
4502$as_echo "Disabling verbose make commands" >&6; }
4503 E=@echo
c1986ecb 4504 ES=echo
57aa50d4 4505 Q=@
14b596d4 4506else
57aa50d4
TT
4507 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling verbose make commands" >&5
4508$as_echo "Enabling verbose make commands" >&6; }
4509 E=@\\#
c1986ecb 4510 ES=\\#
57aa50d4
TT
4511 Q=
4512fi
14b596d4 4513
14b596d4 4514else
57aa50d4
TT
4515 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling verbose make commands" >&5
4516$as_echo "Disabling verbose make commands" >&6; }
4517E=@echo
c1986ecb 4518ES=echo
57aa50d4 4519Q=@
14b596d4 4520
14b596d4
TT
4521fi
4522
14b596d4 4523
57aa50d4 4524
c1986ecb 4525
57aa50d4
TT
4526# Check whether --enable-compression was given.
4527if test "${enable_compression+set}" = set; then :
4528 enableval=$enable_compression; if test "$enableval" = "no"
4529then
4530 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling compression support" >&5
4531$as_echo "Disabling compression support" >&6; }
14b596d4 4532else
d1154eb4
TT
4533
4534$as_echo "#define ENABLE_COMPRESSION 1" >>confdefs.h
14b596d4 4535
57aa50d4
TT
4536 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling compression support" >&5
4537$as_echo "Enabling compression support" >&6; }
4538 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Compression support is experimental" >&5
4539$as_echo "$as_me: WARNING: Compression support is experimental" >&2;}
14b596d4
TT
4540fi
4541
4542else
57aa50d4
TT
4543 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling compression support by default" >&5
4544$as_echo "Disabling compression support by default" >&6; }
14b596d4
TT
4545
4546fi
4547
d1154eb4 4548
57aa50d4
TT
4549# Check whether --enable-htree was given.
4550if test "${enable_htree+set}" = set; then :
4551 enableval=$enable_htree; if test "$enableval" = "no"
4552then
4553 HTREE_CMT=#
4554 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling htree directory support" >&5
4555$as_echo "Disabling htree directory support" >&6; }
4556else
4557 HTREE_CMT=
4558 $as_echo "#define ENABLE_HTREE 1" >>confdefs.h
14b596d4 4559
57aa50d4
TT
4560 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling htree directory support" >&5
4561$as_echo "Enabling htree directory support" >&6; }
4562fi
14b596d4 4563
57aa50d4
TT
4564else
4565 HTREE_CMT=
4566$as_echo "#define ENABLE_HTREE 1" >>confdefs.h
14b596d4 4567
57aa50d4
TT
4568{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling htree directory support by default" >&5
4569$as_echo "Enabling htree directory support by default" >&6; }
14b596d4 4570
57aa50d4 4571fi
14b596d4
TT
4572
4573
57aa50d4
TT
4574E2_PKG_CONFIG_STATIC=--static
4575LDFLAG_DYNAMIC=
4576PRIVATE_LIBS_CMT=
4577# Check whether --enable-elf-shlibs was given.
4578if test "${enable_elf_shlibs+set}" = set; then :
4579 enableval=$enable_elf_shlibs; if test "$enableval" = "no"
cdf186e4 4580then
57aa50d4
TT
4581 ELF_CMT=#
4582 MAKEFILE_ELF=/dev/null
4583 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling ELF shared libraries" >&5
4584$as_echo "Disabling ELF shared libraries" >&6; }
cdf186e4 4585else
57aa50d4
TT
4586 E2_PKG_CONFIG_STATIC=
4587 ELF_CMT=
4588 MAKEFILE_ELF=$srcdir/lib/Makefile.elf-lib
4589 case "$host_os" in
4590 solaris2.*)
4591 MAKEFILE_ELF=$srcdir/lib/Makefile.solaris-lib
4592 ;;
4593 esac
4594 BINARY_TYPE=elfbin
4595 LIB_EXT=.so
4596 PRIVATE_LIBS_CMT=#
4597 LDFLAG_DYNAMIC='-Wl,-rpath-link,$(top_builddir)/lib'
4598 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling ELF shared libraries" >&5
4599$as_echo "Enabling ELF shared libraries" >&6; }
cdf186e4
TT
4600fi
4601
4602else
57aa50d4
TT
4603 MAKEFILE_ELF=/dev/null
4604ELF_CMT=#
4605{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling ELF shared libraries by default" >&5
4606$as_echo "Disabling ELF shared libraries by default" >&6; }
cdf186e4 4607
e1052144
TT
4608fi
4609
cdf186e4 4610
57aa50d4
TT
4611
4612# Check whether --enable-bsd-shlibs was given.
4613if test "${enable_bsd_shlibs+set}" = set; then :
4614 enableval=$enable_bsd_shlibs; if test "$enableval" = "no"
cdf186e4 4615then
57aa50d4
TT
4616 BSDLIB_CMT=#
4617 MAKEFILE_BSDLIB=/dev/null
4618 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling BSD shared libraries" >&5
4619$as_echo "Disabling BSD shared libraries" >&6; }
cdf186e4 4620else
57aa50d4
TT
4621 E2_PKG_CONFIG_STATIC=
4622 BSDLIB_CMT=
4623 MAKEFILE_BSDLIB=$srcdir/lib/Makefile.bsd-lib
4624 LIB_EXT=.so
4625 case "$host_os" in
4626 darwin*)
4627 MAKEFILE_BSDLIB=$srcdir/lib/Makefile.darwin-lib
4628 LIB_EXT=.dylib
4629 ;;
4630 esac
4631 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling BSD shared libraries" >&5
4632$as_echo "Enabling BSD shared libraries" >&6; }
cdf186e4
TT
4633fi
4634
4635else
57aa50d4
TT
4636 MAKEFILE_BSDLIB=/dev/null
4637BSDLIB_CMT=#
4638{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling BSD shared libraries by default" >&5
4639$as_echo "Disabling BSD shared libraries by default" >&6; }
cdf186e4 4640
e1052144
TT
4641fi
4642
cdf186e4 4643
57aa50d4
TT
4644
4645# Check whether --enable-profile was given.
4646if test "${enable_profile+set}" = set; then :
4647 enableval=$enable_profile; if test "$enableval" = "no"
cdf186e4 4648then
57aa50d4
TT
4649 PROFILE_CMT=#
4650 MAKEFILE_PROFILE=/dev/null
4651 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling profiling libraries" >&5
4652$as_echo "Disabling profiling libraries" >&6; }
cdf186e4 4653else
57aa50d4
TT
4654 PROFILE_CMT=
4655 MAKEFILE_PROFILE=$srcdir/lib/Makefile.profile
4656 PROFILED_LIB_EXT=_p.a
4657 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Building profiling libraries" >&5
4658$as_echo "Building profiling libraries" >&6; }
cdf186e4
TT
4659fi
4660
4661else
57aa50d4
TT
4662 PROFILE_CMT=#
4663MAKEFILE_PROFILE=/dev/null
4664{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling profiling libraries by default" >&5
4665$as_echo "Disabling profiling libraries by default" >&6; }
cdf186e4 4666
e1052144
TT
4667fi
4668
cdf186e4 4669
57aa50d4
TT
4670
4671# Check whether --enable-checker was given.
4672if test "${enable_checker+set}" = set; then :
4673 enableval=$enable_checker; if test "$enableval" = "no"
cdf186e4 4674then
57aa50d4
TT
4675 CHECKER_CMT=#
4676 MAKEFILE_CHECKER=/dev/null
4677 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling checker libraries" >&5
4678$as_echo "Disabling checker libraries" >&6; }
cdf186e4 4679else
57aa50d4
TT
4680 CHECKER_CMT=
4681 MAKEFILE_CHECKER=$srcdir/lib/Makefile.checker
4682 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Building checker libraries" >&5
4683$as_echo "Building checker libraries" >&6; }
cdf186e4
TT
4684fi
4685
4686else
57aa50d4
TT
4687 CHECKER_CMT=#
4688MAKEFILE_CHECKER=/dev/null
4689{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling checker libraries by default" >&5
4690$as_echo "Disabling checker libraries by default" >&6; }
cdf186e4 4691
e1052144
TT
4692fi
4693
93636bde 4694
cdf186e4 4695
57aa50d4
TT
4696
4697
4698
4699
4700
4701# Check whether --enable-jbd-debug was given.
4702if test "${enable_jbd_debug+set}" = set; then :
4703 enableval=$enable_jbd_debug; if test "$enableval" = "no"
5d40773b 4704then
57aa50d4
TT
4705 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling journal debugging" >&5
4706$as_echo "Disabling journal debugging" >&6; }
5d40773b 4707else
d1154eb4
TT
4708
4709$as_echo "#define CONFIG_JBD_DEBUG 1" >>confdefs.h
57aa50d4
TT
4710
4711 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling journal debugging" >&5
4712$as_echo "Enabling journal debugging" >&6; }
5d40773b
TT
4713fi
4714
4715else
57aa50d4
TT
4716 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling journal debugging by default" >&5
4717$as_echo "Disabling journal debugging by default" >&6; }
5d40773b 4718
e1052144
TT
4719fi
4720
57aa50d4
TT
4721# Check whether --enable-blkid-debug was given.
4722if test "${enable_blkid_debug+set}" = set; then :
4723 enableval=$enable_blkid_debug; if test "$enableval" = "no"
3249394d 4724then
57aa50d4
TT
4725 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling blkid debugging" >&5
4726$as_echo "Disabling blkid debugging" >&6; }
3249394d 4727else
d1154eb4
TT
4728
4729$as_echo "#define CONFIG_BLKID_DEBUG 1" >>confdefs.h
57aa50d4
TT
4730
4731 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling blkid debugging" >&5
4732$as_echo "Enabling blkid debugging" >&6; }
3249394d
TT
4733fi
4734
4735else
57aa50d4
TT
4736 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling blkid debugging by default" >&5
4737$as_echo "Disabling blkid debugging by default" >&6; }
3249394d
TT
4738
4739fi
4740
57aa50d4
TT
4741# Check whether --enable-testio-debug was given.
4742if test "${enable_testio_debug+set}" = set; then :
d1154eb4
TT
4743 enableval=$enable_testio_debug;
4744if test "$enableval" = "no"
3249394d 4745then
57aa50d4
TT
4746 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling testio debugging" >&5
4747$as_echo "Disabling testio debugging" >&6; }
4748 TEST_IO_CMT="#"
3249394d 4749else
57aa50d4
TT
4750 TEST_IO_CMT=
4751 $as_echo "#define CONFIG_TESTIO_DEBUG 1" >>confdefs.h
3249394d 4752
57aa50d4
TT
4753 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling testio debugging" >&5
4754$as_echo "Enabling testio debugging" >&6; }
4755fi
3249394d 4756
3249394d 4757else
57aa50d4
TT
4758 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling testio debugging by default" >&5
4759$as_echo "Enabling testio debugging by default" >&6; }
4760$as_echo "#define CONFIG_TESTIO_DEBUG 1" >>confdefs.h
3249394d 4761
57aa50d4 4762TEST_IO_CMT=
3249394d
TT
4763
4764fi
4765
3249394d 4766
57aa50d4
TT
4767
4768
4769if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
4770 if test -n "$ac_tool_prefix"; then
4771 # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
4772set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
4773{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4774$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 4775if ${ac_cv_path_PKG_CONFIG+:} false; then :
57aa50d4
TT
4776 $as_echo_n "(cached) " >&6
4777else
4778 case $PKG_CONFIG in
4779 [\\/]* | ?:[\\/]*)
4780 ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
4781 ;;
4782 *)
4783 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4784for as_dir in $PATH
4785do
4786 IFS=$as_save_IFS
4787 test -z "$as_dir" && as_dir=.
4788 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 4789 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
4790 ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
4791 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
4792 break 2
4793 fi
4794done
4795 done
4796IFS=$as_save_IFS
4797
4798 ;;
4799esac
4800fi
4801PKG_CONFIG=$ac_cv_path_PKG_CONFIG
4802if test -n "$PKG_CONFIG"; then
4803 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
4804$as_echo "$PKG_CONFIG" >&6; }
4805else
4806 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
4807$as_echo "no" >&6; }
3249394d
TT
4808fi
4809
4810
57aa50d4
TT
4811fi
4812if test -z "$ac_cv_path_PKG_CONFIG"; then
4813 ac_pt_PKG_CONFIG=$PKG_CONFIG
4814 # Extract the first word of "pkg-config", so it can be a program name with args.
4815set dummy pkg-config; ac_word=$2
4816{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4817$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 4818if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
57aa50d4
TT
4819 $as_echo_n "(cached) " >&6
4820else
4821 case $ac_pt_PKG_CONFIG in
4822 [\\/]* | ?:[\\/]*)
4823 ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
4824 ;;
4825 *)
4826 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4827for as_dir in $PATH
4828do
4829 IFS=$as_save_IFS
4830 test -z "$as_dir" && as_dir=.
4831 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 4832 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
4833 ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
4834 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
4835 break 2
4836 fi
4837done
4838 done
4839IFS=$as_save_IFS
3249394d 4840
57aa50d4
TT
4841 ;;
4842esac
4843fi
4844ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
4845if test -n "$ac_pt_PKG_CONFIG"; then
4846 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
4847$as_echo "$ac_pt_PKG_CONFIG" >&6; }
4848else
4849 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
4850$as_echo "no" >&6; }
4851fi
3249394d 4852
57aa50d4
TT
4853 if test "x$ac_pt_PKG_CONFIG" = x; then
4854 PKG_CONFIG=""
4855 else
4856 case $cross_compiling:$ac_tool_warned in
4857yes:)
4858{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
4859$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
4860ac_tool_warned=yes ;;
4861esac
4862 PKG_CONFIG=$ac_pt_PKG_CONFIG
3249394d 4863 fi
57aa50d4
TT
4864else
4865 PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
4866fi
3249394d
TT
4867
4868fi
57aa50d4
TT
4869if test -n "$PKG_CONFIG"; then
4870 _pkg_min_version=0.9.0
4871 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
4872$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
4873 if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
4874 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
4875$as_echo "yes" >&6; }
4876 else
4877 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
4878$as_echo "no" >&6; }
4879 PKG_CONFIG=""
4880 fi
4881
4882fi
4883LIBUUID=
4884DEPLIBUUID=
4885STATIC_LIBUUID=
4886DEPSTATIC_LIBUUID=
4887PROFILED_LIBUUID=
4888DEPPROFILED_LIBUUID=
4889UUID_CMT=
4890# Check whether --enable-libuuid was given.
4891if test "${enable_libuuid+set}" = set; then :
4892 enableval=$enable_libuuid; if test "$enableval" = "no"
5610f992 4893then
57aa50d4 4894 if test -z "$PKG_CONFIG"; then
91d11da1 4895 as_fn_error $? "pkg-config not installed; please install it." "$LINENO" 5
57aa50d4
TT
4896 fi
4897
4898 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uuid_generate in -luuid" >&5
4899$as_echo_n "checking for uuid_generate in -luuid... " >&6; }
91d11da1 4900if ${ac_cv_lib_uuid_uuid_generate+:} false; then :
57aa50d4 4901 $as_echo_n "(cached) " >&6
5610f992 4902else
57aa50d4
TT
4903 ac_check_lib_save_LIBS=$LIBS
4904LIBS="-luuid $LIBUUID $LIBS"
4905cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4906/* end confdefs.h. */
5610f992 4907
57aa50d4
TT
4908/* Override any GCC internal prototype to avoid an error.
4909 Use char because int might match the return type of a GCC
4910 builtin and then its argument prototype would still apply. */
4911#ifdef __cplusplus
4912extern "C"
4913#endif
4914char uuid_generate ();
4915int
4916main ()
4917{
4918return uuid_generate ();
4919 ;
4920 return 0;
4921}
4922_ACEOF
4923if ac_fn_c_try_link "$LINENO"; then :
4924 ac_cv_lib_uuid_uuid_generate=yes
4925else
4926 ac_cv_lib_uuid_uuid_generate=no
4927fi
4928rm -f core conftest.err conftest.$ac_objext \
4929 conftest$ac_exeext conftest.$ac_ext
4930LIBS=$ac_check_lib_save_LIBS
4931fi
4932{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_uuid_uuid_generate" >&5
4933$as_echo "$ac_cv_lib_uuid_uuid_generate" >&6; }
91d11da1 4934if test "x$ac_cv_lib_uuid_uuid_generate" = xyes; then :
57aa50d4
TT
4935 LIBUUID=`$PKG_CONFIG --libs uuid`;
4936 STATIC_LIBUUID=`$PKG_CONFIG --static --libs uuid`
4937else
91d11da1 4938 as_fn_error $? "external uuid library not found" "$LINENO" 5
5610f992
TT
4939fi
4940
57aa50d4
TT
4941 UUID_CMT=#
4942 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling private uuid library" >&5
4943$as_echo "Disabling private uuid library" >&6; }
5610f992 4944else
57aa50d4
TT
4945 LIBUUID='$(LIB)/libuuid'$LIB_EXT
4946 DEPLIBUUID=$LIBUUID
4947 STATIC_LIBUUID='$(LIB)/libuuid'$STATIC_LIB_EXT
4948 DEPSTATIC_LIBUUID=$STATIC_LIBUUID
4949 PROFILED_LIBUUID='$(LIB)/libuuid'$PROFILED_LIB_EXT
4950 DEPPROFILED_LIBUUID=$PROFILED_LIBUUID
4951 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling private uuid library" >&5
4952$as_echo "Enabling private uuid library" >&6; }
4953fi
5610f992 4954
57aa50d4
TT
4955else
4956 LIBUUID='$(LIB)/libuuid'$LIB_EXT
4957DEPLIBUUID=$LIBUUID
4958STATIC_LIBUUID='$(LIB)/libuuid'$STATIC_LIB_EXT
4959DEPSTATIC_LIBUUID=$STATIC_LIBUUID
4960PROFILED_LIBUUID='$(LIB)/libuuid'$PROFILED_LIB_EXT
4961DEPPROFILED_LIBUUID=$PROFILED_LIBUUID
4962{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling private uuid library by default" >&5
4963$as_echo "Enabling private uuid library by default" >&6; }
5610f992
TT
4964
4965fi
4966
4967
cdf186e4 4968
a64c9c13 4969
93636bde
TT
4970
4971
93636bde 4972
93636bde
TT
4973
4974
57aa50d4
TT
4975
4976if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
4977 if test -n "$ac_tool_prefix"; then
4978 # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
4979set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
4980{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4981$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 4982if ${ac_cv_path_PKG_CONFIG+:} false; then :
39fd3d4f 4983 $as_echo_n "(cached) " >&6
a64c9c13 4984else
57aa50d4
TT
4985 case $PKG_CONFIG in
4986 [\\/]* | ?:[\\/]*)
4987 ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
4988 ;;
e1052144 4989 *)
b0cacab0
TT
4990 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4991for as_dir in $PATH
4992do
4993 IFS=$as_save_IFS
4994 test -z "$as_dir" && as_dir=.
57aa50d4 4995 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 4996 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
4997 ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
4998 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
4999 break 2
5000 fi
b0cacab0 5001done
57aa50d4 5002 done
e1052144 5003IFS=$as_save_IFS
b0cacab0 5004
57aa50d4 5005 ;;
b0cacab0
TT
5006esac
5007fi
57aa50d4
TT
5008PKG_CONFIG=$ac_cv_path_PKG_CONFIG
5009if test -n "$PKG_CONFIG"; then
5010 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
5011$as_echo "$PKG_CONFIG" >&6; }
07a0db15 5012else
57aa50d4 5013 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
39fd3d4f 5014$as_echo "no" >&6; }
07a0db15 5015fi
07a0db15 5016
57aa50d4
TT
5017
5018fi
5019if test -z "$ac_cv_path_PKG_CONFIG"; then
5020 ac_pt_PKG_CONFIG=$PKG_CONFIG
5021 # Extract the first word of "pkg-config", so it can be a program name with args.
5022set dummy pkg-config; ac_word=$2
5023{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
39fd3d4f 5024$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 5025if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
39fd3d4f 5026 $as_echo_n "(cached) " >&6
a64c9c13 5027else
57aa50d4 5028 case $ac_pt_PKG_CONFIG in
b0cacab0 5029 [\\/]* | ?:[\\/]*)
57aa50d4 5030 ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
b0cacab0
TT
5031 ;;
5032 *)
5033 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5034for as_dir in $PATH
5035do
5036 IFS=$as_save_IFS
5037 test -z "$as_dir" && as_dir=.
57aa50d4 5038 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 5039 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
5040 ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
5041 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
b0cacab0
TT
5042 break 2
5043 fi
5044done
57aa50d4 5045 done
e1052144 5046IFS=$as_save_IFS
a64c9c13 5047
b0cacab0
TT
5048 ;;
5049esac
a64c9c13 5050fi
57aa50d4
TT
5051ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
5052if test -n "$ac_pt_PKG_CONFIG"; then
5053 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
5054$as_echo "$ac_pt_PKG_CONFIG" >&6; }
a64c9c13 5055else
57aa50d4 5056 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
39fd3d4f 5057$as_echo "no" >&6; }
a64c9c13 5058fi
a64c9c13 5059
57aa50d4
TT
5060 if test "x$ac_pt_PKG_CONFIG" = x; then
5061 PKG_CONFIG=""
b0cacab0 5062 else
57aa50d4
TT
5063 case $cross_compiling:$ac_tool_warned in
5064yes:)
5065{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
5066$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
5067ac_tool_warned=yes ;;
5068esac
5069 PKG_CONFIG=$ac_pt_PKG_CONFIG
b0cacab0 5070 fi
57aa50d4
TT
5071else
5072 PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
a64c9c13 5073fi
93636bde 5074
a64c9c13 5075fi
57aa50d4
TT
5076if test -n "$PKG_CONFIG"; then
5077 _pkg_min_version=0.9.0
5078 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
5079$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
5080 if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
5081 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
5082$as_echo "yes" >&6; }
5083 else
5084 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
5085$as_echo "no" >&6; }
5086 PKG_CONFIG=""
5087 fi
93636bde 5088
57aa50d4
TT
5089fi
5090LIBBLKID=
5091DEPLIBBLKID=
5092STATIC_LIBBLKID=
5093DEPSTATIC_LIBBLKID=
5094PROFILED_LIBBLKID=
5095DEPPROFILED_LIBBLKID=
5096BLKID_CMT=
d1154eb4 5097
57aa50d4
TT
5098# Check whether --enable-libblkid was given.
5099if test "${enable_libblkid+set}" = set; then :
5100 enableval=$enable_libblkid; if test "$enableval" = "no"
5101then
5102 if test -z "$PKG_CONFIG"; then
91d11da1 5103 as_fn_error $? "pkg-config not installed; please install it." "$LINENO" 5
57aa50d4
TT
5104 fi
5105
5106 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for blkid_get_cache in -lblkid" >&5
5107$as_echo_n "checking for blkid_get_cache in -lblkid... " >&6; }
91d11da1 5108if ${ac_cv_lib_blkid_blkid_get_cache+:} false; then :
39fd3d4f 5109 $as_echo_n "(cached) " >&6
a64c9c13 5110else
57aa50d4
TT
5111 ac_check_lib_save_LIBS=$LIBS
5112LIBS="-lblkid $LIBBLKID $LIBS"
5113cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5114/* end confdefs.h. */
5115
5116/* Override any GCC internal prototype to avoid an error.
5117 Use char because int might match the return type of a GCC
5118 builtin and then its argument prototype would still apply. */
5119#ifdef __cplusplus
5120extern "C"
5121#endif
5122char blkid_get_cache ();
5123int
5124main ()
5125{
5126return blkid_get_cache ();
5127 ;
5128 return 0;
5129}
5130_ACEOF
5131if ac_fn_c_try_link "$LINENO"; then :
5132 ac_cv_lib_blkid_blkid_get_cache=yes
b0cacab0 5133else
57aa50d4 5134 ac_cv_lib_blkid_blkid_get_cache=no
a64c9c13 5135fi
57aa50d4
TT
5136rm -f core conftest.err conftest.$ac_objext \
5137 conftest$ac_exeext conftest.$ac_ext
5138LIBS=$ac_check_lib_save_LIBS
a64c9c13 5139fi
57aa50d4
TT
5140{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_blkid_blkid_get_cache" >&5
5141$as_echo "$ac_cv_lib_blkid_blkid_get_cache" >&6; }
91d11da1 5142if test "x$ac_cv_lib_blkid_blkid_get_cache" = xyes; then :
57aa50d4
TT
5143 LIBBLKID=`$PKG_CONFIG --libs blkid`;
5144 STATIC_LIBBLKID=`$PKG_CONFIG --static --libs blkid`
b0cacab0 5145else
91d11da1 5146 as_fn_error $? "external blkid library not found" "$LINENO" 5
a64c9c13 5147fi
93636bde 5148
57aa50d4
TT
5149 BLKID_CMT=#
5150 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling private blkid library" >&5
5151$as_echo "Disabling private blkid library" >&6; }
07a0db15 5152else
57aa50d4
TT
5153 LIBBLKID='$(LIB)/libblkid'$LIB_EXT
5154 DEPLIBBLKID=$LIBBLKID
5155 STATIC_LIBBLKID='$(LIB)/libblkid'$STATIC_LIB_EXT
5156 DEPSTATIC_LIBBLKID=$STATIC_LIBBLKID
5157 PROFILED_LIBBLKID='$(LIB)/libblkid'$PROFILED_LIB_EXT
5158 DEPPROFILED_LIBBLKID=$PROFILED_LIBBLKID
5159 $as_echo "#define CONFIG_BUILD_FINDFS 1" >>confdefs.h
5160
5161 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling private blkid library" >&5
5162$as_echo "Enabling private blkid library" >&6; }
b0cacab0 5163fi
57aa50d4 5164
a64c9c13 5165else
57aa50d4
TT
5166 LIBBLKID='$(LIB)/libblkid'$LIB_EXT
5167DEPLIBBLKID=$LIBBLKID
5168STATIC_LIBBLKID='$(LIB)/libblkid'$STATIC_LIB_EXT
5169DEPSTATIC_LIBBLKID=$STATIC_LIBBLKID
5170PROFILED_LIBBLKID='$(LIB)/libblkid'$PROFILED_LIB_EXT
5171DEPPROFILED_LIBBLKID=$PROFILED_LIBBLKID
5172$as_echo "#define CONFIG_BUILD_FINDFS 1" >>confdefs.h
5173
5174{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling private blkid library by default" >&5
5175$as_echo "Enabling private blkid library by default" >&6; }
5176
a64c9c13 5177fi
07a0db15 5178
a64c9c13 5179
b0cacab0 5180
b0cacab0 5181
a64c9c13 5182
b0cacab0 5183
07a0db15 5184
57aa50d4 5185
f239fefc
AK
5186
5187
5188if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
5189 if test -n "$ac_tool_prefix"; then
5190 # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
5191set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
5192{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5193$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 5194if ${ac_cv_path_PKG_CONFIG+:} false; then :
f239fefc
AK
5195 $as_echo_n "(cached) " >&6
5196else
5197 case $PKG_CONFIG in
5198 [\\/]* | ?:[\\/]*)
5199 ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
5200 ;;
5201 *)
5202 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5203for as_dir in $PATH
5204do
5205 IFS=$as_save_IFS
5206 test -z "$as_dir" && as_dir=.
5207 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 5208 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
f239fefc
AK
5209 ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
5210 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
5211 break 2
5212 fi
5213done
5214 done
5215IFS=$as_save_IFS
5216
5217 ;;
5218esac
5219fi
5220PKG_CONFIG=$ac_cv_path_PKG_CONFIG
5221if test -n "$PKG_CONFIG"; then
5222 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
5223$as_echo "$PKG_CONFIG" >&6; }
5224else
5225 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
5226$as_echo "no" >&6; }
5227fi
5228
5229
5230fi
5231if test -z "$ac_cv_path_PKG_CONFIG"; then
5232 ac_pt_PKG_CONFIG=$PKG_CONFIG
5233 # Extract the first word of "pkg-config", so it can be a program name with args.
5234set dummy pkg-config; ac_word=$2
5235{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5236$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 5237if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
f239fefc
AK
5238 $as_echo_n "(cached) " >&6
5239else
5240 case $ac_pt_PKG_CONFIG in
5241 [\\/]* | ?:[\\/]*)
5242 ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
5243 ;;
5244 *)
5245 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5246for as_dir in $PATH
5247do
5248 IFS=$as_save_IFS
5249 test -z "$as_dir" && as_dir=.
5250 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 5251 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
f239fefc
AK
5252 ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
5253 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
5254 break 2
5255 fi
5256done
5257 done
5258IFS=$as_save_IFS
5259
5260 ;;
5261esac
5262fi
5263ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
5264if test -n "$ac_pt_PKG_CONFIG"; then
5265 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
5266$as_echo "$ac_pt_PKG_CONFIG" >&6; }
5267else
5268 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
5269$as_echo "no" >&6; }
5270fi
5271
5272 if test "x$ac_pt_PKG_CONFIG" = x; then
5273 PKG_CONFIG=""
5274 else
5275 case $cross_compiling:$ac_tool_warned in
5276yes:)
5277{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
5278$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
5279ac_tool_warned=yes ;;
5280esac
5281 PKG_CONFIG=$ac_pt_PKG_CONFIG
5282 fi
5283else
5284 PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
5285fi
5286
5287fi
5288if test -n "$PKG_CONFIG"; then
5289 _pkg_min_version=0.9.0
5290 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
5291$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
5292 if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
5293 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
5294$as_echo "yes" >&6; }
5295 else
5296 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
5297$as_echo "no" >&6; }
5298 PKG_CONFIG=""
5299 fi
5300
5301fi
f239fefc 5302
7becb206
TT
5303# Check whether --enable-quota was given.
5304if test "${enable_quota+set}" = set; then :
5305 enableval=$enable_quota; if test "$enableval" = "no"
5306then
5307 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling quota support" >&5
5308$as_echo "Disabling quota support" >&6; }
f239fefc 5309else
7becb206 5310 $as_echo "#define CONFIG_QUOTA 1" >>confdefs.h
f239fefc 5311
7becb206
TT
5312 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling quota support" >&5
5313$as_echo "Enabling quota support" >&6; }
f239fefc
AK
5314fi
5315
f239fefc 5316else
7becb206
TT
5317 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling quota support by default" >&5
5318$as_echo "Disabling quota support by default" >&6; }
5319
f239fefc
AK
5320fi
5321
7becb206 5322LIBQUOTA='$(LIB)/libquota'$LIB_EXT
f239fefc
AK
5323DEPLIBQUOTA=$LIBQUOTA
5324STATIC_LIBQUOTA='$(LIB)/libquota'$STATIC_LIB_EXT
5325DEPSTATIC_LIBQUOTA=$STATIC_LIBQUOTA
5326PROFILED_LIBQUOTA='$(LIB)/libquota'$PROFILED_LIB_EXT
5327DEPPROFILED_LIBQUOTA=$PROFILED_LIBQUOTA
f239fefc
AK
5328
5329
5330
5331
5332
5333
5334
57aa50d4
TT
5335# Check whether --enable-debugfs was given.
5336if test "${enable_debugfs+set}" = set; then :
5337 enableval=$enable_debugfs; if test "$enableval" = "no"
5338then
5339 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling debugfs support" >&5
5340$as_echo "Disabling debugfs support" >&6; }
5341 DEBUGFS_CMT="#"
b0cacab0 5342else
57aa50d4
TT
5343 DEBUGFS_CMT=
5344 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling debugfs support" >&5
5345$as_echo "Enabling debugfs support" >&6; }
b0cacab0 5346fi
a64c9c13 5347
b0cacab0 5348else
57aa50d4
TT
5349 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling debugfs support by default" >&5
5350$as_echo "Enabling debugfs support by default" >&6; }
5351DEBUGFS_CMT=
a64c9c13 5352
93636bde 5353fi
57aa50d4
TT
5354
5355
5356# Check whether --enable-imager was given.
5357if test "${enable_imager+set}" = set; then :
5358 enableval=$enable_imager; if test "$enableval" = "no"
5359then
5360 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling e2image support" >&5
5361$as_echo "Disabling e2image support" >&6; }
5362 IMAGER_CMT="#"
b0cacab0 5363else
57aa50d4
TT
5364 IMAGER_CMT=
5365 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling e2image support" >&5
5366$as_echo "Enabling e2image support" >&6; }
b0cacab0
TT
5367fi
5368
b0cacab0 5369else
57aa50d4
TT
5370 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling e2image support by default" >&5
5371$as_echo "Enabling e2image support by default" >&6; }
5372IMAGER_CMT=
5373
93636bde
TT
5374fi
5375
a64c9c13 5376
57aa50d4
TT
5377# Check whether --enable-resizer was given.
5378if test "${enable_resizer+set}" = set; then :
5379 enableval=$enable_resizer; if test "$enableval" = "no"
5380then
5381 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling e2resize support" >&5
5382$as_echo "Disabling e2resize support" >&6; }
5383 RESIZER_CMT="#"
b0cacab0 5384else
57aa50d4
TT
5385 RESIZER_CMT=
5386 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling e2resize support" >&5
5387$as_echo "Enabling e2resize support" >&6; }
5388fi
b0cacab0 5389
b0cacab0 5390else
57aa50d4
TT
5391 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling e2resize support by default" >&5
5392$as_echo "Enabling e2resize support by default" >&6; }
5393RESIZER_CMT=
b0cacab0 5394
b0cacab0 5395fi
e1052144 5396
57aa50d4 5397
8d9c50c5
TT
5398# Check whether --enable-defrag was given.
5399if test "${enable_defrag+set}" = set; then :
5400 enableval=$enable_defrag; if test "$enableval" = "no"
5401then
5402 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling e4defrag support" >&5
5403$as_echo "Disabling e4defrag support" >&6; }
5404 DEFRAG_CMT="#"
5405else
5406 DEFRAG_CMT=
5407 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling e4defrag support" >&5
5408$as_echo "Enabling e4defrag support" >&6; }
5409fi
5410
5411else
5412 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling e4defrag support by default" >&5
5413$as_echo "Enabling e4defrag support by default" >&6; }
5414DEFRAG_CMT=
5415
5416fi
5417
5418
57aa50d4
TT
5419# Check whether --enable-fsck was given.
5420if test "${enable_fsck+set}" = set; then :
5421 enableval=$enable_fsck; if test "$enableval" = "no"
5422then
5423 FSCK_PROG='' FSCK_MAN=''
5424 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Not building fsck wrapper" >&5
5425$as_echo "Not building fsck wrapper" >&6; }
5426else
5427 FSCK_PROG=fsck FSCK_MAN=fsck.8
5428 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Building fsck wrapper" >&5
5429$as_echo "Building fsck wrapper" >&6; }
a64c9c13
TT
5430fi
5431
57aa50d4
TT
5432else
5433 case "$host_os" in
5434 gnu*)
5435 FSCK_PROG='' FSCK_MAN=''
5436 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Not building fsck wrapper by default" >&5
5437$as_echo "Not building fsck wrapper by default" >&6; }
5438 ;;
5439 *)
5440 FSCK_PROG=fsck FSCK_MAN=fsck.8
5441 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Building fsck wrapper by default" >&5
5442$as_echo "Building fsck wrapper by default" >&6; }
5443esac
b0cacab0 5444
57aa50d4 5445fi
b0cacab0 5446
93636bde 5447
b0cacab0 5448
57aa50d4
TT
5449# Check whether --enable-e2initrd-helper was given.
5450if test "${enable_e2initrd_helper+set}" = set; then :
5451 enableval=$enable_e2initrd_helper; if test "$enableval" = "no"
5452then
5453 E2INITRD_PROG='' E2INITRD_MAN=''
5454 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Not building e2initrd helper" >&5
5455$as_echo "Not building e2initrd helper" >&6; }
5456else
5457 E2INITRD_PROG=e2initrd_helper E2INITRD_MAN=e2initrd_helper.8
5458 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Building e2initrd helper" >&5
5459$as_echo "Building e2initrd helper" >&6; }
5460fi
a64c9c13 5461
a64c9c13 5462else
57aa50d4
TT
5463 E2INITRD_PROG=e2initrd_helper E2INITRD_MAN=e2initrd_helper.8
5464{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Building e2initrd helper by default" >&5
5465$as_echo "Building e2initrd helper by default" >&6; }
b0cacab0 5466
a64c9c13 5467fi
e1052144 5468
57aa50d4
TT
5469
5470
5471# Check whether --enable-tls was given.
5472if test "${enable_tls+set}" = set; then :
5473 enableval=$enable_tls; if test "$enableval" = "no"
5474then
5475 try_tls=""
5476 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Disabling thread local support" >&5
5477$as_echo "Disabling thread local support" >&6; }
5478else
5479 try_tls="yes"
5480 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Enabling thread local support" >&5
5481$as_echo "Enabling thread local support" >&6; }
a64c9c13
TT
5482fi
5483
57aa50d4
TT
5484else
5485 if test -n "$WITH_DIET_LIBC"
5486then
5487 try_tls=""
5488 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Diet libc does not support thread local support" >&5
5489$as_echo "Diet libc does not support thread local support" >&6; }
5490else
5491 try_tls="yes"
5492 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Try using thread local support by default" >&5
5493$as_echo "Try using thread local support by default" >&6; }
5494fi
a64c9c13 5495
93636bde 5496fi
07a0db15 5497
57aa50d4
TT
5498if test "$try_tls" = "yes"
5499then
a64c9c13 5500
57aa50d4
TT
5501 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for thread local storage (TLS) class" >&5
5502$as_echo_n "checking for thread local storage (TLS) class... " >&6; }
91d11da1 5503 if ${ac_cv_tls+:} false; then :
39fd3d4f 5504 $as_echo_n "(cached) " >&6
b0cacab0 5505else
b0cacab0 5506
57aa50d4
TT
5507 ax_tls_keywords="__thread __declspec(thread) none"
5508 for ax_tls_keyword in $ax_tls_keywords; do
5509 case $ax_tls_keyword in
5510 none) ac_cv_tls=none ; break ;;
5511 *)
5512 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5513/* end confdefs.h. */
5514#include <stdlib.h>
5515 static void
5516 foo(void) {
5517 static $ax_tls_keyword int bar;
5518 exit(1);
5519 }
b0cacab0
TT
5520int
5521main ()
5522{
57aa50d4 5523
b0cacab0
TT
5524 ;
5525 return 0;
5526}
5527_ACEOF
57aa50d4
TT
5528if ac_fn_c_try_compile "$LINENO"; then :
5529 ac_cv_tls=$ax_tls_keyword ; break
b0cacab0 5530else
57aa50d4 5531 ac_cv_tls=none
b0cacab0 5532
b0cacab0 5533fi
e1052144 5534rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
57aa50d4
TT
5535 esac
5536 done
5537
b0cacab0 5538fi
b0cacab0 5539
57aa50d4
TT
5540
5541 if test "$ac_cv_tls" != "none"; then
5542
5543cat >>confdefs.h <<_ACEOF
5544#define TLS $ac_cv_tls
b0cacab0 5545_ACEOF
93636bde 5546
b0cacab0 5547 fi
57aa50d4
TT
5548 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_tls" >&5
5549$as_echo "$ac_cv_tls" >&6; }
b0cacab0 5550
57aa50d4 5551fi
d1154eb4 5552
57aa50d4
TT
5553# Check whether --enable-uuidd was given.
5554if test "${enable_uuidd+set}" = set; then :
5555 enableval=$enable_uuidd; if test "$enableval" = "no"
5556then
5557 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Not building uuidd" >&5
5558$as_echo "Not building uuidd" >&6; }
5559 UUIDD_CMT="#"
a64c9c13 5560else
57aa50d4
TT
5561 $as_echo "#define USE_UUIDD 1" >>confdefs.h
5562
5563 UUIDD_CMT=""
5564 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Building uuidd" >&5
5565$as_echo "Building uuidd" >&6; }
5566fi
a64c9c13 5567
a64c9c13 5568else
57aa50d4 5569 $as_echo "#define USE_UUIDD 1" >>confdefs.h
a64c9c13 5570
57aa50d4
TT
5571UUIDD_CMT=""
5572{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Building uuidd by default" >&5
5573$as_echo "Building uuidd by default" >&6; }
e1052144 5574
a64c9c13 5575fi
e1052144 5576
93636bde 5577
57aa50d4 5578MAKEFILE_LIBRARY=$srcdir/lib/Makefile.library
a64c9c13 5579
57aa50d4
TT
5580GETTEXT_PACKAGE=e2fsprogs
5581PACKAGE=e2fsprogs
5582VERSION="$E2FSPROGS_VERSION"
5583VERSION=0.14.1
d1154eb4 5584
57aa50d4
TT
5585cat >>confdefs.h <<_ACEOF
5586#define PACKAGE "$PACKAGE"
b0cacab0 5587_ACEOF
a64c9c13 5588
d1154eb4 5589
57aa50d4
TT
5590cat >>confdefs.h <<_ACEOF
5591#define VERSION "$VERSION"
5592_ACEOF
5593
5594
5595
5596
5597
5598{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
5599$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
5600set x ${MAKE-make}
5601ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
91d11da1 5602if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
39fd3d4f 5603 $as_echo_n "(cached) " >&6
b0cacab0 5604else
57aa50d4
TT
5605 cat >conftest.make <<\_ACEOF
5606SHELL = /bin/sh
5607all:
5608 @echo '@@@%%%=$(MAKE)=@@@%%%'
b0cacab0 5609_ACEOF
91d11da1 5610# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
57aa50d4
TT
5611case `${MAKE-make} -f conftest.make 2>/dev/null` in
5612 *@@@%%%=?*=@@@%%%*)
5613 eval ac_cv_prog_make_${ac_make}_set=yes;;
5614 *)
5615 eval ac_cv_prog_make_${ac_make}_set=no;;
e1052144 5616esac
57aa50d4
TT
5617rm -f conftest.make
5618fi
5619if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
5620 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
5621$as_echo "yes" >&6; }
5622 SET_MAKE=
39fd3d4f 5623else
57aa50d4
TT
5624 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
5625$as_echo "no" >&6; }
5626 SET_MAKE="MAKE=${MAKE-make}"
39fd3d4f
SJR
5627fi
5628
57aa50d4
TT
5629# Find a good install program. We prefer a C program (faster),
5630# so one script is as good as another. But avoid the broken or
5631# incompatible versions:
5632# SysV /etc/install, /usr/sbin/install
5633# SunOS /usr/etc/install
5634# IRIX /sbin/install
5635# AIX /bin/install
5636# AmigaOS /C/install, which installs bootblocks on floppy discs
5637# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
5638# AFS /usr/afsws/bin/install, which mishandles nonexistent args
5639# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
5640# OS/2's system install, which has a completely different semantic
5641# ./install, which can be erroneously created by make from ./install.sh.
5642# Reject install programs that cannot install multiple files.
5643{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
5644$as_echo_n "checking for a BSD-compatible install... " >&6; }
5645if test -z "$INSTALL"; then
91d11da1 5646if ${ac_cv_path_install+:} false; then :
57aa50d4 5647 $as_echo_n "(cached) " >&6
93636bde 5648else
57aa50d4
TT
5649 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5650for as_dir in $PATH
5651do
5652 IFS=$as_save_IFS
5653 test -z "$as_dir" && as_dir=.
5654 # Account for people who put trailing slashes in PATH elements.
5655case $as_dir/ in #((
5656 ./ | .// | /[cC]/* | \
5657 /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
5658 ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
5659 /usr/ucb/* ) ;;
5660 *)
5661 # OSF1 and SCO ODT 3.0 have their own names for install.
5662 # Don't use installbsd from OSF since it installs stuff as root
5663 # by default.
5664 for ac_prog in ginstall scoinst install; do
5665 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 5666 if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
57aa50d4
TT
5667 if test $ac_prog = install &&
5668 grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
5669 # AIX install. It has an incompatible calling convention.
5670 :
5671 elif test $ac_prog = install &&
5672 grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
5673 # program-specific install script used by HP pwplus--don't use.
5674 :
5675 else
5676 rm -rf conftest.one conftest.two conftest.dir
5677 echo one > conftest.one
5678 echo two > conftest.two
5679 mkdir conftest.dir
5680 if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
5681 test -s conftest.one && test -s conftest.two &&
5682 test -s conftest.dir/conftest.one &&
5683 test -s conftest.dir/conftest.two
5684 then
5685 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
5686 break 3
5687 fi
5688 fi
5689 fi
5690 done
5691 done
5692 ;;
5693esac
5694
5695 done
5696IFS=$as_save_IFS
b0cacab0 5697
57aa50d4 5698rm -rf conftest.one conftest.two conftest.dir
39fd3d4f 5699
93636bde 5700fi
57aa50d4
TT
5701 if test "${ac_cv_path_install+set}" = set; then
5702 INSTALL=$ac_cv_path_install
5703 else
5704 # As a last resort, use the slow shell script. Don't cache a
5705 # value for INSTALL within a source directory, because that will
5706 # break other packages using the cache if that directory is
5707 # removed, or if the value is a relative name.
5708 INSTALL=$ac_install_sh
5709 fi
93636bde 5710fi
57aa50d4
TT
5711{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
5712$as_echo "$INSTALL" >&6; }
a64c9c13 5713
57aa50d4
TT
5714# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
5715# It thinks the first close brace ends the variable substitution.
5716test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
b0cacab0 5717
57aa50d4 5718test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
a64c9c13 5719
57aa50d4 5720test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
39fd3d4f 5721
39fd3d4f 5722
57aa50d4
TT
5723 MKINSTALLDIRS=
5724 if test -n "$ac_aux_dir"; then
5725 case "$ac_aux_dir" in
5726 /*) MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" ;;
5727 *) MKINSTALLDIRS="\$(top_builddir)/$ac_aux_dir/mkinstalldirs" ;;
5728 esac
5729 fi
5730 if test -z "$MKINSTALLDIRS"; then
5731 MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs"
5732 fi
b0cacab0 5733
39fd3d4f 5734
e1052144 5735
57aa50d4
TT
5736 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5
5737$as_echo_n "checking whether NLS is requested... " >&6; }
5738 # Check whether --enable-nls was given.
5739if test "${enable_nls+set}" = set; then :
5740 enableval=$enable_nls; USE_NLS=$enableval
b0cacab0 5741else
57aa50d4
TT
5742 USE_NLS=yes
5743fi
b0cacab0 5744
57aa50d4
TT
5745 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5
5746$as_echo "$USE_NLS" >&6; }
93636bde 5747
a64c9c13 5748
a64c9c13 5749
b0cacab0 5750
b0cacab0 5751
a64c9c13 5752
57aa50d4
TT
5753# Prepare PATH_SEPARATOR.
5754# The user is always right.
5755if test "${PATH_SEPARATOR+set}" != set; then
5756 echo "#! /bin/sh" >conf$$.sh
5757 echo "exit 0" >>conf$$.sh
5758 chmod +x conf$$.sh
5759 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
5760 PATH_SEPARATOR=';'
5761 else
5762 PATH_SEPARATOR=:
b0cacab0 5763 fi
57aa50d4
TT
5764 rm -f conf$$.sh
5765fi
b0cacab0 5766
57aa50d4
TT
5767# Find out how to test for executable files. Don't use a zero-byte file,
5768# as systems may use methods other than mode bits to determine executability.
5769cat >conf$$.file <<_ASEOF
5770#! /bin/sh
5771exit 0
5772_ASEOF
5773chmod +x conf$$.file
5774if test -x conf$$.file >/dev/null 2>&1; then
5775 ac_executable_p="test -x"
5776else
5777 ac_executable_p="test -f"
5778fi
5779rm -f conf$$.file
b0cacab0 5780
57aa50d4
TT
5781# Extract the first word of "msgfmt", so it can be a program name with args.
5782set dummy msgfmt; ac_word=$2
5783{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5784$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 5785if ${ac_cv_path_MSGFMT+:} false; then :
39fd3d4f 5786 $as_echo_n "(cached) " >&6
93636bde 5787else
57aa50d4
TT
5788 case "$MSGFMT" in
5789 [\\/]* | ?:[\\/]*)
5790 ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path.
5791 ;;
5792 *)
5793 ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR
5794 for ac_dir in $PATH; do
5795 IFS="$ac_save_IFS"
5796 test -z "$ac_dir" && ac_dir=.
5797 for ac_exec_ext in '' $ac_executable_extensions; do
5798 if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then
5799 if $ac_dir/$ac_word --statistics /dev/null >/dev/null 2>&1 &&
5800 (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
5801 ac_cv_path_MSGFMT="$ac_dir/$ac_word$ac_exec_ext"
5802 break 2
5803 fi
5804 fi
5805 done
5806 done
5807 IFS="$ac_save_IFS"
5808 test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":"
5809 ;;
e1052144 5810esac
b0cacab0 5811fi
57aa50d4
TT
5812MSGFMT="$ac_cv_path_MSGFMT"
5813if test "$MSGFMT" != ":"; then
5814 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5
5815$as_echo "$MSGFMT" >&6; }
5816else
5817 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
5818$as_echo "no" >&6; }
b0cacab0 5819fi
a64c9c13 5820
57aa50d4
TT
5821 # Extract the first word of "gmsgfmt", so it can be a program name with args.
5822set dummy gmsgfmt; ac_word=$2
5823{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5824$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 5825if ${ac_cv_path_GMSGFMT+:} false; then :
39fd3d4f 5826 $as_echo_n "(cached) " >&6
93636bde 5827else
57aa50d4
TT
5828 case $GMSGFMT in
5829 [\\/]* | ?:[\\/]*)
5830 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path.
5831 ;;
5832 *)
5833 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5834for as_dir in $PATH
5835do
5836 IFS=$as_save_IFS
5837 test -z "$as_dir" && as_dir=.
5838 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 5839 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
5840 ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext"
5841 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
5842 break 2
5843 fi
5844done
5845 done
5846IFS=$as_save_IFS
a64c9c13 5847
57aa50d4
TT
5848 test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT"
5849 ;;
e1052144 5850esac
57aa50d4
TT
5851fi
5852GMSGFMT=$ac_cv_path_GMSGFMT
5853if test -n "$GMSGFMT"; then
5854 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5
5855$as_echo "$GMSGFMT" >&6; }
b0cacab0 5856else
57aa50d4
TT
5857 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
5858$as_echo "no" >&6; }
b0cacab0 5859fi
e1052144 5860
b0cacab0 5861
b0cacab0 5862
57aa50d4
TT
5863
5864# Prepare PATH_SEPARATOR.
5865# The user is always right.
5866if test "${PATH_SEPARATOR+set}" != set; then
5867 echo "#! /bin/sh" >conf$$.sh
5868 echo "exit 0" >>conf$$.sh
5869 chmod +x conf$$.sh
5870 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
5871 PATH_SEPARATOR=';'
5872 else
5873 PATH_SEPARATOR=:
b0cacab0 5874 fi
57aa50d4
TT
5875 rm -f conf$$.sh
5876fi
b0cacab0 5877
57aa50d4
TT
5878# Find out how to test for executable files. Don't use a zero-byte file,
5879# as systems may use methods other than mode bits to determine executability.
5880cat >conf$$.file <<_ASEOF
5881#! /bin/sh
5882exit 0
5883_ASEOF
5884chmod +x conf$$.file
5885if test -x conf$$.file >/dev/null 2>&1; then
5886 ac_executable_p="test -x"
5887else
5888 ac_executable_p="test -f"
5889fi
5890rm -f conf$$.file
b0cacab0 5891
57aa50d4
TT
5892# Extract the first word of "xgettext", so it can be a program name with args.
5893set dummy xgettext; ac_word=$2
5894{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5895$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 5896if ${ac_cv_path_XGETTEXT+:} false; then :
39fd3d4f 5897 $as_echo_n "(cached) " >&6
a64c9c13 5898else
57aa50d4
TT
5899 case "$XGETTEXT" in
5900 [\\/]* | ?:[\\/]*)
5901 ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path.
5902 ;;
5903 *)
5904 ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR
5905 for ac_dir in $PATH; do
5906 IFS="$ac_save_IFS"
5907 test -z "$ac_dir" && ac_dir=.
5908 for ac_exec_ext in '' $ac_executable_extensions; do
5909 if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then
5910 if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 &&
5911 (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
5912 ac_cv_path_XGETTEXT="$ac_dir/$ac_word$ac_exec_ext"
5913 break 2
5914 fi
5915 fi
5916 done
5917 done
5918 IFS="$ac_save_IFS"
5919 test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":"
5920 ;;
e1052144 5921esac
b0cacab0 5922fi
57aa50d4
TT
5923XGETTEXT="$ac_cv_path_XGETTEXT"
5924if test "$XGETTEXT" != ":"; then
5925 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5
5926$as_echo "$XGETTEXT" >&6; }
5927else
5928 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
5929$as_echo "no" >&6; }
b0cacab0 5930fi
b0cacab0 5931
57aa50d4 5932 rm -f messages.po
a64c9c13 5933
b0cacab0 5934
57aa50d4
TT
5935# Prepare PATH_SEPARATOR.
5936# The user is always right.
5937if test "${PATH_SEPARATOR+set}" != set; then
5938 echo "#! /bin/sh" >conf$$.sh
5939 echo "exit 0" >>conf$$.sh
5940 chmod +x conf$$.sh
5941 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
5942 PATH_SEPARATOR=';'
5943 else
5944 PATH_SEPARATOR=:
5945 fi
5946 rm -f conf$$.sh
5947fi
b0cacab0 5948
57aa50d4
TT
5949# Find out how to test for executable files. Don't use a zero-byte file,
5950# as systems may use methods other than mode bits to determine executability.
5951cat >conf$$.file <<_ASEOF
5952#! /bin/sh
5953exit 0
5954_ASEOF
5955chmod +x conf$$.file
5956if test -x conf$$.file >/dev/null 2>&1; then
5957 ac_executable_p="test -x"
5958else
5959 ac_executable_p="test -f"
5960fi
5961rm -f conf$$.file
5962
5963# Extract the first word of "msgmerge", so it can be a program name with args.
5964set dummy msgmerge; ac_word=$2
5965{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5966$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 5967if ${ac_cv_path_MSGMERGE+:} false; then :
39fd3d4f 5968 $as_echo_n "(cached) " >&6
b0cacab0 5969else
57aa50d4
TT
5970 case "$MSGMERGE" in
5971 [\\/]* | ?:[\\/]*)
5972 ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path.
5973 ;;
5974 *)
5975 ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR
5976 for ac_dir in $PATH; do
5977 IFS="$ac_save_IFS"
5978 test -z "$ac_dir" && ac_dir=.
5979 for ac_exec_ext in '' $ac_executable_extensions; do
5980 if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then
5981 if $ac_dir/$ac_word --update -q /dev/null /dev/null >/dev/null 2>&1; then
5982 ac_cv_path_MSGMERGE="$ac_dir/$ac_word$ac_exec_ext"
5983 break 2
5984 fi
5985 fi
5986 done
5987 done
5988 IFS="$ac_save_IFS"
5989 test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":"
5990 ;;
e1052144 5991esac
57aa50d4
TT
5992fi
5993MSGMERGE="$ac_cv_path_MSGMERGE"
5994if test "$MSGMERGE" != ":"; then
5995 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5
5996$as_echo "$MSGMERGE" >&6; }
b0cacab0 5997else
57aa50d4
TT
5998 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
5999$as_echo "no" >&6; }
b0cacab0 6000fi
e1052144 6001
93636bde 6002
57aa50d4
TT
6003 if test "$GMSGFMT" != ":"; then
6004 if $GMSGFMT --statistics /dev/null >/dev/null 2>&1 &&
6005 (if $GMSGFMT --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
6006 : ;
6007 else
6008 GMSGFMT=`echo "$GMSGFMT" | sed -e 's,^.*/,,'`
6009 { $as_echo "$as_me:${as_lineno-$LINENO}: result: found $GMSGFMT program is not GNU msgfmt; ignore it" >&5
6010$as_echo "found $GMSGFMT program is not GNU msgfmt; ignore it" >&6; }
6011 GMSGFMT=":"
6012 fi
6013 fi
a64c9c13 6014
57aa50d4
TT
6015 if test "$XGETTEXT" != ":"; then
6016 if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 &&
6017 (if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
6018 : ;
6019 else
6020 { $as_echo "$as_me:${as_lineno-$LINENO}: result: found xgettext program is not GNU xgettext; ignore it" >&5
6021$as_echo "found xgettext program is not GNU xgettext; ignore it" >&6; }
6022 XGETTEXT=":"
6023 fi
6024 rm -f messages.po
b0cacab0 6025 fi
a64c9c13 6026
57aa50d4
TT
6027 ac_config_commands="$ac_config_commands default-1"
6028
a64c9c13 6029
57aa50d4
TT
6030if test -n "$ac_tool_prefix"; then
6031 # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
6032set dummy ${ac_tool_prefix}ranlib; ac_word=$2
6033{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6034$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 6035if ${ac_cv_prog_RANLIB+:} false; then :
39fd3d4f 6036 $as_echo_n "(cached) " >&6
b0cacab0 6037else
57aa50d4
TT
6038 if test -n "$RANLIB"; then
6039 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
b0cacab0 6040else
57aa50d4
TT
6041as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6042for as_dir in $PATH
6043do
6044 IFS=$as_save_IFS
6045 test -z "$as_dir" && as_dir=.
6046 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 6047 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
6048 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
6049 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
6050 break 2
6051 fi
6052done
6053 done
6054IFS=$as_save_IFS
d1154eb4
TT
6055
6056fi
6057fi
6058RANLIB=$ac_cv_prog_RANLIB
6059if test -n "$RANLIB"; then
6060 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5
6061$as_echo "$RANLIB" >&6; }
6062else
6063 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
6064$as_echo "no" >&6; }
6065fi
6066
6067
6068fi
6069if test -z "$ac_cv_prog_RANLIB"; then
6070 ac_ct_RANLIB=$RANLIB
6071 # Extract the first word of "ranlib", so it can be a program name with args.
6072set dummy ranlib; ac_word=$2
6073{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6074$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 6075if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
d1154eb4
TT
6076 $as_echo_n "(cached) " >&6
6077else
6078 if test -n "$ac_ct_RANLIB"; then
6079 ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
6080else
6081as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6082for as_dir in $PATH
6083do
6084 IFS=$as_save_IFS
6085 test -z "$as_dir" && as_dir=.
6086 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 6087 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
d1154eb4
TT
6088 ac_cv_prog_ac_ct_RANLIB="ranlib"
6089 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
6090 break 2
6091 fi
6092done
6093 done
6094IFS=$as_save_IFS
6095
6096fi
6097fi
6098ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
6099if test -n "$ac_ct_RANLIB"; then
6100 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5
6101$as_echo "$ac_ct_RANLIB" >&6; }
6102else
6103 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
6104$as_echo "no" >&6; }
6105fi
6106
6107 if test "x$ac_ct_RANLIB" = x; then
6108 RANLIB=":"
6109 else
6110 case $cross_compiling:$ac_tool_warned in
6111yes:)
6112{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
6113$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
6114ac_tool_warned=yes ;;
6115esac
6116 RANLIB=$ac_ct_RANLIB
6117 fi
6118else
6119 RANLIB="$ac_cv_prog_RANLIB"
6120fi
6121
6122
6123 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strerror in -lcposix" >&5
6124$as_echo_n "checking for strerror in -lcposix... " >&6; }
91d11da1 6125if ${ac_cv_lib_cposix_strerror+:} false; then :
d1154eb4
TT
6126 $as_echo_n "(cached) " >&6
6127else
6128 ac_check_lib_save_LIBS=$LIBS
6129LIBS="-lcposix $LIBS"
6130cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6131/* end confdefs.h. */
6132
6133/* Override any GCC internal prototype to avoid an error.
6134 Use char because int might match the return type of a GCC
6135 builtin and then its argument prototype would still apply. */
6136#ifdef __cplusplus
6137extern "C"
6138#endif
6139char strerror ();
6140int
6141main ()
6142{
6143return strerror ();
6144 ;
6145 return 0;
6146}
6147_ACEOF
6148if ac_fn_c_try_link "$LINENO"; then :
6149 ac_cv_lib_cposix_strerror=yes
6150else
6151 ac_cv_lib_cposix_strerror=no
6152fi
6153rm -f core conftest.err conftest.$ac_objext \
6154 conftest$ac_exeext conftest.$ac_ext
6155LIBS=$ac_check_lib_save_LIBS
6156fi
6157{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_cposix_strerror" >&5
6158$as_echo "$ac_cv_lib_cposix_strerror" >&6; }
91d11da1 6159if test "x$ac_cv_lib_cposix_strerror" = xyes; then :
d1154eb4
TT
6160 LIBS="$LIBS -lcposix"
6161fi
6162
6163
6164
6165
6166{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
6167$as_echo_n "checking for grep that handles long lines and -e... " >&6; }
91d11da1 6168if ${ac_cv_path_GREP+:} false; then :
d1154eb4
TT
6169 $as_echo_n "(cached) " >&6
6170else
6171 if test -z "$GREP"; then
6172 ac_path_GREP_found=false
6173 # Loop through the user's path and test for each of PROGNAME-LIST
6174 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6175for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
6176do
6177 IFS=$as_save_IFS
6178 test -z "$as_dir" && as_dir=.
6179 for ac_prog in grep ggrep; do
6180 for ac_exec_ext in '' $ac_executable_extensions; do
6181 ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
91d11da1 6182 as_fn_executable_p "$ac_path_GREP" || continue
d1154eb4
TT
6183# Check for GNU ac_path_GREP and select it if it is found.
6184 # Check for GNU $ac_path_GREP
6185case `"$ac_path_GREP" --version 2>&1` in
6186*GNU*)
6187 ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;;
6188*)
6189 ac_count=0
6190 $as_echo_n 0123456789 >"conftest.in"
6191 while :
6192 do
6193 cat "conftest.in" "conftest.in" >"conftest.tmp"
6194 mv "conftest.tmp" "conftest.in"
6195 cp "conftest.in" "conftest.nl"
6196 $as_echo 'GREP' >> "conftest.nl"
6197 "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break
6198 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
6199 as_fn_arith $ac_count + 1 && ac_count=$as_val
6200 if test $ac_count -gt ${ac_path_GREP_max-0}; then
6201 # Best one so far, save it but keep looking for a better one
6202 ac_cv_path_GREP="$ac_path_GREP"
6203 ac_path_GREP_max=$ac_count
6204 fi
6205 # 10*(2^10) chars as input seems more than enough
6206 test $ac_count -gt 10 && break
6207 done
6208 rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
6209esac
6210
6211 $ac_path_GREP_found && break 3
6212 done
6213 done
6214 done
6215IFS=$as_save_IFS
6216 if test -z "$ac_cv_path_GREP"; then
91d11da1 6217 as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
d1154eb4
TT
6218 fi
6219else
6220 ac_cv_path_GREP=$GREP
6221fi
6222
6223fi
6224{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5
6225$as_echo "$ac_cv_path_GREP" >&6; }
6226 GREP="$ac_cv_path_GREP"
6227
6228
6229{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
6230$as_echo_n "checking for egrep... " >&6; }
91d11da1 6231if ${ac_cv_path_EGREP+:} false; then :
d1154eb4
TT
6232 $as_echo_n "(cached) " >&6
6233else
6234 if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
6235 then ac_cv_path_EGREP="$GREP -E"
6236 else
6237 if test -z "$EGREP"; then
6238 ac_path_EGREP_found=false
6239 # Loop through the user's path and test for each of PROGNAME-LIST
6240 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6241for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
6242do
6243 IFS=$as_save_IFS
6244 test -z "$as_dir" && as_dir=.
6245 for ac_prog in egrep; do
6246 for ac_exec_ext in '' $ac_executable_extensions; do
6247 ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
91d11da1 6248 as_fn_executable_p "$ac_path_EGREP" || continue
d1154eb4
TT
6249# Check for GNU ac_path_EGREP and select it if it is found.
6250 # Check for GNU $ac_path_EGREP
6251case `"$ac_path_EGREP" --version 2>&1` in
6252*GNU*)
6253 ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;;
6254*)
6255 ac_count=0
6256 $as_echo_n 0123456789 >"conftest.in"
6257 while :
6258 do
6259 cat "conftest.in" "conftest.in" >"conftest.tmp"
6260 mv "conftest.tmp" "conftest.in"
6261 cp "conftest.in" "conftest.nl"
6262 $as_echo 'EGREP' >> "conftest.nl"
6263 "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
6264 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
6265 as_fn_arith $ac_count + 1 && ac_count=$as_val
6266 if test $ac_count -gt ${ac_path_EGREP_max-0}; then
6267 # Best one so far, save it but keep looking for a better one
6268 ac_cv_path_EGREP="$ac_path_EGREP"
6269 ac_path_EGREP_max=$ac_count
6270 fi
6271 # 10*(2^10) chars as input seems more than enough
6272 test $ac_count -gt 10 && break
6273 done
6274 rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
6275esac
6276
6277 $ac_path_EGREP_found && break 3
6278 done
6279 done
6280 done
6281IFS=$as_save_IFS
6282 if test -z "$ac_cv_path_EGREP"; then
91d11da1 6283 as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
d1154eb4 6284 fi
57aa50d4 6285else
d1154eb4 6286 ac_cv_path_EGREP=$EGREP
57aa50d4 6287fi
b0cacab0 6288
d1154eb4 6289 fi
57aa50d4 6290fi
d1154eb4
TT
6291{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5
6292$as_echo "$ac_cv_path_EGREP" >&6; }
6293 EGREP="$ac_cv_path_EGREP"
6294
6295
6296{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
6297$as_echo_n "checking for ANSI C header files... " >&6; }
91d11da1 6298if ${ac_cv_header_stdc+:} false; then :
57aa50d4
TT
6299 $as_echo_n "(cached) " >&6
6300else
d1154eb4
TT
6301 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6302/* end confdefs.h. */
6303#include <stdlib.h>
6304#include <stdarg.h>
6305#include <string.h>
6306#include <float.h>
b0cacab0 6307
d1154eb4
TT
6308int
6309main ()
6310{
6311
6312 ;
6313 return 0;
6314}
6315_ACEOF
6316if ac_fn_c_try_compile "$LINENO"; then :
6317 ac_cv_header_stdc=yes
6318else
6319 ac_cv_header_stdc=no
57aa50d4 6320fi
d1154eb4
TT
6321rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6322
6323if test $ac_cv_header_stdc = yes; then
6324 # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
6325 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6326/* end confdefs.h. */
6327#include <string.h>
6328
6329_ACEOF
6330if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
6331 $EGREP "memchr" >/dev/null 2>&1; then :
6332
57aa50d4 6333else
d1154eb4 6334 ac_cv_header_stdc=no
57aa50d4 6335fi
d1154eb4
TT
6336rm -f conftest*
6337
6338fi
6339
6340if test $ac_cv_header_stdc = yes; then
6341 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
6342 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6343/* end confdefs.h. */
6344#include <stdlib.h>
6345
6346_ACEOF
6347if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
6348 $EGREP "free" >/dev/null 2>&1; then :
b0cacab0 6349
57aa50d4 6350else
d1154eb4 6351 ac_cv_header_stdc=no
57aa50d4 6352fi
d1154eb4 6353rm -f conftest*
b0cacab0 6354
d1154eb4 6355fi
b0cacab0 6356
d1154eb4
TT
6357if test $ac_cv_header_stdc = yes; then
6358 # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
6359 if test "$cross_compiling" = yes; then :
6360 :
b0cacab0 6361else
d1154eb4 6362 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0 6363/* end confdefs.h. */
d1154eb4
TT
6364#include <ctype.h>
6365#include <stdlib.h>
6366#if ((' ' & 0x0FF) == 0x020)
6367# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
6368# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
6369#else
6370# define ISLOWER(c) \
6371 (('a' <= (c) && (c) <= 'i') \
6372 || ('j' <= (c) && (c) <= 'r') \
6373 || ('s' <= (c) && (c) <= 'z'))
6374# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
93636bde 6375#endif
d1154eb4
TT
6376
6377#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
a64c9c13 6378int
b0cacab0
TT
6379main ()
6380{
d1154eb4
TT
6381 int i;
6382 for (i = 0; i < 256; i++)
6383 if (XOR (islower (i), ISLOWER (i))
6384 || toupper (i) != TOUPPER (i))
6385 return 2;
b0cacab0 6386 return 0;
a64c9c13 6387}
b0cacab0 6388_ACEOF
d1154eb4
TT
6389if ac_fn_c_try_run "$LINENO"; then :
6390
b0cacab0 6391else
d1154eb4 6392 ac_cv_header_stdc=no
b0cacab0 6393fi
d1154eb4
TT
6394rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
6395 conftest.$ac_objext conftest.beam conftest.$ac_ext
57aa50d4 6396fi
d1154eb4 6397
b0cacab0 6398fi
d1154eb4
TT
6399fi
6400{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5
6401$as_echo "$ac_cv_header_stdc" >&6; }
6402if test $ac_cv_header_stdc = yes; then
b0cacab0 6403
d1154eb4 6404$as_echo "#define STDC_HEADERS 1" >>confdefs.h
b0cacab0 6405
d1154eb4 6406fi
b0cacab0 6407
57aa50d4
TT
6408{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5
6409$as_echo_n "checking for an ANSI C-conforming const... " >&6; }
91d11da1 6410if ${ac_cv_c_const+:} false; then :
39fd3d4f 6411 $as_echo_n "(cached) " >&6
a64c9c13 6412else
57aa50d4 6413 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0
TT
6414/* end confdefs.h. */
6415
57aa50d4
TT
6416int
6417main ()
6418{
91d11da1 6419
57aa50d4 6420#ifndef __cplusplus
91d11da1 6421 /* Ultrix mips cc rejects this sort of thing. */
57aa50d4 6422 typedef int charset[2];
91d11da1 6423 const charset cs = { 0, 0 };
57aa50d4
TT
6424 /* SunOS 4.1.1 cc rejects this. */
6425 char const *const *pcpcc;
6426 char **ppc;
6427 /* NEC SVR4.0.2 mips cc rejects this. */
6428 struct point {int x, y;};
6429 static struct point const zero = {0,0};
6430 /* AIX XL C 1.02.0.0 rejects this.
6431 It does not let you subtract one const X* pointer from another in
6432 an arm of an if-expression whose if-part is not a constant
6433 expression */
6434 const char *g = "string";
6435 pcpcc = &g + (g ? g-g : 0);
6436 /* HPUX 7.0 cc rejects these. */
6437 ++pcpcc;
6438 ppc = (char**) pcpcc;
6439 pcpcc = (char const *const *) ppc;
91d11da1
TT
6440 { /* SCO 3.2v4 cc rejects this sort of thing. */
6441 char tx;
6442 char *t = &tx;
57aa50d4
TT
6443 char const *s = 0 ? (char *) 0 : (char const *) 0;
6444
6445 *t++ = 0;
6446 if (s) return 0;
6447 }
6448 { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */
6449 int x[] = {25, 17};
6450 const int *foo = &x[0];
6451 ++foo;
6452 }
6453 { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */
6454 typedef const int *iptr;
6455 iptr p = 0;
6456 ++p;
6457 }
91d11da1 6458 { /* AIX XL C 1.02.0.0 rejects this sort of thing, saying
57aa50d4 6459 "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
91d11da1
TT
6460 struct s { int j; const int *ap[3]; } bx;
6461 struct s *b = &bx; b->j = 5;
57aa50d4
TT
6462 }
6463 { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
6464 const int foo = 10;
6465 if (!foo) return 0;
6466 }
6467 return !cs[0] && !zero.x;
b0cacab0
TT
6468#endif
6469
57aa50d4
TT
6470 ;
6471 return 0;
6472}
b0cacab0 6473_ACEOF
57aa50d4
TT
6474if ac_fn_c_try_compile "$LINENO"; then :
6475 ac_cv_c_const=yes
b0cacab0 6476else
57aa50d4
TT
6477 ac_cv_c_const=no
6478fi
6479rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6480fi
6481{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5
6482$as_echo "$ac_cv_c_const" >&6; }
6483if test $ac_cv_c_const = no; then
6484
6485$as_echo "#define const /**/" >>confdefs.h
6486
a64c9c13 6487fi
b0cacab0
TT
6488
6489
57aa50d4
TT
6490 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for signed" >&5
6491$as_echo_n "checking for signed... " >&6; }
91d11da1 6492if ${bh_cv_c_signed+:} false; then :
57aa50d4 6493 $as_echo_n "(cached) " >&6
b0cacab0 6494else
57aa50d4 6495 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0
TT
6496/* end confdefs.h. */
6497
57aa50d4
TT
6498int
6499main ()
b0cacab0 6500{
57aa50d4
TT
6501signed char x;
6502 ;
6503 return 0;
b0cacab0
TT
6504}
6505_ACEOF
57aa50d4
TT
6506if ac_fn_c_try_compile "$LINENO"; then :
6507 bh_cv_c_signed=yes
b0cacab0 6508else
57aa50d4
TT
6509 bh_cv_c_signed=no
6510fi
6511rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6512fi
6513{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $bh_cv_c_signed" >&5
6514$as_echo "$bh_cv_c_signed" >&6; }
6515 if test $bh_cv_c_signed = no; then
6516
6517$as_echo "#define signed /**/" >>confdefs.h
6518
6519 fi
6520
6521{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5
6522$as_echo_n "checking for inline... " >&6; }
91d11da1 6523if ${ac_cv_c_inline+:} false; then :
57aa50d4
TT
6524 $as_echo_n "(cached) " >&6
6525else
6526 ac_cv_c_inline=no
6527for ac_kw in inline __inline__ __inline; do
6528 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6529/* end confdefs.h. */
6530#ifndef __cplusplus
6531typedef int foo_t;
6532static $ac_kw foo_t static_foo () {return 0; }
6533$ac_kw foo_t foo () {return 0; }
6534#endif
b0cacab0 6535
57aa50d4
TT
6536_ACEOF
6537if ac_fn_c_try_compile "$LINENO"; then :
6538 ac_cv_c_inline=$ac_kw
b0cacab0 6539fi
57aa50d4
TT
6540rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6541 test "$ac_cv_c_inline" != no && break
6542done
6543
a64c9c13 6544fi
57aa50d4
TT
6545{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_inline" >&5
6546$as_echo "$ac_cv_c_inline" >&6; }
6547
6548case $ac_cv_c_inline in
6549 inline | yes) ;;
6550 *)
6551 case $ac_cv_c_inline in
6552 no) ac_val=;;
6553 *) ac_val=$ac_cv_c_inline;;
6554 esac
6555 cat >>confdefs.h <<_ACEOF
6556#ifndef __cplusplus
6557#define inline $ac_val
6558#endif
6559_ACEOF
6560 ;;
6561esac
93636bde 6562
d1154eb4
TT
6563# On IRIX 5.3, sys/types and inttypes.h are conflicting.
6564for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
6565 inttypes.h stdint.h unistd.h
6566do :
6567 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
6568ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
6569"
91d11da1 6570if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
d1154eb4
TT
6571 cat >>confdefs.h <<_ACEOF
6572#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
6573_ACEOF
6574
6575fi
6576
6577done
6578
6579
57aa50d4 6580ac_fn_c_check_type "$LINENO" "off_t" "ac_cv_type_off_t" "$ac_includes_default"
91d11da1 6581if test "x$ac_cv_type_off_t" = xyes; then :
57aa50d4
TT
6582
6583else
e1052144 6584
57aa50d4
TT
6585cat >>confdefs.h <<_ACEOF
6586#define off_t long int
6587_ACEOF
e1052144 6588
a64c9c13 6589fi
07a0db15 6590
57aa50d4 6591ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default"
91d11da1 6592if test "x$ac_cv_type_size_t" = xyes; then :
57aa50d4
TT
6593
6594else
6595
6596cat >>confdefs.h <<_ACEOF
6597#define size_t unsigned int
b0cacab0
TT
6598_ACEOF
6599
57aa50d4 6600fi
b0cacab0 6601
57aa50d4
TT
6602
6603 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long long" >&5
6604$as_echo_n "checking for long long... " >&6; }
91d11da1 6605if ${ac_cv_type_long_long+:} false; then :
39fd3d4f 6606 $as_echo_n "(cached) " >&6
b0cacab0 6607else
57aa50d4 6608 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0 6609/* end confdefs.h. */
57aa50d4 6610long long ll = 1LL; int i = 63;
b0cacab0
TT
6611int
6612main ()
6613{
57aa50d4
TT
6614long long llmax = (long long) -1;
6615 return ll << i | ll >> i | llmax / ll | llmax % ll;
b0cacab0
TT
6616 ;
6617 return 0;
6618}
6619_ACEOF
57aa50d4
TT
6620if ac_fn_c_try_link "$LINENO"; then :
6621 ac_cv_type_long_long=yes
b0cacab0 6622else
57aa50d4 6623 ac_cv_type_long_long=no
b0cacab0 6624fi
57aa50d4
TT
6625rm -f core conftest.err conftest.$ac_objext \
6626 conftest$ac_exeext conftest.$ac_ext
b0cacab0 6627fi
57aa50d4
TT
6628{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_long_long" >&5
6629$as_echo "$ac_cv_type_long_long" >&6; }
6630 if test $ac_cv_type_long_long = yes; then
b0cacab0 6631
57aa50d4 6632$as_echo "#define HAVE_LONG_LONG 1" >>confdefs.h
a64c9c13 6633
57aa50d4 6634 fi
a64c9c13 6635
57aa50d4
TT
6636
6637 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double" >&5
6638$as_echo_n "checking for long double... " >&6; }
91d11da1 6639if ${gt_cv_c_long_double+:} false; then :
39fd3d4f 6640 $as_echo_n "(cached) " >&6
b0cacab0 6641else
57aa50d4
TT
6642 if test "$GCC" = yes; then
6643 gt_cv_c_long_double=yes
6644 else
6645 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0 6646/* end confdefs.h. */
57aa50d4
TT
6647
6648 /* The Stardent Vistra knows sizeof(long double), but does not support it. */
6649 long double foo = 0.0;
6650 /* On Ultrix 4.3 cc, long double is 4 and double is 8. */
6651 int array [2*(sizeof(long double) >= sizeof(double)) - 1];
93636bde 6652
b0cacab0
TT
6653int
6654main ()
6655{
57aa50d4 6656
b0cacab0
TT
6657 ;
6658 return 0;
6659}
6660_ACEOF
57aa50d4
TT
6661if ac_fn_c_try_compile "$LINENO"; then :
6662 gt_cv_c_long_double=yes
a64c9c13 6663else
57aa50d4 6664 gt_cv_c_long_double=no
b0cacab0 6665fi
57aa50d4
TT
6666rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6667 fi
b0cacab0 6668fi
57aa50d4
TT
6669{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_c_long_double" >&5
6670$as_echo "$gt_cv_c_long_double" >&6; }
6671 if test $gt_cv_c_long_double = yes; then
b0cacab0 6672
57aa50d4 6673$as_echo "#define HAVE_LONG_DOUBLE 1" >>confdefs.h
b0cacab0 6674
57aa50d4 6675 fi
b0cacab0 6676
57aa50d4
TT
6677
6678 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wchar_t" >&5
6679$as_echo_n "checking for wchar_t... " >&6; }
91d11da1 6680if ${gt_cv_c_wchar_t+:} false; then :
57aa50d4 6681 $as_echo_n "(cached) " >&6
b0cacab0 6682else
57aa50d4
TT
6683 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6684/* end confdefs.h. */
6685#include <stddef.h>
6686 wchar_t foo = (wchar_t)'\0';
6687int
6688main ()
6689{
b0cacab0 6690
57aa50d4
TT
6691 ;
6692 return 0;
6693}
b0cacab0 6694_ACEOF
57aa50d4
TT
6695if ac_fn_c_try_compile "$LINENO"; then :
6696 gt_cv_c_wchar_t=yes
6697else
6698 gt_cv_c_wchar_t=no
6699fi
6700rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6701fi
6702{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_c_wchar_t" >&5
6703$as_echo "$gt_cv_c_wchar_t" >&6; }
6704 if test $gt_cv_c_wchar_t = yes; then
b0cacab0 6705
57aa50d4 6706$as_echo "#define HAVE_WCHAR_T 1" >>confdefs.h
b0cacab0 6707
57aa50d4
TT
6708 fi
6709
6710
6711 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wint_t" >&5
6712$as_echo_n "checking for wint_t... " >&6; }
91d11da1 6713if ${gt_cv_c_wint_t+:} false; then :
39fd3d4f 6714 $as_echo_n "(cached) " >&6
b0cacab0 6715else
57aa50d4 6716 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0 6717/* end confdefs.h. */
57aa50d4
TT
6718#include <wchar.h>
6719 wint_t foo = (wchar_t)'\0';
6720int
6721main ()
6722{
b0cacab0 6723
57aa50d4
TT
6724 ;
6725 return 0;
6726}
b0cacab0 6727_ACEOF
57aa50d4
TT
6728if ac_fn_c_try_compile "$LINENO"; then :
6729 gt_cv_c_wint_t=yes
a64c9c13 6730else
57aa50d4 6731 gt_cv_c_wint_t=no
a64c9c13 6732fi
57aa50d4 6733rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
a64c9c13 6734fi
57aa50d4
TT
6735{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_c_wint_t" >&5
6736$as_echo "$gt_cv_c_wint_t" >&6; }
6737 if test $gt_cv_c_wint_t = yes; then
07a0db15 6738
57aa50d4 6739$as_echo "#define HAVE_WINT_T 1" >>confdefs.h
a64c9c13 6740
57aa50d4 6741 fi
a64c9c13 6742
b0cacab0 6743
57aa50d4
TT
6744 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inttypes.h" >&5
6745$as_echo_n "checking for inttypes.h... " >&6; }
91d11da1 6746if ${jm_ac_cv_header_inttypes_h+:} false; then :
57aa50d4
TT
6747 $as_echo_n "(cached) " >&6
6748else
6749 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6750/* end confdefs.h. */
6751#include <sys/types.h>
6752#include <inttypes.h>
b0cacab0
TT
6753int
6754main ()
a04eba3f 6755{
57aa50d4 6756uintmax_t i = (uintmax_t) -1;
b0cacab0
TT
6757 ;
6758 return 0;
a04eba3f 6759}
b0cacab0 6760_ACEOF
57aa50d4
TT
6761if ac_fn_c_try_compile "$LINENO"; then :
6762 jm_ac_cv_header_inttypes_h=yes
b0cacab0 6763else
57aa50d4 6764 jm_ac_cv_header_inttypes_h=no
b0cacab0 6765fi
57aa50d4 6766rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
b0cacab0 6767fi
57aa50d4
TT
6768{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $jm_ac_cv_header_inttypes_h" >&5
6769$as_echo "$jm_ac_cv_header_inttypes_h" >&6; }
6770 if test $jm_ac_cv_header_inttypes_h = yes; then
b0cacab0
TT
6771
6772cat >>confdefs.h <<_ACEOF
57aa50d4 6773#define HAVE_INTTYPES_H_WITH_UINTMAX 1
b0cacab0 6774_ACEOF
a04eba3f 6775
57aa50d4 6776 fi
a04eba3f 6777
b0cacab0 6778
57aa50d4
TT
6779 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdint.h" >&5
6780$as_echo_n "checking for stdint.h... " >&6; }
91d11da1 6781if ${jm_ac_cv_header_stdint_h+:} false; then :
39fd3d4f 6782 $as_echo_n "(cached) " >&6
b0cacab0 6783else
57aa50d4 6784 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0 6785/* end confdefs.h. */
57aa50d4
TT
6786#include <sys/types.h>
6787#include <stdint.h>
b0cacab0
TT
6788int
6789main ()
6790{
57aa50d4
TT
6791uintmax_t i = (uintmax_t) -1;
6792 ;
6793 return 0;
b0cacab0
TT
6794}
6795_ACEOF
57aa50d4
TT
6796if ac_fn_c_try_compile "$LINENO"; then :
6797 jm_ac_cv_header_stdint_h=yes
b0cacab0 6798else
57aa50d4 6799 jm_ac_cv_header_stdint_h=no
b0cacab0 6800fi
57aa50d4 6801rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
b0cacab0 6802fi
57aa50d4
TT
6803{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $jm_ac_cv_header_stdint_h" >&5
6804$as_echo "$jm_ac_cv_header_stdint_h" >&6; }
6805 if test $jm_ac_cv_header_stdint_h = yes; then
b0cacab0
TT
6806
6807cat >>confdefs.h <<_ACEOF
57aa50d4 6808#define HAVE_STDINT_H_WITH_UINTMAX 1
b0cacab0
TT
6809_ACEOF
6810
57aa50d4 6811 fi
b0cacab0 6812
b0cacab0
TT
6813
6814
6815
57aa50d4
TT
6816 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for intmax_t" >&5
6817$as_echo_n "checking for intmax_t... " >&6; }
91d11da1 6818if ${gt_cv_c_intmax_t+:} false; then :
39fd3d4f 6819 $as_echo_n "(cached) " >&6
b0cacab0 6820else
57aa50d4 6821 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0 6822/* end confdefs.h. */
57aa50d4
TT
6823
6824#include <stddef.h>
6825#include <stdlib.h>
6826#if HAVE_STDINT_H_WITH_UINTMAX
6827#include <stdint.h>
6828#endif
6829#if HAVE_INTTYPES_H_WITH_UINTMAX
6830#include <inttypes.h>
6831#endif
6832
6833int
6834main ()
6835{
6836intmax_t x = -1;
6837 ;
6838 return 0;
6839}
b0cacab0 6840_ACEOF
57aa50d4
TT
6841if ac_fn_c_try_compile "$LINENO"; then :
6842 gt_cv_c_intmax_t=yes
b0cacab0 6843else
57aa50d4 6844 gt_cv_c_intmax_t=no
b0cacab0 6845fi
e1052144 6846rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
57aa50d4
TT
6847fi
6848{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_c_intmax_t" >&5
6849$as_echo "$gt_cv_c_intmax_t" >&6; }
6850 if test $gt_cv_c_intmax_t = yes; then
b0cacab0 6851
57aa50d4 6852$as_echo "#define HAVE_INTMAX_T 1" >>confdefs.h
b0cacab0 6853
57aa50d4 6854 fi
e1052144 6855
b0cacab0 6856
e1052144 6857
57aa50d4
TT
6858 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether printf() supports POSIX/XSI format strings" >&5
6859$as_echo_n "checking whether printf() supports POSIX/XSI format strings... " >&6; }
91d11da1 6860if ${gt_cv_func_printf_posix+:} false; then :
39fd3d4f 6861 $as_echo_n "(cached) " >&6
b0cacab0 6862else
b0cacab0 6863
57aa50d4
TT
6864 if test "$cross_compiling" = yes; then :
6865
6866 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6867/* end confdefs.h. */
6868
6869#if defined __NetBSD__ || defined _MSC_VER || defined __MINGW32__ || defined __CYGWIN__
6870 notposix
6871#endif
b0cacab0 6872
57aa50d4
TT
6873_ACEOF
6874if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
6875 $EGREP "notposix" >/dev/null 2>&1; then :
6876 gt_cv_func_printf_posix="guessing no"
6877else
6878 gt_cv_func_printf_posix="guessing yes"
b0cacab0 6879fi
57aa50d4 6880rm -f conftest*
b0cacab0 6881
b0cacab0 6882
57aa50d4
TT
6883else
6884 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6885/* end confdefs.h. */
b0cacab0 6886
57aa50d4
TT
6887#include <stdio.h>
6888#include <string.h>
6889/* The string "%2$d %1$d", with dollar characters protected from the shell's
6890 dollar expansion (possibly an autoconf bug). */
6891static char format[] = { '%', '2', '$', 'd', ' ', '%', '1', '$', 'd', '\0' };
6892static char buf[100];
6893int main ()
6894{
6895 sprintf (buf, format, 33, 55);
6896 return (strcmp (buf, "55 33") != 0);
6897}
6898_ACEOF
6899if ac_fn_c_try_run "$LINENO"; then :
6900 gt_cv_func_printf_posix=yes
6901else
6902 gt_cv_func_printf_posix=no
6903fi
6904rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
6905 conftest.$ac_objext conftest.beam conftest.$ac_ext
6906fi
6907
6908
6909fi
6910{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_printf_posix" >&5
6911$as_echo "$gt_cv_func_printf_posix" >&6; }
6912 case $gt_cv_func_printf_posix in
6913 *yes)
6914
6915$as_echo "#define HAVE_POSIX_PRINTF 1" >>confdefs.h
6916
6917 ;;
6918 esac
6919
6920# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
6921# for constant arguments. Useless!
6922{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working alloca.h" >&5
6923$as_echo_n "checking for working alloca.h... " >&6; }
91d11da1 6924if ${ac_cv_working_alloca_h+:} false; then :
39fd3d4f 6925 $as_echo_n "(cached) " >&6
b0cacab0 6926else
57aa50d4 6927 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0 6928/* end confdefs.h. */
57aa50d4
TT
6929#include <alloca.h>
6930int
6931main ()
6932{
6933char *p = (char *) alloca (2 * sizeof (int));
6934 if (p) return 0;
6935 ;
6936 return 0;
6937}
6938_ACEOF
6939if ac_fn_c_try_link "$LINENO"; then :
6940 ac_cv_working_alloca_h=yes
6941else
6942 ac_cv_working_alloca_h=no
6943fi
6944rm -f core conftest.err conftest.$ac_objext \
6945 conftest$ac_exeext conftest.$ac_ext
6946fi
6947{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_working_alloca_h" >&5
6948$as_echo "$ac_cv_working_alloca_h" >&6; }
6949if test $ac_cv_working_alloca_h = yes; then
b0cacab0 6950
57aa50d4 6951$as_echo "#define HAVE_ALLOCA_H 1" >>confdefs.h
b0cacab0 6952
57aa50d4
TT
6953fi
6954
6955{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for alloca" >&5
6956$as_echo_n "checking for alloca... " >&6; }
91d11da1 6957if ${ac_cv_func_alloca_works+:} false; then :
57aa50d4
TT
6958 $as_echo_n "(cached) " >&6
6959else
6960 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6961/* end confdefs.h. */
6962#ifdef __GNUC__
6963# define alloca __builtin_alloca
b0cacab0 6964#else
57aa50d4
TT
6965# ifdef _MSC_VER
6966# include <malloc.h>
6967# define alloca _alloca
6968# else
6969# ifdef HAVE_ALLOCA_H
6970# include <alloca.h>
6971# else
6972# ifdef _AIX
6973 #pragma alloca
6974# else
6975# ifndef alloca /* predefined by HP cc +Olibcalls */
91d11da1 6976void *alloca (size_t);
57aa50d4
TT
6977# endif
6978# endif
6979# endif
6980# endif
b0cacab0
TT
6981#endif
6982
57aa50d4
TT
6983int
6984main ()
6985{
6986char *p = (char *) alloca (1);
6987 if (p) return 0;
6988 ;
6989 return 0;
6990}
6991_ACEOF
6992if ac_fn_c_try_link "$LINENO"; then :
6993 ac_cv_func_alloca_works=yes
6994else
6995 ac_cv_func_alloca_works=no
6996fi
6997rm -f core conftest.err conftest.$ac_objext \
6998 conftest$ac_exeext conftest.$ac_ext
6999fi
7000{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_alloca_works" >&5
7001$as_echo "$ac_cv_func_alloca_works" >&6; }
b0cacab0 7002
57aa50d4
TT
7003if test $ac_cv_func_alloca_works = yes; then
7004
7005$as_echo "#define HAVE_ALLOCA 1" >>confdefs.h
7006
7007else
7008 # The SVR3 libPW and SVR4 libucb both contain incompatible functions
7009# that cause trouble. Some versions do not even contain alloca or
7010# contain a buggy version. If you still want to use their alloca,
7011# use ar to extract alloca.o from them instead of compiling alloca.c.
7012
7013ALLOCA=\${LIBOBJDIR}alloca.$ac_objext
7014
7015$as_echo "#define C_ALLOCA 1" >>confdefs.h
7016
7017
7018{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether \`alloca.c' needs Cray hooks" >&5
7019$as_echo_n "checking whether \`alloca.c' needs Cray hooks... " >&6; }
91d11da1 7020if ${ac_cv_os_cray+:} false; then :
57aa50d4
TT
7021 $as_echo_n "(cached) " >&6
7022else
7023 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
7024/* end confdefs.h. */
7025#if defined CRAY && ! defined CRAY2
7026webecray
7027#else
7028wenotbecray
b0cacab0
TT
7029#endif
7030
57aa50d4
TT
7031_ACEOF
7032if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
7033 $EGREP "webecray" >/dev/null 2>&1; then :
7034 ac_cv_os_cray=yes
7035else
7036 ac_cv_os_cray=no
7037fi
7038rm -f conftest*
7039
7040fi
7041{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_os_cray" >&5
7042$as_echo "$ac_cv_os_cray" >&6; }
7043if test $ac_cv_os_cray = yes; then
7044 for ac_func in _getb67 GETB67 getb67; do
7045 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
7046ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
91d11da1 7047if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
57aa50d4
TT
7048
7049cat >>confdefs.h <<_ACEOF
7050#define CRAY_STACKSEG_END $ac_func
7051_ACEOF
7052
7053 break
7054fi
7055
7056 done
7057fi
7058
7059{ $as_echo "$as_me:${as_lineno-$LINENO}: checking stack direction for C alloca" >&5
7060$as_echo_n "checking stack direction for C alloca... " >&6; }
91d11da1 7061if ${ac_cv_c_stack_direction+:} false; then :
57aa50d4
TT
7062 $as_echo_n "(cached) " >&6
7063else
7064 if test "$cross_compiling" = yes; then :
7065 ac_cv_c_stack_direction=0
7066else
7067 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
7068/* end confdefs.h. */
7069$ac_includes_default
7070int
91d11da1 7071find_stack_direction (int *addr, int depth)
57aa50d4 7072{
91d11da1
TT
7073 int dir, dummy = 0;
7074 if (! addr)
7075 addr = &dummy;
7076 *addr = addr < &dummy ? 1 : addr == &dummy ? 0 : -1;
7077 dir = depth ? find_stack_direction (addr, depth - 1) : 0;
7078 return dir + dummy;
57aa50d4
TT
7079}
7080
b0cacab0 7081int
91d11da1 7082main (int argc, char **argv)
b0cacab0 7083{
91d11da1 7084 return find_stack_direction (0, argc + !argv + 20) < 0;
b0cacab0
TT
7085}
7086_ACEOF
57aa50d4
TT
7087if ac_fn_c_try_run "$LINENO"; then :
7088 ac_cv_c_stack_direction=1
b0cacab0 7089else
57aa50d4
TT
7090 ac_cv_c_stack_direction=-1
7091fi
7092rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
7093 conftest.$ac_objext conftest.beam conftest.$ac_ext
7094fi
7095
7096fi
7097{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_stack_direction" >&5
7098$as_echo "$ac_cv_c_stack_direction" >&6; }
7099cat >>confdefs.h <<_ACEOF
7100#define STACK_DIRECTION $ac_cv_c_stack_direction
7101_ACEOF
7102
b0cacab0 7103
b0cacab0 7104fi
e1052144 7105
61ef2474
TT
7106
7107
7108
7109 for ac_header in $ac_header_list
57aa50d4
TT
7110do :
7111 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
61ef2474
TT
7112ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
7113"
91d11da1 7114if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
57aa50d4
TT
7115 cat >>confdefs.h <<_ACEOF
7116#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
7117_ACEOF
7118
b0cacab0 7119fi
57aa50d4
TT
7120
7121done
7122
61ef2474
TT
7123
7124
7125
7126
7127
7128
7129
57aa50d4
TT
7130for ac_func in getpagesize
7131do :
7132 ac_fn_c_check_func "$LINENO" "getpagesize" "ac_cv_func_getpagesize"
91d11da1 7133if test "x$ac_cv_func_getpagesize" = xyes; then :
b0cacab0 7134 cat >>confdefs.h <<_ACEOF
57aa50d4 7135#define HAVE_GETPAGESIZE 1
b0cacab0
TT
7136_ACEOF
7137
7138fi
7139done
7140
57aa50d4 7141{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working mmap" >&5
39fd3d4f 7142$as_echo_n "checking for working mmap... " >&6; }
91d11da1 7143if ${ac_cv_func_mmap_fixed_mapped+:} false; then :
39fd3d4f 7144 $as_echo_n "(cached) " >&6
b0cacab0 7145else
57aa50d4 7146 if test "$cross_compiling" = yes; then :
b0cacab0
TT
7147 ac_cv_func_mmap_fixed_mapped=no
7148else
57aa50d4 7149 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0
TT
7150/* end confdefs.h. */
7151$ac_includes_default
7152/* malloc might have been renamed as rpl_malloc. */
7153#undef malloc
7154
7155/* Thanks to Mike Haertel and Jim Avera for this test.
7156 Here is a matrix of mmap possibilities:
7157 mmap private not fixed
7158 mmap private fixed at somewhere currently unmapped
7159 mmap private fixed at somewhere already mapped
7160 mmap shared not fixed
7161 mmap shared fixed at somewhere currently unmapped
7162 mmap shared fixed at somewhere already mapped
7163 For private mappings, we should verify that changes cannot be read()
7164 back from the file, nor mmap's back from the file at a different
7165 address. (There have been systems where private was not correctly
7166 implemented like the infamous i386 svr4.0, and systems where the
7167 VM page cache was not coherent with the file system buffer cache
7168 like early versions of FreeBSD and possibly contemporary NetBSD.)
7169 For shared mappings, we should conversely verify that changes get
7170 propagated back to all the places they're supposed to be.
7171
7172 Grep wants private fixed already mapped.
7173 The main things grep needs to know about mmap are:
7174 * does it exist and is it safe to write into the mmap'd area
7175 * how to use it (BSD variants) */
7176
7177#include <fcntl.h>
7178#include <sys/mman.h>
7179
29a5deed 7180#if !defined STDC_HEADERS && !defined HAVE_STDLIB_H
b0cacab0
TT
7181char *malloc ();
7182#endif
7183
7184/* This mess was copied from the GNU getpagesize.h. */
29a5deed 7185#ifndef HAVE_GETPAGESIZE
b0cacab0
TT
7186# ifdef _SC_PAGESIZE
7187# define getpagesize() sysconf(_SC_PAGESIZE)
7188# else /* no _SC_PAGESIZE */
29a5deed 7189# ifdef HAVE_SYS_PARAM_H
b0cacab0
TT
7190# include <sys/param.h>
7191# ifdef EXEC_PAGESIZE
7192# define getpagesize() EXEC_PAGESIZE
7193# else /* no EXEC_PAGESIZE */
7194# ifdef NBPG
7195# define getpagesize() NBPG * CLSIZE
7196# ifndef CLSIZE
7197# define CLSIZE 1
7198# endif /* no CLSIZE */
7199# else /* no NBPG */
7200# ifdef NBPC
7201# define getpagesize() NBPC
7202# else /* no NBPC */
7203# ifdef PAGESIZE
7204# define getpagesize() PAGESIZE
7205# endif /* PAGESIZE */
7206# endif /* no NBPC */
7207# endif /* no NBPG */
7208# endif /* no EXEC_PAGESIZE */
7209# else /* no HAVE_SYS_PARAM_H */
7210# define getpagesize() 8192 /* punt totally */
7211# endif /* no HAVE_SYS_PARAM_H */
7212# endif /* no _SC_PAGESIZE */
7213
7214#endif /* no HAVE_GETPAGESIZE */
7215
7216int
7217main ()
7218{
7219 char *data, *data2, *data3;
61ef2474 7220 const char *cdata2;
b0cacab0 7221 int i, pagesize;
61ef2474 7222 int fd, fd2;
b0cacab0
TT
7223
7224 pagesize = getpagesize ();
7225
7226 /* First, make a file with some known garbage in it. */
7227 data = (char *) malloc (pagesize);
7228 if (!data)
e1052144 7229 return 1;
b0cacab0
TT
7230 for (i = 0; i < pagesize; ++i)
7231 *(data + i) = rand ();
7232 umask (0);
7233 fd = creat ("conftest.mmap", 0600);
7234 if (fd < 0)
61ef2474 7235 return 2;
b0cacab0 7236 if (write (fd, data, pagesize) != pagesize)
61ef2474 7237 return 3;
b0cacab0
TT
7238 close (fd);
7239
61ef2474
TT
7240 /* Next, check that the tail of a page is zero-filled. File must have
7241 non-zero length, otherwise we risk SIGBUS for entire page. */
7242 fd2 = open ("conftest.txt", O_RDWR | O_CREAT | O_TRUNC, 0600);
7243 if (fd2 < 0)
7244 return 4;
7245 cdata2 = "";
7246 if (write (fd2, cdata2, 1) != 1)
7247 return 5;
7248 data2 = (char *) mmap (0, pagesize, PROT_READ | PROT_WRITE, MAP_SHARED, fd2, 0L);
7249 if (data2 == MAP_FAILED)
7250 return 6;
7251 for (i = 0; i < pagesize; ++i)
7252 if (*(data2 + i))
7253 return 7;
7254 close (fd2);
7255 if (munmap (data2, pagesize))
7256 return 8;
7257
b0cacab0
TT
7258 /* Next, try to mmap the file at a fixed address which already has
7259 something else allocated at it. If we can, also make sure that
7260 we see the same garbage. */
7261 fd = open ("conftest.mmap", O_RDWR);
7262 if (fd < 0)
61ef2474 7263 return 9;
b0cacab0
TT
7264 if (data2 != mmap (data2, pagesize, PROT_READ | PROT_WRITE,
7265 MAP_PRIVATE | MAP_FIXED, fd, 0L))
61ef2474 7266 return 10;
b0cacab0
TT
7267 for (i = 0; i < pagesize; ++i)
7268 if (*(data + i) != *(data2 + i))
61ef2474 7269 return 11;
b0cacab0
TT
7270
7271 /* Finally, make sure that changes to the mapped area do not
7272 percolate back to the file as seen by read(). (This is a bug on
7273 some variants of i386 svr4.0.) */
7274 for (i = 0; i < pagesize; ++i)
7275 *(data2 + i) = *(data2 + i) + 1;
7276 data3 = (char *) malloc (pagesize);
7277 if (!data3)
61ef2474 7278 return 12;
b0cacab0 7279 if (read (fd, data3, pagesize) != pagesize)
61ef2474 7280 return 13;
b0cacab0
TT
7281 for (i = 0; i < pagesize; ++i)
7282 if (*(data + i) != *(data3 + i))
61ef2474 7283 return 14;
b0cacab0 7284 close (fd);
e1052144 7285 return 0;
b0cacab0
TT
7286}
7287_ACEOF
57aa50d4 7288if ac_fn_c_try_run "$LINENO"; then :
b0cacab0
TT
7289 ac_cv_func_mmap_fixed_mapped=yes
7290else
57aa50d4 7291 ac_cv_func_mmap_fixed_mapped=no
b0cacab0 7292fi
57aa50d4
TT
7293rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
7294 conftest.$ac_objext conftest.beam conftest.$ac_ext
b0cacab0 7295fi
e1052144 7296
b0cacab0 7297fi
57aa50d4 7298{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_mmap_fixed_mapped" >&5
39fd3d4f 7299$as_echo "$ac_cv_func_mmap_fixed_mapped" >&6; }
b0cacab0
TT
7300if test $ac_cv_func_mmap_fixed_mapped = yes; then
7301
57aa50d4 7302$as_echo "#define HAVE_MMAP 1" >>confdefs.h
b0cacab0
TT
7303
7304fi
61ef2474 7305rm -f conftest.mmap conftest.txt
b0cacab0
TT
7306
7307
57aa50d4 7308 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C Library 2.1 or newer" >&5
39fd3d4f 7309$as_echo_n "checking whether we are using the GNU C Library 2.1 or newer... " >&6; }
91d11da1 7310if ${ac_cv_gnu_library_2_1+:} false; then :
39fd3d4f 7311 $as_echo_n "(cached) " >&6
b0cacab0 7312else
57aa50d4 7313 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0
TT
7314/* end confdefs.h. */
7315
7316#include <features.h>
7317#ifdef __GNU_LIBRARY__
7318 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2)
7319 Lucky GNU user
7320 #endif
7321#endif
7322
7323_ACEOF
7324if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
57aa50d4 7325 $EGREP "Lucky GNU user" >/dev/null 2>&1; then :
b0cacab0
TT
7326 ac_cv_gnu_library_2_1=yes
7327else
7328 ac_cv_gnu_library_2_1=no
7329fi
7330rm -f conftest*
7331
7332
7333
7334fi
57aa50d4 7335{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_gnu_library_2_1" >&5
39fd3d4f 7336$as_echo "$ac_cv_gnu_library_2_1" >&6; }
b0cacab0
TT
7337
7338 GLIBC21="$ac_cv_gnu_library_2_1"
7339
7340
7341
7342
57aa50d4 7343 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether integer division by zero raises SIGFPE" >&5
39fd3d4f 7344$as_echo_n "checking whether integer division by zero raises SIGFPE... " >&6; }
91d11da1 7345if ${gt_cv_int_divbyzero_sigfpe+:} false; then :
39fd3d4f 7346 $as_echo_n "(cached) " >&6
b0cacab0
TT
7347else
7348
57aa50d4 7349 if test "$cross_compiling" = yes; then :
b0cacab0
TT
7350
7351 # Guess based on the CPU.
7352 case "$host_cpu" in
7353 alpha* | i3456786 | m68k | s390*)
7354 gt_cv_int_divbyzero_sigfpe="guessing yes";;
7355 *)
7356 gt_cv_int_divbyzero_sigfpe="guessing no";;
7357 esac
7358
7359else
57aa50d4 7360 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0
TT
7361/* end confdefs.h. */
7362
7363#include <stdlib.h>
7364#include <signal.h>
7365
7366static void
7367#ifdef __cplusplus
7368sigfpe_handler (int sig)
7369#else
7370sigfpe_handler (sig) int sig;
7371#endif
7372{
7373 /* Exit with code 0 if SIGFPE, with code 1 if any other signal. */
7374 exit (sig != SIGFPE);
7375}
7376
7377int x = 1;
7378int y = 0;
7379int z;
7380int nan;
7381
7382int main ()
a04eba3f
TT
7383{
7384 signal (SIGFPE, sigfpe_handler);
7385/* IRIX and AIX (when "xlc -qcheck" is used) yield signal SIGTRAP. */
7386#if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP)
7387 signal (SIGTRAP, sigfpe_handler);
7388#endif
7389/* Linux/SPARC yields signal SIGILL. */
7390#if defined (__sparc__) && defined (__linux__)
7391 signal (SIGILL, sigfpe_handler);
7392#endif
7393
7394 z = x / y;
7395 nan = y / y;
7396 exit (1);
7397}
a64c9c13 7398
b0cacab0 7399_ACEOF
57aa50d4 7400if ac_fn_c_try_run "$LINENO"; then :
a04eba3f 7401 gt_cv_int_divbyzero_sigfpe=yes
a64c9c13 7402else
57aa50d4 7403 gt_cv_int_divbyzero_sigfpe=no
b0cacab0 7404fi
57aa50d4
TT
7405rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
7406 conftest.$ac_objext conftest.beam conftest.$ac_ext
b0cacab0
TT
7407fi
7408
e1052144 7409
b0cacab0 7410fi
57aa50d4 7411{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_int_divbyzero_sigfpe" >&5
39fd3d4f 7412$as_echo "$gt_cv_int_divbyzero_sigfpe" >&6; }
b0cacab0
TT
7413 case "$gt_cv_int_divbyzero_sigfpe" in
7414 *yes) value=1;;
7415 *) value=0;;
7416 esac
7417
7418cat >>confdefs.h <<_ACEOF
7419#define INTDIV0_RAISES_SIGFPE $value
7420_ACEOF
7421
7422
7423
57aa50d4 7424 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for unsigned long long" >&5
39fd3d4f 7425$as_echo_n "checking for unsigned long long... " >&6; }
91d11da1 7426if ${ac_cv_type_unsigned_long_long+:} false; then :
39fd3d4f 7427 $as_echo_n "(cached) " >&6
b0cacab0 7428else
57aa50d4 7429 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0
TT
7430/* end confdefs.h. */
7431unsigned long long ull = 1ULL; int i = 63;
7432int
7433main ()
7434{
7435unsigned long long ullmax = (unsigned long long) -1;
7436 return ull << i | ull >> i | ullmax / ull | ullmax % ull;
7437 ;
7438 return 0;
7439}
7440_ACEOF
57aa50d4 7441if ac_fn_c_try_link "$LINENO"; then :
b0cacab0
TT
7442 ac_cv_type_unsigned_long_long=yes
7443else
57aa50d4 7444 ac_cv_type_unsigned_long_long=no
b0cacab0 7445fi
57aa50d4
TT
7446rm -f core conftest.err conftest.$ac_objext \
7447 conftest$ac_exeext conftest.$ac_ext
b0cacab0 7448fi
57aa50d4 7449{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_unsigned_long_long" >&5
39fd3d4f 7450$as_echo "$ac_cv_type_unsigned_long_long" >&6; }
b0cacab0
TT
7451 if test $ac_cv_type_unsigned_long_long = yes; then
7452
57aa50d4 7453$as_echo "#define HAVE_UNSIGNED_LONG_LONG 1" >>confdefs.h
b0cacab0
TT
7454
7455 fi
7456
7457
7458
7459
7460 if test $jm_ac_cv_header_inttypes_h = no && test $jm_ac_cv_header_stdint_h = no; then
7461
7462 test $ac_cv_type_unsigned_long_long = yes \
7463 && ac_type='unsigned long long' \
7464 || ac_type='unsigned long'
7465
7466cat >>confdefs.h <<_ACEOF
7467#define uintmax_t $ac_type
7468_ACEOF
7469
7470 else
7471
57aa50d4 7472$as_echo "#define HAVE_UINTMAX_T 1" >>confdefs.h
b0cacab0
TT
7473
7474 fi
7475
7476
57aa50d4 7477 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inttypes.h" >&5
39fd3d4f 7478$as_echo_n "checking for inttypes.h... " >&6; }
91d11da1 7479if ${gt_cv_header_inttypes_h+:} false; then :
39fd3d4f 7480 $as_echo_n "(cached) " >&6
b0cacab0
TT
7481else
7482
57aa50d4 7483 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0
TT
7484/* end confdefs.h. */
7485#include <sys/types.h>
7486#include <inttypes.h>
7487int
7488main ()
7489{
7490
7491 ;
7492 return 0;
7493}
7494_ACEOF
57aa50d4 7495if ac_fn_c_try_compile "$LINENO"; then :
b0cacab0
TT
7496 gt_cv_header_inttypes_h=yes
7497else
57aa50d4 7498 gt_cv_header_inttypes_h=no
b0cacab0 7499fi
e1052144 7500rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
b0cacab0
TT
7501
7502fi
57aa50d4 7503{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_header_inttypes_h" >&5
39fd3d4f 7504$as_echo "$gt_cv_header_inttypes_h" >&6; }
b0cacab0
TT
7505 if test $gt_cv_header_inttypes_h = yes; then
7506
7507cat >>confdefs.h <<_ACEOF
7508#define HAVE_INTTYPES_H 1
7509_ACEOF
7510
7511 fi
7512
7513
7514
7515 if test $gt_cv_header_inttypes_h = yes; then
57aa50d4 7516 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the inttypes.h PRIxNN macros are broken" >&5
39fd3d4f 7517$as_echo_n "checking whether the inttypes.h PRIxNN macros are broken... " >&6; }
91d11da1 7518if ${gt_cv_inttypes_pri_broken+:} false; then :
39fd3d4f 7519 $as_echo_n "(cached) " >&6
b0cacab0
TT
7520else
7521
57aa50d4 7522 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0
TT
7523/* end confdefs.h. */
7524#include <inttypes.h>
7525#ifdef PRId32
7526char *p = PRId32;
7527#endif
7528
7529int
7530main ()
7531{
7532
7533 ;
7534 return 0;
7535}
7536_ACEOF
57aa50d4 7537if ac_fn_c_try_compile "$LINENO"; then :
b0cacab0
TT
7538 gt_cv_inttypes_pri_broken=no
7539else
57aa50d4 7540 gt_cv_inttypes_pri_broken=yes
b0cacab0 7541fi
e1052144 7542rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
b0cacab0
TT
7543
7544fi
57aa50d4 7545{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_inttypes_pri_broken" >&5
39fd3d4f 7546$as_echo "$gt_cv_inttypes_pri_broken" >&6; }
b0cacab0
TT
7547 fi
7548 if test "$gt_cv_inttypes_pri_broken" = yes; then
7549
7550cat >>confdefs.h <<_ACEOF
7551#define PRI_MACROS_BROKEN 1
7552_ACEOF
7553
7554 fi
7555
7556
57aa50d4
TT
7557 for ac_header in stdint.h
7558do :
7559 ac_fn_c_check_header_mongrel "$LINENO" "stdint.h" "ac_cv_header_stdint_h" "$ac_includes_default"
91d11da1 7560if test "x$ac_cv_header_stdint_h" = xyes; then :
b0cacab0 7561 cat >>confdefs.h <<_ACEOF
57aa50d4 7562#define HAVE_STDINT_H 1
b0cacab0
TT
7563_ACEOF
7564
7565fi
7566
7567done
7568
57aa50d4 7569 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SIZE_MAX" >&5
39fd3d4f 7570$as_echo_n "checking for SIZE_MAX... " >&6; }
b0cacab0 7571 result=
57aa50d4 7572 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0
TT
7573/* end confdefs.h. */
7574
7575#include <limits.h>
7576#if HAVE_STDINT_H
7577#include <stdint.h>
7578#endif
7579#ifdef SIZE_MAX
7580Found it
7581#endif
7582
7583_ACEOF
7584if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
57aa50d4 7585 $EGREP "Found it" >/dev/null 2>&1; then :
b0cacab0
TT
7586 result=yes
7587fi
7588rm -f conftest*
7589
7590 if test -z "$result"; then
57aa50d4 7591 if ac_fn_c_compute_int "$LINENO" "~(size_t)0 / 10" "res_hi" "#include <stddef.h>"; then :
b0cacab0 7592
b0cacab0 7593else
57aa50d4
TT
7594 result=?
7595fi
b0cacab0 7596
57aa50d4
TT
7597
7598 if ac_fn_c_compute_int "$LINENO" "~(size_t)0 % 10" "res_lo" "#include <stddef.h>"; then :
7599
7600else
7601 result=?
b0cacab0 7602fi
e1052144 7603
57aa50d4
TT
7604
7605 if ac_fn_c_compute_int "$LINENO" "sizeof (size_t) <= sizeof (unsigned int)" "fits_in_uint" "#include <stddef.h>"; then :
7606
b0cacab0 7607else
57aa50d4
TT
7608 result=?
7609fi
b0cacab0 7610
b0cacab0 7611
57aa50d4
TT
7612 if test "$fits_in_uint" = 1; then
7613 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0
TT
7614/* end confdefs.h. */
7615#include <stddef.h>
57aa50d4
TT
7616 extern size_t foo;
7617 extern unsigned long foo;
7618
b0cacab0
TT
7619int
7620main ()
7621{
b0cacab0
TT
7622
7623 ;
7624 return 0;
7625}
7626_ACEOF
57aa50d4
TT
7627if ac_fn_c_try_compile "$LINENO"; then :
7628 fits_in_uint=0
b0cacab0 7629fi
e1052144 7630rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
57aa50d4
TT
7631 fi
7632 if test -z "$result"; then
7633 if test "$fits_in_uint" = 1; then
7634 result="$res_hi$res_lo"U
7635 else
7636 result="$res_hi$res_lo"UL
7637 fi
7638 else
7639 result='~(size_t)0'
7640 fi
7641 fi
7642 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $result" >&5
7643$as_echo "$result" >&6; }
7644 if test "$result" != yes; then
b0cacab0 7645
57aa50d4
TT
7646cat >>confdefs.h <<_ACEOF
7647#define SIZE_MAX $result
7648_ACEOF
e1052144 7649
57aa50d4 7650 fi
e1052144 7651
b0cacab0 7652
57aa50d4
TT
7653
7654 for ac_header in stdint.h
7655do :
7656 ac_fn_c_check_header_mongrel "$LINENO" "stdint.h" "ac_cv_header_stdint_h" "$ac_includes_default"
91d11da1 7657if test "x$ac_cv_header_stdint_h" = xyes; then :
57aa50d4
TT
7658 cat >>confdefs.h <<_ACEOF
7659#define HAVE_STDINT_H 1
b0cacab0 7660_ACEOF
b0cacab0 7661
b0cacab0 7662fi
e1052144 7663
b0cacab0 7664done
b0cacab0 7665
b0cacab0 7666
29a5deed 7667
57aa50d4
TT
7668 if test "X$prefix" = "XNONE"; then
7669 acl_final_prefix="$ac_default_prefix"
7670 else
7671 acl_final_prefix="$prefix"
7672 fi
7673 if test "X$exec_prefix" = "XNONE"; then
7674 acl_final_exec_prefix='${prefix}'
7675 else
7676 acl_final_exec_prefix="$exec_prefix"
7677 fi
7678 acl_save_prefix="$prefix"
7679 prefix="$acl_final_prefix"
7680 eval acl_final_exec_prefix=\"$acl_final_exec_prefix\"
7681 prefix="$acl_save_prefix"
b0cacab0 7682
b0cacab0 7683
57aa50d4
TT
7684# Check whether --with-gnu-ld was given.
7685if test "${with_gnu_ld+set}" = set; then :
7686 withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes
b0cacab0 7687else
57aa50d4 7688 with_gnu_ld=no
b0cacab0 7689fi
e1052144 7690
57aa50d4
TT
7691# Prepare PATH_SEPARATOR.
7692# The user is always right.
7693if test "${PATH_SEPARATOR+set}" != set; then
7694 echo "#! /bin/sh" >conf$$.sh
7695 echo "exit 0" >>conf$$.sh
7696 chmod +x conf$$.sh
7697 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
7698 PATH_SEPARATOR=';'
7699 else
7700 PATH_SEPARATOR=:
7701 fi
7702 rm -f conf$$.sh
7703fi
7704ac_prog=ld
7705if test "$GCC" = yes; then
7706 # Check if gcc -print-prog-name=ld gives a path.
7707 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by GCC" >&5
7708$as_echo_n "checking for ld used by GCC... " >&6; }
7709 case $host in
7710 *-*-mingw*)
7711 # gcc leaves a trailing carriage return which upsets mingw
7712 ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
7713 *)
7714 ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
7715 esac
7716 case $ac_prog in
7717 # Accept absolute paths.
7718 [\\/]* | [A-Za-z]:[\\/]*)
7719 re_direlt='/[^/][^/]*/\.\./'
7720 # Canonicalize the path of ld
7721 ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
7722 while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
7723 ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
7724 done
7725 test -z "$LD" && LD="$ac_prog"
7726 ;;
7727 "")
7728 # If it fails, then pretend we aren't using GCC.
7729 ac_prog=ld
7730 ;;
7731 *)
7732 # If it is relative, then search for the first ld in PATH.
7733 with_gnu_ld=unknown
7734 ;;
7735 esac
7736elif test "$with_gnu_ld" = yes; then
7737 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5
7738$as_echo_n "checking for GNU ld... " >&6; }
7739else
7740 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5
7741$as_echo_n "checking for non-GNU ld... " >&6; }
7742fi
91d11da1 7743if ${acl_cv_path_LD+:} false; then :
57aa50d4
TT
7744 $as_echo_n "(cached) " >&6
7745else
7746 if test -z "$LD"; then
7747 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
7748 for ac_dir in $PATH; do
7749 test -z "$ac_dir" && ac_dir=.
7750 if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
7751 acl_cv_path_LD="$ac_dir/$ac_prog"
7752 # Check to see if the program is GNU ld. I'd rather use --version,
7753 # but apparently some GNU ld's only accept -v.
7754 # Break only if it was the GNU/non-GNU ld that we prefer.
7755 case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in
7756 *GNU* | *'with BFD'*)
7757 test "$with_gnu_ld" != no && break ;;
7758 *)
7759 test "$with_gnu_ld" != yes && break ;;
7760 esac
7761 fi
b0cacab0 7762 done
57aa50d4 7763 IFS="$ac_save_ifs"
b0cacab0 7764else
57aa50d4
TT
7765 acl_cv_path_LD="$LD" # Let the user override the test with a path.
7766fi
7767fi
b0cacab0 7768
57aa50d4
TT
7769LD="$acl_cv_path_LD"
7770if test -n "$LD"; then
7771 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5
7772$as_echo "$LD" >&6; }
7773else
7774 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
7775$as_echo "no" >&6; }
7776fi
91d11da1 7777test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
57aa50d4
TT
7778{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
7779$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
91d11da1 7780if ${acl_cv_prog_gnu_ld+:} false; then :
57aa50d4
TT
7781 $as_echo_n "(cached) " >&6
7782else
7783 # I'd rather use --version here, but apparently some GNU ld's only accept -v.
7784case `$LD -v 2>&1 </dev/null` in
7785*GNU* | *'with BFD'*)
7786 acl_cv_prog_gnu_ld=yes ;;
7787*)
7788 acl_cv_prog_gnu_ld=no ;;
e1052144 7789esac
57aa50d4
TT
7790fi
7791{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_prog_gnu_ld" >&5
7792$as_echo "$acl_cv_prog_gnu_ld" >&6; }
7793with_gnu_ld=$acl_cv_prog_gnu_ld
b0cacab0 7794
b0cacab0 7795
e1052144 7796
57aa50d4
TT
7797 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared library run path origin" >&5
7798$as_echo_n "checking for shared library run path origin... " >&6; }
91d11da1 7799if ${acl_cv_rpath+:} false; then :
57aa50d4 7800 $as_echo_n "(cached) " >&6
b0cacab0 7801else
b0cacab0 7802
57aa50d4
TT
7803 CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \
7804 ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh
7805 . ./conftest.sh
7806 rm -f ./conftest.sh
7807 acl_cv_rpath=done
e1052144 7808
b0cacab0 7809fi
57aa50d4
TT
7810{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_rpath" >&5
7811$as_echo "$acl_cv_rpath" >&6; }
7812 wl="$acl_cv_wl"
7813 libext="$acl_cv_libext"
7814 shlibext="$acl_cv_shlibext"
7815 hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec"
7816 hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator"
7817 hardcode_direct="$acl_cv_hardcode_direct"
7818 hardcode_minus_L="$acl_cv_hardcode_minus_L"
7819 # Check whether --enable-rpath was given.
7820if test "${enable_rpath+set}" = set; then :
7821 enableval=$enable_rpath; :
b0cacab0 7822else
57aa50d4 7823 enable_rpath=yes
b0cacab0 7824fi
e1052144 7825
b0cacab0 7826
b0cacab0 7827
29a5deed 7828
b0cacab0 7829
b0cacab0 7830
b0cacab0 7831
e1052144 7832
57aa50d4 7833 use_additional=yes
b0cacab0 7834
57aa50d4
TT
7835 acl_save_prefix="$prefix"
7836 prefix="$acl_final_prefix"
7837 acl_save_exec_prefix="$exec_prefix"
7838 exec_prefix="$acl_final_exec_prefix"
b0cacab0 7839
57aa50d4
TT
7840 eval additional_includedir=\"$includedir\"
7841 eval additional_libdir=\"$libdir\"
b0cacab0 7842
57aa50d4
TT
7843 exec_prefix="$acl_save_exec_prefix"
7844 prefix="$acl_save_prefix"
b0cacab0 7845
e1052144 7846
57aa50d4
TT
7847# Check whether --with-libiconv-prefix was given.
7848if test "${with_libiconv_prefix+set}" = set; then :
7849 withval=$with_libiconv_prefix;
7850 if test "X$withval" = "Xno"; then
7851 use_additional=no
7852 else
7853 if test "X$withval" = "X"; then
b0cacab0 7854
57aa50d4
TT
7855 acl_save_prefix="$prefix"
7856 prefix="$acl_final_prefix"
7857 acl_save_exec_prefix="$exec_prefix"
7858 exec_prefix="$acl_final_exec_prefix"
e1052144 7859
57aa50d4
TT
7860 eval additional_includedir=\"$includedir\"
7861 eval additional_libdir=\"$libdir\"
e1052144 7862
57aa50d4
TT
7863 exec_prefix="$acl_save_exec_prefix"
7864 prefix="$acl_save_prefix"
b0cacab0 7865
57aa50d4
TT
7866 else
7867 additional_includedir="$withval/include"
7868 additional_libdir="$withval/lib"
7869 fi
7870 fi
b0cacab0 7871
b0cacab0 7872fi
e1052144 7873
57aa50d4
TT
7874 LIBICONV=
7875 LTLIBICONV=
7876 INCICONV=
a04eba3f
TT
7877 rpathdirs=
7878 ltrpathdirs=
7879 names_already_handled=
57aa50d4 7880 names_next_round='iconv '
a04eba3f
TT
7881 while test -n "$names_next_round"; do
7882 names_this_round="$names_next_round"
7883 names_next_round=
7884 for name in $names_this_round; do
7885 already_handled=
7886 for n in $names_already_handled; do
7887 if test "$n" = "$name"; then
7888 already_handled=yes
7889 break
7890 fi
7891 done
7892 if test -z "$already_handled"; then
7893 names_already_handled="$names_already_handled $name"
7894 uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'`
7895 eval value=\"\$HAVE_LIB$uppername\"
7896 if test -n "$value"; then
7897 if test "$value" = yes; then
7898 eval value=\"\$LIB$uppername\"
57aa50d4 7899 test -z "$value" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value"
a04eba3f 7900 eval value=\"\$LTLIB$uppername\"
57aa50d4 7901 test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$value"
a04eba3f
TT
7902 else
7903 :
7904 fi
7905 else
7906 found_dir=
7907 found_la=
7908 found_so=
7909 found_a=
7910 if test $use_additional = yes; then
7911 if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then
7912 found_dir="$additional_libdir"
7913 found_so="$additional_libdir/lib$name.$shlibext"
7914 if test -f "$additional_libdir/lib$name.la"; then
7915 found_la="$additional_libdir/lib$name.la"
7916 fi
7917 else
7918 if test -f "$additional_libdir/lib$name.$libext"; then
7919 found_dir="$additional_libdir"
7920 found_a="$additional_libdir/lib$name.$libext"
7921 if test -f "$additional_libdir/lib$name.la"; then
7922 found_la="$additional_libdir/lib$name.la"
7923 fi
7924 fi
7925 fi
7926 fi
7927 if test "X$found_dir" = "X"; then
57aa50d4 7928 for x in $LDFLAGS $LTLIBICONV; do
b0cacab0 7929
a04eba3f
TT
7930 acl_save_prefix="$prefix"
7931 prefix="$acl_final_prefix"
7932 acl_save_exec_prefix="$exec_prefix"
7933 exec_prefix="$acl_final_exec_prefix"
7934 eval x=\"$x\"
7935 exec_prefix="$acl_save_exec_prefix"
7936 prefix="$acl_save_prefix"
7937
7938 case "$x" in
7939 -L*)
7940 dir=`echo "X$x" | sed -e 's/^X-L//'`
7941 if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext"; then
7942 found_dir="$dir"
7943 found_so="$dir/lib$name.$shlibext"
7944 if test -f "$dir/lib$name.la"; then
7945 found_la="$dir/lib$name.la"
7946 fi
7947 else
7948 if test -f "$dir/lib$name.$libext"; then
7949 found_dir="$dir"
7950 found_a="$dir/lib$name.$libext"
7951 if test -f "$dir/lib$name.la"; then
7952 found_la="$dir/lib$name.la"
7953 fi
7954 fi
7955 fi
7956 ;;
7957 esac
7958 if test "X$found_dir" != "X"; then
7959 break
7960 fi
7961 done
7962 fi
7963 if test "X$found_dir" != "X"; then
a04eba3f 7964 LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name"
a04eba3f
TT
7965 if test "X$found_so" != "X"; then
7966 if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then
a04eba3f 7967 LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so"
a04eba3f
TT
7968 else
7969 haveit=
7970 for x in $ltrpathdirs; do
7971 if test "X$x" = "X$found_dir"; then
7972 haveit=yes
7973 break
7974 fi
7975 done
7976 if test -z "$haveit"; then
7977 ltrpathdirs="$ltrpathdirs $found_dir"
7978 fi
7979 if test "$hardcode_direct" = yes; then
a04eba3f 7980 LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so"
a04eba3f
TT
7981 else
7982 if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then
a04eba3f 7983 LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so"
a04eba3f
TT
7984 haveit=
7985 for x in $rpathdirs; do
7986 if test "X$x" = "X$found_dir"; then
7987 haveit=yes
7988 break
7989 fi
7990 done
7991 if test -z "$haveit"; then
7992 rpathdirs="$rpathdirs $found_dir"
7993 fi
7994 else
7995 haveit=
57aa50d4 7996 for x in $LDFLAGS $LIBICONV; do
b0cacab0 7997
a04eba3f
TT
7998 acl_save_prefix="$prefix"
7999 prefix="$acl_final_prefix"
8000 acl_save_exec_prefix="$exec_prefix"
8001 exec_prefix="$acl_final_exec_prefix"
8002 eval x=\"$x\"
8003 exec_prefix="$acl_save_exec_prefix"
8004 prefix="$acl_save_prefix"
8005
8006 if test "X$x" = "X-L$found_dir"; then
8007 haveit=yes
8008 break
8009 fi
8010 done
8011 if test -z "$haveit"; then
57aa50d4 8012 LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir"
a04eba3f
TT
8013 fi
8014 if test "$hardcode_minus_L" != no; then
57aa50d4 8015 LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so"
a04eba3f 8016 else
57aa50d4 8017 LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name"
a04eba3f
TT
8018 fi
8019 fi
8020 fi
8021 fi
8022 else
8023 if test "X$found_a" != "X"; then
57aa50d4 8024 LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a"
a04eba3f 8025 else
57aa50d4 8026 LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name"
a04eba3f
TT
8027 fi
8028 fi
8029 additional_includedir=
8030 case "$found_dir" in
8031 */lib | */lib/)
8032 basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e 's,/lib/*$,,'`
8033 additional_includedir="$basedir/include"
8034 ;;
8035 esac
8036 if test "X$additional_includedir" != "X"; then
8037 if test "X$additional_includedir" != "X/usr/include"; then
8038 haveit=
8039 if test "X$additional_includedir" = "X/usr/local/include"; then
8040 if test -n "$GCC"; then
8041 case $host_os in
8042 linux*) haveit=yes;;
8043 esac
8044 fi
8045 fi
8046 if test -z "$haveit"; then
57aa50d4 8047 for x in $CPPFLAGS $INCICONV; do
b0cacab0 8048
a04eba3f
TT
8049 acl_save_prefix="$prefix"
8050 prefix="$acl_final_prefix"
8051 acl_save_exec_prefix="$exec_prefix"
8052 exec_prefix="$acl_final_exec_prefix"
8053 eval x=\"$x\"
8054 exec_prefix="$acl_save_exec_prefix"
8055 prefix="$acl_save_prefix"
8056
8057 if test "X$x" = "X-I$additional_includedir"; then
8058 haveit=yes
8059 break
8060 fi
8061 done
8062 if test -z "$haveit"; then
8063 if test -d "$additional_includedir"; then
57aa50d4 8064 INCICONV="${INCICONV}${INCICONV:+ }-I$additional_includedir"
a04eba3f
TT
8065 fi
8066 fi
8067 fi
8068 fi
8069 fi
8070 if test -n "$found_la"; then
8071 save_libdir="$libdir"
8072 case "$found_la" in
8073 */* | *\\*) . "$found_la" ;;
8074 *) . "./$found_la" ;;
8075 esac
8076 libdir="$save_libdir"
8077 for dep in $dependency_libs; do
8078 case "$dep" in
8079 -L*)
8080 additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'`
8081 if test "X$additional_libdir" != "X/usr/lib"; then
8082 haveit=
8083 if test "X$additional_libdir" = "X/usr/local/lib"; then
8084 if test -n "$GCC"; then
8085 case $host_os in
8086 linux*) haveit=yes;;
8087 esac
8088 fi
8089 fi
8090 if test -z "$haveit"; then
8091 haveit=
57aa50d4 8092 for x in $LDFLAGS $LIBICONV; do
b0cacab0 8093
a04eba3f
TT
8094 acl_save_prefix="$prefix"
8095 prefix="$acl_final_prefix"
8096 acl_save_exec_prefix="$exec_prefix"
8097 exec_prefix="$acl_final_exec_prefix"
8098 eval x=\"$x\"
8099 exec_prefix="$acl_save_exec_prefix"
8100 prefix="$acl_save_prefix"
8101
8102 if test "X$x" = "X-L$additional_libdir"; then
8103 haveit=yes
8104 break
8105 fi
8106 done
8107 if test -z "$haveit"; then
8108 if test -d "$additional_libdir"; then
57aa50d4 8109 LIBICONV="${LIBICONV}${LIBICONV:+ }-L$additional_libdir"
a04eba3f
TT
8110 fi
8111 fi
8112 haveit=
57aa50d4 8113 for x in $LDFLAGS $LTLIBICONV; do
b0cacab0 8114
a04eba3f
TT
8115 acl_save_prefix="$prefix"
8116 prefix="$acl_final_prefix"
8117 acl_save_exec_prefix="$exec_prefix"
8118 exec_prefix="$acl_final_exec_prefix"
8119 eval x=\"$x\"
8120 exec_prefix="$acl_save_exec_prefix"
8121 prefix="$acl_save_prefix"
8122
8123 if test "X$x" = "X-L$additional_libdir"; then
8124 haveit=yes
8125 break
8126 fi
8127 done
8128 if test -z "$haveit"; then
8129 if test -d "$additional_libdir"; then
57aa50d4 8130 LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$additional_libdir"
a04eba3f
TT
8131 fi
8132 fi
8133 fi
8134 fi
8135 ;;
8136 -R*)
8137 dir=`echo "X$dep" | sed -e 's/^X-R//'`
8138 if test "$enable_rpath" != no; then
8139 haveit=
8140 for x in $rpathdirs; do
8141 if test "X$x" = "X$dir"; then
8142 haveit=yes
8143 break
8144 fi
8145 done
8146 if test -z "$haveit"; then
8147 rpathdirs="$rpathdirs $dir"
8148 fi
8149 haveit=
8150 for x in $ltrpathdirs; do
8151 if test "X$x" = "X$dir"; then
8152 haveit=yes
8153 break
8154 fi
8155 done
8156 if test -z "$haveit"; then
8157 ltrpathdirs="$ltrpathdirs $dir"
8158 fi
8159 fi
8160 ;;
8161 -l*)
8162 names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'`
8163 ;;
8164 *.la)
8165 names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'`
8166 ;;
8167 *)
57aa50d4
TT
8168 LIBICONV="${LIBICONV}${LIBICONV:+ }$dep"
8169 LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep"
a04eba3f
TT
8170 ;;
8171 esac
8172 done
8173 fi
8174 else
57aa50d4
TT
8175 LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name"
8176 LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l$name"
a04eba3f
TT
8177 fi
8178 fi
8179 fi
8180 done
8181 done
8182 if test "X$rpathdirs" != "X"; then
8183 if test -n "$hardcode_libdir_separator"; then
8184 alldirs=
8185 for found_dir in $rpathdirs; do
8186 alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir"
8187 done
8188 acl_save_libdir="$libdir"
8189 libdir="$alldirs"
8190 eval flag=\"$hardcode_libdir_flag_spec\"
8191 libdir="$acl_save_libdir"
57aa50d4 8192 LIBICONV="${LIBICONV}${LIBICONV:+ }$flag"
a04eba3f
TT
8193 else
8194 for found_dir in $rpathdirs; do
8195 acl_save_libdir="$libdir"
8196 libdir="$found_dir"
8197 eval flag=\"$hardcode_libdir_flag_spec\"
8198 libdir="$acl_save_libdir"
57aa50d4 8199 LIBICONV="${LIBICONV}${LIBICONV:+ }$flag"
a04eba3f
TT
8200 done
8201 fi
8202 fi
8203 if test "X$ltrpathdirs" != "X"; then
8204 for found_dir in $ltrpathdirs; do
57aa50d4 8205 LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir"
a04eba3f 8206 done
b0cacab0 8207 fi
b0cacab0 8208
a04eba3f 8209
93636bde 8210
a64c9c13 8211
93636bde 8212
b0cacab0
TT
8213
8214
8215
57aa50d4 8216 ac_fn_c_check_type "$LINENO" "ptrdiff_t" "ac_cv_type_ptrdiff_t" "$ac_includes_default"
91d11da1 8217if test "x$ac_cv_type_ptrdiff_t" = xyes; then :
b0cacab0 8218
50e1e10f 8219else
50e1e10f 8220
57aa50d4
TT
8221$as_echo "#define ptrdiff_t long" >>confdefs.h
8222
bcb915b0
TT
8223
8224fi
bcb915b0 8225
57aa50d4
TT
8226 for ac_header in argz.h limits.h locale.h nl_types.h malloc.h stddef.h \
8227stdlib.h string.h unistd.h sys/param.h
8228do :
8229 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
8230ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
91d11da1 8231if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
57aa50d4
TT
8232 cat >>confdefs.h <<_ACEOF
8233#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
8234_ACEOF
bcb915b0 8235
57aa50d4 8236fi
bcb915b0 8237
b0cacab0 8238done
50e1e10f 8239
57aa50d4
TT
8240 for ac_func in asprintf fwprintf getcwd getegid geteuid getgid getuid \
8241mempcpy munmap putenv setenv setlocale snprintf stpcpy strcasecmp strdup \
8242strtoul tsearch wcslen __argz_count __argz_stringify __argz_next \
8243__fsetlocking
8244do :
8245 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
8246ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
91d11da1 8247if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
57aa50d4
TT
8248 cat >>confdefs.h <<_ACEOF
8249#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
8250_ACEOF
e1052144 8251
fc6d9d51 8252fi
b0cacab0
TT
8253done
8254
50e1e10f 8255
e1052144 8256
57aa50d4
TT
8257 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether _snprintf is declared" >&5
8258$as_echo_n "checking whether _snprintf is declared... " >&6; }
91d11da1 8259if ${ac_cv_have_decl__snprintf+:} false; then :
39fd3d4f 8260 $as_echo_n "(cached) " >&6
50e1e10f 8261else
57aa50d4
TT
8262 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
8263/* end confdefs.h. */
8264#include <stdio.h>
8265int
8266main ()
8267{
50e1e10f 8268
57aa50d4
TT
8269#ifndef _snprintf
8270 char *p = (char *) _snprintf;
8271#endif
e1052144 8272
57aa50d4
TT
8273 ;
8274 return 0;
8275}
8276_ACEOF
8277if ac_fn_c_try_compile "$LINENO"; then :
8278 ac_cv_have_decl__snprintf=yes
50e1e10f 8279else
57aa50d4 8280 ac_cv_have_decl__snprintf=no
50e1e10f 8281fi
57aa50d4 8282rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
50e1e10f 8283fi
57aa50d4
TT
8284{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_decl__snprintf" >&5
8285$as_echo "$ac_cv_have_decl__snprintf" >&6; }
8286 if test $ac_cv_have_decl__snprintf = yes; then
8287 gt_value=1
8288 else
8289 gt_value=0
8290 fi
50e1e10f 8291
57aa50d4
TT
8292cat >>confdefs.h <<_ACEOF
8293#define HAVE_DECL__SNPRINTF $gt_value
8294_ACEOF
e1052144 8295
e1052144 8296
57aa50d4
TT
8297
8298 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether _snwprintf is declared" >&5
8299$as_echo_n "checking whether _snwprintf is declared... " >&6; }
91d11da1 8300if ${ac_cv_have_decl__snwprintf+:} false; then :
39fd3d4f 8301 $as_echo_n "(cached) " >&6
50e1e10f 8302else
57aa50d4
TT
8303 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
8304/* end confdefs.h. */
8305#include <stdio.h>
8306int
8307main ()
8308{
b0cacab0 8309
57aa50d4
TT
8310#ifndef _snwprintf
8311 char *p = (char *) _snwprintf;
8312#endif
8313
8314 ;
8315 return 0;
8316}
8317_ACEOF
8318if ac_fn_c_try_compile "$LINENO"; then :
8319 ac_cv_have_decl__snwprintf=yes
50e1e10f 8320else
57aa50d4
TT
8321 ac_cv_have_decl__snwprintf=no
8322fi
8323rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
50e1e10f 8324fi
57aa50d4
TT
8325{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_decl__snwprintf" >&5
8326$as_echo "$ac_cv_have_decl__snwprintf" >&6; }
8327 if test $ac_cv_have_decl__snwprintf = yes; then
8328 gt_value=1
8329 else
8330 gt_value=0
8331 fi
50e1e10f 8332
57aa50d4
TT
8333cat >>confdefs.h <<_ACEOF
8334#define HAVE_DECL__SNWPRINTF $gt_value
8335_ACEOF
e1052144 8336
e1052144 8337
57aa50d4
TT
8338
8339
8340 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether feof_unlocked is declared" >&5
8341$as_echo_n "checking whether feof_unlocked is declared... " >&6; }
91d11da1 8342if ${ac_cv_have_decl_feof_unlocked+:} false; then :
39fd3d4f 8343 $as_echo_n "(cached) " >&6
50e1e10f 8344else
57aa50d4
TT
8345 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
8346/* end confdefs.h. */
8347#include <stdio.h>
8348int
8349main ()
8350{
b0cacab0 8351
57aa50d4
TT
8352#ifndef feof_unlocked
8353 char *p = (char *) feof_unlocked;
8354#endif
8355
8356 ;
8357 return 0;
8358}
8359_ACEOF
8360if ac_fn_c_try_compile "$LINENO"; then :
8361 ac_cv_have_decl_feof_unlocked=yes
50e1e10f 8362else
57aa50d4 8363 ac_cv_have_decl_feof_unlocked=no
93636bde 8364fi
57aa50d4 8365rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
50e1e10f 8366fi
57aa50d4
TT
8367{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_decl_feof_unlocked" >&5
8368$as_echo "$ac_cv_have_decl_feof_unlocked" >&6; }
8369 if test $ac_cv_have_decl_feof_unlocked = yes; then
8370 gt_value=1
8371 else
8372 gt_value=0
8373 fi
50e1e10f 8374
57aa50d4
TT
8375cat >>confdefs.h <<_ACEOF
8376#define HAVE_DECL_FEOF_UNLOCKED $gt_value
8377_ACEOF
e1052144 8378
32237014 8379
57aa50d4
TT
8380
8381 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether fgets_unlocked is declared" >&5
8382$as_echo_n "checking whether fgets_unlocked is declared... " >&6; }
91d11da1 8383if ${ac_cv_have_decl_fgets_unlocked+:} false; then :
39fd3d4f 8384 $as_echo_n "(cached) " >&6
32237014 8385else
57aa50d4
TT
8386 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
8387/* end confdefs.h. */
8388#include <stdio.h>
8389int
8390main ()
8391{
e1052144 8392
57aa50d4
TT
8393#ifndef fgets_unlocked
8394 char *p = (char *) fgets_unlocked;
8395#endif
8396
8397 ;
8398 return 0;
8399}
8400_ACEOF
8401if ac_fn_c_try_compile "$LINENO"; then :
8402 ac_cv_have_decl_fgets_unlocked=yes
e1052144 8403else
57aa50d4 8404 ac_cv_have_decl_fgets_unlocked=no
e1052144 8405fi
57aa50d4 8406rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
32237014 8407fi
57aa50d4
TT
8408{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_decl_fgets_unlocked" >&5
8409$as_echo "$ac_cv_have_decl_fgets_unlocked" >&6; }
8410 if test $ac_cv_have_decl_fgets_unlocked = yes; then
8411 gt_value=1
8412 else
8413 gt_value=0
8414 fi
32237014 8415
57aa50d4
TT
8416cat >>confdefs.h <<_ACEOF
8417#define HAVE_DECL_FGETS_UNLOCKED $gt_value
8418_ACEOF
32237014 8419
e1052144 8420
57aa50d4
TT
8421
8422 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether getc_unlocked is declared" >&5
8423$as_echo_n "checking whether getc_unlocked is declared... " >&6; }
91d11da1 8424if ${ac_cv_have_decl_getc_unlocked+:} false; then :
39fd3d4f 8425 $as_echo_n "(cached) " >&6
50e1e10f 8426else
57aa50d4
TT
8427 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
8428/* end confdefs.h. */
8429#include <stdio.h>
8430int
8431main ()
8432{
b0cacab0 8433
57aa50d4
TT
8434#ifndef getc_unlocked
8435 char *p = (char *) getc_unlocked;
8436#endif
8437
8438 ;
8439 return 0;
8440}
8441_ACEOF
8442if ac_fn_c_try_compile "$LINENO"; then :
8443 ac_cv_have_decl_getc_unlocked=yes
50e1e10f 8444else
57aa50d4 8445 ac_cv_have_decl_getc_unlocked=no
50e1e10f 8446fi
57aa50d4 8447rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
50e1e10f 8448fi
57aa50d4
TT
8449{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_decl_getc_unlocked" >&5
8450$as_echo "$ac_cv_have_decl_getc_unlocked" >&6; }
8451 if test $ac_cv_have_decl_getc_unlocked = yes; then
8452 gt_value=1
8453 else
8454 gt_value=0
8455 fi
50e1e10f 8456
57aa50d4
TT
8457cat >>confdefs.h <<_ACEOF
8458#define HAVE_DECL_GETC_UNLOCKED $gt_value
8459_ACEOF
8460
8461
8462
8463 case $gt_cv_func_printf_posix in
8464 *yes) HAVE_POSIX_PRINTF=1 ;;
8465 *) HAVE_POSIX_PRINTF=0 ;;
8466 esac
8467
8468 if test "$ac_cv_func_asprintf" = yes; then
8469 HAVE_ASPRINTF=1
e1052144 8470 else
57aa50d4 8471 HAVE_ASPRINTF=0
e1052144 8472 fi
50e1e10f 8473
57aa50d4
TT
8474 if test "$ac_cv_func_snprintf" = yes; then
8475 HAVE_SNPRINTF=1
8476 else
8477 HAVE_SNPRINTF=0
b0cacab0 8478 fi
b0cacab0 8479
57aa50d4
TT
8480 if test "$ac_cv_func_wprintf" = yes; then
8481 HAVE_WPRINTF=1
8482 else
8483 HAVE_WPRINTF=0
8484 fi
50e1e10f 8485
e1052144 8486
57aa50d4
TT
8487
8488
8489
8490
8491
8492 am_save_CPPFLAGS="$CPPFLAGS"
8493
8494 for element in $INCICONV; do
8495 haveit=
8496 for x in $CPPFLAGS; do
8497
8498 acl_save_prefix="$prefix"
8499 prefix="$acl_final_prefix"
8500 acl_save_exec_prefix="$exec_prefix"
8501 exec_prefix="$acl_final_exec_prefix"
8502 eval x=\"$x\"
8503 exec_prefix="$acl_save_exec_prefix"
8504 prefix="$acl_save_prefix"
8505
8506 if test "X$x" = "X$element"; then
8507 haveit=yes
8508 break
8509 fi
8510 done
8511 if test -z "$haveit"; then
8512 CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element"
8513 fi
8514 done
50e1e10f 8515
e1052144 8516
57aa50d4
TT
8517 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5
8518$as_echo_n "checking for iconv... " >&6; }
91d11da1 8519if ${am_cv_func_iconv+:} false; then :
39fd3d4f 8520 $as_echo_n "(cached) " >&6
9d564f73 8521else
b0cacab0 8522
57aa50d4
TT
8523 am_cv_func_iconv="no, consider installing GNU libiconv"
8524 am_cv_lib_iconv=no
8525 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
8526/* end confdefs.h. */
8527#include <stdlib.h>
8528#include <iconv.h>
8529int
8530main ()
8531{
8532iconv_t cd = iconv_open("","");
8533 iconv(cd,NULL,NULL,NULL,NULL);
8534 iconv_close(cd);
8535 ;
8536 return 0;
8537}
8538_ACEOF
8539if ac_fn_c_try_link "$LINENO"; then :
8540 am_cv_func_iconv=yes
9d564f73 8541fi
57aa50d4
TT
8542rm -f core conftest.err conftest.$ac_objext \
8543 conftest$ac_exeext conftest.$ac_ext
8544 if test "$am_cv_func_iconv" != yes; then
8545 am_save_LIBS="$LIBS"
8546 LIBS="$LIBS $LIBICONV"
8547 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
8548/* end confdefs.h. */
8549#include <stdlib.h>
8550#include <iconv.h>
8551int
8552main ()
8553{
8554iconv_t cd = iconv_open("","");
8555 iconv(cd,NULL,NULL,NULL,NULL);
8556 iconv_close(cd);
8557 ;
8558 return 0;
8559}
8560_ACEOF
8561if ac_fn_c_try_link "$LINENO"; then :
8562 am_cv_lib_iconv=yes
8563 am_cv_func_iconv=yes
9d564f73 8564fi
57aa50d4
TT
8565rm -f core conftest.err conftest.$ac_objext \
8566 conftest$ac_exeext conftest.$ac_ext
8567 LIBS="$am_save_LIBS"
8568 fi
9d564f73 8569
50e1e10f 8570fi
57aa50d4
TT
8571{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv" >&5
8572$as_echo "$am_cv_func_iconv" >&6; }
8573 if test "$am_cv_func_iconv" = yes; then
50e1e10f 8574
57aa50d4 8575$as_echo "#define HAVE_ICONV 1" >>confdefs.h
e1052144 8576
b0cacab0 8577 fi
57aa50d4
TT
8578 if test "$am_cv_lib_iconv" = yes; then
8579 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libiconv" >&5
8580$as_echo_n "checking how to link with libiconv... " >&6; }
8581 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBICONV" >&5
8582$as_echo "$LIBICONV" >&6; }
e1052144 8583 else
57aa50d4
TT
8584 CPPFLAGS="$am_save_CPPFLAGS"
8585 LIBICONV=
8586 LTLIBICONV=
e1052144 8587 fi
b0cacab0 8588
93636bde 8589
e1052144 8590
57aa50d4
TT
8591 if test "$am_cv_func_iconv" = yes; then
8592 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv declaration" >&5
8593$as_echo_n "checking for iconv declaration... " >&6; }
91d11da1 8594 if ${am_cv_proto_iconv+:} false; then :
39fd3d4f 8595 $as_echo_n "(cached) " >&6
50e1e10f 8596else
b0cacab0 8597
57aa50d4
TT
8598 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
8599/* end confdefs.h. */
50e1e10f 8600
57aa50d4
TT
8601#include <stdlib.h>
8602#include <iconv.h>
8603extern
8604#ifdef __cplusplus
8605"C"
8606#endif
8607#if defined(__STDC__) || defined(__cplusplus)
8608size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
8609#else
8610size_t iconv();
8611#endif
e1052144 8612
57aa50d4
TT
8613int
8614main ()
8615{
b0cacab0 8616
57aa50d4
TT
8617 ;
8618 return 0;
8619}
8620_ACEOF
8621if ac_fn_c_try_compile "$LINENO"; then :
8622 am_cv_proto_iconv_arg1=""
50e1e10f 8623else
57aa50d4 8624 am_cv_proto_iconv_arg1="const"
50e1e10f 8625fi
57aa50d4
TT
8626rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
8627 am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"
50e1e10f
TT
8628fi
8629
57aa50d4
TT
8630 am_cv_proto_iconv=`echo "$am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'`
8631 { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${ac_t:-
8632 }$am_cv_proto_iconv" >&5
8633$as_echo "${ac_t:-
8634 }$am_cv_proto_iconv" >&6; }
8635
8636cat >>confdefs.h <<_ACEOF
8637#define ICONV_CONST $am_cv_proto_iconv_arg1
8638_ACEOF
8639
e1052144 8640 fi
50e1e10f 8641
57aa50d4
TT
8642
8643 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for nl_langinfo and CODESET" >&5
8644$as_echo_n "checking for nl_langinfo and CODESET... " >&6; }
91d11da1 8645if ${am_cv_langinfo_codeset+:} false; then :
39fd3d4f 8646 $as_echo_n "(cached) " >&6
50e1e10f 8647else
57aa50d4
TT
8648 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
8649/* end confdefs.h. */
8650#include <langinfo.h>
8651int
8652main ()
8653{
8654char* cs = nl_langinfo(CODESET);
8655 ;
8656 return 0;
8657}
8658_ACEOF
8659if ac_fn_c_try_link "$LINENO"; then :
8660 am_cv_langinfo_codeset=yes
50e1e10f 8661else
57aa50d4 8662 am_cv_langinfo_codeset=no
50e1e10f 8663fi
57aa50d4
TT
8664rm -f core conftest.err conftest.$ac_objext \
8665 conftest$ac_exeext conftest.$ac_ext
7321d94e 8666
50e1e10f 8667fi
57aa50d4
TT
8668{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_langinfo_codeset" >&5
8669$as_echo "$am_cv_langinfo_codeset" >&6; }
8670 if test $am_cv_langinfo_codeset = yes; then
50e1e10f 8671
57aa50d4 8672$as_echo "#define HAVE_LANGINFO_CODESET 1" >>confdefs.h
e1052144 8673
57aa50d4 8674 fi
b0cacab0 8675
57aa50d4 8676 if test $ac_cv_header_locale_h = yes; then
21c84b71 8677
57aa50d4
TT
8678 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5
8679$as_echo_n "checking for LC_MESSAGES... " >&6; }
91d11da1 8680if ${am_cv_val_LC_MESSAGES+:} false; then :
39fd3d4f 8681 $as_echo_n "(cached) " >&6
93636bde 8682else
57aa50d4
TT
8683 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
8684/* end confdefs.h. */
8685#include <locale.h>
8686int
8687main ()
8688{
8689return LC_MESSAGES
8690 ;
8691 return 0;
8692}
8693_ACEOF
8694if ac_fn_c_try_link "$LINENO"; then :
8695 am_cv_val_LC_MESSAGES=yes
93636bde 8696else
57aa50d4 8697 am_cv_val_LC_MESSAGES=no
50e1e10f 8698fi
57aa50d4
TT
8699rm -f core conftest.err conftest.$ac_objext \
8700 conftest$ac_exeext conftest.$ac_ext
50e1e10f 8701fi
57aa50d4
TT
8702{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_val_LC_MESSAGES" >&5
8703$as_echo "$am_cv_val_LC_MESSAGES" >&6; }
8704 if test $am_cv_val_LC_MESSAGES = yes; then
50e1e10f 8705
57aa50d4 8706$as_echo "#define HAVE_LC_MESSAGES 1" >>confdefs.h
50e1e10f 8707
e1052144 8708 fi
50e1e10f 8709
57aa50d4 8710 fi
b0cacab0 8711
57aa50d4 8712 for ac_prog in bison
6c133523 8713do
b0cacab0 8714 # Extract the first word of "$ac_prog", so it can be a program name with args.
6c133523 8715set dummy $ac_prog; ac_word=$2
57aa50d4 8716{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
39fd3d4f 8717$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 8718if ${ac_cv_prog_INTLBISON+:} false; then :
39fd3d4f 8719 $as_echo_n "(cached) " >&6
50e1e10f 8720else
57aa50d4
TT
8721 if test -n "$INTLBISON"; then
8722 ac_cv_prog_INTLBISON="$INTLBISON" # Let the user override the test.
50e1e10f 8723else
b0cacab0
TT
8724as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8725for as_dir in $PATH
8726do
8727 IFS=$as_save_IFS
8728 test -z "$as_dir" && as_dir=.
57aa50d4 8729 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 8730 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
8731 ac_cv_prog_INTLBISON="$ac_prog"
8732 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
b0cacab0
TT
8733 break 2
8734 fi
8735done
57aa50d4 8736 done
e1052144 8737IFS=$as_save_IFS
b0cacab0 8738
50e1e10f
TT
8739fi
8740fi
57aa50d4
TT
8741INTLBISON=$ac_cv_prog_INTLBISON
8742if test -n "$INTLBISON"; then
8743 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLBISON" >&5
8744$as_echo "$INTLBISON" >&6; }
50e1e10f 8745else
57aa50d4 8746 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
39fd3d4f 8747$as_echo "no" >&6; }
50e1e10f
TT
8748fi
8749
e1052144 8750
57aa50d4 8751 test -n "$INTLBISON" && break
b0cacab0
TT
8752done
8753
57aa50d4
TT
8754 if test -z "$INTLBISON"; then
8755 ac_verc_fail=yes
8756 else
8757 { $as_echo "$as_me:${as_lineno-$LINENO}: checking version of bison" >&5
8758$as_echo_n "checking version of bison... " >&6; }
8759 ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'`
8760 case $ac_prog_version in
8761 '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
8762 1.2[6-9]* | 1.[3-9][0-9]* | [2-9].*)
8763 ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
8764 *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
8765 esac
8766 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_prog_version" >&5
8767$as_echo "$ac_prog_version" >&6; }
8768 fi
8769 if test $ac_verc_fail = yes; then
8770 INTLBISON=:
8771 fi
8772
8773
8774
8775
8776
8777
8778
8779
8780
8781
8782
b0cacab0 8783
740837de 8784
b0cacab0
TT
8785
8786
8787
57aa50d4
TT
8788 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5
8789$as_echo_n "checking whether NLS is requested... " >&6; }
8790 # Check whether --enable-nls was given.
8791if test "${enable_nls+set}" = set; then :
8792 enableval=$enable_nls; USE_NLS=$enableval
50e1e10f 8793else
57aa50d4 8794 USE_NLS=yes
50e1e10f
TT
8795fi
8796
57aa50d4
TT
8797 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5
8798$as_echo "$USE_NLS" >&6; }
b0cacab0
TT
8799
8800
8801
8802
57aa50d4
TT
8803 BUILD_INCLUDED_LIBINTL=no
8804 USE_INCLUDED_LIBINTL=no
8805
8806 LIBINTL=
8807 LTLIBINTL=
8808 POSUB=
8809
8810 if test "$USE_NLS" = "yes"; then
8811 gt_use_preinstalled_gnugettext=no
b0cacab0 8812
57aa50d4
TT
8813 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether included gettext is requested" >&5
8814$as_echo_n "checking whether included gettext is requested... " >&6; }
b0cacab0 8815
57aa50d4
TT
8816# Check whether --with-included-gettext was given.
8817if test "${with_included_gettext+set}" = set; then :
8818 withval=$with_included_gettext; nls_cv_force_use_gnu_gettext=$withval
50e1e10f 8819else
57aa50d4 8820 nls_cv_force_use_gnu_gettext=no
50e1e10f
TT
8821fi
8822
57aa50d4
TT
8823 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $nls_cv_force_use_gnu_gettext" >&5
8824$as_echo "$nls_cv_force_use_gnu_gettext" >&6; }
b0cacab0 8825
57aa50d4
TT
8826 nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext"
8827 if test "$nls_cv_force_use_gnu_gettext" != "yes"; then
b0cacab0
TT
8828
8829
8830
8831
8832
8833
57aa50d4
TT
8834 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libc" >&5
8835$as_echo_n "checking for GNU gettext in libc... " >&6; }
91d11da1 8836if ${gt_cv_func_gnugettext1_libc+:} false; then :
39fd3d4f 8837 $as_echo_n "(cached) " >&6
7321d94e 8838else
57aa50d4
TT
8839 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
8840/* end confdefs.h. */
8841#include <libintl.h>
8842extern int _nl_msg_cat_cntr;
8843extern int *_nl_domain_bindings;
8844int
8845main ()
8846{
8847bindtextdomain ("", "");
8848return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_domain_bindings
8849 ;
8850 return 0;
8851}
8852_ACEOF
8853if ac_fn_c_try_link "$LINENO"; then :
8854 gt_cv_func_gnugettext1_libc=yes
7321d94e 8855else
57aa50d4
TT
8856 gt_cv_func_gnugettext1_libc=no
8857fi
8858rm -f core conftest.err conftest.$ac_objext \
8859 conftest$ac_exeext conftest.$ac_ext
8860fi
8861{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_gnugettext1_libc" >&5
8862$as_echo "$gt_cv_func_gnugettext1_libc" >&6; }
b0cacab0 8863
57aa50d4 8864 if test "$gt_cv_func_gnugettext1_libc" != "yes"; then
b0cacab0
TT
8865
8866
8867
57aa50d4 8868 use_additional=yes
b0cacab0 8869
57aa50d4
TT
8870 acl_save_prefix="$prefix"
8871 prefix="$acl_final_prefix"
8872 acl_save_exec_prefix="$exec_prefix"
8873 exec_prefix="$acl_final_exec_prefix"
b0cacab0 8874
57aa50d4
TT
8875 eval additional_includedir=\"$includedir\"
8876 eval additional_libdir=\"$libdir\"
b0cacab0 8877
57aa50d4
TT
8878 exec_prefix="$acl_save_exec_prefix"
8879 prefix="$acl_save_prefix"
b0cacab0
TT
8880
8881
57aa50d4
TT
8882# Check whether --with-libintl-prefix was given.
8883if test "${with_libintl_prefix+set}" = set; then :
8884 withval=$with_libintl_prefix;
8885 if test "X$withval" = "Xno"; then
8886 use_additional=no
8887 else
8888 if test "X$withval" = "X"; then
b0cacab0 8889
57aa50d4
TT
8890 acl_save_prefix="$prefix"
8891 prefix="$acl_final_prefix"
8892 acl_save_exec_prefix="$exec_prefix"
8893 exec_prefix="$acl_final_exec_prefix"
b0cacab0 8894
57aa50d4
TT
8895 eval additional_includedir=\"$includedir\"
8896 eval additional_libdir=\"$libdir\"
7321d94e 8897
57aa50d4
TT
8898 exec_prefix="$acl_save_exec_prefix"
8899 prefix="$acl_save_prefix"
7321d94e 8900
57aa50d4
TT
8901 else
8902 additional_includedir="$withval/include"
8903 additional_libdir="$withval/lib"
8904 fi
8905 fi
7321d94e 8906
7321d94e
MK
8907fi
8908
57aa50d4
TT
8909 LIBINTL=
8910 LTLIBINTL=
8911 INCINTL=
8912 rpathdirs=
8913 ltrpathdirs=
8914 names_already_handled=
8915 names_next_round='intl '
8916 while test -n "$names_next_round"; do
8917 names_this_round="$names_next_round"
8918 names_next_round=
8919 for name in $names_this_round; do
8920 already_handled=
8921 for n in $names_already_handled; do
8922 if test "$n" = "$name"; then
8923 already_handled=yes
8924 break
8925 fi
50e1e10f 8926 done
57aa50d4
TT
8927 if test -z "$already_handled"; then
8928 names_already_handled="$names_already_handled $name"
8929 uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'`
8930 eval value=\"\$HAVE_LIB$uppername\"
8931 if test -n "$value"; then
8932 if test "$value" = yes; then
8933 eval value=\"\$LIB$uppername\"
8934 test -z "$value" || LIBINTL="${LIBINTL}${LIBINTL:+ }$value"
8935 eval value=\"\$LTLIB$uppername\"
8936 test -z "$value" || LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$value"
8937 else
8938 :
8939 fi
8940 else
8941 found_dir=
8942 found_la=
8943 found_so=
8944 found_a=
8945 if test $use_additional = yes; then
8946 if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then
8947 found_dir="$additional_libdir"
8948 found_so="$additional_libdir/lib$name.$shlibext"
8949 if test -f "$additional_libdir/lib$name.la"; then
8950 found_la="$additional_libdir/lib$name.la"
8951 fi
8952 else
8953 if test -f "$additional_libdir/lib$name.$libext"; then
8954 found_dir="$additional_libdir"
8955 found_a="$additional_libdir/lib$name.$libext"
8956 if test -f "$additional_libdir/lib$name.la"; then
8957 found_la="$additional_libdir/lib$name.la"
8958 fi
8959 fi
8960 fi
8961 fi
8962 if test "X$found_dir" = "X"; then
8963 for x in $LDFLAGS $LTLIBINTL; do
39fd3d4f 8964
57aa50d4
TT
8965 acl_save_prefix="$prefix"
8966 prefix="$acl_final_prefix"
8967 acl_save_exec_prefix="$exec_prefix"
8968 exec_prefix="$acl_final_exec_prefix"
8969 eval x=\"$x\"
8970 exec_prefix="$acl_save_exec_prefix"
8971 prefix="$acl_save_prefix"
3d05802f 8972
57aa50d4
TT
8973 case "$x" in
8974 -L*)
8975 dir=`echo "X$x" | sed -e 's/^X-L//'`
8976 if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext"; then
8977 found_dir="$dir"
8978 found_so="$dir/lib$name.$shlibext"
8979 if test -f "$dir/lib$name.la"; then
8980 found_la="$dir/lib$name.la"
8981 fi
8982 else
8983 if test -f "$dir/lib$name.$libext"; then
8984 found_dir="$dir"
8985 found_a="$dir/lib$name.$libext"
8986 if test -f "$dir/lib$name.la"; then
8987 found_la="$dir/lib$name.la"
8988 fi
8989 fi
8990 fi
8991 ;;
8992 esac
8993 if test "X$found_dir" != "X"; then
8994 break
8995 fi
8996 done
8997 fi
8998 if test "X$found_dir" != "X"; then
8999 LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$found_dir -l$name"
9000 if test "X$found_so" != "X"; then
9001 if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then
9002 LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so"
9003 else
9004 haveit=
9005 for x in $ltrpathdirs; do
9006 if test "X$x" = "X$found_dir"; then
9007 haveit=yes
9008 break
9009 fi
9010 done
9011 if test -z "$haveit"; then
9012 ltrpathdirs="$ltrpathdirs $found_dir"
9013 fi
9014 if test "$hardcode_direct" = yes; then
9015 LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so"
9016 else
9017 if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then
9018 LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so"
9019 haveit=
9020 for x in $rpathdirs; do
9021 if test "X$x" = "X$found_dir"; then
9022 haveit=yes
9023 break
9024 fi
9025 done
9026 if test -z "$haveit"; then
9027 rpathdirs="$rpathdirs $found_dir"
9028 fi
9029 else
9030 haveit=
9031 for x in $LDFLAGS $LIBINTL; do
6ec9ef18 9032
57aa50d4
TT
9033 acl_save_prefix="$prefix"
9034 prefix="$acl_final_prefix"
9035 acl_save_exec_prefix="$exec_prefix"
9036 exec_prefix="$acl_final_exec_prefix"
9037 eval x=\"$x\"
9038 exec_prefix="$acl_save_exec_prefix"
9039 prefix="$acl_save_prefix"
d7f45af8 9040
57aa50d4
TT
9041 if test "X$x" = "X-L$found_dir"; then
9042 haveit=yes
9043 break
9044 fi
9045 done
9046 if test -z "$haveit"; then
9047 LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir"
9048 fi
9049 if test "$hardcode_minus_L" != no; then
9050 LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so"
9051 else
9052 LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name"
9053 fi
9054 fi
9055 fi
9056 fi
9057 else
9058 if test "X$found_a" != "X"; then
9059 LIBINTL="${LIBINTL}${LIBINTL:+ }$found_a"
9060 else
9061 LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir -l$name"
9062 fi
9063 fi
9064 additional_includedir=
9065 case "$found_dir" in
9066 */lib | */lib/)
9067 basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e 's,/lib/*$,,'`
9068 additional_includedir="$basedir/include"
9069 ;;
9070 esac
9071 if test "X$additional_includedir" != "X"; then
9072 if test "X$additional_includedir" != "X/usr/include"; then
9073 haveit=
9074 if test "X$additional_includedir" = "X/usr/local/include"; then
9075 if test -n "$GCC"; then
9076 case $host_os in
9077 linux*) haveit=yes;;
9078 esac
9079 fi
9080 fi
9081 if test -z "$haveit"; then
9082 for x in $CPPFLAGS $INCINTL; do
b0cacab0 9083
57aa50d4
TT
9084 acl_save_prefix="$prefix"
9085 prefix="$acl_final_prefix"
9086 acl_save_exec_prefix="$exec_prefix"
9087 exec_prefix="$acl_final_exec_prefix"
9088 eval x=\"$x\"
9089 exec_prefix="$acl_save_exec_prefix"
9090 prefix="$acl_save_prefix"
21c84b71 9091
57aa50d4
TT
9092 if test "X$x" = "X-I$additional_includedir"; then
9093 haveit=yes
9094 break
9095 fi
9096 done
9097 if test -z "$haveit"; then
9098 if test -d "$additional_includedir"; then
9099 INCINTL="${INCINTL}${INCINTL:+ }-I$additional_includedir"
9100 fi
9101 fi
9102 fi
9103 fi
9104 fi
9105 if test -n "$found_la"; then
9106 save_libdir="$libdir"
9107 case "$found_la" in
9108 */* | *\\*) . "$found_la" ;;
9109 *) . "./$found_la" ;;
9110 esac
9111 libdir="$save_libdir"
9112 for dep in $dependency_libs; do
9113 case "$dep" in
9114 -L*)
9115 additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'`
9116 if test "X$additional_libdir" != "X/usr/lib"; then
9117 haveit=
9118 if test "X$additional_libdir" = "X/usr/local/lib"; then
9119 if test -n "$GCC"; then
9120 case $host_os in
9121 linux*) haveit=yes;;
9122 esac
9123 fi
9124 fi
9125 if test -z "$haveit"; then
9126 haveit=
9127 for x in $LDFLAGS $LIBINTL; do
50e1e10f 9128
57aa50d4
TT
9129 acl_save_prefix="$prefix"
9130 prefix="$acl_final_prefix"
9131 acl_save_exec_prefix="$exec_prefix"
9132 exec_prefix="$acl_final_exec_prefix"
9133 eval x=\"$x\"
9134 exec_prefix="$acl_save_exec_prefix"
9135 prefix="$acl_save_prefix"
50e1e10f 9136
57aa50d4
TT
9137 if test "X$x" = "X-L$additional_libdir"; then
9138 haveit=yes
9139 break
9140 fi
9141 done
9142 if test -z "$haveit"; then
9143 if test -d "$additional_libdir"; then
9144 LIBINTL="${LIBINTL}${LIBINTL:+ }-L$additional_libdir"
9145 fi
9146 fi
9147 haveit=
9148 for x in $LDFLAGS $LTLIBINTL; do
a4bf69d9 9149
57aa50d4
TT
9150 acl_save_prefix="$prefix"
9151 prefix="$acl_final_prefix"
9152 acl_save_exec_prefix="$exec_prefix"
9153 exec_prefix="$acl_final_exec_prefix"
9154 eval x=\"$x\"
9155 exec_prefix="$acl_save_exec_prefix"
9156 prefix="$acl_save_prefix"
50e1e10f 9157
57aa50d4
TT
9158 if test "X$x" = "X-L$additional_libdir"; then
9159 haveit=yes
9160 break
9161 fi
9162 done
9163 if test -z "$haveit"; then
9164 if test -d "$additional_libdir"; then
9165 LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$additional_libdir"
9166 fi
9167 fi
9168 fi
9169 fi
9170 ;;
9171 -R*)
9172 dir=`echo "X$dep" | sed -e 's/^X-R//'`
9173 if test "$enable_rpath" != no; then
9174 haveit=
9175 for x in $rpathdirs; do
9176 if test "X$x" = "X$dir"; then
9177 haveit=yes
9178 break
9179 fi
9180 done
9181 if test -z "$haveit"; then
9182 rpathdirs="$rpathdirs $dir"
9183 fi
9184 haveit=
9185 for x in $ltrpathdirs; do
9186 if test "X$x" = "X$dir"; then
9187 haveit=yes
9188 break
9189 fi
9190 done
9191 if test -z "$haveit"; then
9192 ltrpathdirs="$ltrpathdirs $dir"
9193 fi
9194 fi
9195 ;;
9196 -l*)
9197 names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'`
9198 ;;
9199 *.la)
9200 names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'`
9201 ;;
9202 *)
9203 LIBINTL="${LIBINTL}${LIBINTL:+ }$dep"
9204 LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$dep"
9205 ;;
9206 esac
9207 done
9208 fi
9209 else
9210 LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name"
9211 LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-l$name"
9212 fi
9213 fi
9214 fi
9215 done
9216 done
9217 if test "X$rpathdirs" != "X"; then
9218 if test -n "$hardcode_libdir_separator"; then
9219 alldirs=
9220 for found_dir in $rpathdirs; do
9221 alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir"
9222 done
9223 acl_save_libdir="$libdir"
9224 libdir="$alldirs"
9225 eval flag=\"$hardcode_libdir_flag_spec\"
9226 libdir="$acl_save_libdir"
9227 LIBINTL="${LIBINTL}${LIBINTL:+ }$flag"
9228 else
9229 for found_dir in $rpathdirs; do
9230 acl_save_libdir="$libdir"
9231 libdir="$found_dir"
9232 eval flag=\"$hardcode_libdir_flag_spec\"
9233 libdir="$acl_save_libdir"
9234 LIBINTL="${LIBINTL}${LIBINTL:+ }$flag"
9235 done
9236 fi
9237 fi
9238 if test "X$ltrpathdirs" != "X"; then
9239 for found_dir in $ltrpathdirs; do
9240 LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-R$found_dir"
9241 done
9242 fi
b0cacab0 9243
57aa50d4
TT
9244 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libintl" >&5
9245$as_echo_n "checking for GNU gettext in libintl... " >&6; }
91d11da1 9246if ${gt_cv_func_gnugettext1_libintl+:} false; then :
39fd3d4f 9247 $as_echo_n "(cached) " >&6
6c133523 9248else
57aa50d4
TT
9249 gt_save_CPPFLAGS="$CPPFLAGS"
9250 CPPFLAGS="$CPPFLAGS $INCINTL"
9251 gt_save_LIBS="$LIBS"
9252 LIBS="$LIBS $LIBINTL"
9253 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
9254/* end confdefs.h. */
9255#include <libintl.h>
9256extern int _nl_msg_cat_cntr;
9257extern
9258#ifdef __cplusplus
9259"C"
9260#endif
9261const char *_nl_expand_alias ();
9262int
9263main ()
9264{
9265bindtextdomain ("", "");
9266return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_expand_alias (0)
9267 ;
9268 return 0;
9269}
b0cacab0 9270_ACEOF
57aa50d4
TT
9271if ac_fn_c_try_link "$LINENO"; then :
9272 gt_cv_func_gnugettext1_libintl=yes
6c133523 9273else
57aa50d4 9274 gt_cv_func_gnugettext1_libintl=no
6c133523 9275fi
57aa50d4
TT
9276rm -f core conftest.err conftest.$ac_objext \
9277 conftest$ac_exeext conftest.$ac_ext
9278 if test "$gt_cv_func_gnugettext1_libintl" != yes && test -n "$LIBICONV"; then
9279 LIBS="$LIBS $LIBICONV"
9280 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
da76d6b7 9281/* end confdefs.h. */
57aa50d4
TT
9282#include <libintl.h>
9283extern int _nl_msg_cat_cntr;
9284extern
9285#ifdef __cplusplus
9286"C"
da76d6b7 9287#endif
57aa50d4
TT
9288const char *_nl_expand_alias ();
9289int
9290main ()
9291{
9292bindtextdomain ("", "");
9293return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_expand_alias (0)
9294 ;
9295 return 0;
9296}
da76d6b7 9297_ACEOF
57aa50d4
TT
9298if ac_fn_c_try_link "$LINENO"; then :
9299 LIBINTL="$LIBINTL $LIBICONV"
9300 LTLIBINTL="$LTLIBINTL $LTLIBICONV"
9301 gt_cv_func_gnugettext1_libintl=yes
6c133523
TT
9302
9303fi
57aa50d4
TT
9304rm -f core conftest.err conftest.$ac_objext \
9305 conftest$ac_exeext conftest.$ac_ext
9306 fi
9307 CPPFLAGS="$gt_save_CPPFLAGS"
9308 LIBS="$gt_save_LIBS"
da76d6b7 9309fi
57aa50d4
TT
9310{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_gnugettext1_libintl" >&5
9311$as_echo "$gt_cv_func_gnugettext1_libintl" >&6; }
9312 fi
b0cacab0 9313
57aa50d4
TT
9314 if test "$gt_cv_func_gnugettext1_libc" = "yes" \
9315 || { test "$gt_cv_func_gnugettext1_libintl" = "yes" \
9316 && test "$PACKAGE" != gettext-runtime \
9317 && test "$PACKAGE" != gettext-tools; }; then
9318 gt_use_preinstalled_gnugettext=yes
9319 else
9320 LIBINTL=
9321 LTLIBINTL=
9322 INCINTL=
9323 fi
740837de 9324
b0cacab0 9325
57aa50d4
TT
9326 if test "$gt_use_preinstalled_gnugettext" != "yes"; then
9327 nls_cv_use_gnu_gettext=yes
9328 fi
9329 fi
b0cacab0 9330
57aa50d4
TT
9331 if test "$nls_cv_use_gnu_gettext" = "yes"; then
9332 BUILD_INCLUDED_LIBINTL=yes
9333 USE_INCLUDED_LIBINTL=yes
9334 LIBINTL="\${top_builddir}/intl/libintl.a $LIBICONV"
9335 LTLIBINTL="\${top_builddir}/intl/libintl.a $LTLIBICONV"
9336 LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'`
9337 fi
b0cacab0 9338
57aa50d4
TT
9339 if test "$gt_use_preinstalled_gnugettext" = "yes" \
9340 || test "$nls_cv_use_gnu_gettext" = "yes"; then
9341 CATOBJEXT=.gmo
9342 fi
b0cacab0
TT
9343
9344
57aa50d4
TT
9345 if test "$gt_use_preinstalled_gnugettext" = "yes" \
9346 || test "$nls_cv_use_gnu_gettext" = "yes"; then
b0cacab0 9347
57aa50d4 9348$as_echo "#define ENABLE_NLS 1" >>confdefs.h
b0cacab0 9349
57aa50d4
TT
9350 else
9351 USE_NLS=no
9352 fi
9353 fi
b0cacab0 9354
57aa50d4
TT
9355 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use NLS" >&5
9356$as_echo_n "checking whether to use NLS... " >&6; }
9357 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5
9358$as_echo "$USE_NLS" >&6; }
9359 if test "$USE_NLS" = "yes"; then
9360 { $as_echo "$as_me:${as_lineno-$LINENO}: checking where the gettext function comes from" >&5
9361$as_echo_n "checking where the gettext function comes from... " >&6; }
9362 if test "$gt_use_preinstalled_gnugettext" = "yes"; then
9363 if test "$gt_cv_func_gnugettext1_libintl" = "yes"; then
9364 gt_source="external libintl"
9365 else
9366 gt_source="libc"
9367 fi
9368 else
9369 gt_source="included intl directory"
9370 fi
9371 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_source" >&5
9372$as_echo "$gt_source" >&6; }
9373 fi
b0cacab0 9374
57aa50d4 9375 if test "$USE_NLS" = "yes"; then
b0cacab0 9376
57aa50d4
TT
9377 if test "$gt_use_preinstalled_gnugettext" = "yes"; then
9378 if test "$gt_cv_func_gnugettext1_libintl" = "yes"; then
9379 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libintl" >&5
9380$as_echo_n "checking how to link with libintl... " >&6; }
9381 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBINTL" >&5
9382$as_echo "$LIBINTL" >&6; }
b0cacab0 9383
57aa50d4
TT
9384 for element in $INCINTL; do
9385 haveit=
9386 for x in $CPPFLAGS; do
b0cacab0 9387
57aa50d4
TT
9388 acl_save_prefix="$prefix"
9389 prefix="$acl_final_prefix"
9390 acl_save_exec_prefix="$exec_prefix"
9391 exec_prefix="$acl_final_exec_prefix"
9392 eval x=\"$x\"
9393 exec_prefix="$acl_save_exec_prefix"
9394 prefix="$acl_save_prefix"
b0cacab0 9395
57aa50d4
TT
9396 if test "X$x" = "X$element"; then
9397 haveit=yes
9398 break
9399 fi
9400 done
9401 if test -z "$haveit"; then
9402 CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element"
9403 fi
9404 done
b0cacab0 9405
57aa50d4 9406 fi
b0cacab0
TT
9407
9408
57aa50d4 9409$as_echo "#define HAVE_GETTEXT 1" >>confdefs.h
b0cacab0
TT
9410
9411
57aa50d4 9412$as_echo "#define HAVE_DCGETTEXT 1" >>confdefs.h
b0cacab0 9413
57aa50d4 9414 fi
b0cacab0 9415
57aa50d4
TT
9416 POSUB=po
9417 fi
b0cacab0
TT
9418
9419
57aa50d4
TT
9420 if test "$PACKAGE" = gettext-runtime || test "$PACKAGE" = gettext-tools; then
9421 BUILD_INCLUDED_LIBINTL=yes
9422 fi
b0cacab0
TT
9423
9424
9425
9426
9427
57aa50d4
TT
9428 nls_cv_header_intl=
9429 nls_cv_header_libgt=
b0cacab0 9430
57aa50d4 9431 DATADIRNAME=share
762c7c65 9432
106ad96d 9433
57aa50d4 9434 INSTOBJEXT=.mo
106ad96d 9435
e7cc6f7d 9436
57aa50d4 9437 GENCAT=gencat
e7cc6f7d 9438
3d05802f 9439
57aa50d4
TT
9440 if test "$USE_INCLUDED_LIBINTL" = yes; then
9441 INTLOBJS="\$(GETTOBJS)"
9442 fi
6ec9ef18 9443
d7f45af8 9444
57aa50d4 9445 INTL_LIBTOOL_SUFFIX_PREFIX=
50e1e10f 9446
50e1e10f 9447
b0cacab0 9448
57aa50d4 9449 INTLLIBS="$LIBINTL"
e1052144 9450
b0cacab0 9451
93636bde 9452
93636bde 9453
b0cacab0 9454
93636bde 9455
50e1e10f 9456
57aa50d4
TT
9457{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
9458$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
9459set x ${MAKE-make}
9460ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
91d11da1 9461if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
57aa50d4
TT
9462 $as_echo_n "(cached) " >&6
9463else
9464 cat >conftest.make <<\_ACEOF
9465SHELL = /bin/sh
9466all:
9467 @echo '@@@%%%=$(MAKE)=@@@%%%'
b0cacab0 9468_ACEOF
91d11da1 9469# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
57aa50d4
TT
9470case `${MAKE-make} -f conftest.make 2>/dev/null` in
9471 *@@@%%%=?*=@@@%%%*)
9472 eval ac_cv_prog_make_${ac_make}_set=yes;;
9473 *)
9474 eval ac_cv_prog_make_${ac_make}_set=no;;
e1052144 9475esac
57aa50d4 9476rm -f conftest.make
b0cacab0 9477fi
57aa50d4
TT
9478if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
9479 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
9480$as_echo "yes" >&6; }
9481 SET_MAKE=
b0b9c4de 9482else
57aa50d4
TT
9483 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
9484$as_echo "no" >&6; }
9485 SET_MAKE="MAKE=${MAKE-make}"
b0cacab0 9486fi
b0cacab0 9487
57aa50d4
TT
9488 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU make" >&5
9489$as_echo_n "checking for GNU make... " >&6; }
91d11da1 9490if ${_cv_gnu_make_command+:} false; then :
57aa50d4 9491 $as_echo_n "(cached) " >&6
39fd3d4f 9492else
57aa50d4
TT
9493 _cv_gnu_make_command='' ;
9494 for a in "$MAKE" make gmake gnumake ; do
9495 if test -z "$a" ; then continue ; fi ;
9496 if ( sh -c "$a --version" 2> /dev/null | grep GNU 2>&1 > /dev/null ) ; then
9497 _cv_gnu_make_command=$a ;
9498 break;
9499 fi
9500 done ;
50e1e10f 9501
50e1e10f 9502fi
57aa50d4
TT
9503{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_cv_gnu_make_command" >&5
9504$as_echo "$_cv_gnu_make_command" >&6; } ;
9505 if test "x$_cv_gnu_make_command" != "x" ; then
9506 ifGNUmake='' ;
9507 ifNotGNUmake='#' ;
9508 else
9509 ifGNUmake='#' ;
9510 ifNotGNUmake='' ;
9511 { $as_echo "$as_me:${as_lineno-$LINENO}: result: \"Not found\"" >&5
9512$as_echo "\"Not found\"" >&6; };
9513 fi
50e1e10f 9514
50e1e10f 9515
b0cacab0 9516
57aa50d4
TT
9517# Extract the first word of "ln", so it can be a program name with args.
9518set dummy ln; ac_word=$2
9519{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9520$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 9521if ${ac_cv_path_LN+:} false; then :
39fd3d4f 9522 $as_echo_n "(cached) " >&6
fff45483 9523else
57aa50d4
TT
9524 case $LN in
9525 [\\/]* | ?:[\\/]*)
9526 ac_cv_path_LN="$LN" # Let the user override the test with a path.
9527 ;;
9528 *)
9529 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9530for as_dir in $PATH
9531do
9532 IFS=$as_save_IFS
9533 test -z "$as_dir" && as_dir=.
9534 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 9535 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
9536 ac_cv_path_LN="$as_dir/$ac_word$ac_exec_ext"
9537 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
9538 break 2
9539 fi
9540done
9541 done
9542IFS=$as_save_IFS
6c65d251 9543
57aa50d4
TT
9544 test -z "$ac_cv_path_LN" && ac_cv_path_LN="ln"
9545 ;;
e1052144 9546esac
fff45483 9547fi
57aa50d4
TT
9548LN=$ac_cv_path_LN
9549if test -n "$LN"; then
9550 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LN" >&5
9551$as_echo "$LN" >&6; }
9552else
9553 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
9554$as_echo "no" >&6; }
fff45483 9555fi
e1052144 9556
fff45483 9557
57aa50d4
TT
9558{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5
9559$as_echo_n "checking whether ln -s works... " >&6; }
9560LN_S=$as_ln_s
9561if test "$LN_S" = "ln -s"; then
9562 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
9563$as_echo "yes" >&6; }
9564else
9565 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5
9566$as_echo "no, using $LN_S" >&6; }
fff45483 9567fi
6c65d251 9568
57aa50d4
TT
9569# Extract the first word of "mv", so it can be a program name with args.
9570set dummy mv; ac_word=$2
9571{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9572$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 9573if ${ac_cv_path_MV+:} false; then :
39fd3d4f 9574 $as_echo_n "(cached) " >&6
fff45483 9575else
57aa50d4
TT
9576 case $MV in
9577 [\\/]* | ?:[\\/]*)
9578 ac_cv_path_MV="$MV" # Let the user override the test with a path.
9579 ;;
9580 *)
9581 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9582for as_dir in $PATH
9583do
9584 IFS=$as_save_IFS
9585 test -z "$as_dir" && as_dir=.
9586 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 9587 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
9588 ac_cv_path_MV="$as_dir/$ac_word$ac_exec_ext"
9589 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
9590 break 2
9591 fi
9592done
9593 done
9594IFS=$as_save_IFS
6c65d251 9595
57aa50d4
TT
9596 test -z "$ac_cv_path_MV" && ac_cv_path_MV="mv"
9597 ;;
e1052144 9598esac
b0cacab0 9599fi
57aa50d4
TT
9600MV=$ac_cv_path_MV
9601if test -n "$MV"; then
9602 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MV" >&5
9603$as_echo "$MV" >&6; }
b0b9c4de 9604else
57aa50d4
TT
9605 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
9606$as_echo "no" >&6; }
39fd3d4f
SJR
9607fi
9608
39fd3d4f 9609
57aa50d4
TT
9610# Extract the first word of "cp", so it can be a program name with args.
9611set dummy cp; ac_word=$2
9612{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9613$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 9614if ${ac_cv_path_CP+:} false; then :
39fd3d4f 9615 $as_echo_n "(cached) " >&6
b0cacab0 9616else
57aa50d4
TT
9617 case $CP in
9618 [\\/]* | ?:[\\/]*)
9619 ac_cv_path_CP="$CP" # Let the user override the test with a path.
9620 ;;
9621 *)
9622 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9623for as_dir in $PATH
9624do
9625 IFS=$as_save_IFS
9626 test -z "$as_dir" && as_dir=.
9627 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 9628 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
9629 ac_cv_path_CP="$as_dir/$ac_word$ac_exec_ext"
9630 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
9631 break 2
9632 fi
9633done
9634 done
9635IFS=$as_save_IFS
39fd3d4f 9636
57aa50d4
TT
9637 test -z "$ac_cv_path_CP" && ac_cv_path_CP="cp"
9638 ;;
e1052144 9639esac
b0b9c4de 9640fi
57aa50d4
TT
9641CP=$ac_cv_path_CP
9642if test -n "$CP"; then
9643 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CP" >&5
9644$as_echo "$CP" >&6; }
b0cacab0 9645else
57aa50d4
TT
9646 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
9647$as_echo "no" >&6; }
b0b9c4de 9648fi
b0b9c4de 9649
6c65d251 9650
57aa50d4
TT
9651# Extract the first word of "rm", so it can be a program name with args.
9652set dummy rm; ac_word=$2
9653{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9654$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 9655if ${ac_cv_path_RM+:} false; then :
39fd3d4f 9656 $as_echo_n "(cached) " >&6
6928adc9 9657else
57aa50d4
TT
9658 case $RM in
9659 [\\/]* | ?:[\\/]*)
9660 ac_cv_path_RM="$RM" # Let the user override the test with a path.
9661 ;;
9662 *)
9663 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9664for as_dir in $PATH
9665do
9666 IFS=$as_save_IFS
9667 test -z "$as_dir" && as_dir=.
9668 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 9669 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
9670 ac_cv_path_RM="$as_dir/$ac_word$ac_exec_ext"
9671 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
9672 break 2
9673 fi
9674done
b0cacab0 9675 done
57aa50d4 9676IFS=$as_save_IFS
6c65d251 9677
57aa50d4
TT
9678 test -z "$ac_cv_path_RM" && ac_cv_path_RM="rm"
9679 ;;
e1052144 9680esac
6928adc9 9681fi
57aa50d4
TT
9682RM=$ac_cv_path_RM
9683if test -n "$RM"; then
9684 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RM" >&5
9685$as_echo "$RM" >&6; }
b0cacab0 9686else
57aa50d4
TT
9687 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
9688$as_echo "no" >&6; }
6928adc9 9689fi
6928adc9 9690
6c65d251 9691
57aa50d4
TT
9692# Extract the first word of "chmod", so it can be a program name with args.
9693set dummy chmod; ac_word=$2
9694{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9695$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 9696if ${ac_cv_path_CHMOD+:} false; then :
39fd3d4f 9697 $as_echo_n "(cached) " >&6
b0cacab0 9698else
57aa50d4
TT
9699 case $CHMOD in
9700 [\\/]* | ?:[\\/]*)
9701 ac_cv_path_CHMOD="$CHMOD" # Let the user override the test with a path.
9702 ;;
9703 *)
9704 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9705for as_dir in $PATH
9706do
9707 IFS=$as_save_IFS
9708 test -z "$as_dir" && as_dir=.
9709 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 9710 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
9711 ac_cv_path_CHMOD="$as_dir/$ac_word$ac_exec_ext"
9712 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
9713 break 2
9714 fi
9715done
9716 done
9717IFS=$as_save_IFS
39fd3d4f 9718
57aa50d4
TT
9719 test -z "$ac_cv_path_CHMOD" && ac_cv_path_CHMOD=":"
9720 ;;
e1052144 9721esac
b0cacab0 9722fi
57aa50d4
TT
9723CHMOD=$ac_cv_path_CHMOD
9724if test -n "$CHMOD"; then
9725 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CHMOD" >&5
9726$as_echo "$CHMOD" >&6; }
b0cacab0 9727else
57aa50d4
TT
9728 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
9729$as_echo "no" >&6; }
b0cacab0 9730fi
39fd3d4f 9731
b0cacab0 9732
57aa50d4
TT
9733for ac_prog in gawk mawk nawk awk
9734do
9735 # Extract the first word of "$ac_prog", so it can be a program name with args.
9736set dummy $ac_prog; ac_word=$2
9737{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9738$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 9739if ${ac_cv_prog_AWK+:} false; then :
39fd3d4f 9740 $as_echo_n "(cached) " >&6
b0cacab0 9741else
57aa50d4
TT
9742 if test -n "$AWK"; then
9743 ac_cv_prog_AWK="$AWK" # Let the user override the test.
b0cacab0 9744else
57aa50d4
TT
9745as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9746for as_dir in $PATH
9747do
9748 IFS=$as_save_IFS
9749 test -z "$as_dir" && as_dir=.
9750 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 9751 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
9752 ac_cv_prog_AWK="$ac_prog"
9753 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
9754 break 2
9755 fi
9756done
9757 done
9758IFS=$as_save_IFS
b0cacab0 9759
b0cacab0 9760fi
57aa50d4
TT
9761fi
9762AWK=$ac_cv_prog_AWK
9763if test -n "$AWK"; then
9764 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
9765$as_echo "$AWK" >&6; }
b0cacab0 9766else
57aa50d4
TT
9767 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
9768$as_echo "no" >&6; }
b0cacab0 9769fi
b0cacab0 9770
b0cacab0 9771
57aa50d4
TT
9772 test -n "$AWK" && break
9773done
b0cacab0 9774
57aa50d4
TT
9775{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
9776$as_echo_n "checking for egrep... " >&6; }
91d11da1 9777if ${ac_cv_path_EGREP+:} false; then :
57aa50d4 9778 $as_echo_n "(cached) " >&6
b0cacab0 9779else
57aa50d4
TT
9780 if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
9781 then ac_cv_path_EGREP="$GREP -E"
9782 else
9783 if test -z "$EGREP"; then
9784 ac_path_EGREP_found=false
9785 # Loop through the user's path and test for each of PROGNAME-LIST
9786 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9787for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
9788do
9789 IFS=$as_save_IFS
9790 test -z "$as_dir" && as_dir=.
9791 for ac_prog in egrep; do
9792 for ac_exec_ext in '' $ac_executable_extensions; do
9793 ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
91d11da1 9794 as_fn_executable_p "$ac_path_EGREP" || continue
57aa50d4
TT
9795# Check for GNU ac_path_EGREP and select it if it is found.
9796 # Check for GNU $ac_path_EGREP
9797case `"$ac_path_EGREP" --version 2>&1` in
9798*GNU*)
9799 ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;;
9800*)
9801 ac_count=0
9802 $as_echo_n 0123456789 >"conftest.in"
9803 while :
9804 do
9805 cat "conftest.in" "conftest.in" >"conftest.tmp"
9806 mv "conftest.tmp" "conftest.in"
9807 cp "conftest.in" "conftest.nl"
9808 $as_echo 'EGREP' >> "conftest.nl"
9809 "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
9810 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
9811 as_fn_arith $ac_count + 1 && ac_count=$as_val
9812 if test $ac_count -gt ${ac_path_EGREP_max-0}; then
9813 # Best one so far, save it but keep looking for a better one
9814 ac_cv_path_EGREP="$ac_path_EGREP"
9815 ac_path_EGREP_max=$ac_count
9816 fi
9817 # 10*(2^10) chars as input seems more than enough
9818 test $ac_count -gt 10 && break
9819 done
9820 rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
e1052144 9821esac
e1052144 9822
57aa50d4
TT
9823 $ac_path_EGREP_found && break 3
9824 done
b0cacab0 9825 done
57aa50d4
TT
9826 done
9827IFS=$as_save_IFS
9828 if test -z "$ac_cv_path_EGREP"; then
91d11da1 9829 as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
57aa50d4 9830 fi
b0cacab0 9831else
57aa50d4 9832 ac_cv_path_EGREP=$EGREP
b0cacab0 9833fi
e1052144 9834
57aa50d4 9835 fi
b0cacab0 9836fi
57aa50d4
TT
9837{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5
9838$as_echo "$ac_cv_path_EGREP" >&6; }
9839 EGREP="$ac_cv_path_EGREP"
e1052144 9840
b0cacab0 9841
57aa50d4
TT
9842# Extract the first word of "sed", so it can be a program name with args.
9843set dummy sed; ac_word=$2
9844{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9845$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 9846if ${ac_cv_path_SED+:} false; then :
57aa50d4 9847 $as_echo_n "(cached) " >&6
b0cacab0 9848else
57aa50d4
TT
9849 case $SED in
9850 [\\/]* | ?:[\\/]*)
9851 ac_cv_path_SED="$SED" # Let the user override the test with a path.
9852 ;;
9853 *)
9854 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9855for as_dir in $PATH
9856do
9857 IFS=$as_save_IFS
9858 test -z "$as_dir" && as_dir=.
9859 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 9860 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
9861 ac_cv_path_SED="$as_dir/$ac_word$ac_exec_ext"
9862 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
9863 break 2
9864 fi
b0cacab0 9865done
57aa50d4
TT
9866 done
9867IFS=$as_save_IFS
b0cacab0 9868
57aa50d4
TT
9869 test -z "$ac_cv_path_SED" && ac_cv_path_SED="sed"
9870 ;;
b0cacab0 9871esac
57aa50d4
TT
9872fi
9873SED=$ac_cv_path_SED
9874if test -n "$SED"; then
9875 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SED" >&5
9876$as_echo "$SED" >&6; }
b0cacab0 9877else
57aa50d4
TT
9878 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
9879$as_echo "no" >&6; }
b0cacab0 9880fi
e1052144 9881
b0cacab0 9882
57aa50d4
TT
9883# Extract the first word of "perl", so it can be a program name with args.
9884set dummy perl; ac_word=$2
9885{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9886$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 9887if ${ac_cv_path_PERL+:} false; then :
57aa50d4
TT
9888 $as_echo_n "(cached) " >&6
9889else
9890 case $PERL in
9891 [\\/]* | ?:[\\/]*)
9892 ac_cv_path_PERL="$PERL" # Let the user override the test with a path.
9893 ;;
9894 *)
9895 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9896for as_dir in $PATH
9897do
9898 IFS=$as_save_IFS
9899 test -z "$as_dir" && as_dir=.
9900 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 9901 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
9902 ac_cv_path_PERL="$as_dir/$ac_word$ac_exec_ext"
9903 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
9904 break 2
9905 fi
b0cacab0 9906done
57aa50d4
TT
9907 done
9908IFS=$as_save_IFS
9909
9910 test -z "$ac_cv_path_PERL" && ac_cv_path_PERL="perl"
9911 ;;
b0cacab0 9912esac
57aa50d4
TT
9913fi
9914PERL=$ac_cv_path_PERL
9915if test -n "$PERL"; then
9916 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PERL" >&5
9917$as_echo "$PERL" >&6; }
b0cacab0 9918else
57aa50d4
TT
9919 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
9920$as_echo "no" >&6; }
9921fi
b0cacab0 9922
b0cacab0 9923
57aa50d4
TT
9924# Extract the first word of "ldconfig", so it can be a program name with args.
9925set dummy ldconfig; ac_word=$2
9926{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9927$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 9928if ${ac_cv_path_LDCONFIG+:} false; then :
57aa50d4 9929 $as_echo_n "(cached) " >&6
b0cacab0 9930else
57aa50d4
TT
9931 case $LDCONFIG in
9932 [\\/]* | ?:[\\/]*)
9933 ac_cv_path_LDCONFIG="$LDCONFIG" # Let the user override the test with a path.
9934 ;;
9935 *)
9936 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9937for as_dir in $PATH
9938do
9939 IFS=$as_save_IFS
9940 test -z "$as_dir" && as_dir=.
9941 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 9942 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
9943 ac_cv_path_LDCONFIG="$as_dir/$ac_word$ac_exec_ext"
9944 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
9945 break 2
9946 fi
9947done
9948 done
9949IFS=$as_save_IFS
b0cacab0 9950
57aa50d4
TT
9951 test -z "$ac_cv_path_LDCONFIG" && ac_cv_path_LDCONFIG=":"
9952 ;;
9953esac
39fd3d4f 9954fi
57aa50d4
TT
9955LDCONFIG=$ac_cv_path_LDCONFIG
9956if test -n "$LDCONFIG"; then
9957 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LDCONFIG" >&5
9958$as_echo "$LDCONFIG" >&6; }
9959else
9960 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
9961$as_echo "no" >&6; }
b0cacab0 9962fi
39fd3d4f
SJR
9963
9964
57aa50d4
TT
9965if test -n "$ac_tool_prefix"; then
9966 # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
9967set dummy ${ac_tool_prefix}ar; ac_word=$2
9968{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9969$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 9970if ${ac_cv_prog_AR+:} false; then :
57aa50d4
TT
9971 $as_echo_n "(cached) " >&6
9972else
9973 if test -n "$AR"; then
9974 ac_cv_prog_AR="$AR" # Let the user override the test.
9975else
9976as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9977for as_dir in $PATH
9978do
9979 IFS=$as_save_IFS
9980 test -z "$as_dir" && as_dir=.
9981 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 9982 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
9983 ac_cv_prog_AR="${ac_tool_prefix}ar"
9984 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
9985 break 2
9986 fi
9987done
9988 done
9989IFS=$as_save_IFS
39fd3d4f 9990
57aa50d4
TT
9991fi
9992fi
9993AR=$ac_cv_prog_AR
9994if test -n "$AR"; then
9995 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5
9996$as_echo "$AR" >&6; }
9997else
9998 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
9999$as_echo "no" >&6; }
10000fi
39fd3d4f 10001
b0cacab0 10002
57aa50d4
TT
10003fi
10004if test -z "$ac_cv_prog_AR"; then
10005 ac_ct_AR=$AR
10006 # Extract the first word of "ar", so it can be a program name with args.
10007set dummy ar; ac_word=$2
10008{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
10009$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 10010if ${ac_cv_prog_ac_ct_AR+:} false; then :
39fd3d4f 10011 $as_echo_n "(cached) " >&6
b0cacab0 10012else
57aa50d4
TT
10013 if test -n "$ac_ct_AR"; then
10014 ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test.
b0cacab0 10015else
57aa50d4
TT
10016as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10017for as_dir in $PATH
10018do
10019 IFS=$as_save_IFS
10020 test -z "$as_dir" && as_dir=.
10021 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 10022 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
10023 ac_cv_prog_ac_ct_AR="ar"
10024 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
10025 break 2
10026 fi
10027done
10028 done
10029IFS=$as_save_IFS
b0cacab0 10030
b0cacab0 10031fi
57aa50d4
TT
10032fi
10033ac_ct_AR=$ac_cv_prog_ac_ct_AR
10034if test -n "$ac_ct_AR"; then
10035 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5
10036$as_echo "$ac_ct_AR" >&6; }
b0cacab0 10037else
57aa50d4
TT
10038 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
10039$as_echo "no" >&6; }
10040fi
b0cacab0 10041
57aa50d4
TT
10042 if test "x$ac_ct_AR" = x; then
10043 AR="ar"
10044 else
10045 case $cross_compiling:$ac_tool_warned in
10046yes:)
10047{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
10048$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
10049ac_tool_warned=yes ;;
e1052144 10050esac
57aa50d4
TT
10051 AR=$ac_ct_AR
10052 fi
b0cacab0 10053else
57aa50d4 10054 AR="$ac_cv_prog_AR"
b0cacab0 10055fi
e1052144 10056
57aa50d4
TT
10057if test -n "$ac_tool_prefix"; then
10058 # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
10059set dummy ${ac_tool_prefix}ranlib; ac_word=$2
10060{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
10061$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 10062if ${ac_cv_prog_RANLIB+:} false; then :
57aa50d4 10063 $as_echo_n "(cached) " >&6
b0cacab0 10064else
57aa50d4
TT
10065 if test -n "$RANLIB"; then
10066 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
10067else
10068as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10069for as_dir in $PATH
10070do
10071 IFS=$as_save_IFS
10072 test -z "$as_dir" && as_dir=.
10073 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 10074 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
10075 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
10076 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
10077 break 2
10078 fi
10079done
b0cacab0 10080 done
57aa50d4 10081IFS=$as_save_IFS
b0cacab0 10082
b0cacab0 10083fi
57aa50d4
TT
10084fi
10085RANLIB=$ac_cv_prog_RANLIB
10086if test -n "$RANLIB"; then
10087 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5
10088$as_echo "$RANLIB" >&6; }
b0cacab0 10089else
57aa50d4
TT
10090 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
10091$as_echo "no" >&6; }
b0cacab0 10092fi
b0cacab0 10093
b0cacab0 10094
57aa50d4
TT
10095fi
10096if test -z "$ac_cv_prog_RANLIB"; then
10097 ac_ct_RANLIB=$RANLIB
10098 # Extract the first word of "ranlib", so it can be a program name with args.
10099set dummy ranlib; ac_word=$2
10100{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
10101$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 10102if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
57aa50d4
TT
10103 $as_echo_n "(cached) " >&6
10104else
10105 if test -n "$ac_ct_RANLIB"; then
10106 ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
b0cacab0 10107else
57aa50d4
TT
10108as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10109for as_dir in $PATH
10110do
10111 IFS=$as_save_IFS
10112 test -z "$as_dir" && as_dir=.
10113 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 10114 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
10115 ac_cv_prog_ac_ct_RANLIB="ranlib"
10116 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
10117 break 2
10118 fi
10119done
10120 done
10121IFS=$as_save_IFS
29a5deed 10122
b0cacab0 10123fi
57aa50d4
TT
10124fi
10125ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
10126if test -n "$ac_ct_RANLIB"; then
10127 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5
10128$as_echo "$ac_ct_RANLIB" >&6; }
b0cacab0 10129else
57aa50d4
TT
10130 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
10131$as_echo "no" >&6; }
10132fi
b0cacab0 10133
57aa50d4
TT
10134 if test "x$ac_ct_RANLIB" = x; then
10135 RANLIB=":"
b0cacab0 10136 else
57aa50d4
TT
10137 case $cross_compiling:$ac_tool_warned in
10138yes:)
10139{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
10140$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
10141ac_tool_warned=yes ;;
e1052144 10142esac
57aa50d4
TT
10143 RANLIB=$ac_ct_RANLIB
10144 fi
b0cacab0 10145else
57aa50d4 10146 RANLIB="$ac_cv_prog_RANLIB"
b0cacab0 10147fi
e1052144 10148
57aa50d4
TT
10149if test -n "$ac_tool_prefix"; then
10150 # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
10151set dummy ${ac_tool_prefix}strip; ac_word=$2
10152{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
10153$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 10154if ${ac_cv_prog_STRIP+:} false; then :
57aa50d4 10155 $as_echo_n "(cached) " >&6
b0cacab0 10156else
57aa50d4
TT
10157 if test -n "$STRIP"; then
10158 ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
10159else
10160as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10161for as_dir in $PATH
10162do
10163 IFS=$as_save_IFS
10164 test -z "$as_dir" && as_dir=.
10165 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 10166 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
10167 ac_cv_prog_STRIP="${ac_tool_prefix}strip"
10168 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
10169 break 2
10170 fi
10171done
10172 done
10173IFS=$as_save_IFS
b0cacab0 10174
b0cacab0 10175fi
b0cacab0 10176fi
57aa50d4
TT
10177STRIP=$ac_cv_prog_STRIP
10178if test -n "$STRIP"; then
10179 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
10180$as_echo "$STRIP" >&6; }
10181else
10182 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
10183$as_echo "no" >&6; }
b0cacab0 10184fi
e1052144 10185
b0cacab0 10186
57aa50d4
TT
10187fi
10188if test -z "$ac_cv_prog_STRIP"; then
10189 ac_ct_STRIP=$STRIP
10190 # Extract the first word of "strip", so it can be a program name with args.
10191set dummy strip; ac_word=$2
10192{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
10193$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 10194if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
39fd3d4f 10195 $as_echo_n "(cached) " >&6
b0cacab0 10196else
57aa50d4
TT
10197 if test -n "$ac_ct_STRIP"; then
10198 ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
10199else
10200as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10201for as_dir in $PATH
10202do
10203 IFS=$as_save_IFS
10204 test -z "$as_dir" && as_dir=.
10205 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 10206 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
10207 ac_cv_prog_ac_ct_STRIP="strip"
10208 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
10209 break 2
10210 fi
10211done
10212 done
10213IFS=$as_save_IFS
b0cacab0 10214
b0cacab0 10215fi
57aa50d4
TT
10216fi
10217ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
10218if test -n "$ac_ct_STRIP"; then
10219 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
10220$as_echo "$ac_ct_STRIP" >&6; }
b0cacab0 10221else
57aa50d4
TT
10222 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
10223$as_echo "no" >&6; }
10224fi
b0cacab0 10225
57aa50d4
TT
10226 if test "x$ac_ct_STRIP" = x; then
10227 STRIP=":"
b0cacab0 10228 else
57aa50d4
TT
10229 case $cross_compiling:$ac_tool_warned in
10230yes:)
10231{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
10232$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
10233ac_tool_warned=yes ;;
e1052144 10234esac
57aa50d4
TT
10235 STRIP=$ac_ct_STRIP
10236 fi
b0cacab0 10237else
57aa50d4 10238 STRIP="$ac_cv_prog_STRIP"
b0cacab0 10239fi
e1052144 10240
57aa50d4
TT
10241# Extract the first word of "makeinfo", so it can be a program name with args.
10242set dummy makeinfo; ac_word=$2
10243{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
10244$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 10245if ${ac_cv_prog_MAKEINFO+:} false; then :
57aa50d4 10246 $as_echo_n "(cached) " >&6
07a0db15 10247else
57aa50d4
TT
10248 if test -n "$MAKEINFO"; then
10249 ac_cv_prog_MAKEINFO="$MAKEINFO" # Let the user override the test.
10250else
10251as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10252for as_dir in $PATH
10253do
10254 IFS=$as_save_IFS
10255 test -z "$as_dir" && as_dir=.
10256 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 10257 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
10258 ac_cv_prog_MAKEINFO="makeinfo"
10259 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
10260 break 2
10261 fi
10262done
10263 done
10264IFS=$as_save_IFS
b0cacab0 10265
b0cacab0
TT
10266fi
10267fi
57aa50d4
TT
10268MAKEINFO=$ac_cv_prog_MAKEINFO
10269if test -n "$MAKEINFO"; then
10270 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAKEINFO" >&5
10271$as_echo "$MAKEINFO" >&6; }
b0cacab0 10272else
57aa50d4
TT
10273 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
10274$as_echo "no" >&6; }
07a0db15 10275fi
29a5deed
TT
10276
10277
57aa50d4
TT
10278if test "_$MAKEINFO" = "_"; then
10279 MAKEINFO="@echo Makeinfo is missing. Info documentation will not be built.;true"
10280else
10281 case "$MAKEINFO" in
10282 */missing.*)
10283 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING:
10284*** Makeinfo is missing. Info documentation will not be built." >&5
10285$as_echo "$as_me: WARNING:
10286*** Makeinfo is missing. Info documentation will not be built." >&2;}
10287 ;;
10288 *)
10289 ;;
10290 esac
b0cacab0 10291fi
29a5deed 10292
b0cacab0 10293
57aa50d4
TT
10294# See if we need a separate native compiler.
10295if test $cross_compiling = no; then
10296 BUILD_CC="$CC"
b0cacab0 10297
b0cacab0 10298else
57aa50d4
TT
10299 for ac_prog in gcc cc
10300do
10301 # Extract the first word of "$ac_prog", so it can be a program name with args.
10302set dummy $ac_prog; ac_word=$2
10303{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
10304$as_echo_n "checking for $ac_word... " >&6; }
91d11da1 10305if ${ac_cv_prog_BUILD_CC+:} false; then :
57aa50d4 10306 $as_echo_n "(cached) " >&6
b0cacab0 10307else
57aa50d4
TT
10308 if test -n "$BUILD_CC"; then
10309 ac_cv_prog_BUILD_CC="$BUILD_CC" # Let the user override the test.
10310else
10311as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
10312for as_dir in $PATH
10313do
10314 IFS=$as_save_IFS
10315 test -z "$as_dir" && as_dir=.
10316 for ac_exec_ext in '' $ac_executable_extensions; do
91d11da1 10317 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
57aa50d4
TT
10318 ac_cv_prog_BUILD_CC="$ac_prog"
10319 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
10320 break 2
10321 fi
10322done
10323 done
10324IFS=$as_save_IFS
b0cacab0 10325
b0cacab0 10326fi
57aa50d4
TT
10327fi
10328BUILD_CC=$ac_cv_prog_BUILD_CC
10329if test -n "$BUILD_CC"; then
10330 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $BUILD_CC" >&5
10331$as_echo "$BUILD_CC" >&6; }
07a0db15 10332else
57aa50d4
TT
10333 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
10334$as_echo "no" >&6; }
b0cacab0 10335fi
b0cacab0 10336
b0cacab0 10337
57aa50d4
TT
10338 test -n "$BUILD_CC" && break
10339done
b0cacab0 10340
57aa50d4 10341fi
677fc916 10342for ac_header in dirent.h errno.h execinfo.h getopt.h malloc.h mntent.h paths.h semaphore.h setjmp.h signal.h stdarg.h stdint.h stdlib.h termios.h termio.h unistd.h utime.h linux/falloc.h linux/fd.h linux/major.h net/if_dl.h netinet/in.h sys/disklabel.h sys/file.h sys/ioctl.h sys/mkdev.h sys/mman.h sys/prctl.h sys/queue.h sys/resource.h sys/select.h sys/socket.h sys/sockio.h sys/stat.h sys/syscall.h sys/sysmacros.h sys/time.h sys/types.h sys/un.h sys/wait.h
57aa50d4
TT
10343do :
10344 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
10345ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
91d11da1 10346if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
57aa50d4
TT
10347 cat >>confdefs.h <<_ACEOF
10348#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
b0cacab0 10349_ACEOF
b0cacab0 10350
b0cacab0 10351fi
e1052144 10352
b0cacab0 10353done
93636bde 10354
57aa50d4
TT
10355for ac_header in sys/disk.h sys/mount.h
10356do :
10357 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
10358ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "
10359#if HAVE_SYS_QUEUE_H
10360#include <sys/queue.h>
10361#endif
b0cacab0 10362
57aa50d4 10363"
91d11da1 10364if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
57aa50d4
TT
10365 cat >>confdefs.h <<_ACEOF
10366#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
b0cacab0 10367_ACEOF
e1052144 10368
b0cacab0 10369fi
e1052144 10370
57aa50d4 10371done
93636bde 10372
57aa50d4
TT
10373for ac_header in net/if.h
10374do :
10375 ac_fn_c_check_header_compile "$LINENO" "net/if.h" "ac_cv_header_net_if_h" "
10376#if HAVE_SYS_TYPES_H
10377#include <sys/types.h>
10378#endif
10379#if HAVE_SYS_SOCKET
10380#include <sys/socket.h>
10381#endif
29a5deed 10382
57aa50d4 10383"
91d11da1 10384if test "x$ac_cv_header_net_if_h" = xyes; then :
57aa50d4
TT
10385 cat >>confdefs.h <<_ACEOF
10386#define HAVE_NET_IF_H 1
b0cacab0 10387_ACEOF
b0cacab0 10388
b0cacab0 10389fi
e1052144 10390
b0cacab0 10391done
b0cacab0 10392
57aa50d4
TT
10393for ac_func in vprintf
10394do :
10395 ac_fn_c_check_func "$LINENO" "vprintf" "ac_cv_func_vprintf"
91d11da1 10396if test "x$ac_cv_func_vprintf" = xyes; then :
57aa50d4
TT
10397 cat >>confdefs.h <<_ACEOF
10398#define HAVE_VPRINTF 1
b0cacab0 10399_ACEOF
b0cacab0 10400
57aa50d4 10401ac_fn_c_check_func "$LINENO" "_doprnt" "ac_cv_func__doprnt"
91d11da1 10402if test "x$ac_cv_func__doprnt" = xyes; then :
b0cacab0 10403
57aa50d4 10404$as_echo "#define HAVE_DOPRNT 1" >>confdefs.h
b0cacab0 10405
50e1e10f 10406fi
29a5deed 10407
57aa50d4
TT
10408fi
10409done
29a5deed
TT
10410
10411
57aa50d4
TT
10412ac_fn_c_check_member "$LINENO" "struct dirent" "d_reclen" "ac_cv_member_struct_dirent_d_reclen" "#include <dirent.h>
10413"
91d11da1 10414if test "x$ac_cv_member_struct_dirent_d_reclen" = xyes; then :
d1154eb4
TT
10415
10416$as_echo "#define HAVE_RECLEN_DIRENT 1" >>confdefs.h
50e1e10f 10417
b0cacab0 10418fi
93636bde 10419
57aa50d4
TT
10420ac_fn_c_check_type "$LINENO" "ssize_t" "ac_cv_type_ssize_t" "#include <sys/types.h>
10421"
91d11da1 10422if test "x$ac_cv_type_ssize_t" = xyes; then :
d1154eb4
TT
10423
10424$as_echo "#define HAVE_TYPE_SSIZE_T 1" >>confdefs.h
b0cacab0 10425
57aa50d4 10426fi
b0cacab0 10427
57aa50d4
TT
10428ac_fn_c_check_decl "$LINENO" "llseek" "ac_cv_have_decl_llseek" "#include <unistd.h>
10429"
91d11da1 10430if test "x$ac_cv_have_decl_llseek" = xyes; then :
d1154eb4
TT
10431
10432$as_echo "#define HAVE_LLSEEK_PROTOTYPE 1" >>confdefs.h
b0cacab0 10433
b0cacab0 10434fi
e1052144 10435
57aa50d4
TT
10436ac_fn_c_check_decl "$LINENO" "lseek64" "ac_cv_have_decl_lseek64" "#define _LARGEFILE_SOURCE
10437 #define _LARGEFILE64_SOURCE
10438 #include <unistd.h>
10439"
91d11da1 10440if test "x$ac_cv_have_decl_lseek64" = xyes; then :
d1154eb4
TT
10441
10442$as_echo "#define HAVE_LSEEK64_PROTOTYPE 1" >>confdefs.h
b0cacab0 10443
b0cacab0 10444fi
b0cacab0 10445
57aa50d4
TT
10446# The cast to long int works around a bug in the HP C Compiler
10447# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
10448# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
10449# This bug is HP SR number 8606223364.
10450{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of short" >&5
10451$as_echo_n "checking size of short... " >&6; }
91d11da1 10452if ${ac_cv_sizeof_short+:} false; then :
57aa50d4 10453 $as_echo_n "(cached) " >&6
07a0db15 10454else
57aa50d4 10455 if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (short))" "ac_cv_sizeof_short" "$ac_includes_default"; then :
b0cacab0 10456
b0cacab0 10457else
57aa50d4
TT
10458 if test "$ac_cv_type_short" = yes; then
10459 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
10460$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
91d11da1
TT
10461as_fn_error 77 "cannot compute sizeof (short)
10462See \`config.log' for more details" "$LINENO" 5; }
57aa50d4
TT
10463 else
10464 ac_cv_sizeof_short=0
10465 fi
07a0db15 10466fi
b0cacab0 10467
b0cacab0 10468fi
57aa50d4
TT
10469{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_short" >&5
10470$as_echo "$ac_cv_sizeof_short" >&6; }
e1052144 10471
93636bde 10472
57aa50d4
TT
10473
10474cat >>confdefs.h <<_ACEOF
10475#define SIZEOF_SHORT $ac_cv_sizeof_short
b0cacab0 10476_ACEOF
57aa50d4
TT
10477
10478
10479# The cast to long int works around a bug in the HP C Compiler
10480# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
10481# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
10482# This bug is HP SR number 8606223364.
10483{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of int" >&5
10484$as_echo_n "checking size of int... " >&6; }
91d11da1 10485if ${ac_cv_sizeof_int+:} false; then :
57aa50d4 10486 $as_echo_n "(cached) " >&6
07a0db15 10487else
57aa50d4 10488 if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (int))" "ac_cv_sizeof_int" "$ac_includes_default"; then :
93636bde 10489
57aa50d4
TT
10490else
10491 if test "$ac_cv_type_int" = yes; then
10492 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
10493$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
91d11da1
TT
10494as_fn_error 77 "cannot compute sizeof (int)
10495See \`config.log' for more details" "$LINENO" 5; }
57aa50d4
TT
10496 else
10497 ac_cv_sizeof_int=0
10498 fi
07a0db15 10499fi
e1052144 10500
b0cacab0 10501fi
57aa50d4
TT
10502{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_int" >&5
10503$as_echo "$ac_cv_sizeof_int" >&6; }
e1052144 10504
93636bde 10505
57aa50d4
TT
10506
10507cat >>confdefs.h <<_ACEOF
10508#define SIZEOF_INT $ac_cv_sizeof_int
b0cacab0 10509_ACEOF
b0cacab0 10510
e1052144 10511
57aa50d4
TT
10512# The cast to long int works around a bug in the HP C Compiler
10513# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
10514# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
10515# This bug is HP SR number 8606223364.
10516{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long" >&5
10517$as_echo_n "checking size of long... " >&6; }
91d11da1 10518if ${ac_cv_sizeof_long+:} false; then :
57aa50d4
TT
10519 $as_echo_n "(cached) " >&6
10520else
10521 if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long))" "ac_cv_sizeof_long" "$ac_includes_default"; then :
10522
10523else
10524 if test "$ac_cv_type_long" = yes; then
10525 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
39fd3d4f 10526$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
91d11da1
TT
10527as_fn_error 77 "cannot compute sizeof (long)
10528See \`config.log' for more details" "$LINENO" 5; }
29a5deed 10529 else
57aa50d4
TT
10530 ac_cv_sizeof_long=0
10531 fi
10532fi
39fd3d4f 10533
57aa50d4
TT
10534fi
10535{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_long" >&5
10536$as_echo "$ac_cv_sizeof_long" >&6; }
39fd3d4f 10537
57aa50d4
TT
10538
10539
10540cat >>confdefs.h <<_ACEOF
10541#define SIZEOF_LONG $ac_cv_sizeof_long
39fd3d4f 10542_ACEOF
57aa50d4
TT
10543
10544
10545# The cast to long int works around a bug in the HP C Compiler
10546# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
10547# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
10548# This bug is HP SR number 8606223364.
10549{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long long" >&5
10550$as_echo_n "checking size of long long... " >&6; }
91d11da1 10551if ${ac_cv_sizeof_long_long+:} false; then :
57aa50d4 10552 $as_echo_n "(cached) " >&6
39fd3d4f 10553else
57aa50d4 10554 if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long long))" "ac_cv_sizeof_long_long" "$ac_includes_default"; then :
39fd3d4f 10555
57aa50d4
TT
10556else
10557 if test "$ac_cv_type_long_long" = yes; then
10558 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
39fd3d4f 10559$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
91d11da1
TT
10560as_fn_error 77 "cannot compute sizeof (long long)
10561See \`config.log' for more details" "$LINENO" 5; }
39fd3d4f
SJR
10562 else
10563 ac_cv_sizeof_long_long=0
10564 fi
10565fi
57aa50d4 10566
39fd3d4f 10567fi
57aa50d4 10568{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_long_long" >&5
39fd3d4f
SJR
10569$as_echo "$ac_cv_sizeof_long_long" >&6; }
10570
10571
10572
10573cat >>confdefs.h <<_ACEOF
10574#define SIZEOF_LONG_LONG $ac_cv_sizeof_long_long
10575_ACEOF
10576
10577
cc68e8a6
TT
10578# The cast to long int works around a bug in the HP C Compiler
10579# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
10580# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
10581# This bug is HP SR number 8606223364.
10582{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of off_t" >&5
10583$as_echo_n "checking size of off_t... " >&6; }
10584if ${ac_cv_sizeof_off_t+:} false; then :
10585 $as_echo_n "(cached) " >&6
10586else
10587 if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (off_t))" "ac_cv_sizeof_off_t" "$ac_includes_default"; then :
10588
10589else
10590 if test "$ac_cv_type_off_t" = yes; then
10591 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
10592$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
10593as_fn_error 77 "cannot compute sizeof (off_t)
10594See \`config.log' for more details" "$LINENO" 5; }
10595 else
10596 ac_cv_sizeof_off_t=0
10597 fi
10598fi
10599
10600fi
10601{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_off_t" >&5
10602$as_echo "$ac_cv_sizeof_off_t" >&6; }
10603
10604
10605
10606cat >>confdefs.h <<_ACEOF
10607#define SIZEOF_OFF_T $ac_cv_sizeof_off_t
10608_ACEOF
10609
10610
39fd3d4f
SJR
10611SIZEOF_SHORT=$ac_cv_sizeof_short
10612SIZEOF_INT=$ac_cv_sizeof_int
10613SIZEOF_LONG=$ac_cv_sizeof_long
10614SIZEOF_LONG_LONG=$ac_cv_sizeof_long_long
cc68e8a6
TT
10615SIZEOF_OFF_T=$ac_cv_sizeof_off_t
10616
39fd3d4f
SJR
10617
10618
10619
10620
57aa50d4 10621 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5
39fd3d4f 10622$as_echo_n "checking whether byte ordering is bigendian... " >&6; }
91d11da1 10623if ${ac_cv_c_bigendian+:} false; then :
39fd3d4f
SJR
10624 $as_echo_n "(cached) " >&6
10625else
10626 ac_cv_c_bigendian=unknown
10627 # See if we're dealing with a universal compiler.
57aa50d4 10628 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
39fd3d4f
SJR
10629/* end confdefs.h. */
10630#ifndef __APPLE_CC__
10631 not a universal capable compiler
10632 #endif
10633 typedef int dummy;
10634
10635_ACEOF
57aa50d4 10636if ac_fn_c_try_compile "$LINENO"; then :
39fd3d4f
SJR
10637
10638 # Check for potential -arch flags. It is not universal unless
57aa50d4
TT
10639 # there are at least two -arch flags with different values.
10640 ac_arch=
10641 ac_prev=
10642 for ac_word in $CC $CFLAGS $CPPFLAGS $LDFLAGS; do
10643 if test -n "$ac_prev"; then
10644 case $ac_word in
10645 i?86 | x86_64 | ppc | ppc64)
10646 if test -z "$ac_arch" || test "$ac_arch" = "$ac_word"; then
10647 ac_arch=$ac_word
10648 else
10649 ac_cv_c_bigendian=universal
10650 break
10651 fi
10652 ;;
10653 esac
10654 ac_prev=
10655 elif test "x$ac_word" = "x-arch"; then
10656 ac_prev=arch
10657 fi
10658 done
39fd3d4f 10659fi
39fd3d4f
SJR
10660rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
10661 if test $ac_cv_c_bigendian = unknown; then
10662 # See if sys/param.h defines the BYTE_ORDER macro.
57aa50d4 10663 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
39fd3d4f
SJR
10664/* end confdefs.h. */
10665#include <sys/types.h>
10666 #include <sys/param.h>
10667
10668int
10669main ()
10670{
10671#if ! (defined BYTE_ORDER && defined BIG_ENDIAN \
10672 && defined LITTLE_ENDIAN && BYTE_ORDER && BIG_ENDIAN \
10673 && LITTLE_ENDIAN)
10674 bogus endian macros
10675 #endif
10676
10677 ;
10678 return 0;
10679}
10680_ACEOF
57aa50d4 10681if ac_fn_c_try_compile "$LINENO"; then :
39fd3d4f 10682 # It does; now see whether it defined to BIG_ENDIAN or not.
57aa50d4 10683 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
39fd3d4f
SJR
10684/* end confdefs.h. */
10685#include <sys/types.h>
10686 #include <sys/param.h>
10687
b0cacab0
TT
10688int
10689main ()
07a0db15 10690{
39fd3d4f
SJR
10691#if BYTE_ORDER != BIG_ENDIAN
10692 not big endian
10693 #endif
b0cacab0
TT
10694
10695 ;
10696 return 0;
07a0db15 10697}
b0cacab0 10698_ACEOF
57aa50d4 10699if ac_fn_c_try_compile "$LINENO"; then :
39fd3d4f 10700 ac_cv_c_bigendian=yes
b0cacab0 10701else
57aa50d4 10702 ac_cv_c_bigendian=no
fc6d9d51 10703fi
39fd3d4f 10704rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
39fd3d4f 10705fi
39fd3d4f
SJR
10706rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
10707 fi
10708 if test $ac_cv_c_bigendian = unknown; then
10709 # See if <limits.h> defines _LITTLE_ENDIAN or _BIG_ENDIAN (e.g., Solaris).
57aa50d4 10710 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0 10711/* end confdefs.h. */
39fd3d4f 10712#include <limits.h>
877eb6d9 10713
b0cacab0
TT
10714int
10715main ()
10716{
39fd3d4f
SJR
10717#if ! (defined _LITTLE_ENDIAN || defined _BIG_ENDIAN)
10718 bogus endian macros
10719 #endif
b0cacab0
TT
10720
10721 ;
10722 return 0;
10723}
b0cacab0 10724_ACEOF
57aa50d4
TT
10725if ac_fn_c_try_compile "$LINENO"; then :
10726 # It does; now see whether it defined to _BIG_ENDIAN or not.
10727 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0 10728/* end confdefs.h. */
39fd3d4f 10729#include <limits.h>
877eb6d9 10730
b0cacab0
TT
10731int
10732main ()
10733{
39fd3d4f
SJR
10734#ifndef _BIG_ENDIAN
10735 not big endian
10736 #endif
b0cacab0
TT
10737
10738 ;
10739 return 0;
10740}
10741_ACEOF
57aa50d4 10742if ac_fn_c_try_compile "$LINENO"; then :
877eb6d9
TT
10743 ac_cv_c_bigendian=yes
10744else
57aa50d4 10745 ac_cv_c_bigendian=no
877eb6d9 10746fi
e1052144 10747rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
39fd3d4f 10748fi
39fd3d4f
SJR
10749rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
10750 fi
10751 if test $ac_cv_c_bigendian = unknown; then
10752 # Compile a test program.
57aa50d4 10753 if test "$cross_compiling" = yes; then :
39fd3d4f 10754 # Try to guess by grepping values from an object file.
57aa50d4 10755 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0 10756/* end confdefs.h. */
39fd3d4f
SJR
10757short int ascii_mm[] =
10758 { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 };
10759 short int ascii_ii[] =
10760 { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 };
10761 int use_ascii (int i) {
10762 return ascii_mm[i] + ascii_ii[i];
10763 }
10764 short int ebcdic_ii[] =
10765 { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 };
10766 short int ebcdic_mm[] =
10767 { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 };
10768 int use_ebcdic (int i) {
10769 return ebcdic_mm[i] + ebcdic_ii[i];
10770 }
10771 extern int foo;
10772
b0cacab0
TT
10773int
10774main ()
10775{
39fd3d4f 10776return use_ascii (foo) == use_ebcdic (foo);
b0cacab0
TT
10777 ;
10778 return 0;
10779}
10780_ACEOF
57aa50d4 10781if ac_fn_c_try_compile "$LINENO"; then :
39fd3d4f
SJR
10782 if grep BIGenDianSyS conftest.$ac_objext >/dev/null; then
10783 ac_cv_c_bigendian=yes
10784 fi
10785 if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then
10786 if test "$ac_cv_c_bigendian" = unknown; then
10787 ac_cv_c_bigendian=no
10788 else
10789 # finding both strings is unlikely to happen, but who knows?
10790 ac_cv_c_bigendian=unknown
10791 fi
10792 fi
b0cacab0 10793fi
e1052144 10794rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
877eb6d9 10795else
57aa50d4 10796 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0 10797/* end confdefs.h. */
e1052144 10798$ac_includes_default
b0cacab0
TT
10799int
10800main ()
10801{
e1052144 10802
39fd3d4f
SJR
10803 /* Are we little or big endian? From Harbison&Steele. */
10804 union
10805 {
10806 long int l;
10807 char c[sizeof (long int)];
10808 } u;
10809 u.l = 1;
10810 return u.c[sizeof (long int) - 1] == 1;
e1052144
TT
10811
10812 ;
10813 return 0;
877eb6d9 10814}
b0cacab0 10815_ACEOF
57aa50d4 10816if ac_fn_c_try_run "$LINENO"; then :
877eb6d9
TT
10817 ac_cv_c_bigendian=no
10818else
57aa50d4 10819 ac_cv_c_bigendian=yes
877eb6d9 10820fi
57aa50d4
TT
10821rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
10822 conftest.$ac_objext conftest.beam conftest.$ac_ext
877eb6d9 10823fi
e1052144 10824
39fd3d4f 10825 fi
877eb6d9 10826fi
57aa50d4 10827{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_bigendian" >&5
39fd3d4f
SJR
10828$as_echo "$ac_cv_c_bigendian" >&6; }
10829 case $ac_cv_c_bigendian in #(
10830 yes)
57aa50d4 10831 $as_echo "#define WORDS_BIGENDIAN 1" >>confdefs.h
39fd3d4f
SJR
10832;; #(
10833 no)
10834 ;; #(
10835 universal)
07a0db15 10836
57aa50d4 10837$as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
39fd3d4f
SJR
10838
10839 ;; #(
10840 *)
91d11da1 10841 as_fn_error $? "unknown endianness
57aa50d4 10842 presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;;
39fd3d4f 10843 esac
877eb6d9 10844
29a5deed 10845BUILD_CC="$BUILD_CC" CPP="$CPP" /bin/sh $ac_aux_dir/parse-types.sh
4ea7ea00
TT
10846ASM_TYPES_HEADER=./asm_types.h
10847
488c75a6
TT
10848echo "/* These defines are needed for the public ext2fs.h header file */" \
10849 > public_config.h
10850if grep HAVE_SYS_TYPES_H confdefs.h > tmp_config.$$; then
10851 uniq tmp_config.$$ >> public_config.h
10852else
10853 echo "#undef HAVE_SYS_TYPES_H" >> public_config.h
10854fi
10855if grep WORDS_BIGENDIAN confdefs.h > tmp_config.$$; then
10856 uniq tmp_config.$$ >> public_config.h
10857else
10858 echo "#undef WORDS_BIGENDIAN" >> public_config.h
10859fi
10860rm -f tmp_config.$$
10861PUBLIC_CONFIG_HEADER=./public_config.h
10862
b0cacab0 10863for ac_header in inttypes.h
57aa50d4
TT
10864do :
10865 ac_fn_c_check_header_mongrel "$LINENO" "inttypes.h" "ac_cv_header_inttypes_h" "$ac_includes_default"
91d11da1 10866if test "x$ac_cv_header_inttypes_h" = xyes; then :
b0cacab0 10867 cat >>confdefs.h <<_ACEOF
57aa50d4 10868#define HAVE_INTTYPES_H 1
b0cacab0
TT
10869_ACEOF
10870
10871fi
10872
0c193f82
TT
10873done
10874
57aa50d4 10875ac_fn_c_check_type "$LINENO" "intptr_t" "ac_cv_type_intptr_t" "$ac_includes_default"
91d11da1 10876if test "x$ac_cv_type_intptr_t" = xyes; then :
b0cacab0
TT
10877
10878cat >>confdefs.h <<_ACEOF
d2ee56d8 10879#define HAVE_INTPTR_T 1
b0cacab0 10880_ACEOF
0c193f82 10881
d2ee56d8 10882
0c193f82
TT
10883fi
10884
57aa50d4 10885{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether struct stat has a st_flags field" >&5
39fd3d4f 10886$as_echo_n "checking whether struct stat has a st_flags field... " >&6; }
91d11da1 10887if ${e2fsprogs_cv_struct_st_flags+:} false; then :
39fd3d4f 10888 $as_echo_n "(cached) " >&6
50e1e10f 10889else
57aa50d4 10890 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0 10891/* end confdefs.h. */
50e1e10f 10892#include <sys/stat.h>
b0cacab0
TT
10893int
10894main ()
10895{
50e1e10f 10896struct stat stat; stat.st_flags = 0;
b0cacab0
TT
10897 ;
10898 return 0;
10899}
10900_ACEOF
57aa50d4 10901if ac_fn_c_try_compile "$LINENO"; then :
50e1e10f
TT
10902 e2fsprogs_cv_struct_st_flags=yes
10903else
57aa50d4 10904 e2fsprogs_cv_struct_st_flags=no
50e1e10f 10905fi
e1052144 10906rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
50e1e10f
TT
10907fi
10908
57aa50d4 10909{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $e2fsprogs_cv_struct_st_flags" >&5
39fd3d4f 10910$as_echo "$e2fsprogs_cv_struct_st_flags" >&6; }
50e1e10f 10911if test "$e2fsprogs_cv_struct_st_flags" = yes; then
57aa50d4 10912 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether st_flags field is useful" >&5
39fd3d4f 10913$as_echo_n "checking whether st_flags field is useful... " >&6; }
91d11da1 10914 if ${e2fsprogs_cv_struct_st_flags_immut+:} false; then :
39fd3d4f 10915 $as_echo_n "(cached) " >&6
b0cacab0 10916else
57aa50d4 10917 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0 10918/* end confdefs.h. */
c03bc4e8 10919#include <sys/stat.h>
b0cacab0
TT
10920int
10921main ()
10922{
c03bc4e8 10923struct stat stat; stat.st_flags |= UF_IMMUTABLE;
b0cacab0
TT
10924 ;
10925 return 0;
10926}
57aa50d4
TT
10927_ACEOF
10928if ac_fn_c_try_compile "$LINENO"; then :
10929 e2fsprogs_cv_struct_st_flags_immut=yes
6c65d251 10930else
57aa50d4 10931 e2fsprogs_cv_struct_st_flags_immut=no
84ea6e70 10932fi
e1052144 10933rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
84ea6e70 10934fi
e1052144 10935
57aa50d4
TT
10936 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $e2fsprogs_cv_struct_st_flags_immut" >&5
10937$as_echo "$e2fsprogs_cv_struct_st_flags_immut" >&6; }
10938 if test "$e2fsprogs_cv_struct_st_flags_immut" = yes; then
d1154eb4
TT
10939
10940$as_echo "#define HAVE_STAT_FLAGS 1" >>confdefs.h
57aa50d4
TT
10941
10942 fi
6c65d251 10943fi
57aa50d4
TT
10944ac_fn_c_check_member "$LINENO" "struct sockaddr" "sa_len" "ac_cv_member_struct_sockaddr_sa_len" "#include <sys/types.h>
10945 #include <sys/socket.h>
10946"
91d11da1 10947if test "x$ac_cv_member_struct_sockaddr_sa_len" = xyes; then :
b0cacab0
TT
10948
10949cat >>confdefs.h <<_ACEOF
84ea6e70 10950#define HAVE_SA_LEN 1
b0cacab0 10951_ACEOF
84ea6e70 10952
50e1e10f 10953fi
b0cacab0 10954
9ed8e5fe 10955if test -n "$BLKID_CMT"; then
57aa50d4 10956 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing blkid_probe_all" >&5
9ed8e5fe 10957$as_echo_n "checking for library containing blkid_probe_all... " >&6; }
91d11da1 10958if ${ac_cv_search_blkid_probe_all+:} false; then :
9ed8e5fe
ES
10959 $as_echo_n "(cached) " >&6
10960else
10961 ac_func_search_save_LIBS=$LIBS
57aa50d4 10962cat confdefs.h - <<_ACEOF >conftest.$ac_ext
9ed8e5fe
ES
10963/* end confdefs.h. */
10964
10965/* Override any GCC internal prototype to avoid an error.
10966 Use char because int might match the return type of a GCC
10967 builtin and then its argument prototype would still apply. */
10968#ifdef __cplusplus
10969extern "C"
10970#endif
10971char blkid_probe_all ();
10972int
10973main ()
10974{
10975return blkid_probe_all ();
10976 ;
10977 return 0;
10978}
10979_ACEOF
10980for ac_lib in '' blkid; do
10981 if test -z "$ac_lib"; then
10982 ac_res="none required"
10983 else
10984 ac_res=-l$ac_lib
10985 LIBS="-l$ac_lib $ac_func_search_save_LIBS"
10986 fi
57aa50d4 10987 if ac_fn_c_try_link "$LINENO"; then :
9ed8e5fe 10988 ac_cv_search_blkid_probe_all=$ac_res
9ed8e5fe 10989fi
57aa50d4
TT
10990rm -f core conftest.err conftest.$ac_objext \
10991 conftest$ac_exeext
91d11da1 10992 if ${ac_cv_search_blkid_probe_all+:} false; then :
9ed8e5fe
ES
10993 break
10994fi
10995done
91d11da1 10996if ${ac_cv_search_blkid_probe_all+:} false; then :
57aa50d4 10997
9ed8e5fe
ES
10998else
10999 ac_cv_search_blkid_probe_all=no
11000fi
11001rm conftest.$ac_ext
11002LIBS=$ac_func_search_save_LIBS
11003fi
57aa50d4 11004{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_blkid_probe_all" >&5
9ed8e5fe
ES
11005$as_echo "$ac_cv_search_blkid_probe_all" >&6; }
11006ac_res=$ac_cv_search_blkid_probe_all
57aa50d4 11007if test "$ac_res" != no; then :
9ed8e5fe
ES
11008 test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
11009
11010fi
11011
11012fi
3b802e43 11013for ac_func in __secure_getenv backtrace blkid_probe_get_topology chflags fallocate fallocate64 fchown fdatasync fstat64 ftruncate64 getdtablesize getmntinfo getpwuid_r getrlimit getrusage jrand48 llseek lseek64 mallinfo mbstowcs memalign mmap msync nanosleep open64 pathconf posix_fadvise posix_memalign prctl setmntent setresgid setresuid srandom strcasecmp strdup strnlen strptime strtoull sync_file_range sysconf usleep utime valloc
57aa50d4
TT
11014do :
11015 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
11016ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
91d11da1 11017if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
b0cacab0 11018 cat >>confdefs.h <<_ACEOF
39fd3d4f 11019#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
b0cacab0 11020_ACEOF
21c84b71 11021
50e1e10f
TT
11022fi
11023done
11024
fc6d9d51 11025SOCKET_LIB=''
57aa50d4 11026{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for socket in -lsocket" >&5
39fd3d4f 11027$as_echo_n "checking for socket in -lsocket... " >&6; }
91d11da1 11028if ${ac_cv_lib_socket_socket+:} false; then :
39fd3d4f 11029 $as_echo_n "(cached) " >&6
50e1e10f 11030else
b0cacab0 11031 ac_check_lib_save_LIBS=$LIBS
fc6d9d51 11032LIBS="-lsocket $LIBS"
57aa50d4 11033cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0 11034/* end confdefs.h. */
93636bde 11035
e1052144
TT
11036/* Override any GCC internal prototype to avoid an error.
11037 Use char because int might match the return type of a GCC
11038 builtin and then its argument prototype would still apply. */
b0cacab0
TT
11039#ifdef __cplusplus
11040extern "C"
11041#endif
b0cacab0
TT
11042char socket ();
11043int
11044main ()
11045{
e1052144 11046return socket ();
b0cacab0
TT
11047 ;
11048 return 0;
11049}
11050_ACEOF
57aa50d4 11051if ac_fn_c_try_link "$LINENO"; then :
b0cacab0
TT
11052 ac_cv_lib_socket_socket=yes
11053else
57aa50d4 11054 ac_cv_lib_socket_socket=no
b0cacab0 11055fi
57aa50d4
TT
11056rm -f core conftest.err conftest.$ac_objext \
11057 conftest$ac_exeext conftest.$ac_ext
b0cacab0
TT
11058LIBS=$ac_check_lib_save_LIBS
11059fi
57aa50d4 11060{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_socket" >&5
39fd3d4f 11061$as_echo "$ac_cv_lib_socket_socket" >&6; }
91d11da1 11062if test "x$ac_cv_lib_socket_socket" = xyes; then :
fc6d9d51 11063 SOCKET_LIB=-lsocket
50e1e10f 11064fi
fc6d9d51 11065
93636bde 11066
57aa50d4 11067{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for optreset" >&5
39fd3d4f 11068$as_echo_n "checking for optreset... " >&6; }
91d11da1 11069if ${ac_cv_have_optreset+:} false; then :
39fd3d4f 11070 $as_echo_n "(cached) " >&6
d7f45af8 11071else
57aa50d4 11072 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
d7f45af8 11073/* end confdefs.h. */
57aa50d4
TT
11074#include <unistd.h>
11075
11076_ACEOF
11077if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
11078 $EGREP "optreset" >/dev/null 2>&1; then :
11079 ac_cv_have_optreset=yes
d7f45af8 11080else
57aa50d4
TT
11081 ac_cv_have_optreset=no
11082fi
11083rm -f conftest*
d7f45af8 11084
d7f45af8 11085fi
57aa50d4
TT
11086{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_optreset" >&5
11087$as_echo "$ac_cv_have_optreset" >&6; }
11088if test $ac_cv_have_optreset = yes; then
d1154eb4
TT
11089
11090$as_echo "#define HAVE_OPTRESET 1" >>confdefs.h
d7f45af8 11091
d7f45af8 11092fi
d1154eb4 11093
57aa50d4
TT
11094SEM_INIT_LIB=''
11095ac_fn_c_check_func "$LINENO" "sem_init" "ac_cv_func_sem_init"
91d11da1 11096if test "x$ac_cv_func_sem_init" = xyes; then :
57aa50d4 11097
d7f45af8 11098else
57aa50d4 11099 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sem_init in -lpthread" >&5
39fd3d4f 11100$as_echo_n "checking for sem_init in -lpthread... " >&6; }
91d11da1 11101if ${ac_cv_lib_pthread_sem_init+:} false; then :
39fd3d4f 11102 $as_echo_n "(cached) " >&6
d7f45af8
TT
11103else
11104 ac_check_lib_save_LIBS=$LIBS
11105LIBS="-lpthread $LIBS"
57aa50d4 11106cat confdefs.h - <<_ACEOF >conftest.$ac_ext
d7f45af8
TT
11107/* end confdefs.h. */
11108
11109/* Override any GCC internal prototype to avoid an error.
11110 Use char because int might match the return type of a GCC
11111 builtin and then its argument prototype would still apply. */
11112#ifdef __cplusplus
11113extern "C"
11114#endif
11115char sem_init ();
11116int
11117main ()
11118{
11119return sem_init ();
11120 ;
11121 return 0;
11122}
11123_ACEOF
57aa50d4 11124if ac_fn_c_try_link "$LINENO"; then :
d7f45af8
TT
11125 ac_cv_lib_pthread_sem_init=yes
11126else
57aa50d4 11127 ac_cv_lib_pthread_sem_init=no
d7f45af8 11128fi
57aa50d4
TT
11129rm -f core conftest.err conftest.$ac_objext \
11130 conftest$ac_exeext conftest.$ac_ext
d7f45af8
TT
11131LIBS=$ac_check_lib_save_LIBS
11132fi
57aa50d4 11133{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_sem_init" >&5
39fd3d4f 11134$as_echo "$ac_cv_lib_pthread_sem_init" >&6; }
91d11da1 11135if test "x$ac_cv_lib_pthread_sem_init" = xyes; then :
57aa50d4 11136 $as_echo "#define HAVE_SEM_INIT 1" >>confdefs.h
d7f45af8
TT
11137
11138 SEM_INIT_LIB=-lpthread
11139else
57aa50d4 11140 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sem_init in -lrt" >&5
39fd3d4f 11141$as_echo_n "checking for sem_init in -lrt... " >&6; }
91d11da1 11142if ${ac_cv_lib_rt_sem_init+:} false; then :
39fd3d4f 11143 $as_echo_n "(cached) " >&6
d7f45af8
TT
11144else
11145 ac_check_lib_save_LIBS=$LIBS
11146LIBS="-lrt $LIBS"
57aa50d4 11147cat confdefs.h - <<_ACEOF >conftest.$ac_ext
d7f45af8
TT
11148/* end confdefs.h. */
11149
11150/* Override any GCC internal prototype to avoid an error.
11151 Use char because int might match the return type of a GCC
11152 builtin and then its argument prototype would still apply. */
11153#ifdef __cplusplus
11154extern "C"
11155#endif
11156char sem_init ();
11157int
11158main ()
11159{
11160return sem_init ();
11161 ;
11162 return 0;
11163}
11164_ACEOF
57aa50d4 11165if ac_fn_c_try_link "$LINENO"; then :
d7f45af8
TT
11166 ac_cv_lib_rt_sem_init=yes
11167else
57aa50d4 11168 ac_cv_lib_rt_sem_init=no
d7f45af8 11169fi
57aa50d4
TT
11170rm -f core conftest.err conftest.$ac_objext \
11171 conftest$ac_exeext conftest.$ac_ext
d7f45af8
TT
11172LIBS=$ac_check_lib_save_LIBS
11173fi
57aa50d4 11174{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_sem_init" >&5
39fd3d4f 11175$as_echo "$ac_cv_lib_rt_sem_init" >&6; }
91d11da1 11176if test "x$ac_cv_lib_rt_sem_init" = xyes; then :
57aa50d4 11177 $as_echo "#define HAVE_SEM_INIT 1" >>confdefs.h
d7f45af8
TT
11178
11179 SEM_INIT_LIB=-lrt
11180else
57aa50d4 11181 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sem_init in -lposix4" >&5
39fd3d4f 11182$as_echo_n "checking for sem_init in -lposix4... " >&6; }
91d11da1 11183if ${ac_cv_lib_posix4_sem_init+:} false; then :
39fd3d4f 11184 $as_echo_n "(cached) " >&6
d7f45af8
TT
11185else
11186 ac_check_lib_save_LIBS=$LIBS
11187LIBS="-lposix4 $LIBS"
57aa50d4 11188cat confdefs.h - <<_ACEOF >conftest.$ac_ext
d7f45af8
TT
11189/* end confdefs.h. */
11190
11191/* Override any GCC internal prototype to avoid an error.
11192 Use char because int might match the return type of a GCC
11193 builtin and then its argument prototype would still apply. */
11194#ifdef __cplusplus
11195extern "C"
11196#endif
11197char sem_init ();
11198int
11199main ()
11200{
11201return sem_init ();
11202 ;
11203 return 0;
11204}
11205_ACEOF
57aa50d4 11206if ac_fn_c_try_link "$LINENO"; then :
d7f45af8
TT
11207 ac_cv_lib_posix4_sem_init=yes
11208else
57aa50d4 11209 ac_cv_lib_posix4_sem_init=no
d7f45af8 11210fi
57aa50d4
TT
11211rm -f core conftest.err conftest.$ac_objext \
11212 conftest$ac_exeext conftest.$ac_ext
d7f45af8
TT
11213LIBS=$ac_check_lib_save_LIBS
11214fi
57aa50d4 11215{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix4_sem_init" >&5
39fd3d4f 11216$as_echo "$ac_cv_lib_posix4_sem_init" >&6; }
91d11da1 11217if test "x$ac_cv_lib_posix4_sem_init" = xyes; then :
57aa50d4 11218 $as_echo "#define HAVE_SEM_INIT 1" >>confdefs.h
d7f45af8
TT
11219
11220 SEM_INIT_LIB=-lposix4
11221fi
11222
11223fi
11224
11225fi
11226
11227fi
11228
57aa50d4 11229{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for unified diff option" >&5
39fd3d4f 11230$as_echo_n "checking for unified diff option... " >&6; }
27f991b0 11231if diff -u $0 $0 > /dev/null 2>&1 ; then
e54635de
TT
11232 UNI_DIFF_OPTS=-u
11233else
11234 UNI_DIFF_OPTS=-c
11235fi
57aa50d4 11236{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $UNI_DIFF_OPTS" >&5
39fd3d4f 11237$as_echo "$UNI_DIFF_OPTS" >&6; }
e54635de 11238
8f3f29d3
TT
11239case "$host_os" in
11240linux*)
d1154eb4
TT
11241
11242$as_echo "#define HAVE_EXT2_IOCTLS 1" >>confdefs.h
50e1e10f 11243
8f3f29d3
TT
11244 ;;
11245esac
e6f2bda3 11246LINUX_CMT="#"
fff45483
TT
11247CYGWIN_CMT="#"
11248UNIX_CMT=
e6f2bda3
TT
11249case "$host_os" in
11250linux*)
11251 LINUX_CMT=
fff45483
TT
11252 ;;
11253cygwin)
11254 CYGWIN_CMT=
11255 UNIX_CMT="#"
e6f2bda3
TT
11256 ;;
11257esac
11258
93636bde
TT
11259
11260
50e1e10f 11261case "$host_os" in
93636bde 11262linux* | gnu* | k*bsd*-gnu)
a4b2d3ce
TT
11263 if test "$prefix" = NONE -a "$root_prefix" = NONE ; then
11264 root_prefix="";
57aa50d4 11265 { $as_echo "$as_me:${as_lineno-$LINENO}: result: On $host_os systems, root_prefix defaults to ''" >&5
39fd3d4f 11266$as_echo "On $host_os systems, root_prefix defaults to ''" >&6; }
fc6d9d51
TT
11267 fi
11268 ;;
11269esac
fc6d9d51 11270case "$host_os" in
93636bde 11271linux* | gnu* | k*bsd*-gnu)
fc6d9d51 11272 if test "$prefix" = NONE ; then
a4b2d3ce 11273 prefix="/usr";
57aa50d4 11274 { $as_echo "$as_me:${as_lineno-$LINENO}: result: On $host_os systems, prefix defaults to /usr" >&5
39fd3d4f 11275$as_echo "On $host_os systems, prefix defaults to /usr" >&6; }
bff61a7a 11276 if test "$mandir" = '${prefix}/man' ; then
57aa50d4 11277 { $as_echo "$as_me:${as_lineno-$LINENO}: result: ...and mandir defaults to /usr/share/man" >&5
39fd3d4f 11278$as_echo "...and mandir defaults to /usr/share/man" >&6; }
bff61a7a
TT
11279 mandir=/usr/share/man
11280 fi
50e1e10f
TT
11281 fi
11282;;
11283esac
a4b2d3ce 11284if test "$root_prefix" = NONE ; then
ffe1991f 11285 if test "$prefix" = NONE ; then
a4b2d3ce
TT
11286 root_prefix="$ac_default_prefix"
11287 else
11288 root_prefix="$prefix"
11289 fi
b5ffeade
TT
11290 root_bindir=$bindir
11291 root_sbindir=$sbindir
11292 root_libdir=$libdir
11293 root_sysconfdir=$sysconfdir
11294else
11295 root_bindir='${root_prefix}/bin'
11296 root_sbindir='${root_prefix}/sbin'
11297 root_libdir='${root_prefix}/lib'
11298 root_sysconfdir='${root_prefix}/etc'
a4b2d3ce 11299fi
c4ef11c5
TT
11300if test "$bindir" != '${exec_prefix}/bin'; then
11301 root_bindir=$bindir
57aa50d4 11302 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Setting root_bindir to $root_bindir" >&5
39fd3d4f 11303$as_echo "Setting root_bindir to $root_bindir" >&6; }
c4ef11c5
TT
11304fi
11305if test "$sbindir" != '${exec_prefix}/sbin'; then
11306 root_sbindir=$sbindir
57aa50d4 11307 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Setting root_sbindir to $root_sbindir" >&5
39fd3d4f 11308$as_echo "Setting root_sbindir to $root_sbindir" >&6; }
c4ef11c5
TT
11309fi
11310if test "$libdir" != '${exec_prefix}/lib'; then
11311 root_libdir=$libdir
57aa50d4 11312 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Setting root_libdir to $root_libdir" >&5
39fd3d4f 11313$as_echo "Setting root_libdir to $root_libdir" >&6; }
c4ef11c5
TT
11314fi
11315if test "$sysconfdir" != '${prefix}/etc'; then
11316 root_sysconfdir=$sysconfdir
57aa50d4 11317 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Setting root_sysconfdir to $root_sysconfdir" >&5
39fd3d4f 11318$as_echo "Setting root_sysconfdir to $root_sysconfdir" >&6; }
c4ef11c5 11319fi
a4b2d3ce 11320
93636bde
TT
11321
11322
11323
11324
55e00a25
TT
11325
11326# Check whether --with-multiarch was given.
11327if test "${with_multiarch+set}" = set; then :
11328 withval=$with_multiarch; libdir=$libdir/$withval
11329root_libdir=$root_libdir/$withval
11330
11331fi
d3de1a71
TT
11332{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we can link with -static" >&5
11333$as_echo_n "checking whether we can link with -static... " >&6; }
91d11da1 11334if ${ac_cv_e2fsprogs_use_static+:} false; then :
39fd3d4f 11335 $as_echo_n "(cached) " >&6
ae851482
TT
11336else
11337 SAVE_LDFLAGS=$LDFLAGS; LDFLAGS="$LDFLAGS -static"
57aa50d4 11338cat confdefs.h - <<_ACEOF >conftest.$ac_ext
b0cacab0 11339/* end confdefs.h. */
ae851482 11340#include <stdio.h>
b0cacab0
TT
11341int
11342main ()
11343{
ae851482 11344fflush(stdout);
b0cacab0
TT
11345 ;
11346 return 0;
11347}
11348_ACEOF
57aa50d4 11349if ac_fn_c_try_link "$LINENO"; then :
ae851482
TT
11350 ac_cv_e2fsprogs_use_static=yes
11351else
57aa50d4 11352 ac_cv_e2fsprogs_use_static=no
ae851482 11353fi
57aa50d4
TT
11354rm -f core conftest.err conftest.$ac_objext \
11355 conftest$ac_exeext conftest.$ac_ext
ae851482
TT
11356LDFLAGS=$SAVE_LDFLAGS
11357fi
50e1e10f 11358
defde784
TT
11359case "$host_os" in
11360solaris2.*)
b0cacab0 11361 ac_cv_e2fsprogs_use_static=no
defde784
TT
11362;;
11363esac
57aa50d4 11364{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_e2fsprogs_use_static" >&5
39fd3d4f 11365$as_echo "$ac_cv_e2fsprogs_use_static" >&6; }
74becf3c 11366LDFLAG_STATIC=
ae851482 11367if test $ac_cv_e2fsprogs_use_static = yes; then
50e1e10f 11368 LDFLAG_STATIC=-static
ae851482 11369fi
50e1e10f 11370
07a0db15
TT
11371case "$host_os" in
11372darwin*)
57aa50d4 11373 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Using Apple Darwin / GNU libintl workaround" >&5
39fd3d4f 11374$as_echo "Using Apple Darwin / GNU libintl workaround" >&6; }
d1154eb4
TT
11375
11376$as_echo "#define _INTL_REDIRECT_MACROS 1" >>confdefs.h
07a0db15
TT
11377
11378 ;;
11379esac
50e1e10f
TT
11380SS_DIR=`cd ${srcdir}/lib/ss; pwd`
11381ET_DIR=`cd ${srcdir}/lib/et; pwd`
11382
93636bde 11383
50e1e10f
TT
11384if test "$cross_compiling" = yes ; then
11385 DO_TEST_SUITE=
11386else
11387 DO_TEST_SUITE=check
11388fi
11389
d1154eb4
TT
11390INCLUDES='-I. -I$(top_builddir)/lib -I$(top_srcdir)/lib'
11391if test -n "$CPPFLAGS" ; then
11392 INCLUDES="$INCLUDES $CPPFLAGS"
11393fi
c6f35b8a 11394if test "$USE_INCLUDED_LIBINTL" = "yes" ; then
d1154eb4 11395 INCLUDES=$INCLUDES' -I$(top_builddir)/intl -I$(top_srcdir)/intl'
c6f35b8a
TT
11396fi
11397
dd947da2 11398if test $cross_compiling = no; then
c1986ecb 11399 BUILD_CFLAGS="$CFLAGS $CPPFLAGS"
dd947da2
TT
11400 BUILD_LDFLAGS="$LDFLAGS"
11401else
11402 BUILD_CFLAGS=
11403 BUILD_LDFLAGS=
11404fi
11405
11406
50e1e10f
TT
11407test -d lib || mkdir lib
11408test -d include || mkdir include
11409test -d include/linux || mkdir include/linux
defde784 11410test -d include/asm || mkdir include/asm
bff0cc95 11411for i in MCONFIG Makefile e2fsprogs.spec \
183c73b0 11412 util/Makefile util/subst.conf util/gen-tarball util/install-symlink \
4ea7ea00
TT
11413 lib/et/Makefile lib/ss/Makefile lib/e2p/Makefile \
11414 lib/ext2fs/Makefile lib/ext2fs/ext2_types.h \
94ba8c75 11415 lib/uuid/Makefile lib/uuid/uuid_types.h \
f239fefc 11416 lib/blkid/Makefile lib/blkid/blkid_types.h lib/quota/Makefile \
e6441865
TT
11417 lib/ss/ss.pc lib/uuid/uuid.pc lib/et/com_err.pc \
11418 lib/e2p/e2p.pc lib/blkid/blkid.pc lib/ext2fs/ext2fs.pc \
921f4ad5 11419 misc/Makefile ext2ed/Makefile e2fsck/Makefile \
94ba8c75 11420 debugfs/Makefile tests/Makefile tests/progs/Makefile \
98a5ad61
MA
11421 resize/Makefile doc/Makefile intl/Makefile \
11422 intl/libgnuintl.h po/Makefile.in ; do
94ba8c75
TT
11423 if test -d `dirname ${srcdir}/$i` ; then
11424 outlist="$outlist $i"
11425 fi
11426done
e1052144
TT
11427ac_config_files="$ac_config_files $outlist"
11428
b0cacab0 11429cat >confcache <<\_ACEOF
50e1e10f
TT
11430# This file is a shell script that caches the results of configure
11431# tests run on this system so they can be shared between configure
b0cacab0
TT
11432# scripts and configure runs, see configure's option --config-cache.
11433# It is not useful on other systems. If it contains results you don't
11434# want to keep, you may remove or edit it.
50e1e10f 11435#
b0cacab0
TT
11436# config.status only pays attention to the cache file if you give it
11437# the --recheck option to rerun configure.
50e1e10f 11438#
b0cacab0
TT
11439# `ac_cv_env_foo' variables (set or unset) will be overridden when
11440# loading this file, other *unset* `ac_cv_foo' will be assigned the
11441# following values.
11442
11443_ACEOF
11444
21c84b71
TT
11445# The following way of writing the cache mishandles newlines in values,
11446# but we know of no workaround that is simple, portable, and efficient.
e1052144 11447# So, we kill variables containing newlines.
50e1e10f
TT
11448# Ultrix sh set writes to stderr and can't be redirected directly,
11449# and sets the high bit in the cache file unless we assign to the vars.
e1052144
TT
11450(
11451 for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
11452 eval ac_val=\$$ac_var
11453 case $ac_val in #(
11454 *${as_nl}*)
11455 case $ac_var in #(
57aa50d4 11456 *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
39fd3d4f 11457$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
e1052144
TT
11458 esac
11459 case $ac_var in #(
11460 _ | IFS | as_nl) ;; #(
39fd3d4f 11461 BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
57aa50d4 11462 *) { eval $ac_var=; unset $ac_var;} ;;
e1052144
TT
11463 esac ;;
11464 esac
11465 done
11466
b0cacab0 11467 (set) 2>&1 |
e1052144
TT
11468 case $as_nl`(ac_space=' '; set) 2>&1` in #(
11469 *${as_nl}ac_space=\ *)
57aa50d4
TT
11470 # `set' does not quote correctly, so add quotes: double-quote
11471 # substitution turns \\\\ into \\, and sed turns \\ into \.
b0cacab0
TT
11472 sed -n \
11473 "s/'/'\\\\''/g;
11474 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
e1052144 11475 ;; #(
b0cacab0
TT
11476 *)
11477 # `set' quotes correctly as required by POSIX, so do not add quotes.
e1052144 11478 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
b0cacab0 11479 ;;
e1052144
TT
11480 esac |
11481 sort
11482) |
b0cacab0 11483 sed '
e1052144 11484 /^ac_cv_env_/b end
b0cacab0 11485 t clear
e1052144 11486 :clear
b0cacab0
TT
11487 s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
11488 t end
e1052144
TT
11489 s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
11490 :end' >>confcache
11491if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
11492 if test -w "$cache_file"; then
91d11da1 11493 if test "x$cache_file" != "x/dev/null"; then
57aa50d4 11494 { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
39fd3d4f 11495$as_echo "$as_me: updating cache $cache_file" >&6;}
91d11da1
TT
11496 if test ! -f "$cache_file" || test -h "$cache_file"; then
11497 cat confcache >"$cache_file"
11498 else
11499 case $cache_file in #(
11500 */* | ?:*)
11501 mv -f confcache "$cache_file"$$ &&
11502 mv -f "$cache_file"$$ "$cache_file" ;; #(
11503 *)
11504 mv -f confcache "$cache_file" ;;
11505 esac
11506 fi
11507 fi
50e1e10f 11508 else
57aa50d4 11509 { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
39fd3d4f 11510$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
50e1e10f
TT
11511 fi
11512fi
11513rm -f confcache
11514
50e1e10f
TT
11515test "x$prefix" = xNONE && prefix=$ac_default_prefix
11516# Let make expand exec_prefix.
11517test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
11518
d1154eb4 11519DEFS=-DHAVE_CONFIG_H
b0cacab0
TT
11520
11521ac_libobjs=
11522ac_ltlibobjs=
91d11da1 11523U=
b0cacab0
TT
11524for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
11525 # 1. Remove the extension, and $U if already installed.
e1052144 11526 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
39fd3d4f 11527 ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
e1052144
TT
11528 # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR
11529 # will be set to the directory where LIBOBJS objects are built.
57aa50d4
TT
11530 as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
11531 as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
b0cacab0
TT
11532done
11533LIBOBJS=$ac_libobjs
50e1e10f 11534
b0cacab0
TT
11535LTLIBOBJS=$ac_ltlibobjs
11536
11537
11538
39fd3d4f 11539
91d11da1 11540: "${CONFIG_STATUS=./config.status}"
39fd3d4f 11541ac_write_fail=0
b0cacab0
TT
11542ac_clean_files_save=$ac_clean_files
11543ac_clean_files="$ac_clean_files $CONFIG_STATUS"
57aa50d4 11544{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
39fd3d4f 11545$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
57aa50d4
TT
11546as_write_fail=0
11547cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
b0cacab0
TT
11548#! $SHELL
11549# Generated by $as_me.
93636bde 11550# Run this file to recreate the current configuration.
93636bde 11551# Compiler output produced by configure, useful for debugging
b0cacab0 11552# configure, is in config.log if it exists.
07a0db15 11553
b0cacab0
TT
11554debug=false
11555ac_cs_recheck=false
11556ac_cs_silent=false
b0cacab0 11557
57aa50d4
TT
11558SHELL=\${CONFIG_SHELL-$SHELL}
11559export SHELL
11560_ASEOF
11561cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
11562## -------------------- ##
11563## M4sh Initialization. ##
11564## -------------------- ##
b0cacab0 11565
29a5deed
TT
11566# Be more Bourne compatible
11567DUALCASE=1; export DUALCASE # for MKS sh
57aa50d4 11568if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
b0cacab0
TT
11569 emulate sh
11570 NULLCMD=:
39fd3d4f 11571 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
b0cacab0
TT
11572 # is contrary to our usage. Disable this feature.
11573 alias -g '${1+"$@"}'='"$@"'
e1052144
TT
11574 setopt NO_GLOB_SUBST
11575else
57aa50d4
TT
11576 case `(set -o) 2>/dev/null` in #(
11577 *posix*) :
11578 set -o posix ;; #(
11579 *) :
11580 ;;
29a5deed 11581esac
b0cacab0 11582fi
29a5deed
TT
11583
11584
39fd3d4f
SJR
11585as_nl='
11586'
11587export as_nl
11588# Printing a long string crashes Solaris 7 /usr/bin/printf.
11589as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
11590as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
11591as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
57aa50d4
TT
11592# Prefer a ksh shell builtin over an external printf program on Solaris,
11593# but without wasting forks for bash or zsh.
11594if test -z "$BASH_VERSION$ZSH_VERSION" \
11595 && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
11596 as_echo='print -r --'
11597 as_echo_n='print -rn --'
11598elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
39fd3d4f
SJR
11599 as_echo='printf %s\n'
11600 as_echo_n='printf %s'
11601else
11602 if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
11603 as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
11604 as_echo_n='/usr/ucb/echo -n'
e1052144 11605 else
39fd3d4f
SJR
11606 as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
11607 as_echo_n_body='eval
11608 arg=$1;
57aa50d4 11609 case $arg in #(
39fd3d4f
SJR
11610 *"$as_nl"*)
11611 expr "X$arg" : "X\\(.*\\)$as_nl";
11612 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
11613 esac;
11614 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
11615 '
11616 export as_echo_n_body
11617 as_echo_n='sh -c $as_echo_n_body as_echo'
e1052144 11618 fi
39fd3d4f
SJR
11619 export as_echo_body
11620 as_echo='sh -c $as_echo_body as_echo'
11621fi
11622
11623# The user is always right.
11624if test "${PATH_SEPARATOR+set}" != set; then
11625 PATH_SEPARATOR=:
11626 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
11627 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
11628 PATH_SEPARATOR=';'
11629 }
e1052144
TT
11630fi
11631
b0cacab0 11632
e1052144
TT
11633# IFS
11634# We need space, tab and new line, in precisely that order. Quoting is
11635# there to prevent editors from complaining about space-tab.
11636# (If _AS_PATH_WALK were called with IFS unset, it would disable word
11637# splitting by setting IFS to empty value.)
e1052144
TT
11638IFS=" "" $as_nl"
11639
11640# Find who we are. Look in the path if we contain no directory separator.
91d11da1 11641as_myself=
57aa50d4 11642case $0 in #((
e1052144
TT
11643 *[\\/]* ) as_myself=$0 ;;
11644 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
11645for as_dir in $PATH
11646do
11647 IFS=$as_save_IFS
11648 test -z "$as_dir" && as_dir=.
57aa50d4
TT
11649 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
11650 done
e1052144
TT
11651IFS=$as_save_IFS
11652
11653 ;;
11654esac
11655# We did not find ourselves, most probably we were run as `sh COMMAND'
11656# in which case we are not to be found in the path.
11657if test "x$as_myself" = x; then
11658 as_myself=$0
11659fi
11660if test ! -f "$as_myself"; then
39fd3d4f 11661 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
57aa50d4 11662 exit 1
e1052144
TT
11663fi
11664
57aa50d4
TT
11665# Unset variables that we do not need and which cause bugs (e.g. in
11666# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
11667# suppresses any "Segmentation fault" message there. '((' could
11668# trigger a bug in pdksh 5.2.14.
11669for as_var in BASH_ENV ENV MAIL MAILPATH
11670do eval test x\${$as_var+set} = xset \
11671 && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
e1052144 11672done
b0cacab0
TT
11673PS1='$ '
11674PS2='> '
11675PS4='+ '
11676
11677# NLS nuisances.
39fd3d4f
SJR
11678LC_ALL=C
11679export LC_ALL
11680LANGUAGE=C
11681export LANGUAGE
b0cacab0 11682
57aa50d4
TT
11683# CDPATH.
11684(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
11685
11686
91d11da1
TT
11687# as_fn_error STATUS ERROR [LINENO LOG_FD]
11688# ----------------------------------------
57aa50d4
TT
11689# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
11690# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
91d11da1 11691# script with STATUS, using 1 if that was 0.
57aa50d4
TT
11692as_fn_error ()
11693{
91d11da1
TT
11694 as_status=$1; test $as_status -eq 0 && as_status=1
11695 if test "$4"; then
11696 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
11697 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
57aa50d4 11698 fi
91d11da1 11699 $as_echo "$as_me: error: $2" >&2
57aa50d4
TT
11700 as_fn_exit $as_status
11701} # as_fn_error
11702
11703
11704# as_fn_set_status STATUS
11705# -----------------------
11706# Set $? to STATUS, without forking.
11707as_fn_set_status ()
11708{
11709 return $1
11710} # as_fn_set_status
11711
11712# as_fn_exit STATUS
11713# -----------------
11714# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
11715as_fn_exit ()
11716{
11717 set +e
11718 as_fn_set_status $1
11719 exit $1
11720} # as_fn_exit
11721
11722# as_fn_unset VAR
11723# ---------------
11724# Portably unset VAR.
11725as_fn_unset ()
11726{
11727 { eval $1=; unset $1;}
11728}
11729as_unset=as_fn_unset
11730# as_fn_append VAR VALUE
11731# ----------------------
11732# Append the text in VALUE to the end of the definition contained in VAR. Take
11733# advantage of any shell optimizations that allow amortized linear growth over
11734# repeated appends, instead of the typical quadratic growth present in naive
11735# implementations.
11736if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
11737 eval 'as_fn_append ()
11738 {
11739 eval $1+=\$2
11740 }'
11741else
11742 as_fn_append ()
11743 {
11744 eval $1=\$$1\$2
11745 }
11746fi # as_fn_append
11747
11748# as_fn_arith ARG...
11749# ------------------
11750# Perform arithmetic evaluation on the ARGs, and store the result in the
11751# global $as_val. Take advantage of shells that can avoid forks. The arguments
11752# must be portable across $(()) and expr.
11753if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
11754 eval 'as_fn_arith ()
11755 {
11756 as_val=$(( $* ))
11757 }'
11758else
11759 as_fn_arith ()
11760 {
11761 as_val=`expr "$@" || test $? -eq 1`
11762 }
11763fi # as_fn_arith
11764
11765
e1052144
TT
11766if expr a : '\(a\)' >/dev/null 2>&1 &&
11767 test "X`expr 00001 : '.*\(...\)'`" = X001; then
b0cacab0
TT
11768 as_expr=expr
11769else
11770 as_expr=false
11771fi
11772
e1052144 11773if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
b0cacab0
TT
11774 as_basename=basename
11775else
11776 as_basename=false
11777fi
11778
57aa50d4
TT
11779if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
11780 as_dirname=dirname
11781else
11782 as_dirname=false
11783fi
b0cacab0 11784
e1052144 11785as_me=`$as_basename -- "$0" ||
b0cacab0
TT
11786$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
11787 X"$0" : 'X\(//\)$' \| \
e1052144 11788 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
39fd3d4f 11789$as_echo X/"$0" |
e1052144
TT
11790 sed '/^.*\/\([^/][^/]*\)\/*$/{
11791 s//\1/
11792 q
11793 }
11794 /^X\/\(\/\/\)$/{
11795 s//\1/
11796 q
11797 }
11798 /^X\/\(\/\).*/{
11799 s//\1/
11800 q
11801 }
11802 s/.*/./; q'`
b0cacab0 11803
57aa50d4
TT
11804# Avoid depending upon Character Ranges.
11805as_cr_letters='abcdefghijklmnopqrstuvwxyz'
11806as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
11807as_cr_Letters=$as_cr_letters$as_cr_LETTERS
11808as_cr_digits='0123456789'
11809as_cr_alnum=$as_cr_Letters$as_cr_digits
e1052144
TT
11810
11811ECHO_C= ECHO_N= ECHO_T=
57aa50d4 11812case `echo -n x` in #(((((
e1052144 11813-n*)
57aa50d4 11814 case `echo 'xy\c'` in
e1052144 11815 *c*) ECHO_T=' ';; # ECHO_T is single tab character.
57aa50d4
TT
11816 xy) ECHO_C='\c';;
11817 *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
11818 ECHO_T=' ';;
e1052144
TT
11819 esac;;
11820*)
11821 ECHO_N='-n';;
b0cacab0 11822esac
b0cacab0
TT
11823
11824rm -f conf$$ conf$$.exe conf$$.file
e1052144
TT
11825if test -d conf$$.dir; then
11826 rm -f conf$$.dir/conf$$.file
11827else
11828 rm -f conf$$.dir
39fd3d4f
SJR
11829 mkdir conf$$.dir 2>/dev/null
11830fi
11831if (echo >conf$$.file) 2>/dev/null; then
11832 if ln -s conf$$.file conf$$ 2>/dev/null; then
11833 as_ln_s='ln -s'
11834 # ... but there are two gotchas:
11835 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
11836 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
91d11da1 11837 # In both cases, we have to default to `cp -pR'.
39fd3d4f 11838 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
91d11da1 11839 as_ln_s='cp -pR'
39fd3d4f
SJR
11840 elif ln conf$$.file conf$$ 2>/dev/null; then
11841 as_ln_s=ln
11842 else
91d11da1 11843 as_ln_s='cp -pR'
39fd3d4f 11844 fi
b0cacab0 11845else
91d11da1 11846 as_ln_s='cp -pR'
b0cacab0 11847fi
e1052144
TT
11848rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
11849rmdir conf$$.dir 2>/dev/null
b0cacab0 11850
57aa50d4
TT
11851
11852# as_fn_mkdir_p
11853# -------------
11854# Create "$as_dir" as a directory, including parents if necessary.
11855as_fn_mkdir_p ()
11856{
11857
11858 case $as_dir in #(
11859 -*) as_dir=./$as_dir;;
11860 esac
11861 test -d "$as_dir" || eval $as_mkdir_p || {
11862 as_dirs=
11863 while :; do
11864 case $as_dir in #(
11865 *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
11866 *) as_qdir=$as_dir;;
11867 esac
11868 as_dirs="'$as_qdir' $as_dirs"
11869 as_dir=`$as_dirname -- "$as_dir" ||
11870$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
11871 X"$as_dir" : 'X\(//\)[^/]' \| \
11872 X"$as_dir" : 'X\(//\)$' \| \
11873 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
11874$as_echo X"$as_dir" |
11875 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
11876 s//\1/
11877 q
11878 }
11879 /^X\(\/\/\)[^/].*/{
11880 s//\1/
11881 q
11882 }
11883 /^X\(\/\/\)$/{
11884 s//\1/
11885 q
11886 }
11887 /^X\(\/\).*/{
11888 s//\1/
11889 q
11890 }
11891 s/.*/./; q'`
11892 test -d "$as_dir" && break
11893 done
11894 test -z "$as_dirs" || eval "mkdir $as_dirs"
91d11da1 11895 } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
57aa50d4
TT
11896
11897
11898} # as_fn_mkdir_p
b0cacab0 11899if mkdir -p . 2>/dev/null; then
57aa50d4 11900 as_mkdir_p='mkdir -p "$as_dir"'
b0cacab0
TT
11901else
11902 test -d ./-p && rmdir ./-p
11903 as_mkdir_p=false
11904fi
11905
91d11da1
TT
11906
11907# as_fn_executable_p FILE
11908# -----------------------
11909# Test if FILE is an executable regular file.
11910as_fn_executable_p ()
11911{
11912 test -f "$1" && test -x "$1"
11913} # as_fn_executable_p
11914as_test_x='test -x'
11915as_executable_p=as_fn_executable_p
b0cacab0
TT
11916
11917# Sed expression to map a string onto a valid CPP name.
11918as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
11919
11920# Sed expression to map a string onto a valid variable name.
11921as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
11922
11923
b0cacab0 11924exec 6>&1
57aa50d4
TT
11925## ----------------------------------- ##
11926## Main body of $CONFIG_STATUS script. ##
11927## ----------------------------------- ##
11928_ASEOF
11929test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
b0cacab0 11930
57aa50d4
TT
11931cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
11932# Save the log message, to keep $0 and so on meaningful, and to
b0cacab0 11933# report actual input values of CONFIG_FILES etc. instead of their
e1052144
TT
11934# values after options handling.
11935ac_log="
b0cacab0 11936This file was extended by $as_me, which was
91d11da1 11937generated by GNU Autoconf 2.69. Invocation command line was
b0cacab0
TT
11938
11939 CONFIG_FILES = $CONFIG_FILES
11940 CONFIG_HEADERS = $CONFIG_HEADERS
11941 CONFIG_LINKS = $CONFIG_LINKS
11942 CONFIG_COMMANDS = $CONFIG_COMMANDS
11943 $ $0 $@
11944
e1052144
TT
11945on `(hostname || uname -n) 2>/dev/null | sed 1q`
11946"
11947
b0cacab0
TT
11948_ACEOF
11949
39fd3d4f
SJR
11950case $ac_config_files in *"
11951"*) set x $ac_config_files; shift; ac_config_files=$*;;
11952esac
11953
d1154eb4
TT
11954case $ac_config_headers in *"
11955"*) set x $ac_config_headers; shift; ac_config_headers=$*;;
11956esac
39fd3d4f
SJR
11957
11958
11959cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
b0cacab0 11960# Files that config.status was made for.
e1052144 11961config_files="$ac_config_files"
d1154eb4 11962config_headers="$ac_config_headers"
e1052144 11963config_commands="$ac_config_commands"
b0cacab0 11964
e1052144 11965_ACEOF
b0cacab0 11966
39fd3d4f 11967cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
b0cacab0 11968ac_cs_usage="\
57aa50d4
TT
11969\`$as_me' instantiates files and other configuration actions
11970from templates according to the current configuration. Unless the files
11971and actions are specified as TAGs, all are instantiated by default.
b0cacab0 11972
57aa50d4 11973Usage: $0 [OPTION]... [TAG]...
b0cacab0
TT
11974
11975 -h, --help print this help, then exit
29a5deed 11976 -V, --version print version number and configuration settings, then exit
61ef2474 11977 --config print configuration, then exit
39fd3d4f
SJR
11978 -q, --quiet, --silent
11979 do not print progress messages
b0cacab0
TT
11980 -d, --debug don't remove temporary files
11981 --recheck update $as_me by reconfiguring in the same conditions
39fd3d4f
SJR
11982 --file=FILE[:TEMPLATE]
11983 instantiate the configuration file FILE
d1154eb4
TT
11984 --header=FILE[:TEMPLATE]
11985 instantiate the configuration header FILE
b0cacab0
TT
11986
11987Configuration files:
11988$config_files
11989
d1154eb4
TT
11990Configuration headers:
11991$config_headers
11992
b0cacab0
TT
11993Configuration commands:
11994$config_commands
11995
57aa50d4 11996Report bugs to the package provider."
b0cacab0 11997
e1052144 11998_ACEOF
39fd3d4f 11999cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
61ef2474 12000ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
b0cacab0
TT
12001ac_cs_version="\\
12002config.status
91d11da1 12003configured by $0, generated by GNU Autoconf 2.69,
61ef2474 12004 with options \\"\$ac_cs_config\\"
b0cacab0 12005
91d11da1 12006Copyright (C) 2012 Free Software Foundation, Inc.
b0cacab0
TT
12007This config.status script is free software; the Free Software Foundation
12008gives unlimited permission to copy, distribute and modify it."
e1052144
TT
12009
12010ac_pwd='$ac_pwd'
12011srcdir='$srcdir'
12012INSTALL='$INSTALL'
39fd3d4f
SJR
12013AWK='$AWK'
12014test -n "\$AWK" || AWK=awk
b0cacab0
TT
12015_ACEOF
12016
39fd3d4f
SJR
12017cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
12018# The default lists apply if the user does not specify any file.
b0cacab0
TT
12019ac_need_defaults=:
12020while test $# != 0
07a0db15 12021do
b0cacab0 12022 case $1 in
91d11da1 12023 --*=?*)
e1052144
TT
12024 ac_option=`expr "X$1" : 'X\([^=]*\)='`
12025 ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
b0cacab0
TT
12026 ac_shift=:
12027 ;;
91d11da1
TT
12028 --*=)
12029 ac_option=`expr "X$1" : 'X\([^=]*\)='`
12030 ac_optarg=
12031 ac_shift=:
12032 ;;
e1052144 12033 *)
b0cacab0
TT
12034 ac_option=$1
12035 ac_optarg=$2
12036 ac_shift=shift
12037 ;;
b0cacab0
TT
12038 esac
12039
12040 case $ac_option in
12041 # Handling of the options.
93636bde 12042 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
b0cacab0 12043 ac_cs_recheck=: ;;
e1052144 12044 --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
39fd3d4f 12045 $as_echo "$ac_cs_version"; exit ;;
61ef2474
TT
12046 --config | --confi | --conf | --con | --co | --c )
12047 $as_echo "$ac_cs_config"; exit ;;
e1052144 12048 --debug | --debu | --deb | --de | --d | -d )
b0cacab0
TT
12049 debug=: ;;
12050 --file | --fil | --fi | --f )
12051 $ac_shift
39fd3d4f
SJR
12052 case $ac_optarg in
12053 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
91d11da1 12054 '') as_fn_error $? "missing file argument" ;;
39fd3d4f 12055 esac
57aa50d4 12056 as_fn_append CONFIG_FILES " '$ac_optarg'"
b0cacab0 12057 ac_need_defaults=false;;
d1154eb4
TT
12058 --header | --heade | --head | --hea )
12059 $ac_shift
12060 case $ac_optarg in
12061 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
12062 esac
12063 as_fn_append CONFIG_HEADERS " '$ac_optarg'"
12064 ac_need_defaults=false;;
12065 --he | --h)
12066 # Conflict between --help and --header
91d11da1 12067 as_fn_error $? "ambiguous option: \`$1'
d1154eb4
TT
12068Try \`$0 --help' for more information.";;
12069 --help | --hel | -h )
39fd3d4f 12070 $as_echo "$ac_cs_usage"; exit ;;
b0cacab0
TT
12071 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
12072 | -silent | --silent | --silen | --sile | --sil | --si | --s)
12073 ac_cs_silent=: ;;
12074
12075 # This is an error.
91d11da1 12076 -*) as_fn_error $? "unrecognized option: \`$1'
57aa50d4 12077Try \`$0 --help' for more information." ;;
b0cacab0 12078
57aa50d4 12079 *) as_fn_append ac_config_targets " $1"
e1052144 12080 ac_need_defaults=false ;;
b0cacab0 12081
07a0db15 12082 esac
b0cacab0 12083 shift
07a0db15
TT
12084done
12085
b0cacab0
TT
12086ac_configure_extra_args=
12087
12088if $ac_cs_silent; then
12089 exec 6>/dev/null
12090 ac_configure_extra_args="$ac_configure_extra_args --silent"
12091fi
12092
12093_ACEOF
39fd3d4f 12094cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
b0cacab0 12095if \$ac_cs_recheck; then
91d11da1 12096 set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
39fd3d4f
SJR
12097 shift
12098 \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
12099 CONFIG_SHELL='$SHELL'
e1052144 12100 export CONFIG_SHELL
39fd3d4f 12101 exec "\$@"
b0cacab0 12102fi
07a0db15 12103
b0cacab0 12104_ACEOF
39fd3d4f 12105cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
e1052144
TT
12106exec 5>>config.log
12107{
12108 echo
12109 sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
12110## Running $as_me. ##
12111_ASBOX
39fd3d4f 12112 $as_echo "$ac_log"
e1052144 12113} >&5
07a0db15 12114
e1052144 12115_ACEOF
39fd3d4f 12116cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
b0cacab0 12117#
e1052144 12118# INIT-COMMANDS
b0cacab0 12119#
b0cacab0
TT
12120# Capture the value of obsolete ALL_LINGUAS because we need it to compute
12121 # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it
12122 # from automake.
12123 eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"'
12124 # Capture the value of LINGUAS because we need it to compute CATALOGS.
12125 LINGUAS="${LINGUAS-%UNSET%}"
12126
12127
12128_ACEOF
12129
39fd3d4f 12130cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
e1052144
TT
12131
12132# Handling of arguments.
b0cacab0
TT
12133for ac_config_target in $ac_config_targets
12134do
e1052144 12135 case $ac_config_target in
d1154eb4 12136 "lib/config.h") CONFIG_HEADERS="$CONFIG_HEADERS lib/config.h" ;;
e1052144
TT
12137 "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
12138 "$outlist") CONFIG_FILES="$CONFIG_FILES $outlist" ;;
12139
91d11da1 12140 *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
b0cacab0
TT
12141 esac
12142done
12143
e1052144 12144
b0cacab0
TT
12145# If the user did not use the arguments to specify the items to instantiate,
12146# then the envvar interface is used. Set only those that are not.
12147# We use the long form for the default assignment because of an extremely
12148# bizarre bug on SunOS 4.1.3.
12149if $ac_need_defaults; then
12150 test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
d1154eb4 12151 test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
b0cacab0
TT
12152 test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
12153fi
12154
12155# Have a temporary directory for convenience. Make it in the build tree
e1052144 12156# simply because there is no reason against having it here, and in addition,
b0cacab0 12157# creating and moving files from /tmp can sometimes cause problems.
e1052144
TT
12158# Hook for its removal unless debugging.
12159# Note that there is a small window in which the directory will not be cleaned:
12160# after its creation but before its name has been assigned to `$tmp'.
b0cacab0
TT
12161$debug ||
12162{
91d11da1 12163 tmp= ac_tmp=
e1052144 12164 trap 'exit_status=$?
91d11da1
TT
12165 : "${ac_tmp:=$tmp}"
12166 { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
e1052144 12167' 0
57aa50d4 12168 trap 'as_fn_exit 1' 1 2 13 15
b0cacab0 12169}
b0cacab0
TT
12170# Create a (secure) tmp directory for tmp files.
12171
12172{
e1052144 12173 tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
91d11da1 12174 test -d "$tmp"
b0cacab0
TT
12175} ||
12176{
e1052144
TT
12177 tmp=./conf$$-$RANDOM
12178 (umask 077 && mkdir "$tmp")
91d11da1
TT
12179} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
12180ac_tmp=$tmp
b0cacab0 12181
39fd3d4f
SJR
12182# Set up the scripts for CONFIG_FILES section.
12183# No need to generate them if there are no CONFIG_FILES.
12184# This happens for instance with `./config.status config.h'.
e1052144
TT
12185if test -n "$CONFIG_FILES"; then
12186
39fd3d4f
SJR
12187if $AWK 'BEGIN { getline <"/dev/null" }' </dev/null 2>/dev/null; then
12188 ac_cs_awk_getline=:
12189 ac_cs_awk_pipe_init=
12190 ac_cs_awk_read_file='
12191 while ((getline aline < (F[key])) > 0)
12192 print(aline)
12193 close(F[key])'
12194 ac_cs_awk_pipe_fini=
12195else
12196 ac_cs_awk_getline=false
12197 ac_cs_awk_pipe_init="print \"cat <<'|#_!!_#|' &&\""
12198 ac_cs_awk_read_file='
12199 print "|#_!!_#|"
12200 print "cat " F[key] " &&"
12201 '$ac_cs_awk_pipe_init
12202 # The final `:' finishes the AND list.
12203 ac_cs_awk_pipe_fini='END { print "|#_!!_#|"; print ":" }'
12204fi
57aa50d4
TT
12205ac_cr=`echo X | tr X '\015'`
12206# On cygwin, bash can eat \r inside `` if the user requested igncr.
12207# But we know of no other shell where ac_cr would be empty at this
12208# point, so we can use a bashism as a fallback.
12209if test "x$ac_cr" = x; then
12210 eval ac_cr=\$\'\\r\'
12211fi
39fd3d4f
SJR
12212ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
12213if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
91d11da1 12214 ac_cs_awk_cr='\\r'
39fd3d4f
SJR
12215else
12216 ac_cs_awk_cr=$ac_cr
12217fi
e1052144 12218
91d11da1 12219echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
39fd3d4f 12220_ACEOF
e1052144 12221
39fd3d4f
SJR
12222# Create commands to substitute file output variables.
12223{
12224 echo "cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1" &&
91d11da1 12225 echo 'cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&' &&
39fd3d4f
SJR
12226 echo "$ac_subst_files" | sed 's/.*/F["&"]="$&"/' &&
12227 echo "_ACAWK" &&
12228 echo "_ACEOF"
12229} >conf$$files.sh &&
12230. ./conf$$files.sh ||
91d11da1 12231 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
39fd3d4f 12232rm -f conf$$files.sh
e1052144 12233
39fd3d4f
SJR
12234{
12235 echo "cat >conf$$subs.awk <<_ACEOF" &&
12236 echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
12237 echo "_ACEOF"
12238} >conf$$subs.sh ||
91d11da1
TT
12239 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
12240ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
e1052144
TT
12241ac_delim='%!_!# '
12242for ac_last_try in false false false false false :; do
39fd3d4f 12243 . ./conf$$subs.sh ||
91d11da1 12244 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
39fd3d4f
SJR
12245
12246 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
12247 if test $ac_delim_n = $ac_delim_num; then
e1052144
TT
12248 break
12249 elif $ac_last_try; then
91d11da1 12250 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
e1052144
TT
12251 else
12252 ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
21c84b71 12253 fi
e1052144 12254done
39fd3d4f
SJR
12255rm -f conf$$subs.sh
12256
12257cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
91d11da1 12258cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
39fd3d4f
SJR
12259_ACEOF
12260sed -n '
12261h
12262s/^/S["/; s/!.*/"]=/
12263p
12264g
12265s/^[^!]*!//
12266:repl
12267t repl
12268s/'"$ac_delim"'$//
12269t delim
12270:nl
12271h
61ef2474 12272s/\(.\{148\}\)..*/\1/
39fd3d4f
SJR
12273t more1
12274s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
12275p
12276n
12277b repl
12278:more1
12279s/["\\]/\\&/g; s/^/"/; s/$/"\\/
12280p
12281g
12282s/.\{148\}//
12283t nl
12284:delim
12285h
61ef2474 12286s/\(.\{148\}\)..*/\1/
39fd3d4f
SJR
12287t more2
12288s/["\\]/\\&/g; s/^/"/; s/$/"/
12289p
12290b
12291:more2
12292s/["\\]/\\&/g; s/^/"/; s/$/"\\/
12293p
12294g
12295s/.\{148\}//
12296t delim
12297' <conf$$subs.awk | sed '
12298/^[^""]/{
12299 N
12300 s/\n//
e1052144 12301}
39fd3d4f
SJR
12302' >>$CONFIG_STATUS || ac_write_fail=1
12303rm -f conf$$subs.awk
12304cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
12305_ACAWK
91d11da1 12306cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
39fd3d4f
SJR
12307 for (key in S) S_is_set[key] = 1
12308 FS = "\a"
12309 \$ac_cs_awk_pipe_init
e1052144 12310}
39fd3d4f
SJR
12311{
12312 line = $ 0
12313 nfields = split(line, field, "@")
12314 substed = 0
12315 len = length(field[1])
12316 for (i = 2; i < nfields; i++) {
12317 key = field[i]
12318 keylen = length(key)
12319 if (S_is_set[key]) {
12320 value = S[key]
12321 line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
12322 len += length(value) + length(field[++i])
12323 substed = 1
12324 } else
12325 len += 1 + keylen
12326 }
12327 if (nfields == 3 && !substed) {
12328 key = field[2]
12329 if (F[key] != "" && line ~ /^[ ]*@.*@[ ]*$/) {
12330 \$ac_cs_awk_read_file
12331 next
12332 }
12333 }
12334 print line
488c75a6 12335}
39fd3d4f
SJR
12336\$ac_cs_awk_pipe_fini
12337_ACAWK
e1052144 12338_ACEOF
39fd3d4f
SJR
12339cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
12340if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
12341 sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
12342else
12343 cat
91d11da1
TT
12344fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
12345 || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
b0cacab0 12346_ACEOF
e1052144 12347
91d11da1
TT
12348# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
12349# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
e1052144
TT
12350# trailing colons and then remove the whole line if VPATH becomes empty
12351# (actually we leave an empty line to preserve line numbers).
12352if test "x$srcdir" = x.; then
91d11da1
TT
12353 ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{
12354h
12355s///
12356s/^/:/
12357s/[ ]*$/:/
12358s/:\$(srcdir):/:/g
12359s/:\${srcdir}:/:/g
12360s/:@srcdir@:/:/g
12361s/^:*//
e1052144 12362s/:*$//
91d11da1
TT
12363x
12364s/\(=[ ]*\).*/\1/
12365G
12366s/\n//
e1052144
TT
12367s/^[^=]*=[ ]*$//
12368}'
12369fi
12370
39fd3d4f 12371cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
e1052144
TT
12372fi # test -n "$CONFIG_FILES"
12373
d1154eb4
TT
12374# Set up the scripts for CONFIG_HEADERS section.
12375# No need to generate them if there are no CONFIG_HEADERS.
12376# This happens for instance with `./config.status Makefile'.
12377if test -n "$CONFIG_HEADERS"; then
91d11da1 12378cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
d1154eb4
TT
12379BEGIN {
12380_ACEOF
12381
12382# Transform confdefs.h into an awk script `defines.awk', embedded as
12383# here-document in config.status, that substitutes the proper values into
12384# config.h.in to produce config.h.
12385
12386# Create a delimiter string that does not exist in confdefs.h, to ease
12387# handling of long lines.
12388ac_delim='%!_!# '
12389for ac_last_try in false false :; do
91d11da1
TT
12390 ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
12391 if test -z "$ac_tt"; then
d1154eb4
TT
12392 break
12393 elif $ac_last_try; then
91d11da1 12394 as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5
d1154eb4
TT
12395 else
12396 ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
12397 fi
12398done
12399
12400# For the awk script, D is an array of macro values keyed by name,
12401# likewise P contains macro parameters if any. Preserve backslash
12402# newline sequences.
12403
12404ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
12405sed -n '
12406s/.\{148\}/&'"$ac_delim"'/g
12407t rset
12408:rset
12409s/^[ ]*#[ ]*define[ ][ ]*/ /
12410t def
12411d
12412:def
12413s/\\$//
12414t bsnl
12415s/["\\]/\\&/g
12416s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\
12417D["\1"]=" \3"/p
12418s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p
12419d
12420:bsnl
12421s/["\\]/\\&/g
12422s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\
12423D["\1"]=" \3\\\\\\n"\\/p
12424t cont
12425s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p
12426t cont
12427d
12428:cont
12429n
12430s/.\{148\}/&'"$ac_delim"'/g
12431t clear
12432:clear
12433s/\\$//
12434t bsnlc
12435s/["\\]/\\&/g; s/^/"/; s/$/"/p
12436d
12437:bsnlc
12438s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p
12439b cont
12440' <confdefs.h | sed '
12441s/'"$ac_delim"'/"\\\
12442"/g' >>$CONFIG_STATUS || ac_write_fail=1
12443
12444cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
12445 for (key in D) D_is_set[key] = 1
12446 FS = "\a"
12447}
12448/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ {
12449 line = \$ 0
12450 split(line, arg, " ")
12451 if (arg[1] == "#") {
12452 defundef = arg[2]
12453 mac1 = arg[3]
12454 } else {
12455 defundef = substr(arg[1], 2)
12456 mac1 = arg[2]
12457 }
12458 split(mac1, mac2, "(") #)
12459 macro = mac2[1]
12460 prefix = substr(line, 1, index(line, defundef) - 1)
12461 if (D_is_set[macro]) {
12462 # Preserve the white space surrounding the "#".
12463 print prefix "define", macro P[macro] D[macro]
12464 next
12465 } else {
12466 # Replace #undef with comments. This is necessary, for example,
12467 # in the case of _POSIX_SOURCE, which is predefined and required
12468 # on some systems where configure will not decide to define it.
12469 if (defundef == "undef") {
12470 print "/*", prefix defundef, macro, "*/"
12471 next
12472 }
12473 }
12474}
12475{ print }
12476_ACAWK
12477_ACEOF
12478cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
91d11da1 12479 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
d1154eb4
TT
12480fi # test -n "$CONFIG_HEADERS"
12481
e1052144 12482
d1154eb4 12483eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS"
39fd3d4f
SJR
12484shift
12485for ac_tag
e1052144
TT
12486do
12487 case $ac_tag in
12488 :[FHLC]) ac_mode=$ac_tag; continue;;
12489 esac
12490 case $ac_mode$ac_tag in
12491 :[FHL]*:*);;
91d11da1 12492 :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
e1052144
TT
12493 :[FH]-) ac_tag=-:-;;
12494 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
12495 esac
12496 ac_save_IFS=$IFS
12497 IFS=:
12498 set x $ac_tag
12499 IFS=$ac_save_IFS
12500 shift
12501 ac_file=$1
12502 shift
12503
12504 case $ac_mode in
12505 :L) ac_source=$1;;
12506 :[FH])
12507 ac_file_inputs=
12508 for ac_f
12509 do
12510 case $ac_f in
91d11da1 12511 -) ac_f="$ac_tmp/stdin";;
e1052144
TT
12512 *) # Look for the file first in the build tree, then in the source tree
12513 # (if the path is not absolute). The absolute path cannot be DOS-style,
12514 # because $ac_f cannot contain `:'.
12515 test -f "$ac_f" ||
12516 case $ac_f in
12517 [\\/$]*) false;;
12518 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
12519 esac ||
91d11da1 12520 as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
e1052144 12521 esac
39fd3d4f 12522 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
57aa50d4 12523 as_fn_append ac_file_inputs " '$ac_f'"
e1052144
TT
12524 done
12525
12526 # Let's still pretend it is `configure' which instantiates (i.e., don't
12527 # use $as_me), people would be surprised to read:
12528 # /* config.h. Generated by config.status. */
39fd3d4f
SJR
12529 configure_input='Generated from '`
12530 $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
12531 `' by configure.'
e1052144
TT
12532 if test x"$ac_file" != x-; then
12533 configure_input="$ac_file. $configure_input"
57aa50d4 12534 { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
39fd3d4f 12535$as_echo "$as_me: creating $ac_file" >&6;}
e1052144 12536 fi
39fd3d4f
SJR
12537 # Neutralize special characters interpreted by sed in replacement strings.
12538 case $configure_input in #(
12539 *\&* | *\|* | *\\* )
12540 ac_sed_conf_input=`$as_echo "$configure_input" |
12541 sed 's/[\\\\&|]/\\\\&/g'`;; #(
12542 *) ac_sed_conf_input=$configure_input;;
12543 esac
e1052144
TT
12544
12545 case $ac_tag in
91d11da1
TT
12546 *:-:* | *:-) cat >"$ac_tmp/stdin" \
12547 || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
e1052144
TT
12548 esac
12549 ;;
b0cacab0
TT
12550 esac
12551
e1052144 12552 ac_dir=`$as_dirname -- "$ac_file" ||
b0cacab0
TT
12553$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
12554 X"$ac_file" : 'X\(//\)[^/]' \| \
12555 X"$ac_file" : 'X\(//\)$' \| \
e1052144 12556 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
39fd3d4f 12557$as_echo X"$ac_file" |
e1052144
TT
12558 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
12559 s//\1/
12560 q
12561 }
12562 /^X\(\/\/\)[^/].*/{
12563 s//\1/
12564 q
12565 }
12566 /^X\(\/\/\)$/{
12567 s//\1/
12568 q
12569 }
12570 /^X\(\/\).*/{
12571 s//\1/
12572 q
12573 }
12574 s/.*/./; q'`
57aa50d4 12575 as_dir="$ac_dir"; as_fn_mkdir_p
b0cacab0
TT
12576 ac_builddir=.
12577
e1052144
TT
12578case "$ac_dir" in
12579.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
12580*)
39fd3d4f 12581 ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
e1052144 12582 # A ".." for each directory in $ac_dir_suffix.
39fd3d4f 12583 ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
e1052144
TT
12584 case $ac_top_builddir_sub in
12585 "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
12586 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
12587 esac ;;
12588esac
12589ac_abs_top_builddir=$ac_pwd
12590ac_abs_builddir=$ac_pwd$ac_dir_suffix
12591# for backward compatibility:
12592ac_top_builddir=$ac_top_build_prefix
93636bde 12593
b0cacab0 12594case $srcdir in
e1052144 12595 .) # We are building in place.
b0cacab0 12596 ac_srcdir=.
e1052144
TT
12597 ac_top_srcdir=$ac_top_builddir_sub
12598 ac_abs_top_srcdir=$ac_pwd ;;
12599 [\\/]* | ?:[\\/]* ) # Absolute name.
b0cacab0 12600 ac_srcdir=$srcdir$ac_dir_suffix;
e1052144
TT
12601 ac_top_srcdir=$srcdir
12602 ac_abs_top_srcdir=$srcdir ;;
12603 *) # Relative name.
12604 ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
12605 ac_top_srcdir=$ac_top_build_prefix$srcdir
12606 ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
b0cacab0 12607esac
e1052144 12608ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
b0cacab0 12609
b0cacab0 12610
e1052144
TT
12611 case $ac_mode in
12612 :F)
12613 #
12614 # CONFIG_FILE
12615 #
50e1e10f 12616
b0cacab0
TT
12617 case $INSTALL in
12618 [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
e1052144 12619 *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
50e1e10f 12620 esac
e1052144 12621_ACEOF
50e1e10f 12622
39fd3d4f 12623cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
e1052144
TT
12624# If the template does not know about datarootdir, expand it.
12625# FIXME: This hack should be removed a few years after 2.60.
12626ac_datarootdir_hack=; ac_datarootdir_seen=
39fd3d4f
SJR
12627ac_sed_dataroot='
12628/datarootdir/ {
e1052144
TT
12629 p
12630 q
12631}
12632/@datadir@/p
12633/@docdir@/p
12634/@infodir@/p
12635/@localedir@/p
57aa50d4 12636/@mandir@/p'
39fd3d4f 12637case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
e1052144
TT
12638*datarootdir*) ac_datarootdir_seen=yes;;
12639*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
57aa50d4 12640 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
39fd3d4f 12641$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
b0cacab0 12642_ACEOF
39fd3d4f 12643cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
e1052144
TT
12644 ac_datarootdir_hack='
12645 s&@datadir@&$datadir&g
12646 s&@docdir@&$docdir&g
12647 s&@infodir@&$infodir&g
12648 s&@localedir@&$localedir&g
12649 s&@mandir@&$mandir&g
57aa50d4 12650 s&\\\${datarootdir}&$datarootdir&g' ;;
e1052144
TT
12651esac
12652_ACEOF
12653
12654# Neutralize VPATH when `$srcdir' = `.'.
12655# Shell code in configure.ac might set extrasub.
12656# FIXME: do we really want to maintain this feature?
39fd3d4f
SJR
12657cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
12658ac_sed_extra="$ac_vpsub
b0cacab0
TT
12659$extrasub
12660_ACEOF
39fd3d4f 12661cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
b0cacab0
TT
12662:t
12663/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
39fd3d4f 12664s|@configure_input@|$ac_sed_conf_input|;t t
e1052144 12665s&@top_builddir@&$ac_top_builddir_sub&;t t
39fd3d4f 12666s&@top_build_prefix@&$ac_top_build_prefix&;t t
e1052144
TT
12667s&@srcdir@&$ac_srcdir&;t t
12668s&@abs_srcdir@&$ac_abs_srcdir&;t t
12669s&@top_srcdir@&$ac_top_srcdir&;t t
12670s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
12671s&@builddir@&$ac_builddir&;t t
12672s&@abs_builddir@&$ac_abs_builddir&;t t
12673s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
12674s&@INSTALL@&$ac_INSTALL&;t t
12675$ac_datarootdir_hack
39fd3d4f
SJR
12676"
12677eval sed \"\$ac_sed_extra\" "$ac_file_inputs" |
12678if $ac_cs_awk_getline; then
91d11da1 12679 $AWK -f "$ac_tmp/subs.awk"
39fd3d4f 12680else
91d11da1
TT
12681 $AWK -f "$ac_tmp/subs.awk" | $SHELL
12682fi \
12683 >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
e1052144
TT
12684
12685test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
91d11da1
TT
12686 { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
12687 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
12688 "$ac_tmp/out"`; test -z "$ac_out"; } &&
57aa50d4 12689 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
91d11da1 12690which seems to be undefined. Please make sure it is defined" >&5
39fd3d4f 12691$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
91d11da1 12692which seems to be undefined. Please make sure it is defined" >&2;}
e1052144 12693
91d11da1 12694 rm -f "$ac_tmp/stdin"
e1052144 12695 case $ac_file in
91d11da1
TT
12696 -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
12697 *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
39fd3d4f 12698 esac \
91d11da1 12699 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
e1052144 12700 ;;
d1154eb4
TT
12701 :H)
12702 #
12703 # CONFIG_HEADER
12704 #
12705 if test x"$ac_file" != x-; then
12706 {
12707 $as_echo "/* $configure_input */" \
91d11da1
TT
12708 && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
12709 } >"$ac_tmp/config.h" \
12710 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
12711 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
d1154eb4
TT
12712 { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
12713$as_echo "$as_me: $ac_file is unchanged" >&6;}
12714 else
12715 rm -f "$ac_file"
91d11da1
TT
12716 mv "$ac_tmp/config.h" "$ac_file" \
12717 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
d1154eb4
TT
12718 fi
12719 else
12720 $as_echo "/* $configure_input */" \
91d11da1
TT
12721 && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
12722 || as_fn_error $? "could not create -" "$LINENO" 5
d1154eb4
TT
12723 fi
12724 ;;
07a0db15 12725
57aa50d4 12726 :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
39fd3d4f 12727$as_echo "$as_me: executing $ac_file commands" >&6;}
e1052144
TT
12728 ;;
12729 esac
a04eba3f 12730
b0cacab0 12731
e1052144
TT
12732 case $ac_file$ac_mode in
12733 "default-1":C)
a04eba3f
TT
12734 for ac_file in $CONFIG_FILES; do
12735 # Support "outfile[:infile[:infile...]]"
12736 case "$ac_file" in
12737 *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
12738 esac
12739 # PO directories have a Makefile.in generated from Makefile.in.in.
12740 case "$ac_file" in */Makefile.in)
12741 # Adjust a relative srcdir.
12742 ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
12743 ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`"
12744 ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
12745 # In autoconf-2.13 it is called $ac_given_srcdir.
12746 # In autoconf-2.50 it is called $srcdir.
12747 test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir"
12748 case "$ac_given_srcdir" in
12749 .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
12750 /*) top_srcdir="$ac_given_srcdir" ;;
12751 *) top_srcdir="$ac_dots$ac_given_srcdir" ;;
12752 esac
12753 if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then
12754 rm -f "$ac_dir/POTFILES"
12755 test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES"
12756 cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES"
b0cacab0
TT
12757 POMAKEFILEDEPS="POTFILES.in"
12758 # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend
a04eba3f
TT
12759 # on $ac_dir but don't depend on user-specified configuration
12760 # parameters.
12761 if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then
12762 # The LINGUAS file contains the set of available languages.
b0cacab0 12763 if test -n "$OBSOLETE_ALL_LINGUAS"; then
a04eba3f
TT
12764 test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete"
12765 fi
12766 ALL_LINGUAS_=`sed -e "/^#/d" "$ac_given_srcdir/$ac_dir/LINGUAS"`
12767 # Hide the ALL_LINGUAS assigment from automake.
12768 eval 'ALL_LINGUAS''=$ALL_LINGUAS_'
b0cacab0
TT
12769 POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS"
12770 else
12771 # The set of available languages was given in configure.in.
12772 eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS'
a04eba3f 12773 fi
b0cacab0
TT
12774 # Compute POFILES
12775 # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po)
12776 # Compute UPDATEPOFILES
12777 # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update)
12778 # Compute DUMMYPOFILES
12779 # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop)
12780 # Compute GMOFILES
12781 # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo)
a04eba3f
TT
12782 case "$ac_given_srcdir" in
12783 .) srcdirpre= ;;
12784 *) srcdirpre='$(srcdir)/' ;;
12785 esac
12786 POFILES=
a04eba3f
TT
12787 UPDATEPOFILES=
12788 DUMMYPOFILES=
b0cacab0 12789 GMOFILES=
a04eba3f
TT
12790 for lang in $ALL_LINGUAS; do
12791 POFILES="$POFILES $srcdirpre$lang.po"
a04eba3f
TT
12792 UPDATEPOFILES="$UPDATEPOFILES $lang.po-update"
12793 DUMMYPOFILES="$DUMMYPOFILES $lang.nop"
b0cacab0 12794 GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
a04eba3f
TT
12795 done
12796 # CATALOGS depends on both $ac_dir and the user's LINGUAS
12797 # environment variable.
12798 INST_LINGUAS=
12799 if test -n "$ALL_LINGUAS"; then
12800 for presentlang in $ALL_LINGUAS; do
12801 useit=no
12802 if test "%UNSET%" != "$LINGUAS"; then
12803 desiredlanguages="$LINGUAS"
12804 else
12805 desiredlanguages="$ALL_LINGUAS"
12806 fi
12807 for desiredlang in $desiredlanguages; do
12808 # Use the presentlang catalog if desiredlang is
12809 # a. equal to presentlang, or
12810 # b. a variant of presentlang (because in this case,
12811 # presentlang can be used as a fallback for messages
12812 # which are not translated in the desiredlang catalog).
12813 case "$desiredlang" in
12814 "$presentlang"*) useit=yes;;
12815 esac
12816 done
12817 if test $useit = yes; then
12818 INST_LINGUAS="$INST_LINGUAS $presentlang"
12819 fi
12820 done
12821 fi
12822 CATALOGS=
12823 if test -n "$INST_LINGUAS"; then
12824 for lang in $INST_LINGUAS; do
12825 CATALOGS="$CATALOGS $lang.gmo"
12826 done
12827 fi
12828 test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile"
b0cacab0 12829 sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile"
a04eba3f
TT
12830 for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do
12831 if test -f "$f"; then
12832 case "$f" in
12833 *.orig | *.bak | *~) ;;
12834 *) cat "$f" >> "$ac_dir/Makefile" ;;
12835 esac
12836 fi
12837 done
12838 fi
12839 ;;
a64c9c13 12840 esac
b0cacab0 12841 done ;;
e1052144 12842
b0cacab0 12843 esac
e1052144 12844done # for ac_tag
07a0db15 12845
b0cacab0 12846
57aa50d4 12847as_fn_exit 0
b0cacab0 12848_ACEOF
b0cacab0
TT
12849ac_clean_files=$ac_clean_files_save
12850
39fd3d4f 12851test $ac_write_fail = 0 ||
91d11da1 12852 as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
39fd3d4f 12853
b0cacab0
TT
12854
12855# configure is writing to config.log, and then calls config.status.
12856# config.status does its own redirection, appending to config.log.
12857# Unfortunately, on DOS this fails, as config.log is still kept open
12858# by configure, so config.status won't be able to write to it; its
12859# output is simply discarded. So we exec the FD to /dev/null,
12860# effectively closing config.log, so it can be properly (re)opened and
12861# appended to by config.status. When coming back to configure, we
12862# need to make the FD available again.
12863if test "$no_create" != yes; then
12864 ac_cs_success=:
12865 ac_config_status_args=
12866 test "$silent" = yes &&
12867 ac_config_status_args="$ac_config_status_args --quiet"
12868 exec 5>/dev/null
12869 $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
12870 exec 5>>config.log
12871 # Use ||, not &&, to avoid exiting from the if with $? = 1, which
12872 # would make configure fail if this is the last instruction.
91d11da1 12873 $ac_cs_success || as_fn_exit 1
b0cacab0 12874fi
39fd3d4f 12875if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
57aa50d4 12876 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
39fd3d4f
SJR
12877$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
12878fi
50e1e10f 12879
ee683a13 12880if test -f util/gen-tarball; then chmod +x util/gen-tarball; fi