bump version
[buildroot.git] / package / sudo / sudo-crosscompile.patch
blobf8ba17338e5834d38865974475f977cde908d71d
1 diff -ur sudo-1.6.8p9/aclocal.m4 sudo-1.6.8p9-patched/aclocal.m4
2 --- sudo-1.6.8p9/aclocal.m4 2004-09-07 12:14:51.000000000 -0500
3 +++ sudo-1.6.8p9-patched/aclocal.m4 2006-05-26 13:05:14.000000000 -0500
4 @@ -220,13 +220,13 @@
5 AC_TRY_RUN([#include <fnmatch.h>
6 main() { exit(fnmatch("/*/bin/echo *", "/usr/bin/echo just a test", FNM_CASEFOLD)); }
7 ], sudo_cv_func_fnmatch=yes, sudo_cv_func_fnmatch=no,
8 - sudo_cv_func_fnmatch=no)
9 + sudo_cv_func_fnmatch=no,[true])
10 rm -f core core.* *.core])dnl
11 AC_MSG_RESULT($sudo_cv_func_fnmatch)
12 if test $sudo_cv_func_fnmatch = yes; then
13 - [$1]
14 + $1
15 else
16 - [$2]
17 + $2
21 @@ -256,7 +256,7 @@
22 s.sa_len = 0;
23 exit(0);
24 }], sudo_cv_sock_sa_len=yes, sudo_cv_sock_sa_len=no,
25 - sudo_cv_sock_sa_len=no)
26 + sudo_cv_sock_sa_len=no,[true])
27 rm -f core core.* *.core])dnl
28 AC_MSG_RESULT($sudo_cv_sock_sa_len)
29 if test $sudo_cv_sock_sa_len = yes; then
30 @@ -292,7 +292,7 @@
31 (void) fprintf(f, "%d\n", strlen(b));
32 (void) fclose(f);
33 exit(0);
34 -}], sudo_cv_uid_t_len=`cat conftestdata`, sudo_cv_uid_t_len=10)
35 +}], sudo_cv_uid_t_len=`cat conftestdata`, sudo_cv_uid_t_len=10,[true])
37 rm -f conftestdata
38 AC_MSG_RESULT($sudo_cv_uid_t_len)
39 @@ -305,7 +305,7 @@
40 dnl
41 AC_DEFUN(SUDO_LONG_LONG, [AC_MSG_CHECKING(for long long support)
42 AC_TRY_LINK(, [long long foo = 1000; foo /= 10;], AC_DEFINE(HAVE_LONG_LONG, 1, [Define if your compiler supports the "long long" type.])
43 -[AC_TRY_RUN([main() {if (sizeof(long long) == sizeof(long)) exit(0); else exit(1);}], AC_DEFINE(LONG_IS_QUAD, 1, [Define if sizeof(long) == sizeof(long long).]))]
44 +[AC_TRY_RUN([main() {if (sizeof(long long) == sizeof(long)) exit(0); else exit(1);}], AC_DEFINE(LONG_IS_QUAD, 1, [Define if sizeof(long) == sizeof(long long).]),[true],[true])]
45 AC_MSG_RESULT(yes), AC_MSG_RESULT(no))])
47 dnl
48 diff -ur sudo-1.6.8p9/configure sudo-1.6.8p9-patched/configure
49 --- sudo-1.6.8p9/configure 2004-11-26 14:04:30.000000000 -0600
50 +++ sudo-1.6.8p9-patched/configure 2006-05-26 13:05:14.000000000 -0500
51 @@ -1,9 +1,8 @@
52 #! /bin/sh
53 # Guess values for system-dependent variables and create Makefiles.
54 -# Generated by GNU Autoconf 2.57 for sudo 1.6.8.
55 +# Generated by GNU Autoconf 2.59 for sudo 1.6.8.
57 -# Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
58 -# Free Software Foundation, Inc.
59 +# Copyright (C) 2003 Free Software Foundation, Inc.
60 # This configure script is free software; the Free Software Foundation
61 # gives unlimited permission to copy, distribute and modify it.
62 ## --------------------- ##
63 @@ -20,9 +19,10 @@
64 elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
65 set -o posix
67 +DUALCASE=1; export DUALCASE # for MKS sh
69 # Support unset when possible.
70 -if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
71 +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
72 as_unset=unset
73 else
74 as_unset=false
75 @@ -41,7 +41,7 @@
76 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
77 LC_TELEPHONE LC_TIME
79 - if (set +x; test -n "`(eval $as_var=C; export $as_var) 2>&1`"); then
80 + if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
81 eval $as_var=C; export $as_var
82 else
83 $as_unset $as_var
84 @@ -218,16 +218,17 @@
85 if mkdir -p . 2>/dev/null; then
86 as_mkdir_p=:
87 else
88 + test -d ./-p && rmdir ./-p
89 as_mkdir_p=false
92 as_executable_p="test -f"
94 # Sed expression to map a string onto a valid CPP name.
95 -as_tr_cpp="sed y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g"
96 +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
98 # Sed expression to map a string onto a valid variable name.
99 -as_tr_sh="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g"
100 +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
103 # IFS
104 @@ -560,7 +561,7 @@
105 *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
106 *) ac_optarg=yes ;;
107 esac
108 - eval enable_$ac_feature='$ac_optarg' ;;
109 + eval "enable_$ac_feature='$ac_optarg'" ;;
111 -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
112 | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
113 @@ -742,7 +743,7 @@
114 *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
115 *) ac_optarg=yes ;;
116 esac
117 - eval with_$ac_package='$ac_optarg' ;;
118 + eval "with_$ac_package='$ac_optarg'" ;;
120 -without-* | --without-*)
121 ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
122 @@ -816,7 +817,7 @@
124 # Be sure to have absolute paths.
125 for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
126 - localstatedir libdir includedir oldincludedir infodir mandir
127 + localstatedir libdir includedir oldincludedir infodir mandir
129 eval ac_val=$`echo $ac_var`
130 case $ac_val in
131 @@ -856,10 +857,10 @@
132 # Try the directory containing this script, then its parent.
133 ac_confdir=`(dirname "$0") 2>/dev/null ||
134 $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
135 - X"$0" : 'X\(//\)[^/]' \| \
136 - X"$0" : 'X\(//\)$' \| \
137 - X"$0" : 'X\(/\)' \| \
138 - . : '\(.\)' 2>/dev/null ||
139 + X"$0" : 'X\(//\)[^/]' \| \
140 + X"$0" : 'X\(//\)$' \| \
141 + X"$0" : 'X\(/\)' \| \
142 + . : '\(.\)' 2>/dev/null ||
143 echo X"$0" |
144 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
145 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
146 @@ -971,9 +972,9 @@
147 cat <<_ACEOF
148 Installation directories:
149 --prefix=PREFIX install architecture-independent files in PREFIX
150 - [$ac_default_prefix]
151 + [$ac_default_prefix]
152 --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
153 - [PREFIX]
154 + [PREFIX]
156 By default, \`make install' will install all the files in
157 \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
158 @@ -987,7 +988,7 @@
159 --sbindir=DIR system admin executables [EPREFIX/sbin]
160 --libexecdir=DIR program executables [EPREFIX/libexec]
161 --datadir=DIR read-only architecture-independent data [PREFIX/share]
162 - --sysconfdir=DIR read-only single-machine data [/etc]
163 + --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
164 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
165 --localstatedir=DIR modifiable single-machine data [PREFIX/var]
166 --libdir=DIR object code libraries [EPREFIX/lib]
167 @@ -1167,12 +1168,45 @@
168 ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
169 ac_top_srcdir=$ac_top_builddir$srcdir ;;
170 esac
171 -# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
172 -# absolute.
173 -ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
174 -ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd`
175 -ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
176 -ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
178 +# Do not use `cd foo && pwd` to compute absolute paths, because
179 +# the directories may not exist.
180 +case `pwd` in
181 +.) ac_abs_builddir="$ac_dir";;
183 + case "$ac_dir" in
184 + .) ac_abs_builddir=`pwd`;;
185 + [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
186 + *) ac_abs_builddir=`pwd`/"$ac_dir";;
187 + esac;;
188 +esac
189 +case $ac_abs_builddir in
190 +.) ac_abs_top_builddir=${ac_top_builddir}.;;
192 + case ${ac_top_builddir}. in
193 + .) ac_abs_top_builddir=$ac_abs_builddir;;
194 + [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
195 + *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
196 + esac;;
197 +esac
198 +case $ac_abs_builddir in
199 +.) ac_abs_srcdir=$ac_srcdir;;
201 + case $ac_srcdir in
202 + .) ac_abs_srcdir=$ac_abs_builddir;;
203 + [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
204 + *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
205 + esac;;
206 +esac
207 +case $ac_abs_builddir in
208 +.) ac_abs_top_srcdir=$ac_top_srcdir;;
210 + case $ac_top_srcdir in
211 + .) ac_abs_top_srcdir=$ac_abs_builddir;;
212 + [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
213 + *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
214 + esac;;
215 +esac
217 cd $ac_dir
218 # Check for guested configure; otherwise get Cygnus style configure.
219 @@ -1183,13 +1217,13 @@
220 echo
221 $SHELL $ac_srcdir/configure --help=recursive
222 elif test -f $ac_srcdir/configure.ac ||
223 - test -f $ac_srcdir/configure.in; then
224 + test -f $ac_srcdir/configure.in; then
225 echo
226 $ac_configure --help
227 else
228 echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
230 - cd $ac_popdir
231 + cd "$ac_popdir"
232 done
235 @@ -1197,10 +1231,9 @@
236 if $ac_init_version; then
237 cat <<\_ACEOF
238 sudo configure 1.6.8
239 -generated by GNU Autoconf 2.57
240 +generated by GNU Autoconf 2.59
242 -Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
243 -Free Software Foundation, Inc.
244 +Copyright (C) 2003 Free Software Foundation, Inc.
245 This configure script is free software; the Free Software Foundation
246 gives unlimited permission to copy, distribute and modify it.
247 _ACEOF
248 @@ -1212,7 +1245,7 @@
249 running configure, to aid debugging if configure makes a mistake.
251 It was created by sudo $as_me 1.6.8, which was
252 -generated by GNU Autoconf 2.57. Invocation command line was
253 +generated by GNU Autoconf 2.59. Invocation command line was
255 $ $0 $@
257 @@ -1289,21 +1322,21 @@
259 ac_configure_args1="$ac_configure_args1 '$ac_arg'"
260 if test $ac_must_keep_next = true; then
261 - ac_must_keep_next=false # Got value, back to normal.
262 + ac_must_keep_next=false # Got value, back to normal.
263 else
264 - case $ac_arg in
265 - *=* | --config-cache | -C | -disable-* | --disable-* \
266 - | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
267 - | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
268 - | -with-* | --with-* | -without-* | --without-* | --x)
269 - case "$ac_configure_args0 " in
270 - "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
271 - esac
272 - ;;
273 - -* ) ac_must_keep_next=true ;;
274 - esac
275 + case $ac_arg in
276 + *=* | --config-cache | -C | -disable-* | --disable-* \
277 + | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
278 + | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
279 + | -with-* | --with-* | -without-* | --without-* | --x)
280 + case "$ac_configure_args0 " in
281 + "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
282 + esac
283 + ;;
284 + -* ) ac_must_keep_next=true ;;
285 + esac
287 - ac_configure_args="$ac_configure_args$ac_sep\"$ac_arg\""
288 + ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
289 # Get rid of the leading space.
290 ac_sep=" "
292 @@ -1335,12 +1368,12 @@
293 case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
294 *ac_space=\ *)
295 sed -n \
296 - "s/'"'"'/'"'"'\\\\'"'"''"'"'/g;
297 - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p"
298 + "s/'"'"'/'"'"'\\\\'"'"''"'"'/g;
299 + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p"
302 sed -n \
303 - "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
304 + "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
306 esac;
308 @@ -1369,7 +1402,7 @@
309 for ac_var in $ac_subst_files
311 eval ac_val=$`echo $ac_var`
312 - echo "$ac_var='"'"'$ac_val'"'"'"
313 + echo "$ac_var='"'"'$ac_val'"'"'"
314 done | sort
315 echo
317 @@ -1388,7 +1421,7 @@
318 echo "$as_me: caught signal $ac_signal"
319 echo "$as_me: exit $exit_status"
320 } >&5
321 - rm -f core core.* *.core &&
322 + rm -f core *.core &&
323 rm -rf conftest* confdefs* conf$$* $ac_clean_files &&
324 exit $exit_status
326 @@ -1468,7 +1501,7 @@
327 # value.
328 ac_cache_corrupted=false
329 for ac_var in `(set) 2>&1 |
330 - sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
331 + sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
332 eval ac_old_set=\$ac_cv_env_${ac_var}_set
333 eval ac_new_set=\$ac_env_${ac_var}_set
334 eval ac_old_val="\$ac_cv_env_${ac_var}_value"
335 @@ -1485,13 +1518,13 @@
336 ,);;
338 if test "x$ac_old_val" != "x$ac_new_val"; then
339 - { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
340 + { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
341 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
342 - { echo "$as_me:$LINENO: former value: $ac_old_val" >&5
343 + { echo "$as_me:$LINENO: former value: $ac_old_val" >&5
344 echo "$as_me: former value: $ac_old_val" >&2;}
345 - { echo "$as_me:$LINENO: current value: $ac_new_val" >&5
346 + { echo "$as_me:$LINENO: current value: $ac_new_val" >&5
347 echo "$as_me: current value: $ac_new_val" >&2;}
348 - ac_cache_corrupted=:
349 + ac_cache_corrupted=:
350 fi;;
351 esac
352 # Pass precious variables to config.status.
353 @@ -3866,7 +3899,6 @@
354 (exit $ac_status); }
356 cat >conftest.$ac_ext <<_ACEOF
357 -#line $LINENO "configure"
358 /* confdefs.h. */
359 _ACEOF
360 cat confdefs.h >>conftest.$ac_ext
361 @@ -3886,8 +3918,8 @@
362 # Try to create an executable without -o first, disregard a.out.
363 # It will help us diagnose broken compilers, and finding out an intuition
364 # of exeext.
365 -echo "$as_me:$LINENO: checking for C compiler default output" >&5
366 -echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6
367 +echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
368 +echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6
369 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
370 if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5
371 (eval $ac_link_default) 2>&5
372 @@ -3907,23 +3939,23 @@
373 test -f "$ac_file" || continue
374 case $ac_file in
375 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj )
376 - ;;
377 + ;;
378 conftest.$ac_ext )
379 - # This is the source file.
380 - ;;
381 + # This is the source file.
382 + ;;
383 [ab].out )
384 - # We found the default executable, but exeext='' is most
385 - # certainly right.
386 - break;;
387 + # We found the default executable, but exeext='' is most
388 + # certainly right.
389 + break;;
390 *.* )
391 - ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
392 - # FIXME: I believe we export ac_cv_exeext for Libtool,
393 - # but it would be cool to find out if it's true. Does anybody
394 - # maintain Libtool? --akim.
395 - export ac_cv_exeext
396 - break;;
397 + ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
398 + # FIXME: I believe we export ac_cv_exeext for Libtool,
399 + # but it would be cool to find out if it's true. Does anybody
400 + # maintain Libtool? --akim.
401 + export ac_cv_exeext
402 + break;;
404 - break;;
405 + break;;
406 esac
407 done
408 else
409 @@ -3997,8 +4029,8 @@
410 case $ac_file in
411 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;;
412 *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
413 - export ac_cv_exeext
414 - break;;
415 + export ac_cv_exeext
416 + break;;
417 * ) break;;
418 esac
419 done
420 @@ -4023,7 +4055,6 @@
421 echo $ECHO_N "(cached) $ECHO_C" >&6
422 else
423 cat >conftest.$ac_ext <<_ACEOF
424 -#line $LINENO "configure"
425 /* confdefs.h. */
426 _ACEOF
427 cat confdefs.h >>conftest.$ac_ext
428 @@ -4074,7 +4105,6 @@
429 echo $ECHO_N "(cached) $ECHO_C" >&6
430 else
431 cat >conftest.$ac_ext <<_ACEOF
432 -#line $LINENO "configure"
433 /* confdefs.h. */
434 _ACEOF
435 cat confdefs.h >>conftest.$ac_ext
436 @@ -4094,11 +4124,20 @@
437 _ACEOF
438 rm -f conftest.$ac_objext
439 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
440 - (eval $ac_compile) 2>&5
441 + (eval $ac_compile) 2>conftest.er1
442 ac_status=$?
443 + grep -v '^ *+' conftest.er1 >conftest.err
444 + rm -f conftest.er1
445 + cat conftest.err >&5
446 echo "$as_me:$LINENO: \$? = $ac_status" >&5
447 (exit $ac_status); } &&
448 - { ac_try='test -s conftest.$ac_objext'
449 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
450 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
451 + (eval $ac_try) 2>&5
452 + ac_status=$?
453 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
454 + (exit $ac_status); }; } &&
455 + { ac_try='test -s conftest.$ac_objext'
456 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
457 (eval $ac_try) 2>&5
458 ac_status=$?
459 @@ -4111,7 +4150,7 @@
461 ac_compiler_gnu=no
463 -rm -f conftest.$ac_objext conftest.$ac_ext
464 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
465 ac_cv_c_compiler_gnu=$ac_compiler_gnu
468 @@ -4127,7 +4166,6 @@
469 echo $ECHO_N "(cached) $ECHO_C" >&6
470 else
471 cat >conftest.$ac_ext <<_ACEOF
472 -#line $LINENO "configure"
473 /* confdefs.h. */
474 _ACEOF
475 cat confdefs.h >>conftest.$ac_ext
476 @@ -4144,11 +4182,20 @@
477 _ACEOF
478 rm -f conftest.$ac_objext
479 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
480 - (eval $ac_compile) 2>&5
481 + (eval $ac_compile) 2>conftest.er1
482 ac_status=$?
483 + grep -v '^ *+' conftest.er1 >conftest.err
484 + rm -f conftest.er1
485 + cat conftest.err >&5
486 echo "$as_me:$LINENO: \$? = $ac_status" >&5
487 (exit $ac_status); } &&
488 - { ac_try='test -s conftest.$ac_objext'
489 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
490 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
491 + (eval $ac_try) 2>&5
492 + ac_status=$?
493 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
494 + (exit $ac_status); }; } &&
495 + { ac_try='test -s conftest.$ac_objext'
496 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
497 (eval $ac_try) 2>&5
498 ac_status=$?
499 @@ -4161,7 +4208,7 @@
501 ac_cv_prog_cc_g=no
503 -rm -f conftest.$ac_objext conftest.$ac_ext
504 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
506 echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
507 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
508 @@ -4188,7 +4235,6 @@
509 ac_cv_prog_cc_stdc=no
510 ac_save_CC=$CC
511 cat >conftest.$ac_ext <<_ACEOF
512 -#line $LINENO "configure"
513 /* confdefs.h. */
514 _ACEOF
515 cat confdefs.h >>conftest.$ac_ext
516 @@ -4216,6 +4262,16 @@
517 va_end (v);
518 return s;
521 +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
522 + function prototypes and stuff, but not '\xHH' hex character constants.
523 + These don't provoke an error unfortunately, instead are silently treated
524 + as 'x'. The following induces an error, until -std1 is added to get
525 + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
526 + array size at least. It's necessary to write '\x00'==0 to get something
527 + that's true only with -std1. */
528 +int osf4_cc_array ['\x00' == 0 ? 1 : -1];
530 int test (int i, double x);
531 struct s1 {int (*f) (int a);};
532 struct s2 {int (*f) (double a);};
533 @@ -4242,11 +4298,20 @@
534 CC="$ac_save_CC $ac_arg"
535 rm -f conftest.$ac_objext
536 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
537 - (eval $ac_compile) 2>&5
538 + (eval $ac_compile) 2>conftest.er1
539 ac_status=$?
540 + grep -v '^ *+' conftest.er1 >conftest.err
541 + rm -f conftest.er1
542 + cat conftest.err >&5
543 echo "$as_me:$LINENO: \$? = $ac_status" >&5
544 (exit $ac_status); } &&
545 - { ac_try='test -s conftest.$ac_objext'
546 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
547 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
548 + (eval $ac_try) 2>&5
549 + ac_status=$?
550 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
551 + (exit $ac_status); }; } &&
552 + { ac_try='test -s conftest.$ac_objext'
553 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
554 (eval $ac_try) 2>&5
555 ac_status=$?
556 @@ -4259,7 +4324,7 @@
557 sed 's/^/| /' conftest.$ac_ext >&5
560 -rm -f conftest.$ac_objext
561 +rm -f conftest.err conftest.$ac_objext
562 done
563 rm -f conftest.$ac_ext conftest.$ac_objext
564 CC=$ac_save_CC
565 @@ -4287,19 +4352,27 @@
566 _ACEOF
567 rm -f conftest.$ac_objext
568 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
569 - (eval $ac_compile) 2>&5
570 + (eval $ac_compile) 2>conftest.er1
571 ac_status=$?
572 + grep -v '^ *+' conftest.er1 >conftest.err
573 + rm -f conftest.er1
574 + cat conftest.err >&5
575 echo "$as_me:$LINENO: \$? = $ac_status" >&5
576 (exit $ac_status); } &&
577 - { ac_try='test -s conftest.$ac_objext'
578 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
579 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
580 + (eval $ac_try) 2>&5
581 + ac_status=$?
582 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
583 + (exit $ac_status); }; } &&
584 + { ac_try='test -s conftest.$ac_objext'
585 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
586 (eval $ac_try) 2>&5
587 ac_status=$?
588 echo "$as_me:$LINENO: \$? = $ac_status" >&5
589 (exit $ac_status); }; }; then
590 for ac_declaration in \
591 - ''\
592 - '#include <stdlib.h>' \
593 + '' \
594 'extern "C" void std::exit (int) throw (); using std::exit;' \
595 'extern "C" void std::exit (int); using std::exit;' \
596 'extern "C" void exit (int) throw ();' \
597 @@ -4307,14 +4380,13 @@
598 'void exit (int);'
600 cat >conftest.$ac_ext <<_ACEOF
601 -#line $LINENO "configure"
602 /* confdefs.h. */
603 _ACEOF
604 cat confdefs.h >>conftest.$ac_ext
605 cat >>conftest.$ac_ext <<_ACEOF
606 /* end confdefs.h. */
607 -#include <stdlib.h>
608 $ac_declaration
609 +#include <stdlib.h>
611 main ()
613 @@ -4325,11 +4397,20 @@
614 _ACEOF
615 rm -f conftest.$ac_objext
616 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
617 - (eval $ac_compile) 2>&5
618 + (eval $ac_compile) 2>conftest.er1
619 ac_status=$?
620 + grep -v '^ *+' conftest.er1 >conftest.err
621 + rm -f conftest.er1
622 + cat conftest.err >&5
623 echo "$as_me:$LINENO: \$? = $ac_status" >&5
624 (exit $ac_status); } &&
625 - { ac_try='test -s conftest.$ac_objext'
626 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
627 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
628 + (eval $ac_try) 2>&5
629 + ac_status=$?
630 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
631 + (exit $ac_status); }; } &&
632 + { ac_try='test -s conftest.$ac_objext'
633 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
634 (eval $ac_try) 2>&5
635 ac_status=$?
636 @@ -4342,9 +4423,8 @@
638 continue
640 -rm -f conftest.$ac_objext conftest.$ac_ext
641 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
642 cat >conftest.$ac_ext <<_ACEOF
643 -#line $LINENO "configure"
644 /* confdefs.h. */
645 _ACEOF
646 cat confdefs.h >>conftest.$ac_ext
647 @@ -4361,11 +4441,20 @@
648 _ACEOF
649 rm -f conftest.$ac_objext
650 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
651 - (eval $ac_compile) 2>&5
652 + (eval $ac_compile) 2>conftest.er1
653 ac_status=$?
654 + grep -v '^ *+' conftest.er1 >conftest.err
655 + rm -f conftest.er1
656 + cat conftest.err >&5
657 echo "$as_me:$LINENO: \$? = $ac_status" >&5
658 (exit $ac_status); } &&
659 - { ac_try='test -s conftest.$ac_objext'
660 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
661 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
662 + (eval $ac_try) 2>&5
663 + ac_status=$?
664 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
665 + (exit $ac_status); }; } &&
666 + { ac_try='test -s conftest.$ac_objext'
667 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
668 (eval $ac_try) 2>&5
669 ac_status=$?
670 @@ -4377,7 +4466,7 @@
671 sed 's/^/| /' conftest.$ac_ext >&5
674 -rm -f conftest.$ac_objext conftest.$ac_ext
675 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
676 done
677 rm -f conftest*
678 if test -n "$ac_declaration"; then
679 @@ -4391,7 +4480,7 @@
680 sed 's/^/| /' conftest.$ac_ext >&5
683 -rm -f conftest.$ac_objext conftest.$ac_ext
684 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
685 ac_ext=c
686 ac_cpp='$CPP $CPPFLAGS'
687 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
688 @@ -4407,7 +4496,6 @@
689 ac_func_search_save_LIBS=$LIBS
690 ac_cv_search_strerror=no
691 cat >conftest.$ac_ext <<_ACEOF
692 -#line $LINENO "configure"
693 /* confdefs.h. */
694 _ACEOF
695 cat confdefs.h >>conftest.$ac_ext
696 @@ -4431,11 +4519,20 @@
697 _ACEOF
698 rm -f conftest.$ac_objext conftest$ac_exeext
699 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
700 - (eval $ac_link) 2>&5
701 + (eval $ac_link) 2>conftest.er1
702 ac_status=$?
703 + grep -v '^ *+' conftest.er1 >conftest.err
704 + rm -f conftest.er1
705 + cat conftest.err >&5
706 echo "$as_me:$LINENO: \$? = $ac_status" >&5
707 (exit $ac_status); } &&
708 - { ac_try='test -s conftest$ac_exeext'
709 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
710 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
711 + (eval $ac_try) 2>&5
712 + ac_status=$?
713 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
714 + (exit $ac_status); }; } &&
715 + { ac_try='test -s conftest$ac_exeext'
716 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
717 (eval $ac_try) 2>&5
718 ac_status=$?
719 @@ -4447,12 +4544,12 @@
720 sed 's/^/| /' conftest.$ac_ext >&5
723 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
724 +rm -f conftest.err conftest.$ac_objext \
725 + conftest$ac_exeext conftest.$ac_ext
726 if test "$ac_cv_search_strerror" = no; then
727 for ac_lib in cposix; do
728 LIBS="-l$ac_lib $ac_func_search_save_LIBS"
729 cat >conftest.$ac_ext <<_ACEOF
730 -#line $LINENO "configure"
731 /* confdefs.h. */
732 _ACEOF
733 cat confdefs.h >>conftest.$ac_ext
734 @@ -4476,11 +4573,20 @@
735 _ACEOF
736 rm -f conftest.$ac_objext conftest$ac_exeext
737 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
738 - (eval $ac_link) 2>&5
739 + (eval $ac_link) 2>conftest.er1
740 ac_status=$?
741 + grep -v '^ *+' conftest.er1 >conftest.err
742 + rm -f conftest.er1
743 + cat conftest.err >&5
744 echo "$as_me:$LINENO: \$? = $ac_status" >&5
745 (exit $ac_status); } &&
746 - { ac_try='test -s conftest$ac_exeext'
747 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
748 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
749 + (eval $ac_try) 2>&5
750 + ac_status=$?
751 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
752 + (exit $ac_status); }; } &&
753 + { ac_try='test -s conftest$ac_exeext'
754 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
755 (eval $ac_try) 2>&5
756 ac_status=$?
757 @@ -4493,7 +4599,8 @@
758 sed 's/^/| /' conftest.$ac_ext >&5
761 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
762 +rm -f conftest.err conftest.$ac_objext \
763 + conftest$ac_exeext conftest.$ac_ext
764 done
766 LIBS=$ac_func_search_save_LIBS
767 @@ -4534,7 +4641,6 @@
768 # On the NeXT, cc -E runs the code through the compiler's parser,
769 # not just through cpp. "Syntax error" is here to catch this case.
770 cat >conftest.$ac_ext <<_ACEOF
771 -#line $LINENO "configure"
772 /* confdefs.h. */
773 _ACEOF
774 cat confdefs.h >>conftest.$ac_ext
775 @@ -4545,7 +4651,7 @@
776 #else
777 # include <assert.h>
778 #endif
779 - Syntax error
780 + Syntax error
781 _ACEOF
782 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
783 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
784 @@ -4557,6 +4663,7 @@
785 (exit $ac_status); } >/dev/null; then
786 if test -s conftest.err; then
787 ac_cpp_err=$ac_c_preproc_warn_flag
788 + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
789 else
790 ac_cpp_err=
792 @@ -4577,7 +4684,6 @@
793 # OK, works on sane cases. Now check whether non-existent headers
794 # can be detected and how.
795 cat >conftest.$ac_ext <<_ACEOF
796 -#line $LINENO "configure"
797 /* confdefs.h. */
798 _ACEOF
799 cat confdefs.h >>conftest.$ac_ext
800 @@ -4595,6 +4701,7 @@
801 (exit $ac_status); } >/dev/null; then
802 if test -s conftest.err; then
803 ac_cpp_err=$ac_c_preproc_warn_flag
804 + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
805 else
806 ac_cpp_err=
808 @@ -4641,7 +4748,6 @@
809 # On the NeXT, cc -E runs the code through the compiler's parser,
810 # not just through cpp. "Syntax error" is here to catch this case.
811 cat >conftest.$ac_ext <<_ACEOF
812 -#line $LINENO "configure"
813 /* confdefs.h. */
814 _ACEOF
815 cat confdefs.h >>conftest.$ac_ext
816 @@ -4652,7 +4758,7 @@
817 #else
818 # include <assert.h>
819 #endif
820 - Syntax error
821 + Syntax error
822 _ACEOF
823 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
824 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
825 @@ -4664,6 +4770,7 @@
826 (exit $ac_status); } >/dev/null; then
827 if test -s conftest.err; then
828 ac_cpp_err=$ac_c_preproc_warn_flag
829 + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
830 else
831 ac_cpp_err=
833 @@ -4684,7 +4791,6 @@
834 # OK, works on sane cases. Now check whether non-existent headers
835 # can be detected and how.
836 cat >conftest.$ac_ext <<_ACEOF
837 -#line $LINENO "configure"
838 /* confdefs.h. */
839 _ACEOF
840 cat confdefs.h >>conftest.$ac_ext
841 @@ -4702,6 +4808,7 @@
842 (exit $ac_status); } >/dev/null; then
843 if test -s conftest.err; then
844 ac_cpp_err=$ac_c_preproc_warn_flag
845 + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
846 else
847 ac_cpp_err=
849 @@ -5419,7 +5526,7 @@
851 *-*-irix6*)
852 # Find out which ABI we are using.
853 - echo '#line 5422 "configure"' > conftest.$ac_ext
854 + echo '#line 5529 "configure"' > conftest.$ac_ext
855 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
856 (eval $ac_compile) 2>&5
857 ac_status=$?
858 @@ -5516,7 +5623,6 @@
859 ac_compiler_gnu=$ac_cv_c_compiler_gnu
861 cat >conftest.$ac_ext <<_ACEOF
862 -#line $LINENO "configure"
863 /* confdefs.h. */
864 _ACEOF
865 cat confdefs.h >>conftest.$ac_ext
866 @@ -5533,11 +5639,20 @@
867 _ACEOF
868 rm -f conftest.$ac_objext conftest$ac_exeext
869 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
870 - (eval $ac_link) 2>&5
871 + (eval $ac_link) 2>conftest.er1
872 ac_status=$?
873 + grep -v '^ *+' conftest.er1 >conftest.err
874 + rm -f conftest.er1
875 + cat conftest.err >&5
876 echo "$as_me:$LINENO: \$? = $ac_status" >&5
877 (exit $ac_status); } &&
878 - { ac_try='test -s conftest$ac_exeext'
879 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
880 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
881 + (eval $ac_try) 2>&5
882 + ac_status=$?
883 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
884 + (exit $ac_status); }; } &&
885 + { ac_try='test -s conftest$ac_exeext'
886 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
887 (eval $ac_try) 2>&5
888 ac_status=$?
889 @@ -5550,7 +5665,8 @@
891 lt_cv_cc_needs_belf=no
893 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
894 +rm -f conftest.err conftest.$ac_objext \
895 + conftest$ac_exeext conftest.$ac_ext
896 ac_ext=c
897 ac_cpp='$CPP $CPPFLAGS'
898 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
899 @@ -5578,7 +5694,6 @@
900 echo $ECHO_N "(cached) $ECHO_C" >&6
901 else
902 cat >conftest.$ac_ext <<_ACEOF
903 -#line $LINENO "configure"
904 /* confdefs.h. */
905 _ACEOF
906 cat confdefs.h >>conftest.$ac_ext
907 @@ -5599,11 +5714,20 @@
908 _ACEOF
909 rm -f conftest.$ac_objext
910 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
911 - (eval $ac_compile) 2>&5
912 + (eval $ac_compile) 2>conftest.er1
913 ac_status=$?
914 + grep -v '^ *+' conftest.er1 >conftest.err
915 + rm -f conftest.er1
916 + cat conftest.err >&5
917 echo "$as_me:$LINENO: \$? = $ac_status" >&5
918 (exit $ac_status); } &&
919 - { ac_try='test -s conftest.$ac_objext'
920 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
921 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
922 + (eval $ac_try) 2>&5
923 + ac_status=$?
924 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
925 + (exit $ac_status); }; } &&
926 + { ac_try='test -s conftest.$ac_objext'
927 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
928 (eval $ac_try) 2>&5
929 ac_status=$?
930 @@ -5616,12 +5740,11 @@
932 ac_cv_header_stdc=no
934 -rm -f conftest.$ac_objext conftest.$ac_ext
935 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
937 if test $ac_cv_header_stdc = yes; then
938 # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
939 cat >conftest.$ac_ext <<_ACEOF
940 -#line $LINENO "configure"
941 /* confdefs.h. */
942 _ACEOF
943 cat confdefs.h >>conftest.$ac_ext
944 @@ -5643,7 +5766,6 @@
945 if test $ac_cv_header_stdc = yes; then
946 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
947 cat >conftest.$ac_ext <<_ACEOF
948 -#line $LINENO "configure"
949 /* confdefs.h. */
950 _ACEOF
951 cat confdefs.h >>conftest.$ac_ext
952 @@ -5668,7 +5790,6 @@
954 else
955 cat >conftest.$ac_ext <<_ACEOF
956 -#line $LINENO "configure"
957 /* confdefs.h. */
958 _ACEOF
959 cat confdefs.h >>conftest.$ac_ext
960 @@ -5680,9 +5801,9 @@
961 # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
962 #else
963 # define ISLOWER(c) \
964 - (('a' <= (c) && (c) <= 'i') \
965 - || ('j' <= (c) && (c) <= 'r') \
966 - || ('s' <= (c) && (c) <= 'z'))
967 + (('a' <= (c) && (c) <= 'i') \
968 + || ('j' <= (c) && (c) <= 'r') \
969 + || ('s' <= (c) && (c) <= 'z'))
970 # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
971 #endif
973 @@ -5693,7 +5814,7 @@
974 int i;
975 for (i = 0; i < 256; i++)
976 if (XOR (islower (i), ISLOWER (i))
977 - || toupper (i) != TOUPPER (i))
978 + || toupper (i) != TOUPPER (i))
979 exit(2);
980 exit (0);
982 @@ -5718,7 +5839,7 @@
983 ( exit $ac_status )
984 ac_cv_header_stdc=no
986 -rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
987 +rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
991 @@ -5743,7 +5864,7 @@
994 for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
995 - inttypes.h stdint.h unistd.h
996 + inttypes.h stdint.h unistd.h
998 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
999 echo "$as_me:$LINENO: checking for $ac_header" >&5
1000 @@ -5752,7 +5873,6 @@
1001 echo $ECHO_N "(cached) $ECHO_C" >&6
1002 else
1003 cat >conftest.$ac_ext <<_ACEOF
1004 -#line $LINENO "configure"
1005 /* confdefs.h. */
1006 _ACEOF
1007 cat confdefs.h >>conftest.$ac_ext
1008 @@ -5764,11 +5884,20 @@
1009 _ACEOF
1010 rm -f conftest.$ac_objext
1011 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1012 - (eval $ac_compile) 2>&5
1013 + (eval $ac_compile) 2>conftest.er1
1014 ac_status=$?
1015 + grep -v '^ *+' conftest.er1 >conftest.err
1016 + rm -f conftest.er1
1017 + cat conftest.err >&5
1018 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1019 (exit $ac_status); } &&
1020 - { ac_try='test -s conftest.$ac_objext'
1021 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1022 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1023 + (eval $ac_try) 2>&5
1024 + ac_status=$?
1025 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
1026 + (exit $ac_status); }; } &&
1027 + { ac_try='test -s conftest.$ac_objext'
1028 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1029 (eval $ac_try) 2>&5
1030 ac_status=$?
1031 @@ -5781,7 +5910,7 @@
1033 eval "$as_ac_Header=no"
1035 -rm -f conftest.$ac_objext conftest.$ac_ext
1036 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
1038 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
1039 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
1040 @@ -5812,7 +5941,6 @@
1041 echo "$as_me:$LINENO: checking $ac_header usability" >&5
1042 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
1043 cat >conftest.$ac_ext <<_ACEOF
1044 -#line $LINENO "configure"
1045 /* confdefs.h. */
1046 _ACEOF
1047 cat confdefs.h >>conftest.$ac_ext
1048 @@ -5823,11 +5951,20 @@
1049 _ACEOF
1050 rm -f conftest.$ac_objext
1051 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1052 - (eval $ac_compile) 2>&5
1053 + (eval $ac_compile) 2>conftest.er1
1054 ac_status=$?
1055 + grep -v '^ *+' conftest.er1 >conftest.err
1056 + rm -f conftest.er1
1057 + cat conftest.err >&5
1058 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1059 (exit $ac_status); } &&
1060 - { ac_try='test -s conftest.$ac_objext'
1061 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1062 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1063 + (eval $ac_try) 2>&5
1064 + ac_status=$?
1065 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
1066 + (exit $ac_status); }; } &&
1067 + { ac_try='test -s conftest.$ac_objext'
1068 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1069 (eval $ac_try) 2>&5
1070 ac_status=$?
1071 @@ -5840,7 +5977,7 @@
1073 ac_header_compiler=no
1075 -rm -f conftest.$ac_objext conftest.$ac_ext
1076 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
1077 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
1078 echo "${ECHO_T}$ac_header_compiler" >&6
1080 @@ -5848,7 +5985,6 @@
1081 echo "$as_me:$LINENO: checking $ac_header presence" >&5
1082 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
1083 cat >conftest.$ac_ext <<_ACEOF
1084 -#line $LINENO "configure"
1085 /* confdefs.h. */
1086 _ACEOF
1087 cat confdefs.h >>conftest.$ac_ext
1088 @@ -5866,6 +6002,7 @@
1089 (exit $ac_status); } >/dev/null; then
1090 if test -s conftest.err; then
1091 ac_cpp_err=$ac_c_preproc_warn_flag
1092 + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
1093 else
1094 ac_cpp_err=
1096 @@ -5885,33 +6022,32 @@
1097 echo "${ECHO_T}$ac_header_preproc" >&6
1099 # So? What about this header?
1100 -case $ac_header_compiler:$ac_header_preproc in
1101 - yes:no )
1102 +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
1103 + yes:no: )
1104 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
1105 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
1106 - { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
1107 -echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
1109 - cat <<\_ASBOX
1110 -## ------------------------------------ ##
1111 -## Report this to bug-autoconf@gnu.org. ##
1112 -## ------------------------------------ ##
1113 -_ASBOX
1114 - ) |
1115 - sed "s/^/$as_me: WARNING: /" >&2
1116 + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
1117 +echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
1118 + ac_header_preproc=yes
1120 - no:yes )
1121 + no:yes:* )
1122 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
1123 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
1124 - { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
1125 -echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
1126 + { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
1127 +echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
1128 + { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
1129 +echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
1130 + { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5
1131 +echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}
1132 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
1133 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
1134 + { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
1135 +echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
1137 cat <<\_ASBOX
1138 -## ------------------------------------ ##
1139 -## Report this to bug-autoconf@gnu.org. ##
1140 -## ------------------------------------ ##
1141 +## ------------------------------- ##
1142 +## Report this to the sudo lists. ##
1143 +## ------------------------------- ##
1144 _ASBOX
1146 sed "s/^/$as_me: WARNING: /" >&2
1147 @@ -5922,7 +6058,7 @@
1148 if eval "test \"\${$as_ac_Header+set}\" = set"; then
1149 echo $ECHO_N "(cached) $ECHO_C" >&6
1150 else
1151 - eval "$as_ac_Header=$ac_header_preproc"
1152 + eval "$as_ac_Header=\$ac_header_preproc"
1154 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
1155 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
1156 @@ -6056,7 +6192,6 @@
1157 echo $ECHO_N "(cached) $ECHO_C" >&6
1158 else
1159 cat >conftest.$ac_ext <<_ACEOF
1160 -#line $LINENO "configure"
1161 /* confdefs.h. */
1162 _ACEOF
1163 cat confdefs.h >>conftest.$ac_ext
1164 @@ -6076,11 +6211,20 @@
1165 _ACEOF
1166 rm -f conftest.$ac_objext
1167 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1168 - (eval $ac_compile) 2>&5
1169 + (eval $ac_compile) 2>conftest.er1
1170 ac_status=$?
1171 + grep -v '^ *+' conftest.er1 >conftest.err
1172 + rm -f conftest.er1
1173 + cat conftest.err >&5
1174 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1175 (exit $ac_status); } &&
1176 - { ac_try='test -s conftest.$ac_objext'
1177 + { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
1178 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1179 + (eval $ac_try) 2>&5
1180 + ac_status=$?
1181 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
1182 + (exit $ac_status); }; } &&
1183 + { ac_try='test -s conftest.$ac_objext'
1184 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1185 (eval $ac_try) 2>&5
1186 ac_status=$?
1187 @@ -6093,7 +6237,7 @@
1189 ac_compiler_gnu=no
1191 -rm -f conftest.$ac_objext conftest.$ac_ext
1192 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
1193 ac_cv_cxx_compiler_gnu=$ac_compiler_gnu
1196 @@ -6109,7 +6253,6 @@
1197 echo $ECHO_N "(cached) $ECHO_C" >&6
1198 else
1199 cat >conftest.$ac_ext <<_ACEOF
1200 -#line $LINENO "configure"
1201 /* confdefs.h. */
1202 _ACEOF
1203 cat confdefs.h >>conftest.$ac_ext
1204 @@ -6126,11 +6269,20 @@
1205 _ACEOF
1206 rm -f conftest.$ac_objext
1207 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1208 - (eval $ac_compile) 2>&5
1209 + (eval $ac_compile) 2>conftest.er1
1210 ac_status=$?
1211 + grep -v '^ *+' conftest.er1 >conftest.err
1212 + rm -f conftest.er1
1213 + cat conftest.err >&5
1214 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1215 (exit $ac_status); } &&
1216 - { ac_try='test -s conftest.$ac_objext'
1217 + { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
1218 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1219 + (eval $ac_try) 2>&5
1220 + ac_status=$?
1221 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
1222 + (exit $ac_status); }; } &&
1223 + { ac_try='test -s conftest.$ac_objext'
1224 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1225 (eval $ac_try) 2>&5
1226 ac_status=$?
1227 @@ -6143,7 +6295,7 @@
1229 ac_cv_prog_cxx_g=no
1231 -rm -f conftest.$ac_objext conftest.$ac_ext
1232 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
1234 echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5
1235 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6
1236 @@ -6163,8 +6315,7 @@
1239 for ac_declaration in \
1240 - ''\
1241 - '#include <stdlib.h>' \
1242 + '' \
1243 'extern "C" void std::exit (int) throw (); using std::exit;' \
1244 'extern "C" void std::exit (int); using std::exit;' \
1245 'extern "C" void exit (int) throw ();' \
1246 @@ -6172,14 +6323,13 @@
1247 'void exit (int);'
1249 cat >conftest.$ac_ext <<_ACEOF
1250 -#line $LINENO "configure"
1251 /* confdefs.h. */
1252 _ACEOF
1253 cat confdefs.h >>conftest.$ac_ext
1254 cat >>conftest.$ac_ext <<_ACEOF
1255 /* end confdefs.h. */
1256 -#include <stdlib.h>
1257 $ac_declaration
1258 +#include <stdlib.h>
1260 main ()
1262 @@ -6190,11 +6340,20 @@
1263 _ACEOF
1264 rm -f conftest.$ac_objext
1265 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1266 - (eval $ac_compile) 2>&5
1267 + (eval $ac_compile) 2>conftest.er1
1268 ac_status=$?
1269 + grep -v '^ *+' conftest.er1 >conftest.err
1270 + rm -f conftest.er1
1271 + cat conftest.err >&5
1272 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1273 (exit $ac_status); } &&
1274 - { ac_try='test -s conftest.$ac_objext'
1275 + { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
1276 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1277 + (eval $ac_try) 2>&5
1278 + ac_status=$?
1279 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
1280 + (exit $ac_status); }; } &&
1281 + { ac_try='test -s conftest.$ac_objext'
1282 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1283 (eval $ac_try) 2>&5
1284 ac_status=$?
1285 @@ -6207,9 +6366,8 @@
1287 continue
1289 -rm -f conftest.$ac_objext conftest.$ac_ext
1290 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
1291 cat >conftest.$ac_ext <<_ACEOF
1292 -#line $LINENO "configure"
1293 /* confdefs.h. */
1294 _ACEOF
1295 cat confdefs.h >>conftest.$ac_ext
1296 @@ -6226,11 +6384,20 @@
1297 _ACEOF
1298 rm -f conftest.$ac_objext
1299 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1300 - (eval $ac_compile) 2>&5
1301 + (eval $ac_compile) 2>conftest.er1
1302 ac_status=$?
1303 + grep -v '^ *+' conftest.er1 >conftest.err
1304 + rm -f conftest.er1
1305 + cat conftest.err >&5
1306 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1307 (exit $ac_status); } &&
1308 - { ac_try='test -s conftest.$ac_objext'
1309 + { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
1310 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1311 + (eval $ac_try) 2>&5
1312 + ac_status=$?
1313 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
1314 + (exit $ac_status); }; } &&
1315 + { ac_try='test -s conftest.$ac_objext'
1316 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1317 (eval $ac_try) 2>&5
1318 ac_status=$?
1319 @@ -6242,7 +6409,7 @@
1320 sed 's/^/| /' conftest.$ac_ext >&5
1323 -rm -f conftest.$ac_objext conftest.$ac_ext
1324 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
1325 done
1326 rm -f conftest*
1327 if test -n "$ac_declaration"; then
1328 @@ -6281,7 +6448,6 @@
1329 # On the NeXT, cc -E runs the code through the compiler's parser,
1330 # not just through cpp. "Syntax error" is here to catch this case.
1331 cat >conftest.$ac_ext <<_ACEOF
1332 -#line $LINENO "configure"
1333 /* confdefs.h. */
1334 _ACEOF
1335 cat confdefs.h >>conftest.$ac_ext
1336 @@ -6292,7 +6458,7 @@
1337 #else
1338 # include <assert.h>
1339 #endif
1340 - Syntax error
1341 + Syntax error
1342 _ACEOF
1343 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
1344 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
1345 @@ -6304,6 +6470,7 @@
1346 (exit $ac_status); } >/dev/null; then
1347 if test -s conftest.err; then
1348 ac_cpp_err=$ac_cxx_preproc_warn_flag
1349 + ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
1350 else
1351 ac_cpp_err=
1353 @@ -6324,7 +6491,6 @@
1354 # OK, works on sane cases. Now check whether non-existent headers
1355 # can be detected and how.
1356 cat >conftest.$ac_ext <<_ACEOF
1357 -#line $LINENO "configure"
1358 /* confdefs.h. */
1359 _ACEOF
1360 cat confdefs.h >>conftest.$ac_ext
1361 @@ -6342,6 +6508,7 @@
1362 (exit $ac_status); } >/dev/null; then
1363 if test -s conftest.err; then
1364 ac_cpp_err=$ac_cxx_preproc_warn_flag
1365 + ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
1366 else
1367 ac_cpp_err=
1369 @@ -6388,7 +6555,6 @@
1370 # On the NeXT, cc -E runs the code through the compiler's parser,
1371 # not just through cpp. "Syntax error" is here to catch this case.
1372 cat >conftest.$ac_ext <<_ACEOF
1373 -#line $LINENO "configure"
1374 /* confdefs.h. */
1375 _ACEOF
1376 cat confdefs.h >>conftest.$ac_ext
1377 @@ -6399,7 +6565,7 @@
1378 #else
1379 # include <assert.h>
1380 #endif
1381 - Syntax error
1382 + Syntax error
1383 _ACEOF
1384 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
1385 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
1386 @@ -6411,6 +6577,7 @@
1387 (exit $ac_status); } >/dev/null; then
1388 if test -s conftest.err; then
1389 ac_cpp_err=$ac_cxx_preproc_warn_flag
1390 + ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
1391 else
1392 ac_cpp_err=
1394 @@ -6431,7 +6598,6 @@
1395 # OK, works on sane cases. Now check whether non-existent headers
1396 # can be detected and how.
1397 cat >conftest.$ac_ext <<_ACEOF
1398 -#line $LINENO "configure"
1399 /* confdefs.h. */
1400 _ACEOF
1401 cat confdefs.h >>conftest.$ac_ext
1402 @@ -6449,6 +6615,7 @@
1403 (exit $ac_status); } >/dev/null; then
1404 if test -s conftest.err; then
1405 ac_cpp_err=$ac_cxx_preproc_warn_flag
1406 + ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag
1407 else
1408 ac_cpp_err=
1410 @@ -6493,7 +6660,7 @@
1411 ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1412 ac_compiler_gnu=$ac_cv_f77_compiler_gnu
1413 if test -n "$ac_tool_prefix"; then
1414 - for ac_prog in g77 f77 xlf frt pgf77 fl32 af77 fort77 f90 xlf90 pgf90 epcf90 f95 fort xlf95 lf95 g95
1415 + for ac_prog in g77 f77 xlf frt pgf77 fort77 fl32 af77 f90 xlf90 pgf90 epcf90 f95 fort xlf95 ifc efc pgf95 lf95 gfortran
1417 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
1418 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
1419 @@ -6535,7 +6702,7 @@
1421 if test -z "$F77"; then
1422 ac_ct_F77=$F77
1423 - for ac_prog in g77 f77 xlf frt pgf77 fl32 af77 fort77 f90 xlf90 pgf90 epcf90 f95 fort xlf95 lf95 g95
1424 + for ac_prog in g77 f77 xlf frt pgf77 fort77 fl32 af77 f90 xlf90 pgf90 epcf90 f95 fort xlf95 ifc efc pgf95 lf95 gfortran
1426 # Extract the first word of "$ac_prog", so it can be a program name with args.
1427 set dummy $ac_prog; ac_word=$2
1428 @@ -6580,7 +6747,7 @@
1431 # Provide some information about the compiler.
1432 -echo "$as_me:6583:" \
1433 +echo "$as_me:6750:" \
1434 "checking for Fortran 77 compiler version" >&5
1435 ac_compiler=`set X $ac_compile; echo $2`
1436 { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
1437 @@ -6598,9 +6765,10 @@
1438 ac_status=$?
1439 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1440 (exit $ac_status); }
1441 +rm -f a.out
1443 # If we don't use `.F' as extension, the preprocessor is not run on the
1444 -# input file.
1445 +# input file. (Note that this only needs to work for GNU compilers.)
1446 ac_save_ext=$ac_ext
1447 ac_ext=F
1448 echo "$as_me:$LINENO: checking whether we are using the GNU Fortran 77 compiler" >&5
1449 @@ -6618,11 +6786,20 @@
1450 _ACEOF
1451 rm -f conftest.$ac_objext
1452 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1453 - (eval $ac_compile) 2>&5
1454 + (eval $ac_compile) 2>conftest.er1
1455 ac_status=$?
1456 + grep -v '^ *+' conftest.er1 >conftest.err
1457 + rm -f conftest.er1
1458 + cat conftest.err >&5
1459 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1460 (exit $ac_status); } &&
1461 - { ac_try='test -s conftest.$ac_objext'
1462 + { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err'
1463 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1464 + (eval $ac_try) 2>&5
1465 + ac_status=$?
1466 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
1467 + (exit $ac_status); }; } &&
1468 + { ac_try='test -s conftest.$ac_objext'
1469 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1470 (eval $ac_try) 2>&5
1471 ac_status=$?
1472 @@ -6635,14 +6812,13 @@
1474 ac_compiler_gnu=no
1476 -rm -f conftest.$ac_objext conftest.$ac_ext
1477 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
1478 ac_cv_f77_compiler_gnu=$ac_compiler_gnu
1481 echo "$as_me:$LINENO: result: $ac_cv_f77_compiler_gnu" >&5
1482 echo "${ECHO_T}$ac_cv_f77_compiler_gnu" >&6
1483 ac_ext=$ac_save_ext
1484 -G77=`test $ac_compiler_gnu = yes && echo yes`
1485 ac_test_FFLAGS=${FFLAGS+set}
1486 ac_save_FFLAGS=$FFLAGS
1487 FFLAGS=
1488 @@ -6659,11 +6835,20 @@
1489 _ACEOF
1490 rm -f conftest.$ac_objext
1491 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1492 - (eval $ac_compile) 2>&5
1493 + (eval $ac_compile) 2>conftest.er1
1494 ac_status=$?
1495 + grep -v '^ *+' conftest.er1 >conftest.err
1496 + rm -f conftest.er1
1497 + cat conftest.err >&5
1498 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1499 (exit $ac_status); } &&
1500 - { ac_try='test -s conftest.$ac_objext'
1501 + { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err'
1502 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1503 + (eval $ac_try) 2>&5
1504 + ac_status=$?
1505 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
1506 + (exit $ac_status); }; } &&
1507 + { ac_try='test -s conftest.$ac_objext'
1508 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1509 (eval $ac_try) 2>&5
1510 ac_status=$?
1511 @@ -6676,7 +6861,7 @@
1513 ac_cv_prog_f77_g=no
1515 -rm -f conftest.$ac_objext conftest.$ac_ext
1516 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
1519 echo "$as_me:$LINENO: result: $ac_cv_prog_f77_g" >&5
1520 @@ -6684,18 +6869,20 @@
1521 if test "$ac_test_FFLAGS" = set; then
1522 FFLAGS=$ac_save_FFLAGS
1523 elif test $ac_cv_prog_f77_g = yes; then
1524 - if test "$G77" = yes; then
1525 + if test "x$ac_cv_f77_compiler_gnu" = xyes; then
1526 FFLAGS="-g -O2"
1527 else
1528 FFLAGS="-g"
1530 else
1531 - if test "$G77" = yes; then
1532 + if test "x$ac_cv_f77_compiler_gnu" = xyes; then
1533 FFLAGS="-O2"
1534 else
1535 FFLAGS=
1539 +G77=`test $ac_compiler_gnu = yes && echo yes`
1540 ac_ext=c
1541 ac_cpp='$CPP $CPPFLAGS'
1542 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1543 @@ -7589,11 +7776,11 @@
1544 -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
1545 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
1546 -e 's:$: $lt_compiler_flag:'`
1547 - (eval echo "\"\$as_me:7592: $lt_compile\"" >&5)
1548 + (eval echo "\"\$as_me:7779: $lt_compile\"" >&5)
1549 (eval "$lt_compile" 2>conftest.err)
1550 ac_status=$?
1551 cat conftest.err >&5
1552 - echo "$as_me:7596: \$? = $ac_status" >&5
1553 + echo "$as_me:7783: \$? = $ac_status" >&5
1554 if (exit $ac_status) && test -s "$ac_outfile"; then
1555 # The compiler can only warn and ignore the option if not recognized
1556 # So say no if there are warnings
1557 @@ -7821,11 +8008,11 @@
1558 -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
1559 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
1560 -e 's:$: $lt_compiler_flag:'`
1561 - (eval echo "\"\$as_me:7824: $lt_compile\"" >&5)
1562 + (eval echo "\"\$as_me:8011: $lt_compile\"" >&5)
1563 (eval "$lt_compile" 2>conftest.err)
1564 ac_status=$?
1565 cat conftest.err >&5
1566 - echo "$as_me:7828: \$? = $ac_status" >&5
1567 + echo "$as_me:8015: \$? = $ac_status" >&5
1568 if (exit $ac_status) && test -s "$ac_outfile"; then
1569 # The compiler can only warn and ignore the option if not recognized
1570 # So say no if there are warnings
1571 @@ -7888,11 +8075,11 @@
1572 -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
1573 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
1574 -e 's:$: $lt_compiler_flag:'`
1575 - (eval echo "\"\$as_me:7891: $lt_compile\"" >&5)
1576 + (eval echo "\"\$as_me:8078: $lt_compile\"" >&5)
1577 (eval "$lt_compile" 2>out/conftest.err)
1578 ac_status=$?
1579 cat out/conftest.err >&5
1580 - echo "$as_me:7895: \$? = $ac_status" >&5
1581 + echo "$as_me:8082: \$? = $ac_status" >&5
1582 if (exit $ac_status) && test -s out/conftest2.$ac_objext
1583 then
1584 # The compiler can only warn and ignore the option if not recognized
1585 @@ -8228,7 +8415,6 @@
1586 allow_undefined_flag='-berok'
1587 # Determine the default libpath from the value encoded in an empty executable.
1588 cat >conftest.$ac_ext <<_ACEOF
1589 -#line $LINENO "configure"
1590 /* confdefs.h. */
1591 _ACEOF
1592 cat confdefs.h >>conftest.$ac_ext
1593 @@ -8245,11 +8431,20 @@
1594 _ACEOF
1595 rm -f conftest.$ac_objext conftest$ac_exeext
1596 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
1597 - (eval $ac_link) 2>&5
1598 + (eval $ac_link) 2>conftest.er1
1599 ac_status=$?
1600 + grep -v '^ *+' conftest.er1 >conftest.err
1601 + rm -f conftest.er1
1602 + cat conftest.err >&5
1603 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1604 (exit $ac_status); } &&
1605 - { ac_try='test -s conftest$ac_exeext'
1606 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1607 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1608 + (eval $ac_try) 2>&5
1609 + ac_status=$?
1610 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
1611 + (exit $ac_status); }; } &&
1612 + { ac_try='test -s conftest$ac_exeext'
1613 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1614 (eval $ac_try) 2>&5
1615 ac_status=$?
1616 @@ -8266,7 +8461,8 @@
1617 sed 's/^/| /' conftest.$ac_ext >&5
1620 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1621 +rm -f conftest.err conftest.$ac_objext \
1622 + conftest$ac_exeext conftest.$ac_ext
1623 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
1625 hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
1626 @@ -8279,7 +8475,6 @@
1627 else
1628 # Determine the default libpath from the value encoded in an empty executable.
1629 cat >conftest.$ac_ext <<_ACEOF
1630 -#line $LINENO "configure"
1631 /* confdefs.h. */
1632 _ACEOF
1633 cat confdefs.h >>conftest.$ac_ext
1634 @@ -8296,11 +8491,20 @@
1635 _ACEOF
1636 rm -f conftest.$ac_objext conftest$ac_exeext
1637 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
1638 - (eval $ac_link) 2>&5
1639 + (eval $ac_link) 2>conftest.er1
1640 ac_status=$?
1641 + grep -v '^ *+' conftest.er1 >conftest.err
1642 + rm -f conftest.er1
1643 + cat conftest.err >&5
1644 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1645 (exit $ac_status); } &&
1646 - { ac_try='test -s conftest$ac_exeext'
1647 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1648 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1649 + (eval $ac_try) 2>&5
1650 + ac_status=$?
1651 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
1652 + (exit $ac_status); }; } &&
1653 + { ac_try='test -s conftest$ac_exeext'
1654 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1655 (eval $ac_try) 2>&5
1656 ac_status=$?
1657 @@ -8317,7 +8521,8 @@
1658 sed 's/^/| /' conftest.$ac_ext >&5
1661 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1662 +rm -f conftest.err conftest.$ac_objext \
1663 + conftest$ac_exeext conftest.$ac_ext
1664 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
1666 hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
1667 @@ -9384,7 +9589,6 @@
1668 ac_check_lib_save_LIBS=$LIBS
1669 LIBS="-ldl $LIBS"
1670 cat >conftest.$ac_ext <<_ACEOF
1671 -#line $LINENO "configure"
1672 /* confdefs.h. */
1673 _ACEOF
1674 cat confdefs.h >>conftest.$ac_ext
1675 @@ -9408,11 +9612,20 @@
1676 _ACEOF
1677 rm -f conftest.$ac_objext conftest$ac_exeext
1678 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
1679 - (eval $ac_link) 2>&5
1680 + (eval $ac_link) 2>conftest.er1
1681 ac_status=$?
1682 + grep -v '^ *+' conftest.er1 >conftest.err
1683 + rm -f conftest.er1
1684 + cat conftest.err >&5
1685 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1686 (exit $ac_status); } &&
1687 - { ac_try='test -s conftest$ac_exeext'
1688 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1689 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1690 + (eval $ac_try) 2>&5
1691 + ac_status=$?
1692 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
1693 + (exit $ac_status); }; } &&
1694 + { ac_try='test -s conftest$ac_exeext'
1695 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1696 (eval $ac_try) 2>&5
1697 ac_status=$?
1698 @@ -9425,7 +9638,8 @@
1700 ac_cv_lib_dl_dlopen=no
1702 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1703 +rm -f conftest.err conftest.$ac_objext \
1704 + conftest$ac_exeext conftest.$ac_ext
1705 LIBS=$ac_check_lib_save_LIBS
1707 echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
1708 @@ -9449,21 +9663,28 @@
1709 echo $ECHO_N "(cached) $ECHO_C" >&6
1710 else
1711 cat >conftest.$ac_ext <<_ACEOF
1712 -#line $LINENO "configure"
1713 /* confdefs.h. */
1714 _ACEOF
1715 cat confdefs.h >>conftest.$ac_ext
1716 cat >>conftest.$ac_ext <<_ACEOF
1717 /* end confdefs.h. */
1718 +/* Define shl_load to an innocuous variant, in case <limits.h> declares shl_load.
1719 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
1720 +#define shl_load innocuous_shl_load
1722 /* System header to define __stub macros and hopefully few prototypes,
1723 which can conflict with char shl_load (); below.
1724 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
1725 <limits.h> exists even on freestanding compilers. */
1727 #ifdef __STDC__
1728 # include <limits.h>
1729 #else
1730 # include <assert.h>
1731 #endif
1733 +#undef shl_load
1735 /* Override any gcc2 internal prototype to avoid an error. */
1736 #ifdef __cplusplus
1737 extern "C"
1738 @@ -9494,11 +9715,20 @@
1739 _ACEOF
1740 rm -f conftest.$ac_objext conftest$ac_exeext
1741 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
1742 - (eval $ac_link) 2>&5
1743 + (eval $ac_link) 2>conftest.er1
1744 ac_status=$?
1745 + grep -v '^ *+' conftest.er1 >conftest.err
1746 + rm -f conftest.er1
1747 + cat conftest.err >&5
1748 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1749 (exit $ac_status); } &&
1750 - { ac_try='test -s conftest$ac_exeext'
1751 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1752 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1753 + (eval $ac_try) 2>&5
1754 + ac_status=$?
1755 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
1756 + (exit $ac_status); }; } &&
1757 + { ac_try='test -s conftest$ac_exeext'
1758 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1759 (eval $ac_try) 2>&5
1760 ac_status=$?
1761 @@ -9511,7 +9741,8 @@
1763 ac_cv_func_shl_load=no
1765 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1766 +rm -f conftest.err conftest.$ac_objext \
1767 + conftest$ac_exeext conftest.$ac_ext
1769 echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5
1770 echo "${ECHO_T}$ac_cv_func_shl_load" >&6
1771 @@ -9526,7 +9757,6 @@
1772 ac_check_lib_save_LIBS=$LIBS
1773 LIBS="-ldld $LIBS"
1774 cat >conftest.$ac_ext <<_ACEOF
1775 -#line $LINENO "configure"
1776 /* confdefs.h. */
1777 _ACEOF
1778 cat confdefs.h >>conftest.$ac_ext
1779 @@ -9550,11 +9780,20 @@
1780 _ACEOF
1781 rm -f conftest.$ac_objext conftest$ac_exeext
1782 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
1783 - (eval $ac_link) 2>&5
1784 + (eval $ac_link) 2>conftest.er1
1785 ac_status=$?
1786 + grep -v '^ *+' conftest.er1 >conftest.err
1787 + rm -f conftest.er1
1788 + cat conftest.err >&5
1789 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1790 (exit $ac_status); } &&
1791 - { ac_try='test -s conftest$ac_exeext'
1792 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1793 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1794 + (eval $ac_try) 2>&5
1795 + ac_status=$?
1796 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
1797 + (exit $ac_status); }; } &&
1798 + { ac_try='test -s conftest$ac_exeext'
1799 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1800 (eval $ac_try) 2>&5
1801 ac_status=$?
1802 @@ -9567,7 +9806,8 @@
1804 ac_cv_lib_dld_shl_load=no
1806 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1807 +rm -f conftest.err conftest.$ac_objext \
1808 + conftest$ac_exeext conftest.$ac_ext
1809 LIBS=$ac_check_lib_save_LIBS
1811 echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5
1812 @@ -9581,21 +9821,28 @@
1813 echo $ECHO_N "(cached) $ECHO_C" >&6
1814 else
1815 cat >conftest.$ac_ext <<_ACEOF
1816 -#line $LINENO "configure"
1817 /* confdefs.h. */
1818 _ACEOF
1819 cat confdefs.h >>conftest.$ac_ext
1820 cat >>conftest.$ac_ext <<_ACEOF
1821 /* end confdefs.h. */
1822 +/* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen.
1823 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
1824 +#define dlopen innocuous_dlopen
1826 /* System header to define __stub macros and hopefully few prototypes,
1827 which can conflict with char dlopen (); below.
1828 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
1829 <limits.h> exists even on freestanding compilers. */
1831 #ifdef __STDC__
1832 # include <limits.h>
1833 #else
1834 # include <assert.h>
1835 #endif
1837 +#undef dlopen
1839 /* Override any gcc2 internal prototype to avoid an error. */
1840 #ifdef __cplusplus
1841 extern "C"
1842 @@ -9626,11 +9873,20 @@
1843 _ACEOF
1844 rm -f conftest.$ac_objext conftest$ac_exeext
1845 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
1846 - (eval $ac_link) 2>&5
1847 + (eval $ac_link) 2>conftest.er1
1848 ac_status=$?
1849 + grep -v '^ *+' conftest.er1 >conftest.err
1850 + rm -f conftest.er1
1851 + cat conftest.err >&5
1852 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1853 (exit $ac_status); } &&
1854 - { ac_try='test -s conftest$ac_exeext'
1855 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1856 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1857 + (eval $ac_try) 2>&5
1858 + ac_status=$?
1859 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
1860 + (exit $ac_status); }; } &&
1861 + { ac_try='test -s conftest$ac_exeext'
1862 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1863 (eval $ac_try) 2>&5
1864 ac_status=$?
1865 @@ -9643,7 +9899,8 @@
1867 ac_cv_func_dlopen=no
1869 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1870 +rm -f conftest.err conftest.$ac_objext \
1871 + conftest$ac_exeext conftest.$ac_ext
1873 echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5
1874 echo "${ECHO_T}$ac_cv_func_dlopen" >&6
1875 @@ -9658,7 +9915,6 @@
1876 ac_check_lib_save_LIBS=$LIBS
1877 LIBS="-ldl $LIBS"
1878 cat >conftest.$ac_ext <<_ACEOF
1879 -#line $LINENO "configure"
1880 /* confdefs.h. */
1881 _ACEOF
1882 cat confdefs.h >>conftest.$ac_ext
1883 @@ -9682,11 +9938,20 @@
1884 _ACEOF
1885 rm -f conftest.$ac_objext conftest$ac_exeext
1886 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
1887 - (eval $ac_link) 2>&5
1888 + (eval $ac_link) 2>conftest.er1
1889 ac_status=$?
1890 + grep -v '^ *+' conftest.er1 >conftest.err
1891 + rm -f conftest.er1
1892 + cat conftest.err >&5
1893 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1894 (exit $ac_status); } &&
1895 - { ac_try='test -s conftest$ac_exeext'
1896 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1897 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1898 + (eval $ac_try) 2>&5
1899 + ac_status=$?
1900 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
1901 + (exit $ac_status); }; } &&
1902 + { ac_try='test -s conftest$ac_exeext'
1903 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1904 (eval $ac_try) 2>&5
1905 ac_status=$?
1906 @@ -9699,7 +9964,8 @@
1908 ac_cv_lib_dl_dlopen=no
1910 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1911 +rm -f conftest.err conftest.$ac_objext \
1912 + conftest$ac_exeext conftest.$ac_ext
1913 LIBS=$ac_check_lib_save_LIBS
1915 echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
1916 @@ -9715,7 +9981,6 @@
1917 ac_check_lib_save_LIBS=$LIBS
1918 LIBS="-lsvld $LIBS"
1919 cat >conftest.$ac_ext <<_ACEOF
1920 -#line $LINENO "configure"
1921 /* confdefs.h. */
1922 _ACEOF
1923 cat confdefs.h >>conftest.$ac_ext
1924 @@ -9739,11 +10004,20 @@
1925 _ACEOF
1926 rm -f conftest.$ac_objext conftest$ac_exeext
1927 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
1928 - (eval $ac_link) 2>&5
1929 + (eval $ac_link) 2>conftest.er1
1930 ac_status=$?
1931 + grep -v '^ *+' conftest.er1 >conftest.err
1932 + rm -f conftest.er1
1933 + cat conftest.err >&5
1934 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1935 (exit $ac_status); } &&
1936 - { ac_try='test -s conftest$ac_exeext'
1937 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1938 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1939 + (eval $ac_try) 2>&5
1940 + ac_status=$?
1941 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
1942 + (exit $ac_status); }; } &&
1943 + { ac_try='test -s conftest$ac_exeext'
1944 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1945 (eval $ac_try) 2>&5
1946 ac_status=$?
1947 @@ -9756,7 +10030,8 @@
1949 ac_cv_lib_svld_dlopen=no
1951 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1952 +rm -f conftest.err conftest.$ac_objext \
1953 + conftest$ac_exeext conftest.$ac_ext
1954 LIBS=$ac_check_lib_save_LIBS
1956 echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5
1957 @@ -9772,7 +10047,6 @@
1958 ac_check_lib_save_LIBS=$LIBS
1959 LIBS="-ldld $LIBS"
1960 cat >conftest.$ac_ext <<_ACEOF
1961 -#line $LINENO "configure"
1962 /* confdefs.h. */
1963 _ACEOF
1964 cat confdefs.h >>conftest.$ac_ext
1965 @@ -9796,11 +10070,20 @@
1966 _ACEOF
1967 rm -f conftest.$ac_objext conftest$ac_exeext
1968 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
1969 - (eval $ac_link) 2>&5
1970 + (eval $ac_link) 2>conftest.er1
1971 ac_status=$?
1972 + grep -v '^ *+' conftest.er1 >conftest.err
1973 + rm -f conftest.er1
1974 + cat conftest.err >&5
1975 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1976 (exit $ac_status); } &&
1977 - { ac_try='test -s conftest$ac_exeext'
1978 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1979 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1980 + (eval $ac_try) 2>&5
1981 + ac_status=$?
1982 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
1983 + (exit $ac_status); }; } &&
1984 + { ac_try='test -s conftest$ac_exeext'
1985 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1986 (eval $ac_try) 2>&5
1987 ac_status=$?
1988 @@ -9813,7 +10096,8 @@
1990 ac_cv_lib_dld_dld_link=no
1992 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1993 +rm -f conftest.err conftest.$ac_objext \
1994 + conftest$ac_exeext conftest.$ac_ext
1995 LIBS=$ac_check_lib_save_LIBS
1997 echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5
1998 @@ -9868,7 +10152,7 @@
1999 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
2000 lt_status=$lt_dlunknown
2001 cat > conftest.$ac_ext <<EOF
2002 -#line 9871 "configure"
2003 +#line 10155 "configure"
2004 #include "confdefs.h"
2006 #if HAVE_DLFCN_H
2007 @@ -9966,7 +10250,7 @@
2008 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
2009 lt_status=$lt_dlunknown
2010 cat > conftest.$ac_ext <<EOF
2011 -#line 9969 "configure"
2012 +#line 10253 "configure"
2013 #include "confdefs.h"
2015 #if HAVE_DLFCN_H
2016 @@ -11002,7 +11286,6 @@
2017 allow_undefined_flag_CXX='-berok'
2018 # Determine the default libpath from the value encoded in an empty executable.
2019 cat >conftest.$ac_ext <<_ACEOF
2020 -#line $LINENO "configure"
2021 /* confdefs.h. */
2022 _ACEOF
2023 cat confdefs.h >>conftest.$ac_ext
2024 @@ -11019,11 +11302,20 @@
2025 _ACEOF
2026 rm -f conftest.$ac_objext conftest$ac_exeext
2027 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2028 - (eval $ac_link) 2>&5
2029 + (eval $ac_link) 2>conftest.er1
2030 ac_status=$?
2031 + grep -v '^ *+' conftest.er1 >conftest.err
2032 + rm -f conftest.er1
2033 + cat conftest.err >&5
2034 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2035 (exit $ac_status); } &&
2036 - { ac_try='test -s conftest$ac_exeext'
2037 + { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
2038 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2039 + (eval $ac_try) 2>&5
2040 + ac_status=$?
2041 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
2042 + (exit $ac_status); }; } &&
2043 + { ac_try='test -s conftest$ac_exeext'
2044 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2045 (eval $ac_try) 2>&5
2046 ac_status=$?
2047 @@ -11040,7 +11332,8 @@
2048 sed 's/^/| /' conftest.$ac_ext >&5
2051 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2052 +rm -f conftest.err conftest.$ac_objext \
2053 + conftest$ac_exeext conftest.$ac_ext
2054 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
2056 hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath"
2057 @@ -11054,7 +11347,6 @@
2058 else
2059 # Determine the default libpath from the value encoded in an empty executable.
2060 cat >conftest.$ac_ext <<_ACEOF
2061 -#line $LINENO "configure"
2062 /* confdefs.h. */
2063 _ACEOF
2064 cat confdefs.h >>conftest.$ac_ext
2065 @@ -11071,11 +11363,20 @@
2066 _ACEOF
2067 rm -f conftest.$ac_objext conftest$ac_exeext
2068 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2069 - (eval $ac_link) 2>&5
2070 + (eval $ac_link) 2>conftest.er1
2071 ac_status=$?
2072 + grep -v '^ *+' conftest.er1 >conftest.err
2073 + rm -f conftest.er1
2074 + cat conftest.err >&5
2075 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2076 (exit $ac_status); } &&
2077 - { ac_try='test -s conftest$ac_exeext'
2078 + { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
2079 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2080 + (eval $ac_try) 2>&5
2081 + ac_status=$?
2082 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
2083 + (exit $ac_status); }; } &&
2084 + { ac_try='test -s conftest$ac_exeext'
2085 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2086 (eval $ac_try) 2>&5
2087 ac_status=$?
2088 @@ -11092,7 +11393,8 @@
2089 sed 's/^/| /' conftest.$ac_ext >&5
2092 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2093 +rm -f conftest.err conftest.$ac_objext \
2094 + conftest$ac_exeext conftest.$ac_ext
2095 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
2097 hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath"
2098 @@ -12102,11 +12404,11 @@
2099 -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
2100 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
2101 -e 's:$: $lt_compiler_flag:'`
2102 - (eval echo "\"\$as_me:12105: $lt_compile\"" >&5)
2103 + (eval echo "\"\$as_me:12407: $lt_compile\"" >&5)
2104 (eval "$lt_compile" 2>conftest.err)
2105 ac_status=$?
2106 cat conftest.err >&5
2107 - echo "$as_me:12109: \$? = $ac_status" >&5
2108 + echo "$as_me:12411: \$? = $ac_status" >&5
2109 if (exit $ac_status) && test -s "$ac_outfile"; then
2110 # The compiler can only warn and ignore the option if not recognized
2111 # So say no if there are warnings
2112 @@ -12169,11 +12471,11 @@
2113 -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
2114 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
2115 -e 's:$: $lt_compiler_flag:'`
2116 - (eval echo "\"\$as_me:12172: $lt_compile\"" >&5)
2117 + (eval echo "\"\$as_me:12474: $lt_compile\"" >&5)
2118 (eval "$lt_compile" 2>out/conftest.err)
2119 ac_status=$?
2120 cat out/conftest.err >&5
2121 - echo "$as_me:12176: \$? = $ac_status" >&5
2122 + echo "$as_me:12478: \$? = $ac_status" >&5
2123 if (exit $ac_status) && test -s out/conftest2.$ac_objext
2124 then
2125 # The compiler can only warn and ignore the option if not recognized
2126 @@ -12889,7 +13191,6 @@
2127 ac_check_lib_save_LIBS=$LIBS
2128 LIBS="-ldl $LIBS"
2129 cat >conftest.$ac_ext <<_ACEOF
2130 -#line $LINENO "configure"
2131 /* confdefs.h. */
2132 _ACEOF
2133 cat confdefs.h >>conftest.$ac_ext
2134 @@ -12913,11 +13214,20 @@
2135 _ACEOF
2136 rm -f conftest.$ac_objext conftest$ac_exeext
2137 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2138 - (eval $ac_link) 2>&5
2139 + (eval $ac_link) 2>conftest.er1
2140 ac_status=$?
2141 + grep -v '^ *+' conftest.er1 >conftest.err
2142 + rm -f conftest.er1
2143 + cat conftest.err >&5
2144 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2145 (exit $ac_status); } &&
2146 - { ac_try='test -s conftest$ac_exeext'
2147 + { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
2148 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2149 + (eval $ac_try) 2>&5
2150 + ac_status=$?
2151 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
2152 + (exit $ac_status); }; } &&
2153 + { ac_try='test -s conftest$ac_exeext'
2154 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2155 (eval $ac_try) 2>&5
2156 ac_status=$?
2157 @@ -12930,7 +13240,8 @@
2159 ac_cv_lib_dl_dlopen=no
2161 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2162 +rm -f conftest.err conftest.$ac_objext \
2163 + conftest$ac_exeext conftest.$ac_ext
2164 LIBS=$ac_check_lib_save_LIBS
2166 echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
2167 @@ -12954,21 +13265,28 @@
2168 echo $ECHO_N "(cached) $ECHO_C" >&6
2169 else
2170 cat >conftest.$ac_ext <<_ACEOF
2171 -#line $LINENO "configure"
2172 /* confdefs.h. */
2173 _ACEOF
2174 cat confdefs.h >>conftest.$ac_ext
2175 cat >>conftest.$ac_ext <<_ACEOF
2176 /* end confdefs.h. */
2177 +/* Define shl_load to an innocuous variant, in case <limits.h> declares shl_load.
2178 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
2179 +#define shl_load innocuous_shl_load
2181 /* System header to define __stub macros and hopefully few prototypes,
2182 which can conflict with char shl_load (); below.
2183 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
2184 <limits.h> exists even on freestanding compilers. */
2186 #ifdef __STDC__
2187 # include <limits.h>
2188 #else
2189 # include <assert.h>
2190 #endif
2192 +#undef shl_load
2194 /* Override any gcc2 internal prototype to avoid an error. */
2195 #ifdef __cplusplus
2196 extern "C"
2197 @@ -12999,11 +13317,20 @@
2198 _ACEOF
2199 rm -f conftest.$ac_objext conftest$ac_exeext
2200 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2201 - (eval $ac_link) 2>&5
2202 + (eval $ac_link) 2>conftest.er1
2203 ac_status=$?
2204 + grep -v '^ *+' conftest.er1 >conftest.err
2205 + rm -f conftest.er1
2206 + cat conftest.err >&5
2207 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2208 (exit $ac_status); } &&
2209 - { ac_try='test -s conftest$ac_exeext'
2210 + { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
2211 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2212 + (eval $ac_try) 2>&5
2213 + ac_status=$?
2214 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
2215 + (exit $ac_status); }; } &&
2216 + { ac_try='test -s conftest$ac_exeext'
2217 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2218 (eval $ac_try) 2>&5
2219 ac_status=$?
2220 @@ -13016,7 +13343,8 @@
2222 ac_cv_func_shl_load=no
2224 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2225 +rm -f conftest.err conftest.$ac_objext \
2226 + conftest$ac_exeext conftest.$ac_ext
2228 echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5
2229 echo "${ECHO_T}$ac_cv_func_shl_load" >&6
2230 @@ -13031,7 +13359,6 @@
2231 ac_check_lib_save_LIBS=$LIBS
2232 LIBS="-ldld $LIBS"
2233 cat >conftest.$ac_ext <<_ACEOF
2234 -#line $LINENO "configure"
2235 /* confdefs.h. */
2236 _ACEOF
2237 cat confdefs.h >>conftest.$ac_ext
2238 @@ -13055,11 +13382,20 @@
2239 _ACEOF
2240 rm -f conftest.$ac_objext conftest$ac_exeext
2241 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2242 - (eval $ac_link) 2>&5
2243 + (eval $ac_link) 2>conftest.er1
2244 ac_status=$?
2245 + grep -v '^ *+' conftest.er1 >conftest.err
2246 + rm -f conftest.er1
2247 + cat conftest.err >&5
2248 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2249 (exit $ac_status); } &&
2250 - { ac_try='test -s conftest$ac_exeext'
2251 + { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
2252 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2253 + (eval $ac_try) 2>&5
2254 + ac_status=$?
2255 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
2256 + (exit $ac_status); }; } &&
2257 + { ac_try='test -s conftest$ac_exeext'
2258 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2259 (eval $ac_try) 2>&5
2260 ac_status=$?
2261 @@ -13072,7 +13408,8 @@
2263 ac_cv_lib_dld_shl_load=no
2265 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2266 +rm -f conftest.err conftest.$ac_objext \
2267 + conftest$ac_exeext conftest.$ac_ext
2268 LIBS=$ac_check_lib_save_LIBS
2270 echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5
2271 @@ -13086,21 +13423,28 @@
2272 echo $ECHO_N "(cached) $ECHO_C" >&6
2273 else
2274 cat >conftest.$ac_ext <<_ACEOF
2275 -#line $LINENO "configure"
2276 /* confdefs.h. */
2277 _ACEOF
2278 cat confdefs.h >>conftest.$ac_ext
2279 cat >>conftest.$ac_ext <<_ACEOF
2280 /* end confdefs.h. */
2281 +/* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen.
2282 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
2283 +#define dlopen innocuous_dlopen
2285 /* System header to define __stub macros and hopefully few prototypes,
2286 which can conflict with char dlopen (); below.
2287 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
2288 <limits.h> exists even on freestanding compilers. */
2290 #ifdef __STDC__
2291 # include <limits.h>
2292 #else
2293 # include <assert.h>
2294 #endif
2296 +#undef dlopen
2298 /* Override any gcc2 internal prototype to avoid an error. */
2299 #ifdef __cplusplus
2300 extern "C"
2301 @@ -13131,11 +13475,20 @@
2302 _ACEOF
2303 rm -f conftest.$ac_objext conftest$ac_exeext
2304 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2305 - (eval $ac_link) 2>&5
2306 + (eval $ac_link) 2>conftest.er1
2307 ac_status=$?
2308 + grep -v '^ *+' conftest.er1 >conftest.err
2309 + rm -f conftest.er1
2310 + cat conftest.err >&5
2311 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2312 (exit $ac_status); } &&
2313 - { ac_try='test -s conftest$ac_exeext'
2314 + { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
2315 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2316 + (eval $ac_try) 2>&5
2317 + ac_status=$?
2318 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
2319 + (exit $ac_status); }; } &&
2320 + { ac_try='test -s conftest$ac_exeext'
2321 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2322 (eval $ac_try) 2>&5
2323 ac_status=$?
2324 @@ -13148,7 +13501,8 @@
2326 ac_cv_func_dlopen=no
2328 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2329 +rm -f conftest.err conftest.$ac_objext \
2330 + conftest$ac_exeext conftest.$ac_ext
2332 echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5
2333 echo "${ECHO_T}$ac_cv_func_dlopen" >&6
2334 @@ -13163,7 +13517,6 @@
2335 ac_check_lib_save_LIBS=$LIBS
2336 LIBS="-ldl $LIBS"
2337 cat >conftest.$ac_ext <<_ACEOF
2338 -#line $LINENO "configure"
2339 /* confdefs.h. */
2340 _ACEOF
2341 cat confdefs.h >>conftest.$ac_ext
2342 @@ -13187,11 +13540,20 @@
2343 _ACEOF
2344 rm -f conftest.$ac_objext conftest$ac_exeext
2345 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2346 - (eval $ac_link) 2>&5
2347 + (eval $ac_link) 2>conftest.er1
2348 ac_status=$?
2349 + grep -v '^ *+' conftest.er1 >conftest.err
2350 + rm -f conftest.er1
2351 + cat conftest.err >&5
2352 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2353 (exit $ac_status); } &&
2354 - { ac_try='test -s conftest$ac_exeext'
2355 + { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
2356 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2357 + (eval $ac_try) 2>&5
2358 + ac_status=$?
2359 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
2360 + (exit $ac_status); }; } &&
2361 + { ac_try='test -s conftest$ac_exeext'
2362 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2363 (eval $ac_try) 2>&5
2364 ac_status=$?
2365 @@ -13204,7 +13566,8 @@
2367 ac_cv_lib_dl_dlopen=no
2369 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2370 +rm -f conftest.err conftest.$ac_objext \
2371 + conftest$ac_exeext conftest.$ac_ext
2372 LIBS=$ac_check_lib_save_LIBS
2374 echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
2375 @@ -13220,7 +13583,6 @@
2376 ac_check_lib_save_LIBS=$LIBS
2377 LIBS="-lsvld $LIBS"
2378 cat >conftest.$ac_ext <<_ACEOF
2379 -#line $LINENO "configure"
2380 /* confdefs.h. */
2381 _ACEOF
2382 cat confdefs.h >>conftest.$ac_ext
2383 @@ -13244,11 +13606,20 @@
2384 _ACEOF
2385 rm -f conftest.$ac_objext conftest$ac_exeext
2386 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2387 - (eval $ac_link) 2>&5
2388 + (eval $ac_link) 2>conftest.er1
2389 ac_status=$?
2390 + grep -v '^ *+' conftest.er1 >conftest.err
2391 + rm -f conftest.er1
2392 + cat conftest.err >&5
2393 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2394 (exit $ac_status); } &&
2395 - { ac_try='test -s conftest$ac_exeext'
2396 + { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
2397 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2398 + (eval $ac_try) 2>&5
2399 + ac_status=$?
2400 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
2401 + (exit $ac_status); }; } &&
2402 + { ac_try='test -s conftest$ac_exeext'
2403 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2404 (eval $ac_try) 2>&5
2405 ac_status=$?
2406 @@ -13261,7 +13632,8 @@
2408 ac_cv_lib_svld_dlopen=no
2410 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2411 +rm -f conftest.err conftest.$ac_objext \
2412 + conftest$ac_exeext conftest.$ac_ext
2413 LIBS=$ac_check_lib_save_LIBS
2415 echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5
2416 @@ -13277,7 +13649,6 @@
2417 ac_check_lib_save_LIBS=$LIBS
2418 LIBS="-ldld $LIBS"
2419 cat >conftest.$ac_ext <<_ACEOF
2420 -#line $LINENO "configure"
2421 /* confdefs.h. */
2422 _ACEOF
2423 cat confdefs.h >>conftest.$ac_ext
2424 @@ -13301,11 +13672,20 @@
2425 _ACEOF
2426 rm -f conftest.$ac_objext conftest$ac_exeext
2427 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2428 - (eval $ac_link) 2>&5
2429 + (eval $ac_link) 2>conftest.er1
2430 ac_status=$?
2431 + grep -v '^ *+' conftest.er1 >conftest.err
2432 + rm -f conftest.er1
2433 + cat conftest.err >&5
2434 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2435 (exit $ac_status); } &&
2436 - { ac_try='test -s conftest$ac_exeext'
2437 + { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
2438 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2439 + (eval $ac_try) 2>&5
2440 + ac_status=$?
2441 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
2442 + (exit $ac_status); }; } &&
2443 + { ac_try='test -s conftest$ac_exeext'
2444 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2445 (eval $ac_try) 2>&5
2446 ac_status=$?
2447 @@ -13318,7 +13698,8 @@
2449 ac_cv_lib_dld_dld_link=no
2451 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2452 +rm -f conftest.err conftest.$ac_objext \
2453 + conftest$ac_exeext conftest.$ac_ext
2454 LIBS=$ac_check_lib_save_LIBS
2456 echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5
2457 @@ -13373,7 +13754,7 @@
2458 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
2459 lt_status=$lt_dlunknown
2460 cat > conftest.$ac_ext <<EOF
2461 -#line 13376 "configure"
2462 +#line 13757 "configure"
2463 #include "confdefs.h"
2465 #if HAVE_DLFCN_H
2466 @@ -13471,7 +13852,7 @@
2467 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
2468 lt_status=$lt_dlunknown
2469 cat > conftest.$ac_ext <<EOF
2470 -#line 13474 "configure"
2471 +#line 13855 "configure"
2472 #include "confdefs.h"
2474 #if HAVE_DLFCN_H
2475 @@ -14293,11 +14674,11 @@
2476 -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
2477 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
2478 -e 's:$: $lt_compiler_flag:'`
2479 - (eval echo "\"\$as_me:14296: $lt_compile\"" >&5)
2480 + (eval echo "\"\$as_me:14677: $lt_compile\"" >&5)
2481 (eval "$lt_compile" 2>conftest.err)
2482 ac_status=$?
2483 cat conftest.err >&5
2484 - echo "$as_me:14300: \$? = $ac_status" >&5
2485 + echo "$as_me:14681: \$? = $ac_status" >&5
2486 if (exit $ac_status) && test -s "$ac_outfile"; then
2487 # The compiler can only warn and ignore the option if not recognized
2488 # So say no if there are warnings
2489 @@ -14360,11 +14741,11 @@
2490 -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
2491 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
2492 -e 's:$: $lt_compiler_flag:'`
2493 - (eval echo "\"\$as_me:14363: $lt_compile\"" >&5)
2494 + (eval echo "\"\$as_me:14744: $lt_compile\"" >&5)
2495 (eval "$lt_compile" 2>out/conftest.err)
2496 ac_status=$?
2497 cat out/conftest.err >&5
2498 - echo "$as_me:14367: \$? = $ac_status" >&5
2499 + echo "$as_me:14748: \$? = $ac_status" >&5
2500 if (exit $ac_status) && test -s out/conftest2.$ac_objext
2501 then
2502 # The compiler can only warn and ignore the option if not recognized
2503 @@ -14706,11 +15087,20 @@
2504 _ACEOF
2505 rm -f conftest.$ac_objext conftest$ac_exeext
2506 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2507 - (eval $ac_link) 2>&5
2508 + (eval $ac_link) 2>conftest.er1
2509 ac_status=$?
2510 + grep -v '^ *+' conftest.er1 >conftest.err
2511 + rm -f conftest.er1
2512 + cat conftest.err >&5
2513 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2514 (exit $ac_status); } &&
2515 - { ac_try='test -s conftest$ac_exeext'
2516 + { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err'
2517 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2518 + (eval $ac_try) 2>&5
2519 + ac_status=$?
2520 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
2521 + (exit $ac_status); }; } &&
2522 + { ac_try='test -s conftest$ac_exeext'
2523 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2524 (eval $ac_try) 2>&5
2525 ac_status=$?
2526 @@ -14727,7 +15117,8 @@
2527 sed 's/^/| /' conftest.$ac_ext >&5
2530 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2531 +rm -f conftest.err conftest.$ac_objext \
2532 + conftest$ac_exeext conftest.$ac_ext
2533 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
2535 hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath"
2536 @@ -14746,11 +15137,20 @@
2537 _ACEOF
2538 rm -f conftest.$ac_objext conftest$ac_exeext
2539 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2540 - (eval $ac_link) 2>&5
2541 + (eval $ac_link) 2>conftest.er1
2542 ac_status=$?
2543 + grep -v '^ *+' conftest.er1 >conftest.err
2544 + rm -f conftest.er1
2545 + cat conftest.err >&5
2546 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2547 (exit $ac_status); } &&
2548 - { ac_try='test -s conftest$ac_exeext'
2549 + { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err'
2550 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2551 + (eval $ac_try) 2>&5
2552 + ac_status=$?
2553 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
2554 + (exit $ac_status); }; } &&
2555 + { ac_try='test -s conftest$ac_exeext'
2556 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2557 (eval $ac_try) 2>&5
2558 ac_status=$?
2559 @@ -14767,7 +15167,8 @@
2560 sed 's/^/| /' conftest.$ac_ext >&5
2563 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2564 +rm -f conftest.err conftest.$ac_objext \
2565 + conftest$ac_exeext conftest.$ac_ext
2566 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
2568 hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath"
2569 @@ -16272,11 +16673,11 @@
2570 -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
2571 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
2572 -e 's:$: $lt_compiler_flag:'`
2573 - (eval echo "\"\$as_me:16275: $lt_compile\"" >&5)
2574 + (eval echo "\"\$as_me:16676: $lt_compile\"" >&5)
2575 (eval "$lt_compile" 2>conftest.err)
2576 ac_status=$?
2577 cat conftest.err >&5
2578 - echo "$as_me:16279: \$? = $ac_status" >&5
2579 + echo "$as_me:16680: \$? = $ac_status" >&5
2580 if (exit $ac_status) && test -s "$ac_outfile"; then
2581 # The compiler can only warn and ignore the option if not recognized
2582 # So say no if there are warnings
2583 @@ -16504,11 +16905,11 @@
2584 -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
2585 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
2586 -e 's:$: $lt_compiler_flag:'`
2587 - (eval echo "\"\$as_me:16507: $lt_compile\"" >&5)
2588 + (eval echo "\"\$as_me:16908: $lt_compile\"" >&5)
2589 (eval "$lt_compile" 2>conftest.err)
2590 ac_status=$?
2591 cat conftest.err >&5
2592 - echo "$as_me:16511: \$? = $ac_status" >&5
2593 + echo "$as_me:16912: \$? = $ac_status" >&5
2594 if (exit $ac_status) && test -s "$ac_outfile"; then
2595 # The compiler can only warn and ignore the option if not recognized
2596 # So say no if there are warnings
2597 @@ -16571,11 +16972,11 @@
2598 -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
2599 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
2600 -e 's:$: $lt_compiler_flag:'`
2601 - (eval echo "\"\$as_me:16574: $lt_compile\"" >&5)
2602 + (eval echo "\"\$as_me:16975: $lt_compile\"" >&5)
2603 (eval "$lt_compile" 2>out/conftest.err)
2604 ac_status=$?
2605 cat out/conftest.err >&5
2606 - echo "$as_me:16578: \$? = $ac_status" >&5
2607 + echo "$as_me:16979: \$? = $ac_status" >&5
2608 if (exit $ac_status) && test -s out/conftest2.$ac_objext
2609 then
2610 # The compiler can only warn and ignore the option if not recognized
2611 @@ -16911,7 +17312,6 @@
2612 allow_undefined_flag_GCJ='-berok'
2613 # Determine the default libpath from the value encoded in an empty executable.
2614 cat >conftest.$ac_ext <<_ACEOF
2615 -#line $LINENO "configure"
2616 /* confdefs.h. */
2617 _ACEOF
2618 cat confdefs.h >>conftest.$ac_ext
2619 @@ -16928,11 +17328,20 @@
2620 _ACEOF
2621 rm -f conftest.$ac_objext conftest$ac_exeext
2622 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2623 - (eval $ac_link) 2>&5
2624 + (eval $ac_link) 2>conftest.er1
2625 ac_status=$?
2626 + grep -v '^ *+' conftest.er1 >conftest.err
2627 + rm -f conftest.er1
2628 + cat conftest.err >&5
2629 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2630 (exit $ac_status); } &&
2631 - { ac_try='test -s conftest$ac_exeext'
2632 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2633 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2634 + (eval $ac_try) 2>&5
2635 + ac_status=$?
2636 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
2637 + (exit $ac_status); }; } &&
2638 + { ac_try='test -s conftest$ac_exeext'
2639 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2640 (eval $ac_try) 2>&5
2641 ac_status=$?
2642 @@ -16949,7 +17358,8 @@
2643 sed 's/^/| /' conftest.$ac_ext >&5
2646 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2647 +rm -f conftest.err conftest.$ac_objext \
2648 + conftest$ac_exeext conftest.$ac_ext
2649 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
2651 hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath"
2652 @@ -16962,7 +17372,6 @@
2653 else
2654 # Determine the default libpath from the value encoded in an empty executable.
2655 cat >conftest.$ac_ext <<_ACEOF
2656 -#line $LINENO "configure"
2657 /* confdefs.h. */
2658 _ACEOF
2659 cat confdefs.h >>conftest.$ac_ext
2660 @@ -16979,11 +17388,20 @@
2661 _ACEOF
2662 rm -f conftest.$ac_objext conftest$ac_exeext
2663 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2664 - (eval $ac_link) 2>&5
2665 + (eval $ac_link) 2>conftest.er1
2666 ac_status=$?
2667 + grep -v '^ *+' conftest.er1 >conftest.err
2668 + rm -f conftest.er1
2669 + cat conftest.err >&5
2670 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2671 (exit $ac_status); } &&
2672 - { ac_try='test -s conftest$ac_exeext'
2673 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2674 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2675 + (eval $ac_try) 2>&5
2676 + ac_status=$?
2677 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
2678 + (exit $ac_status); }; } &&
2679 + { ac_try='test -s conftest$ac_exeext'
2680 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2681 (eval $ac_try) 2>&5
2682 ac_status=$?
2683 @@ -17000,7 +17418,8 @@
2684 sed 's/^/| /' conftest.$ac_ext >&5
2687 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2688 +rm -f conftest.err conftest.$ac_objext \
2689 + conftest$ac_exeext conftest.$ac_ext
2690 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
2692 hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath"
2693 @@ -18067,7 +18486,6 @@
2694 ac_check_lib_save_LIBS=$LIBS
2695 LIBS="-ldl $LIBS"
2696 cat >conftest.$ac_ext <<_ACEOF
2697 -#line $LINENO "configure"
2698 /* confdefs.h. */
2699 _ACEOF
2700 cat confdefs.h >>conftest.$ac_ext
2701 @@ -18091,11 +18509,20 @@
2702 _ACEOF
2703 rm -f conftest.$ac_objext conftest$ac_exeext
2704 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2705 - (eval $ac_link) 2>&5
2706 + (eval $ac_link) 2>conftest.er1
2707 ac_status=$?
2708 + grep -v '^ *+' conftest.er1 >conftest.err
2709 + rm -f conftest.er1
2710 + cat conftest.err >&5
2711 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2712 (exit $ac_status); } &&
2713 - { ac_try='test -s conftest$ac_exeext'
2714 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2715 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2716 + (eval $ac_try) 2>&5
2717 + ac_status=$?
2718 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
2719 + (exit $ac_status); }; } &&
2720 + { ac_try='test -s conftest$ac_exeext'
2721 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2722 (eval $ac_try) 2>&5
2723 ac_status=$?
2724 @@ -18108,7 +18535,8 @@
2726 ac_cv_lib_dl_dlopen=no
2728 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2729 +rm -f conftest.err conftest.$ac_objext \
2730 + conftest$ac_exeext conftest.$ac_ext
2731 LIBS=$ac_check_lib_save_LIBS
2733 echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
2734 @@ -18132,21 +18560,28 @@
2735 echo $ECHO_N "(cached) $ECHO_C" >&6
2736 else
2737 cat >conftest.$ac_ext <<_ACEOF
2738 -#line $LINENO "configure"
2739 /* confdefs.h. */
2740 _ACEOF
2741 cat confdefs.h >>conftest.$ac_ext
2742 cat >>conftest.$ac_ext <<_ACEOF
2743 /* end confdefs.h. */
2744 +/* Define shl_load to an innocuous variant, in case <limits.h> declares shl_load.
2745 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
2746 +#define shl_load innocuous_shl_load
2748 /* System header to define __stub macros and hopefully few prototypes,
2749 which can conflict with char shl_load (); below.
2750 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
2751 <limits.h> exists even on freestanding compilers. */
2753 #ifdef __STDC__
2754 # include <limits.h>
2755 #else
2756 # include <assert.h>
2757 #endif
2759 +#undef shl_load
2761 /* Override any gcc2 internal prototype to avoid an error. */
2762 #ifdef __cplusplus
2763 extern "C"
2764 @@ -18177,11 +18612,20 @@
2765 _ACEOF
2766 rm -f conftest.$ac_objext conftest$ac_exeext
2767 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2768 - (eval $ac_link) 2>&5
2769 + (eval $ac_link) 2>conftest.er1
2770 ac_status=$?
2771 + grep -v '^ *+' conftest.er1 >conftest.err
2772 + rm -f conftest.er1
2773 + cat conftest.err >&5
2774 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2775 (exit $ac_status); } &&
2776 - { ac_try='test -s conftest$ac_exeext'
2777 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2778 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2779 + (eval $ac_try) 2>&5
2780 + ac_status=$?
2781 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
2782 + (exit $ac_status); }; } &&
2783 + { ac_try='test -s conftest$ac_exeext'
2784 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2785 (eval $ac_try) 2>&5
2786 ac_status=$?
2787 @@ -18194,7 +18638,8 @@
2789 ac_cv_func_shl_load=no
2791 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2792 +rm -f conftest.err conftest.$ac_objext \
2793 + conftest$ac_exeext conftest.$ac_ext
2795 echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5
2796 echo "${ECHO_T}$ac_cv_func_shl_load" >&6
2797 @@ -18209,7 +18654,6 @@
2798 ac_check_lib_save_LIBS=$LIBS
2799 LIBS="-ldld $LIBS"
2800 cat >conftest.$ac_ext <<_ACEOF
2801 -#line $LINENO "configure"
2802 /* confdefs.h. */
2803 _ACEOF
2804 cat confdefs.h >>conftest.$ac_ext
2805 @@ -18233,11 +18677,20 @@
2806 _ACEOF
2807 rm -f conftest.$ac_objext conftest$ac_exeext
2808 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2809 - (eval $ac_link) 2>&5
2810 + (eval $ac_link) 2>conftest.er1
2811 ac_status=$?
2812 + grep -v '^ *+' conftest.er1 >conftest.err
2813 + rm -f conftest.er1
2814 + cat conftest.err >&5
2815 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2816 (exit $ac_status); } &&
2817 - { ac_try='test -s conftest$ac_exeext'
2818 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2819 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2820 + (eval $ac_try) 2>&5
2821 + ac_status=$?
2822 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
2823 + (exit $ac_status); }; } &&
2824 + { ac_try='test -s conftest$ac_exeext'
2825 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2826 (eval $ac_try) 2>&5
2827 ac_status=$?
2828 @@ -18250,7 +18703,8 @@
2830 ac_cv_lib_dld_shl_load=no
2832 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2833 +rm -f conftest.err conftest.$ac_objext \
2834 + conftest$ac_exeext conftest.$ac_ext
2835 LIBS=$ac_check_lib_save_LIBS
2837 echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5
2838 @@ -18264,21 +18718,28 @@
2839 echo $ECHO_N "(cached) $ECHO_C" >&6
2840 else
2841 cat >conftest.$ac_ext <<_ACEOF
2842 -#line $LINENO "configure"
2843 /* confdefs.h. */
2844 _ACEOF
2845 cat confdefs.h >>conftest.$ac_ext
2846 cat >>conftest.$ac_ext <<_ACEOF
2847 /* end confdefs.h. */
2848 +/* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen.
2849 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
2850 +#define dlopen innocuous_dlopen
2852 /* System header to define __stub macros and hopefully few prototypes,
2853 which can conflict with char dlopen (); below.
2854 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
2855 <limits.h> exists even on freestanding compilers. */
2857 #ifdef __STDC__
2858 # include <limits.h>
2859 #else
2860 # include <assert.h>
2861 #endif
2863 +#undef dlopen
2865 /* Override any gcc2 internal prototype to avoid an error. */
2866 #ifdef __cplusplus
2867 extern "C"
2868 @@ -18309,11 +18770,20 @@
2869 _ACEOF
2870 rm -f conftest.$ac_objext conftest$ac_exeext
2871 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2872 - (eval $ac_link) 2>&5
2873 + (eval $ac_link) 2>conftest.er1
2874 ac_status=$?
2875 + grep -v '^ *+' conftest.er1 >conftest.err
2876 + rm -f conftest.er1
2877 + cat conftest.err >&5
2878 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2879 (exit $ac_status); } &&
2880 - { ac_try='test -s conftest$ac_exeext'
2881 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2882 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2883 + (eval $ac_try) 2>&5
2884 + ac_status=$?
2885 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
2886 + (exit $ac_status); }; } &&
2887 + { ac_try='test -s conftest$ac_exeext'
2888 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2889 (eval $ac_try) 2>&5
2890 ac_status=$?
2891 @@ -18326,7 +18796,8 @@
2893 ac_cv_func_dlopen=no
2895 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2896 +rm -f conftest.err conftest.$ac_objext \
2897 + conftest$ac_exeext conftest.$ac_ext
2899 echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5
2900 echo "${ECHO_T}$ac_cv_func_dlopen" >&6
2901 @@ -18341,7 +18812,6 @@
2902 ac_check_lib_save_LIBS=$LIBS
2903 LIBS="-ldl $LIBS"
2904 cat >conftest.$ac_ext <<_ACEOF
2905 -#line $LINENO "configure"
2906 /* confdefs.h. */
2907 _ACEOF
2908 cat confdefs.h >>conftest.$ac_ext
2909 @@ -18365,11 +18835,20 @@
2910 _ACEOF
2911 rm -f conftest.$ac_objext conftest$ac_exeext
2912 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2913 - (eval $ac_link) 2>&5
2914 + (eval $ac_link) 2>conftest.er1
2915 ac_status=$?
2916 + grep -v '^ *+' conftest.er1 >conftest.err
2917 + rm -f conftest.er1
2918 + cat conftest.err >&5
2919 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2920 (exit $ac_status); } &&
2921 - { ac_try='test -s conftest$ac_exeext'
2922 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2923 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2924 + (eval $ac_try) 2>&5
2925 + ac_status=$?
2926 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
2927 + (exit $ac_status); }; } &&
2928 + { ac_try='test -s conftest$ac_exeext'
2929 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2930 (eval $ac_try) 2>&5
2931 ac_status=$?
2932 @@ -18382,7 +18861,8 @@
2934 ac_cv_lib_dl_dlopen=no
2936 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2937 +rm -f conftest.err conftest.$ac_objext \
2938 + conftest$ac_exeext conftest.$ac_ext
2939 LIBS=$ac_check_lib_save_LIBS
2941 echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
2942 @@ -18398,7 +18878,6 @@
2943 ac_check_lib_save_LIBS=$LIBS
2944 LIBS="-lsvld $LIBS"
2945 cat >conftest.$ac_ext <<_ACEOF
2946 -#line $LINENO "configure"
2947 /* confdefs.h. */
2948 _ACEOF
2949 cat confdefs.h >>conftest.$ac_ext
2950 @@ -18422,11 +18901,20 @@
2951 _ACEOF
2952 rm -f conftest.$ac_objext conftest$ac_exeext
2953 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2954 - (eval $ac_link) 2>&5
2955 + (eval $ac_link) 2>conftest.er1
2956 ac_status=$?
2957 + grep -v '^ *+' conftest.er1 >conftest.err
2958 + rm -f conftest.er1
2959 + cat conftest.err >&5
2960 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2961 (exit $ac_status); } &&
2962 - { ac_try='test -s conftest$ac_exeext'
2963 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2964 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2965 + (eval $ac_try) 2>&5
2966 + ac_status=$?
2967 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
2968 + (exit $ac_status); }; } &&
2969 + { ac_try='test -s conftest$ac_exeext'
2970 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2971 (eval $ac_try) 2>&5
2972 ac_status=$?
2973 @@ -18439,7 +18927,8 @@
2975 ac_cv_lib_svld_dlopen=no
2977 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2978 +rm -f conftest.err conftest.$ac_objext \
2979 + conftest$ac_exeext conftest.$ac_ext
2980 LIBS=$ac_check_lib_save_LIBS
2982 echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5
2983 @@ -18455,7 +18944,6 @@
2984 ac_check_lib_save_LIBS=$LIBS
2985 LIBS="-ldld $LIBS"
2986 cat >conftest.$ac_ext <<_ACEOF
2987 -#line $LINENO "configure"
2988 /* confdefs.h. */
2989 _ACEOF
2990 cat confdefs.h >>conftest.$ac_ext
2991 @@ -18479,11 +18967,20 @@
2992 _ACEOF
2993 rm -f conftest.$ac_objext conftest$ac_exeext
2994 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
2995 - (eval $ac_link) 2>&5
2996 + (eval $ac_link) 2>conftest.er1
2997 ac_status=$?
2998 + grep -v '^ *+' conftest.er1 >conftest.err
2999 + rm -f conftest.er1
3000 + cat conftest.err >&5
3001 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3002 (exit $ac_status); } &&
3003 - { ac_try='test -s conftest$ac_exeext'
3004 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3005 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3006 + (eval $ac_try) 2>&5
3007 + ac_status=$?
3008 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
3009 + (exit $ac_status); }; } &&
3010 + { ac_try='test -s conftest$ac_exeext'
3011 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3012 (eval $ac_try) 2>&5
3013 ac_status=$?
3014 @@ -18496,7 +18993,8 @@
3016 ac_cv_lib_dld_dld_link=no
3018 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3019 +rm -f conftest.err conftest.$ac_objext \
3020 + conftest$ac_exeext conftest.$ac_ext
3021 LIBS=$ac_check_lib_save_LIBS
3023 echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5
3024 @@ -18551,7 +19049,7 @@
3025 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
3026 lt_status=$lt_dlunknown
3027 cat > conftest.$ac_ext <<EOF
3028 -#line 18554 "configure"
3029 +#line 19052 "configure"
3030 #include "confdefs.h"
3032 #if HAVE_DLFCN_H
3033 @@ -18649,7 +19147,7 @@
3034 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
3035 lt_status=$lt_dlunknown
3036 cat > conftest.$ac_ext <<EOF
3037 -#line 18652 "configure"
3038 +#line 19150 "configure"
3039 #include "confdefs.h"
3041 #if HAVE_DLFCN_H
3042 @@ -19834,21 +20332,28 @@
3043 echo $ECHO_N "(cached) $ECHO_C" >&6
3044 else
3045 cat >conftest.$ac_ext <<_ACEOF
3046 -#line $LINENO "configure"
3047 /* confdefs.h. */
3048 _ACEOF
3049 cat confdefs.h >>conftest.$ac_ext
3050 cat >>conftest.$ac_ext <<_ACEOF
3051 /* end confdefs.h. */
3052 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
3053 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
3054 +#define $ac_func innocuous_$ac_func
3056 /* System header to define __stub macros and hopefully few prototypes,
3057 which can conflict with char $ac_func (); below.
3058 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
3059 <limits.h> exists even on freestanding compilers. */
3061 #ifdef __STDC__
3062 # include <limits.h>
3063 #else
3064 # include <assert.h>
3065 #endif
3067 +#undef $ac_func
3069 /* Override any gcc2 internal prototype to avoid an error. */
3070 #ifdef __cplusplus
3071 extern "C"
3072 @@ -19879,11 +20384,20 @@
3073 _ACEOF
3074 rm -f conftest.$ac_objext conftest$ac_exeext
3075 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3076 - (eval $ac_link) 2>&5
3077 + (eval $ac_link) 2>conftest.er1
3078 ac_status=$?
3079 + grep -v '^ *+' conftest.er1 >conftest.err
3080 + rm -f conftest.er1
3081 + cat conftest.err >&5
3082 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3083 (exit $ac_status); } &&
3084 - { ac_try='test -s conftest$ac_exeext'
3085 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3086 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3087 + (eval $ac_try) 2>&5
3088 + ac_status=$?
3089 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
3090 + (exit $ac_status); }; } &&
3091 + { ac_try='test -s conftest$ac_exeext'
3092 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3093 (eval $ac_try) 2>&5
3094 ac_status=$?
3095 @@ -19896,7 +20410,8 @@
3097 eval "$as_ac_var=no"
3099 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3100 +rm -f conftest.err conftest.$ac_objext \
3101 + conftest$ac_exeext conftest.$ac_ext
3103 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
3104 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
3105 @@ -19938,7 +20453,6 @@
3106 O_LDFLAGS="$LDFLAGS"
3107 LDFLAGS="$LDFLAGS -Wl,-blibpath:/usr/lib:/lib"
3108 cat >conftest.$ac_ext <<_ACEOF
3109 -#line $LINENO "configure"
3110 /* confdefs.h. */
3111 _ACEOF
3112 cat confdefs.h >>conftest.$ac_ext
3113 @@ -19955,11 +20469,20 @@
3114 _ACEOF
3115 rm -f conftest.$ac_objext conftest$ac_exeext
3116 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3117 - (eval $ac_link) 2>&5
3118 + (eval $ac_link) 2>conftest.er1
3119 ac_status=$?
3120 + grep -v '^ *+' conftest.er1 >conftest.err
3121 + rm -f conftest.er1
3122 + cat conftest.err >&5
3123 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3124 (exit $ac_status); } &&
3125 - { ac_try='test -s conftest$ac_exeext'
3126 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3127 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3128 + (eval $ac_try) 2>&5
3129 + ac_status=$?
3130 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
3131 + (exit $ac_status); }; } &&
3132 + { ac_try='test -s conftest$ac_exeext'
3133 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3134 (eval $ac_try) 2>&5
3135 ac_status=$?
3136 @@ -19983,7 +20506,8 @@
3137 echo "$as_me:$LINENO: result: no" >&5
3138 echo "${ECHO_T}no" >&6
3140 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3141 +rm -f conftest.err conftest.$ac_objext \
3142 + conftest$ac_exeext conftest.$ac_ext
3144 LDFLAGS="$O_LDFLAGS"
3146 @@ -19997,7 +20521,6 @@
3147 ac_check_lib_save_LIBS=$LIBS
3148 LIBS="-lsec $LIBS"
3149 cat >conftest.$ac_ext <<_ACEOF
3150 -#line $LINENO "configure"
3151 /* confdefs.h. */
3152 _ACEOF
3153 cat confdefs.h >>conftest.$ac_ext
3154 @@ -20021,11 +20544,20 @@
3155 _ACEOF
3156 rm -f conftest.$ac_objext conftest$ac_exeext
3157 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3158 - (eval $ac_link) 2>&5
3159 + (eval $ac_link) 2>conftest.er1
3160 ac_status=$?
3161 + grep -v '^ *+' conftest.er1 >conftest.err
3162 + rm -f conftest.er1
3163 + cat conftest.err >&5
3164 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3165 (exit $ac_status); } &&
3166 - { ac_try='test -s conftest$ac_exeext'
3167 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3168 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3169 + (eval $ac_try) 2>&5
3170 + ac_status=$?
3171 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
3172 + (exit $ac_status); }; } &&
3173 + { ac_try='test -s conftest$ac_exeext'
3174 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3175 (eval $ac_try) 2>&5
3176 ac_status=$?
3177 @@ -20038,7 +20570,8 @@
3179 ac_cv_lib_sec_getprpwnam=no
3181 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3182 +rm -f conftest.err conftest.$ac_objext \
3183 + conftest$ac_exeext conftest.$ac_ext
3184 LIBS=$ac_check_lib_save_LIBS
3186 echo "$as_me:$LINENO: result: $ac_cv_lib_sec_getprpwnam" >&5
3187 @@ -20057,7 +20590,6 @@
3188 ac_check_lib_save_LIBS=$LIBS
3189 LIBS="-lsecurity $LIBS"
3190 cat >conftest.$ac_ext <<_ACEOF
3191 -#line $LINENO "configure"
3192 /* confdefs.h. */
3193 _ACEOF
3194 cat confdefs.h >>conftest.$ac_ext
3195 @@ -20081,11 +20613,20 @@
3196 _ACEOF
3197 rm -f conftest.$ac_objext conftest$ac_exeext
3198 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3199 - (eval $ac_link) 2>&5
3200 + (eval $ac_link) 2>conftest.er1
3201 ac_status=$?
3202 + grep -v '^ *+' conftest.er1 >conftest.err
3203 + rm -f conftest.er1
3204 + cat conftest.err >&5
3205 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3206 (exit $ac_status); } &&
3207 - { ac_try='test -s conftest$ac_exeext'
3208 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3209 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3210 + (eval $ac_try) 2>&5
3211 + ac_status=$?
3212 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
3213 + (exit $ac_status); }; } &&
3214 + { ac_try='test -s conftest$ac_exeext'
3215 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3216 (eval $ac_try) 2>&5
3217 ac_status=$?
3218 @@ -20098,7 +20639,8 @@
3220 ac_cv_lib_security_getprpwnam=no
3222 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3223 +rm -f conftest.err conftest.$ac_objext \
3224 + conftest$ac_exeext conftest.$ac_ext
3225 LIBS=$ac_check_lib_save_LIBS
3227 echo "$as_me:$LINENO: result: $ac_cv_lib_security_getprpwnam" >&5
3228 @@ -20156,21 +20698,28 @@
3229 echo $ECHO_N "(cached) $ECHO_C" >&6
3230 else
3231 cat >conftest.$ac_ext <<_ACEOF
3232 -#line $LINENO "configure"
3233 /* confdefs.h. */
3234 _ACEOF
3235 cat confdefs.h >>conftest.$ac_ext
3236 cat >>conftest.$ac_ext <<_ACEOF
3237 /* end confdefs.h. */
3238 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
3239 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
3240 +#define $ac_func innocuous_$ac_func
3242 /* System header to define __stub macros and hopefully few prototypes,
3243 which can conflict with char $ac_func (); below.
3244 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
3245 <limits.h> exists even on freestanding compilers. */
3247 #ifdef __STDC__
3248 # include <limits.h>
3249 #else
3250 # include <assert.h>
3251 #endif
3253 +#undef $ac_func
3255 /* Override any gcc2 internal prototype to avoid an error. */
3256 #ifdef __cplusplus
3257 extern "C"
3258 @@ -20201,11 +20750,20 @@
3259 _ACEOF
3260 rm -f conftest.$ac_objext conftest$ac_exeext
3261 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3262 - (eval $ac_link) 2>&5
3263 + (eval $ac_link) 2>conftest.er1
3264 ac_status=$?
3265 + grep -v '^ *+' conftest.er1 >conftest.err
3266 + rm -f conftest.er1
3267 + cat conftest.err >&5
3268 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3269 (exit $ac_status); } &&
3270 - { ac_try='test -s conftest$ac_exeext'
3271 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3272 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3273 + (eval $ac_try) 2>&5
3274 + ac_status=$?
3275 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
3276 + (exit $ac_status); }; } &&
3277 + { ac_try='test -s conftest$ac_exeext'
3278 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3279 (eval $ac_try) 2>&5
3280 ac_status=$?
3281 @@ -20218,7 +20776,8 @@
3283 eval "$as_ac_var=no"
3285 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3286 +rm -f conftest.err conftest.$ac_objext \
3287 + conftest$ac_exeext conftest.$ac_ext
3289 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
3290 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
3291 @@ -20251,7 +20810,6 @@
3292 ac_check_lib_save_LIBS=$LIBS
3293 LIBS="-lsec $LIBS"
3294 cat >conftest.$ac_ext <<_ACEOF
3295 -#line $LINENO "configure"
3296 /* confdefs.h. */
3297 _ACEOF
3298 cat confdefs.h >>conftest.$ac_ext
3299 @@ -20275,11 +20833,20 @@
3300 _ACEOF
3301 rm -f conftest.$ac_objext conftest$ac_exeext
3302 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3303 - (eval $ac_link) 2>&5
3304 + (eval $ac_link) 2>conftest.er1
3305 ac_status=$?
3306 + grep -v '^ *+' conftest.er1 >conftest.err
3307 + rm -f conftest.er1
3308 + cat conftest.err >&5
3309 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3310 (exit $ac_status); } &&
3311 - { ac_try='test -s conftest$ac_exeext'
3312 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3313 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3314 + (eval $ac_try) 2>&5
3315 + ac_status=$?
3316 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
3317 + (exit $ac_status); }; } &&
3318 + { ac_try='test -s conftest$ac_exeext'
3319 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3320 (eval $ac_try) 2>&5
3321 ac_status=$?
3322 @@ -20292,7 +20859,8 @@
3324 ac_cv_lib_sec_getprpwnam=no
3326 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3327 +rm -f conftest.err conftest.$ac_objext \
3328 + conftest$ac_exeext conftest.$ac_ext
3329 LIBS=$ac_check_lib_save_LIBS
3331 echo "$as_me:$LINENO: result: $ac_cv_lib_sec_getprpwnam" >&5
3332 @@ -20309,7 +20877,6 @@
3333 ac_check_lib_save_LIBS=$LIBS
3334 LIBS="-lsec $LIBS"
3335 cat >conftest.$ac_ext <<_ACEOF
3336 -#line $LINENO "configure"
3337 /* confdefs.h. */
3338 _ACEOF
3339 cat confdefs.h >>conftest.$ac_ext
3340 @@ -20333,11 +20900,20 @@
3341 _ACEOF
3342 rm -f conftest.$ac_objext conftest$ac_exeext
3343 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3344 - (eval $ac_link) 2>&5
3345 + (eval $ac_link) 2>conftest.er1
3346 ac_status=$?
3347 + grep -v '^ *+' conftest.er1 >conftest.err
3348 + rm -f conftest.er1
3349 + cat conftest.err >&5
3350 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3351 (exit $ac_status); } &&
3352 - { ac_try='test -s conftest$ac_exeext'
3353 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3354 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3355 + (eval $ac_try) 2>&5
3356 + ac_status=$?
3357 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
3358 + (exit $ac_status); }; } &&
3359 + { ac_try='test -s conftest$ac_exeext'
3360 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3361 (eval $ac_try) 2>&5
3362 ac_status=$?
3363 @@ -20350,7 +20926,8 @@
3365 ac_cv_lib_sec_iscomsec=no
3367 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3368 +rm -f conftest.err conftest.$ac_objext \
3369 + conftest$ac_exeext conftest.$ac_ext
3370 LIBS=$ac_check_lib_save_LIBS
3372 echo "$as_me:$LINENO: result: $ac_cv_lib_sec_iscomsec" >&5
3373 @@ -20377,7 +20954,6 @@
3374 ac_check_lib_save_LIBS=$LIBS
3375 LIBS="-lsec $LIBS"
3376 cat >conftest.$ac_ext <<_ACEOF
3377 -#line $LINENO "configure"
3378 /* confdefs.h. */
3379 _ACEOF
3380 cat confdefs.h >>conftest.$ac_ext
3381 @@ -20401,11 +20977,20 @@
3382 _ACEOF
3383 rm -f conftest.$ac_objext conftest$ac_exeext
3384 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3385 - (eval $ac_link) 2>&5
3386 + (eval $ac_link) 2>conftest.er1
3387 ac_status=$?
3388 + grep -v '^ *+' conftest.er1 >conftest.err
3389 + rm -f conftest.er1
3390 + cat conftest.err >&5
3391 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3392 (exit $ac_status); } &&
3393 - { ac_try='test -s conftest$ac_exeext'
3394 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3395 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3396 + (eval $ac_try) 2>&5
3397 + ac_status=$?
3398 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
3399 + (exit $ac_status); }; } &&
3400 + { ac_try='test -s conftest$ac_exeext'
3401 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3402 (eval $ac_try) 2>&5
3403 ac_status=$?
3404 @@ -20418,7 +21003,8 @@
3406 ac_cv_lib_sec_getspnam=no
3408 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3409 +rm -f conftest.err conftest.$ac_objext \
3410 + conftest$ac_exeext conftest.$ac_ext
3411 LIBS=$ac_check_lib_save_LIBS
3413 echo "$as_me:$LINENO: result: $ac_cv_lib_sec_getspnam" >&5
3414 @@ -20473,21 +21059,28 @@
3415 echo $ECHO_N "(cached) $ECHO_C" >&6
3416 else
3417 cat >conftest.$ac_ext <<_ACEOF
3418 -#line $LINENO "configure"
3419 /* confdefs.h. */
3420 _ACEOF
3421 cat confdefs.h >>conftest.$ac_ext
3422 cat >>conftest.$ac_ext <<_ACEOF
3423 /* end confdefs.h. */
3424 +/* Define sia_ses_init to an innocuous variant, in case <limits.h> declares sia_ses_init.
3425 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
3426 +#define sia_ses_init innocuous_sia_ses_init
3428 /* System header to define __stub macros and hopefully few prototypes,
3429 which can conflict with char sia_ses_init (); below.
3430 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
3431 <limits.h> exists even on freestanding compilers. */
3433 #ifdef __STDC__
3434 # include <limits.h>
3435 #else
3436 # include <assert.h>
3437 #endif
3439 +#undef sia_ses_init
3441 /* Override any gcc2 internal prototype to avoid an error. */
3442 #ifdef __cplusplus
3443 extern "C"
3444 @@ -20518,11 +21111,20 @@
3445 _ACEOF
3446 rm -f conftest.$ac_objext conftest$ac_exeext
3447 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3448 - (eval $ac_link) 2>&5
3449 + (eval $ac_link) 2>conftest.er1
3450 ac_status=$?
3451 + grep -v '^ *+' conftest.er1 >conftest.err
3452 + rm -f conftest.er1
3453 + cat conftest.err >&5
3454 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3455 (exit $ac_status); } &&
3456 - { ac_try='test -s conftest$ac_exeext'
3457 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3458 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3459 + (eval $ac_try) 2>&5
3460 + ac_status=$?
3461 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
3462 + (exit $ac_status); }; } &&
3463 + { ac_try='test -s conftest$ac_exeext'
3464 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3465 (eval $ac_try) 2>&5
3466 ac_status=$?
3467 @@ -20535,7 +21137,8 @@
3469 ac_cv_func_sia_ses_init=no
3471 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3472 +rm -f conftest.err conftest.$ac_objext \
3473 + conftest$ac_exeext conftest.$ac_ext
3475 echo "$as_me:$LINENO: result: $ac_cv_func_sia_ses_init" >&5
3476 echo "${ECHO_T}$ac_cv_func_sia_ses_init" >&6
3477 @@ -20561,7 +21164,6 @@
3478 ac_check_lib_save_LIBS=$LIBS
3479 LIBS="-lsecurity $LIBS"
3480 cat >conftest.$ac_ext <<_ACEOF
3481 -#line $LINENO "configure"
3482 /* confdefs.h. */
3483 _ACEOF
3484 cat confdefs.h >>conftest.$ac_ext
3485 @@ -20585,11 +21187,20 @@
3486 _ACEOF
3487 rm -f conftest.$ac_objext conftest$ac_exeext
3488 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3489 - (eval $ac_link) 2>&5
3490 + (eval $ac_link) 2>conftest.er1
3491 ac_status=$?
3492 + grep -v '^ *+' conftest.er1 >conftest.err
3493 + rm -f conftest.er1
3494 + cat conftest.err >&5
3495 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3496 (exit $ac_status); } &&
3497 - { ac_try='test -s conftest$ac_exeext'
3498 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3499 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3500 + (eval $ac_try) 2>&5
3501 + ac_status=$?
3502 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
3503 + (exit $ac_status); }; } &&
3504 + { ac_try='test -s conftest$ac_exeext'
3505 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3506 (eval $ac_try) 2>&5
3507 ac_status=$?
3508 @@ -20602,7 +21213,8 @@
3510 ac_cv_lib_security_getprpwnam=no
3512 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3513 +rm -f conftest.err conftest.$ac_objext \
3514 + conftest$ac_exeext conftest.$ac_ext
3515 LIBS=$ac_check_lib_save_LIBS
3517 echo "$as_me:$LINENO: result: $ac_cv_lib_security_getprpwnam" >&5
3518 @@ -20630,21 +21242,28 @@
3519 echo $ECHO_N "(cached) $ECHO_C" >&6
3520 else
3521 cat >conftest.$ac_ext <<_ACEOF
3522 -#line $LINENO "configure"
3523 /* confdefs.h. */
3524 _ACEOF
3525 cat confdefs.h >>conftest.$ac_ext
3526 cat >>conftest.$ac_ext <<_ACEOF
3527 /* end confdefs.h. */
3528 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
3529 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
3530 +#define $ac_func innocuous_$ac_func
3532 /* System header to define __stub macros and hopefully few prototypes,
3533 which can conflict with char $ac_func (); below.
3534 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
3535 <limits.h> exists even on freestanding compilers. */
3537 #ifdef __STDC__
3538 # include <limits.h>
3539 #else
3540 # include <assert.h>
3541 #endif
3543 +#undef $ac_func
3545 /* Override any gcc2 internal prototype to avoid an error. */
3546 #ifdef __cplusplus
3547 extern "C"
3548 @@ -20675,11 +21294,20 @@
3549 _ACEOF
3550 rm -f conftest.$ac_objext conftest$ac_exeext
3551 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3552 - (eval $ac_link) 2>&5
3553 + (eval $ac_link) 2>conftest.er1
3554 ac_status=$?
3555 + grep -v '^ *+' conftest.er1 >conftest.err
3556 + rm -f conftest.er1
3557 + cat conftest.err >&5
3558 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3559 (exit $ac_status); } &&
3560 - { ac_try='test -s conftest$ac_exeext'
3561 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3562 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3563 + (eval $ac_try) 2>&5
3564 + ac_status=$?
3565 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
3566 + (exit $ac_status); }; } &&
3567 + { ac_try='test -s conftest$ac_exeext'
3568 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3569 (eval $ac_try) 2>&5
3570 ac_status=$?
3571 @@ -20692,7 +21320,8 @@
3573 eval "$as_ac_var=no"
3575 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3576 +rm -f conftest.err conftest.$ac_objext \
3577 + conftest$ac_exeext conftest.$ac_ext
3579 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
3580 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
3581 @@ -20716,21 +21345,28 @@
3582 echo $ECHO_N "(cached) $ECHO_C" >&6
3583 else
3584 cat >conftest.$ac_ext <<_ACEOF
3585 -#line $LINENO "configure"
3586 /* confdefs.h. */
3587 _ACEOF
3588 cat confdefs.h >>conftest.$ac_ext
3589 cat >>conftest.$ac_ext <<_ACEOF
3590 /* end confdefs.h. */
3591 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
3592 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
3593 +#define $ac_func innocuous_$ac_func
3595 /* System header to define __stub macros and hopefully few prototypes,
3596 which can conflict with char $ac_func (); below.
3597 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
3598 <limits.h> exists even on freestanding compilers. */
3600 #ifdef __STDC__
3601 # include <limits.h>
3602 #else
3603 # include <assert.h>
3604 #endif
3606 +#undef $ac_func
3608 /* Override any gcc2 internal prototype to avoid an error. */
3609 #ifdef __cplusplus
3610 extern "C"
3611 @@ -20761,11 +21397,20 @@
3612 _ACEOF
3613 rm -f conftest.$ac_objext conftest$ac_exeext
3614 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3615 - (eval $ac_link) 2>&5
3616 + (eval $ac_link) 2>conftest.er1
3617 ac_status=$?
3618 + grep -v '^ *+' conftest.er1 >conftest.err
3619 + rm -f conftest.er1
3620 + cat conftest.err >&5
3621 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3622 (exit $ac_status); } &&
3623 - { ac_try='test -s conftest$ac_exeext'
3624 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3625 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3626 + (eval $ac_try) 2>&5
3627 + ac_status=$?
3628 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
3629 + (exit $ac_status); }; } &&
3630 + { ac_try='test -s conftest$ac_exeext'
3631 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3632 (eval $ac_try) 2>&5
3633 ac_status=$?
3634 @@ -20778,7 +21423,8 @@
3636 eval "$as_ac_var=no"
3638 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3639 +rm -f conftest.err conftest.$ac_objext \
3640 + conftest$ac_exeext conftest.$ac_ext
3642 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
3643 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
3644 @@ -20801,7 +21447,6 @@
3645 ac_check_lib_save_LIBS=$LIBS
3646 LIBS="-ldb $LIBS"
3647 cat >conftest.$ac_ext <<_ACEOF
3648 -#line $LINENO "configure"
3649 /* confdefs.h. */
3650 _ACEOF
3651 cat confdefs.h >>conftest.$ac_ext
3652 @@ -20825,11 +21470,20 @@
3653 _ACEOF
3654 rm -f conftest.$ac_objext conftest$ac_exeext
3655 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3656 - (eval $ac_link) 2>&5
3657 + (eval $ac_link) 2>conftest.er1
3658 ac_status=$?
3659 + grep -v '^ *+' conftest.er1 >conftest.err
3660 + rm -f conftest.er1
3661 + cat conftest.err >&5
3662 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3663 (exit $ac_status); } &&
3664 - { ac_try='test -s conftest$ac_exeext'
3665 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3666 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3667 + (eval $ac_try) 2>&5
3668 + ac_status=$?
3669 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
3670 + (exit $ac_status); }; } &&
3671 + { ac_try='test -s conftest$ac_exeext'
3672 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3673 (eval $ac_try) 2>&5
3674 ac_status=$?
3675 @@ -20842,7 +21496,8 @@
3677 ac_cv_lib_db_dbopen=no
3679 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3680 +rm -f conftest.err conftest.$ac_objext \
3681 + conftest$ac_exeext conftest.$ac_ext
3682 LIBS=$ac_check_lib_save_LIBS
3684 echo "$as_me:$LINENO: result: $ac_cv_lib_db_dbopen" >&5
3685 @@ -20863,21 +21518,28 @@
3686 echo $ECHO_N "(cached) $ECHO_C" >&6
3687 else
3688 cat >conftest.$ac_ext <<_ACEOF
3689 -#line $LINENO "configure"
3690 /* confdefs.h. */
3691 _ACEOF
3692 cat confdefs.h >>conftest.$ac_ext
3693 cat >>conftest.$ac_ext <<_ACEOF
3694 /* end confdefs.h. */
3695 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
3696 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
3697 +#define $ac_func innocuous_$ac_func
3699 /* System header to define __stub macros and hopefully few prototypes,
3700 which can conflict with char $ac_func (); below.
3701 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
3702 <limits.h> exists even on freestanding compilers. */
3704 #ifdef __STDC__
3705 # include <limits.h>
3706 #else
3707 # include <assert.h>
3708 #endif
3710 +#undef $ac_func
3712 /* Override any gcc2 internal prototype to avoid an error. */
3713 #ifdef __cplusplus
3714 extern "C"
3715 @@ -20908,11 +21570,20 @@
3716 _ACEOF
3717 rm -f conftest.$ac_objext conftest$ac_exeext
3718 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3719 - (eval $ac_link) 2>&5
3720 + (eval $ac_link) 2>conftest.er1
3721 ac_status=$?
3722 + grep -v '^ *+' conftest.er1 >conftest.err
3723 + rm -f conftest.er1
3724 + cat conftest.err >&5
3725 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3726 (exit $ac_status); } &&
3727 - { ac_try='test -s conftest$ac_exeext'
3728 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3729 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3730 + (eval $ac_try) 2>&5
3731 + ac_status=$?
3732 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
3733 + (exit $ac_status); }; } &&
3734 + { ac_try='test -s conftest$ac_exeext'
3735 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3736 (eval $ac_try) 2>&5
3737 ac_status=$?
3738 @@ -20925,7 +21596,8 @@
3740 eval "$as_ac_var=no"
3742 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3743 +rm -f conftest.err conftest.$ac_objext \
3744 + conftest$ac_exeext conftest.$ac_ext
3746 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
3747 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
3748 @@ -20940,7 +21612,6 @@
3749 echo "$as_me:$LINENO: checking for broken /usr/include/prot.h" >&5
3750 echo $ECHO_N "checking for broken /usr/include/prot.h... $ECHO_C" >&6
3751 cat >conftest.$ac_ext <<_ACEOF
3752 -#line $LINENO "configure"
3753 /* confdefs.h. */
3754 _ACEOF
3755 cat confdefs.h >>conftest.$ac_ext
3756 @@ -20961,11 +21632,20 @@
3757 _ACEOF
3758 rm -f conftest.$ac_objext
3759 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
3760 - (eval $ac_compile) 2>&5
3761 + (eval $ac_compile) 2>conftest.er1
3762 ac_status=$?
3763 + grep -v '^ *+' conftest.er1 >conftest.err
3764 + rm -f conftest.er1
3765 + cat conftest.err >&5
3766 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3767 (exit $ac_status); } &&
3768 - { ac_try='test -s conftest.$ac_objext'
3769 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3770 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3771 + (eval $ac_try) 2>&5
3772 + ac_status=$?
3773 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
3774 + (exit $ac_status); }; } &&
3775 + { ac_try='test -s conftest.$ac_objext'
3776 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3777 (eval $ac_try) 2>&5
3778 ac_status=$?
3779 @@ -20982,7 +21662,7 @@
3780 sed 's:<acl.h>:<sys/acl.h>:g' < /usr/include/prot.h > prot.h
3783 -rm -f conftest.$ac_objext conftest.$ac_ext
3784 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
3785 elif test "$CHECKSIA" = "true"; then
3786 with_passwd=no
3787 AUTH_OBJS="sia.o"
3788 @@ -21020,7 +21700,6 @@
3789 ac_check_lib_save_LIBS=$LIBS
3790 LIBS="-lsun $LIBS"
3791 cat >conftest.$ac_ext <<_ACEOF
3792 -#line $LINENO "configure"
3793 /* confdefs.h. */
3794 _ACEOF
3795 cat confdefs.h >>conftest.$ac_ext
3796 @@ -21044,11 +21723,20 @@
3797 _ACEOF
3798 rm -f conftest.$ac_objext conftest$ac_exeext
3799 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3800 - (eval $ac_link) 2>&5
3801 + (eval $ac_link) 2>conftest.er1
3802 ac_status=$?
3803 + grep -v '^ *+' conftest.er1 >conftest.err
3804 + rm -f conftest.er1
3805 + cat conftest.err >&5
3806 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3807 (exit $ac_status); } &&
3808 - { ac_try='test -s conftest$ac_exeext'
3809 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3810 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3811 + (eval $ac_try) 2>&5
3812 + ac_status=$?
3813 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
3814 + (exit $ac_status); }; } &&
3815 + { ac_try='test -s conftest$ac_exeext'
3816 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3817 (eval $ac_try) 2>&5
3818 ac_status=$?
3819 @@ -21061,7 +21749,8 @@
3821 ac_cv_lib_sun_getpwnam=no
3823 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3824 +rm -f conftest.err conftest.$ac_objext \
3825 + conftest$ac_exeext conftest.$ac_ext
3826 LIBS=$ac_check_lib_save_LIBS
3828 echo "$as_me:$LINENO: result: $ac_cv_lib_sun_getpwnam" >&5
3829 @@ -21087,21 +21776,28 @@
3830 echo $ECHO_N "(cached) $ECHO_C" >&6
3831 else
3832 cat >conftest.$ac_ext <<_ACEOF
3833 -#line $LINENO "configure"
3834 /* confdefs.h. */
3835 _ACEOF
3836 cat confdefs.h >>conftest.$ac_ext
3837 cat >>conftest.$ac_ext <<_ACEOF
3838 /* end confdefs.h. */
3839 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
3840 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
3841 +#define $ac_func innocuous_$ac_func
3843 /* System header to define __stub macros and hopefully few prototypes,
3844 which can conflict with char $ac_func (); below.
3845 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
3846 <limits.h> exists even on freestanding compilers. */
3848 #ifdef __STDC__
3849 # include <limits.h>
3850 #else
3851 # include <assert.h>
3852 #endif
3854 +#undef $ac_func
3856 /* Override any gcc2 internal prototype to avoid an error. */
3857 #ifdef __cplusplus
3858 extern "C"
3859 @@ -21132,11 +21828,20 @@
3860 _ACEOF
3861 rm -f conftest.$ac_objext conftest$ac_exeext
3862 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3863 - (eval $ac_link) 2>&5
3864 + (eval $ac_link) 2>conftest.er1
3865 ac_status=$?
3866 + grep -v '^ *+' conftest.er1 >conftest.err
3867 + rm -f conftest.er1
3868 + cat conftest.err >&5
3869 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3870 (exit $ac_status); } &&
3871 - { ac_try='test -s conftest$ac_exeext'
3872 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3873 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3874 + (eval $ac_try) 2>&5
3875 + ac_status=$?
3876 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
3877 + (exit $ac_status); }; } &&
3878 + { ac_try='test -s conftest$ac_exeext'
3879 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3880 (eval $ac_try) 2>&5
3881 ac_status=$?
3882 @@ -21149,7 +21854,8 @@
3884 eval "$as_ac_var=no"
3886 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3887 +rm -f conftest.err conftest.$ac_objext \
3888 + conftest$ac_exeext conftest.$ac_ext
3890 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
3891 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
3892 @@ -21167,7 +21873,6 @@
3893 ac_check_lib_save_LIBS=$LIBS
3894 LIBS="-lshadow $LIBS"
3895 cat >conftest.$ac_ext <<_ACEOF
3896 -#line $LINENO "configure"
3897 /* confdefs.h. */
3898 _ACEOF
3899 cat confdefs.h >>conftest.$ac_ext
3900 @@ -21191,11 +21896,20 @@
3901 _ACEOF
3902 rm -f conftest.$ac_objext conftest$ac_exeext
3903 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3904 - (eval $ac_link) 2>&5
3905 + (eval $ac_link) 2>conftest.er1
3906 ac_status=$?
3907 + grep -v '^ *+' conftest.er1 >conftest.err
3908 + rm -f conftest.er1
3909 + cat conftest.err >&5
3910 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3911 (exit $ac_status); } &&
3912 - { ac_try='test -s conftest$ac_exeext'
3913 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3914 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3915 + (eval $ac_try) 2>&5
3916 + ac_status=$?
3917 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
3918 + (exit $ac_status); }; } &&
3919 + { ac_try='test -s conftest$ac_exeext'
3920 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3921 (eval $ac_try) 2>&5
3922 ac_status=$?
3923 @@ -21208,7 +21922,8 @@
3925 ac_cv_lib_shadow_getspnam=no
3927 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3928 +rm -f conftest.err conftest.$ac_objext \
3929 + conftest$ac_exeext conftest.$ac_ext
3930 LIBS=$ac_check_lib_save_LIBS
3932 echo "$as_me:$LINENO: result: $ac_cv_lib_shadow_getspnam" >&5
3933 @@ -21244,7 +21959,6 @@
3934 ac_check_lib_save_LIBS=$LIBS
3935 LIBS="-lsec $LIBS"
3936 cat >conftest.$ac_ext <<_ACEOF
3937 -#line $LINENO "configure"
3938 /* confdefs.h. */
3939 _ACEOF
3940 cat confdefs.h >>conftest.$ac_ext
3941 @@ -21268,11 +21982,20 @@
3942 _ACEOF
3943 rm -f conftest.$ac_objext conftest$ac_exeext
3944 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3945 - (eval $ac_link) 2>&5
3946 + (eval $ac_link) 2>conftest.er1
3947 ac_status=$?
3948 + grep -v '^ *+' conftest.er1 >conftest.err
3949 + rm -f conftest.er1
3950 + cat conftest.err >&5
3951 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3952 (exit $ac_status); } &&
3953 - { ac_try='test -s conftest$ac_exeext'
3954 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3955 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3956 + (eval $ac_try) 2>&5
3957 + ac_status=$?
3958 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
3959 + (exit $ac_status); }; } &&
3960 + { ac_try='test -s conftest$ac_exeext'
3961 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3962 (eval $ac_try) 2>&5
3963 ac_status=$?
3964 @@ -21285,7 +22008,8 @@
3966 ac_cv_lib_sec_getprpwnam=no
3968 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3969 +rm -f conftest.err conftest.$ac_objext \
3970 + conftest$ac_exeext conftest.$ac_ext
3971 LIBS=$ac_check_lib_save_LIBS
3973 echo "$as_me:$LINENO: result: $ac_cv_lib_sec_getprpwnam" >&5
3974 @@ -21311,7 +22035,6 @@
3975 ac_check_lib_save_LIBS=$LIBS
3976 LIBS="-lauth $LIBS"
3977 cat >conftest.$ac_ext <<_ACEOF
3978 -#line $LINENO "configure"
3979 /* confdefs.h. */
3980 _ACEOF
3981 cat confdefs.h >>conftest.$ac_ext
3982 @@ -21335,11 +22058,20 @@
3983 _ACEOF
3984 rm -f conftest.$ac_objext conftest$ac_exeext
3985 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
3986 - (eval $ac_link) 2>&5
3987 + (eval $ac_link) 2>conftest.er1
3988 ac_status=$?
3989 + grep -v '^ *+' conftest.er1 >conftest.err
3990 + rm -f conftest.er1
3991 + cat conftest.err >&5
3992 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3993 (exit $ac_status); } &&
3994 - { ac_try='test -s conftest$ac_exeext'
3995 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
3996 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
3997 + (eval $ac_try) 2>&5
3998 + ac_status=$?
3999 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4000 + (exit $ac_status); }; } &&
4001 + { ac_try='test -s conftest$ac_exeext'
4002 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4003 (eval $ac_try) 2>&5
4004 ac_status=$?
4005 @@ -21352,7 +22084,8 @@
4007 ac_cv_lib_auth_getauthuid=no
4009 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4010 +rm -f conftest.err conftest.$ac_objext \
4011 + conftest$ac_exeext conftest.$ac_ext
4012 LIBS=$ac_check_lib_save_LIBS
4014 echo "$as_me:$LINENO: result: $ac_cv_lib_auth_getauthuid" >&5
4015 @@ -21389,7 +22122,6 @@
4016 ac_check_lib_save_LIBS=$LIBS
4017 LIBS="-lsec $LIBS"
4018 cat >conftest.$ac_ext <<_ACEOF
4019 -#line $LINENO "configure"
4020 /* confdefs.h. */
4021 _ACEOF
4022 cat confdefs.h >>conftest.$ac_ext
4023 @@ -21413,11 +22145,20 @@
4024 _ACEOF
4025 rm -f conftest.$ac_objext conftest$ac_exeext
4026 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4027 - (eval $ac_link) 2>&5
4028 + (eval $ac_link) 2>conftest.er1
4029 ac_status=$?
4030 + grep -v '^ *+' conftest.er1 >conftest.err
4031 + rm -f conftest.er1
4032 + cat conftest.err >&5
4033 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4034 (exit $ac_status); } &&
4035 - { ac_try='test -s conftest$ac_exeext'
4036 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
4037 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4038 + (eval $ac_try) 2>&5
4039 + ac_status=$?
4040 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4041 + (exit $ac_status); }; } &&
4042 + { ac_try='test -s conftest$ac_exeext'
4043 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4044 (eval $ac_try) 2>&5
4045 ac_status=$?
4046 @@ -21430,7 +22171,8 @@
4048 ac_cv_lib_sec_getspnam=no
4050 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4051 +rm -f conftest.err conftest.$ac_objext \
4052 + conftest$ac_exeext conftest.$ac_ext
4053 LIBS=$ac_check_lib_save_LIBS
4055 echo "$as_me:$LINENO: result: $ac_cv_lib_sec_getspnam" >&5
4056 @@ -21451,13 +22193,12 @@
4057 if test "$CHECKSHADOW" = "true"; then
4058 echo "$as_me:$LINENO: checking for getprpwnam in -lprot" >&5
4059 echo $ECHO_N "checking for getprpwnam in -lprot... $ECHO_C" >&6
4060 -if test "${ac_cv_lib_prot_getprpwnam_lx+set}" = set; then
4061 +if test "${ac_cv_lib_prot_getprpwnam+set}" = set; then
4062 echo $ECHO_N "(cached) $ECHO_C" >&6
4063 else
4064 ac_check_lib_save_LIBS=$LIBS
4065 LIBS="-lprot -lx $LIBS"
4066 cat >conftest.$ac_ext <<_ACEOF
4067 -#line $LINENO "configure"
4068 /* confdefs.h. */
4069 _ACEOF
4070 cat confdefs.h >>conftest.$ac_ext
4071 @@ -21481,29 +22222,39 @@
4072 _ACEOF
4073 rm -f conftest.$ac_objext conftest$ac_exeext
4074 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4075 - (eval $ac_link) 2>&5
4076 + (eval $ac_link) 2>conftest.er1
4077 ac_status=$?
4078 + grep -v '^ *+' conftest.er1 >conftest.err
4079 + rm -f conftest.er1
4080 + cat conftest.err >&5
4081 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4082 (exit $ac_status); } &&
4083 - { ac_try='test -s conftest$ac_exeext'
4084 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
4085 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4086 + (eval $ac_try) 2>&5
4087 + ac_status=$?
4088 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4089 + (exit $ac_status); }; } &&
4090 + { ac_try='test -s conftest$ac_exeext'
4091 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4092 (eval $ac_try) 2>&5
4093 ac_status=$?
4094 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4095 (exit $ac_status); }; }; then
4096 - ac_cv_lib_prot_getprpwnam_lx=yes
4097 + ac_cv_lib_prot_getprpwnam=yes
4098 else
4099 echo "$as_me: failed program was:" >&5
4100 sed 's/^/| /' conftest.$ac_ext >&5
4102 -ac_cv_lib_prot_getprpwnam_lx=no
4103 +ac_cv_lib_prot_getprpwnam=no
4105 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4106 +rm -f conftest.err conftest.$ac_objext \
4107 + conftest$ac_exeext conftest.$ac_ext
4108 LIBS=$ac_check_lib_save_LIBS
4110 -echo "$as_me:$LINENO: result: $ac_cv_lib_prot_getprpwnam_lx" >&5
4111 -echo "${ECHO_T}$ac_cv_lib_prot_getprpwnam_lx" >&6
4112 -if test $ac_cv_lib_prot_getprpwnam_lx = yes; then
4113 +echo "$as_me:$LINENO: result: $ac_cv_lib_prot_getprpwnam" >&5
4114 +echo "${ECHO_T}$ac_cv_lib_prot_getprpwnam" >&6
4115 +if test $ac_cv_lib_prot_getprpwnam = yes; then
4116 cat >>confdefs.h <<\_ACEOF
4117 #define HAVE_GETPRPWNAM 1
4118 _ACEOF
4119 @@ -21518,7 +22269,6 @@
4120 ac_check_lib_save_LIBS=$LIBS
4121 LIBS="-lgen $LIBS"
4122 cat >conftest.$ac_ext <<_ACEOF
4123 -#line $LINENO "configure"
4124 /* confdefs.h. */
4125 _ACEOF
4126 cat confdefs.h >>conftest.$ac_ext
4127 @@ -21542,11 +22292,20 @@
4128 _ACEOF
4129 rm -f conftest.$ac_objext conftest$ac_exeext
4130 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4131 - (eval $ac_link) 2>&5
4132 + (eval $ac_link) 2>conftest.er1
4133 ac_status=$?
4134 + grep -v '^ *+' conftest.er1 >conftest.err
4135 + rm -f conftest.er1
4136 + cat conftest.err >&5
4137 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4138 (exit $ac_status); } &&
4139 - { ac_try='test -s conftest$ac_exeext'
4140 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
4141 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4142 + (eval $ac_try) 2>&5
4143 + ac_status=$?
4144 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4145 + (exit $ac_status); }; } &&
4146 + { ac_try='test -s conftest$ac_exeext'
4147 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4148 (eval $ac_try) 2>&5
4149 ac_status=$?
4150 @@ -21559,7 +22318,8 @@
4152 ac_cv_lib_gen_getspnam=no
4154 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4155 +rm -f conftest.err conftest.$ac_objext \
4156 + conftest$ac_exeext conftest.$ac_ext
4157 LIBS=$ac_check_lib_save_LIBS
4159 echo "$as_me:$LINENO: result: $ac_cv_lib_gen_getspnam" >&5
4160 @@ -21592,7 +22352,6 @@
4161 ac_check_lib_save_LIBS=$LIBS
4162 LIBS="-lsec $LIBS"
4163 cat >conftest.$ac_ext <<_ACEOF
4164 -#line $LINENO "configure"
4165 /* confdefs.h. */
4166 _ACEOF
4167 cat confdefs.h >>conftest.$ac_ext
4168 @@ -21616,11 +22375,20 @@
4169 _ACEOF
4170 rm -f conftest.$ac_objext conftest$ac_exeext
4171 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4172 - (eval $ac_link) 2>&5
4173 + (eval $ac_link) 2>conftest.er1
4174 ac_status=$?
4175 + grep -v '^ *+' conftest.er1 >conftest.err
4176 + rm -f conftest.er1
4177 + cat conftest.err >&5
4178 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4179 (exit $ac_status); } &&
4180 - { ac_try='test -s conftest$ac_exeext'
4181 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
4182 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4183 + (eval $ac_try) 2>&5
4184 + ac_status=$?
4185 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4186 + (exit $ac_status); }; } &&
4187 + { ac_try='test -s conftest$ac_exeext'
4188 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4189 (eval $ac_try) 2>&5
4190 ac_status=$?
4191 @@ -21633,7 +22401,8 @@
4193 ac_cv_lib_sec_getspnam=no
4195 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4196 +rm -f conftest.err conftest.$ac_objext \
4197 + conftest$ac_exeext conftest.$ac_ext
4198 LIBS=$ac_check_lib_save_LIBS
4200 echo "$as_me:$LINENO: result: $ac_cv_lib_sec_getspnam" >&5
4201 @@ -21660,7 +22429,6 @@
4202 ac_check_lib_save_LIBS=$LIBS
4203 LIBS="-lc89 $LIBS"
4204 cat >conftest.$ac_ext <<_ACEOF
4205 -#line $LINENO "configure"
4206 /* confdefs.h. */
4207 _ACEOF
4208 cat confdefs.h >>conftest.$ac_ext
4209 @@ -21684,11 +22452,20 @@
4210 _ACEOF
4211 rm -f conftest.$ac_objext conftest$ac_exeext
4212 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4213 - (eval $ac_link) 2>&5
4214 + (eval $ac_link) 2>conftest.er1
4215 ac_status=$?
4216 + grep -v '^ *+' conftest.er1 >conftest.err
4217 + rm -f conftest.er1
4218 + cat conftest.err >&5
4219 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4220 (exit $ac_status); } &&
4221 - { ac_try='test -s conftest$ac_exeext'
4222 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
4223 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4224 + (eval $ac_try) 2>&5
4225 + ac_status=$?
4226 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4227 + (exit $ac_status); }; } &&
4228 + { ac_try='test -s conftest$ac_exeext'
4229 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4230 (eval $ac_try) 2>&5
4231 ac_status=$?
4232 @@ -21701,7 +22478,8 @@
4234 ac_cv_lib_c89_strcasecmp=no
4236 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4237 +rm -f conftest.err conftest.$ac_objext \
4238 + conftest$ac_exeext conftest.$ac_ext
4239 LIBS=$ac_check_lib_save_LIBS
4241 echo "$as_me:$LINENO: result: $ac_cv_lib_c89_strcasecmp" >&5
4242 @@ -21839,21 +22617,28 @@
4243 echo $ECHO_N "(cached) $ECHO_C" >&6
4244 else
4245 cat >conftest.$ac_ext <<_ACEOF
4246 -#line $LINENO "configure"
4247 /* confdefs.h. */
4248 _ACEOF
4249 cat confdefs.h >>conftest.$ac_ext
4250 cat >>conftest.$ac_ext <<_ACEOF
4251 /* end confdefs.h. */
4252 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
4253 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
4254 +#define $ac_func innocuous_$ac_func
4256 /* System header to define __stub macros and hopefully few prototypes,
4257 which can conflict with char $ac_func (); below.
4258 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
4259 <limits.h> exists even on freestanding compilers. */
4261 #ifdef __STDC__
4262 # include <limits.h>
4263 #else
4264 # include <assert.h>
4265 #endif
4267 +#undef $ac_func
4269 /* Override any gcc2 internal prototype to avoid an error. */
4270 #ifdef __cplusplus
4271 extern "C"
4272 @@ -21884,11 +22669,20 @@
4273 _ACEOF
4274 rm -f conftest.$ac_objext conftest$ac_exeext
4275 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4276 - (eval $ac_link) 2>&5
4277 + (eval $ac_link) 2>conftest.er1
4278 ac_status=$?
4279 + grep -v '^ *+' conftest.er1 >conftest.err
4280 + rm -f conftest.er1
4281 + cat conftest.err >&5
4282 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4283 (exit $ac_status); } &&
4284 - { ac_try='test -s conftest$ac_exeext'
4285 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
4286 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4287 + (eval $ac_try) 2>&5
4288 + ac_status=$?
4289 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4290 + (exit $ac_status); }; } &&
4291 + { ac_try='test -s conftest$ac_exeext'
4292 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4293 (eval $ac_try) 2>&5
4294 ac_status=$?
4295 @@ -21901,7 +22695,8 @@
4297 eval "$as_ac_var=no"
4299 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4300 +rm -f conftest.err conftest.$ac_objext \
4301 + conftest$ac_exeext conftest.$ac_ext
4303 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
4304 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
4305 @@ -21919,7 +22714,6 @@
4306 ac_check_lib_save_LIBS=$LIBS
4307 LIBS="-lgen $LIBS"
4308 cat >conftest.$ac_ext <<_ACEOF
4309 -#line $LINENO "configure"
4310 /* confdefs.h. */
4311 _ACEOF
4312 cat confdefs.h >>conftest.$ac_ext
4313 @@ -21943,11 +22737,20 @@
4314 _ACEOF
4315 rm -f conftest.$ac_objext conftest$ac_exeext
4316 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4317 - (eval $ac_link) 2>&5
4318 + (eval $ac_link) 2>conftest.er1
4319 ac_status=$?
4320 + grep -v '^ *+' conftest.er1 >conftest.err
4321 + rm -f conftest.er1
4322 + cat conftest.err >&5
4323 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4324 (exit $ac_status); } &&
4325 - { ac_try='test -s conftest$ac_exeext'
4326 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
4327 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4328 + (eval $ac_try) 2>&5
4329 + ac_status=$?
4330 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4331 + (exit $ac_status); }; } &&
4332 + { ac_try='test -s conftest$ac_exeext'
4333 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4334 (eval $ac_try) 2>&5
4335 ac_status=$?
4336 @@ -21960,7 +22763,8 @@
4338 ac_cv_lib_gen_getspnam=no
4340 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4341 +rm -f conftest.err conftest.$ac_objext \
4342 + conftest$ac_exeext conftest.$ac_ext
4343 LIBS=$ac_check_lib_save_LIBS
4345 echo "$as_me:$LINENO: result: $ac_cv_lib_gen_getspnam" >&5
4346 @@ -21983,21 +22787,28 @@
4347 echo $ECHO_N "(cached) $ECHO_C" >&6
4348 else
4349 cat >conftest.$ac_ext <<_ACEOF
4350 -#line $LINENO "configure"
4351 /* confdefs.h. */
4352 _ACEOF
4353 cat confdefs.h >>conftest.$ac_ext
4354 cat >>conftest.$ac_ext <<_ACEOF
4355 /* end confdefs.h. */
4356 +/* Define getprpwnam to an innocuous variant, in case <limits.h> declares getprpwnam.
4357 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
4358 +#define getprpwnam innocuous_getprpwnam
4360 /* System header to define __stub macros and hopefully few prototypes,
4361 which can conflict with char getprpwnam (); below.
4362 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
4363 <limits.h> exists even on freestanding compilers. */
4365 #ifdef __STDC__
4366 # include <limits.h>
4367 #else
4368 # include <assert.h>
4369 #endif
4371 +#undef getprpwnam
4373 /* Override any gcc2 internal prototype to avoid an error. */
4374 #ifdef __cplusplus
4375 extern "C"
4376 @@ -22028,11 +22839,20 @@
4377 _ACEOF
4378 rm -f conftest.$ac_objext conftest$ac_exeext
4379 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4380 - (eval $ac_link) 2>&5
4381 + (eval $ac_link) 2>conftest.er1
4382 ac_status=$?
4383 + grep -v '^ *+' conftest.er1 >conftest.err
4384 + rm -f conftest.er1
4385 + cat conftest.err >&5
4386 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4387 (exit $ac_status); } &&
4388 - { ac_try='test -s conftest$ac_exeext'
4389 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
4390 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4391 + (eval $ac_try) 2>&5
4392 + ac_status=$?
4393 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4394 + (exit $ac_status); }; } &&
4395 + { ac_try='test -s conftest$ac_exeext'
4396 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4397 (eval $ac_try) 2>&5
4398 ac_status=$?
4399 @@ -22045,7 +22865,8 @@
4401 ac_cv_func_getprpwnam=no
4403 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4404 +rm -f conftest.err conftest.$ac_objext \
4405 + conftest$ac_exeext conftest.$ac_ext
4407 echo "$as_me:$LINENO: result: $ac_cv_func_getprpwnam" >&5
4408 echo "${ECHO_T}$ac_cv_func_getprpwnam" >&6
4409 @@ -22061,7 +22882,6 @@
4410 ac_check_lib_save_LIBS=$LIBS
4411 LIBS="-lsec $LIBS"
4412 cat >conftest.$ac_ext <<_ACEOF
4413 -#line $LINENO "configure"
4414 /* confdefs.h. */
4415 _ACEOF
4416 cat confdefs.h >>conftest.$ac_ext
4417 @@ -22085,11 +22905,20 @@
4418 _ACEOF
4419 rm -f conftest.$ac_objext conftest$ac_exeext
4420 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4421 - (eval $ac_link) 2>&5
4422 + (eval $ac_link) 2>conftest.er1
4423 ac_status=$?
4424 + grep -v '^ *+' conftest.er1 >conftest.err
4425 + rm -f conftest.er1
4426 + cat conftest.err >&5
4427 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4428 (exit $ac_status); } &&
4429 - { ac_try='test -s conftest$ac_exeext'
4430 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
4431 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4432 + (eval $ac_try) 2>&5
4433 + ac_status=$?
4434 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4435 + (exit $ac_status); }; } &&
4436 + { ac_try='test -s conftest$ac_exeext'
4437 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4438 (eval $ac_try) 2>&5
4439 ac_status=$?
4440 @@ -22102,7 +22931,8 @@
4442 ac_cv_lib_sec_getprpwnam=no
4444 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4445 +rm -f conftest.err conftest.$ac_objext \
4446 + conftest$ac_exeext conftest.$ac_ext
4447 LIBS=$ac_check_lib_save_LIBS
4449 echo "$as_me:$LINENO: result: $ac_cv_lib_sec_getprpwnam" >&5
4450 @@ -22121,7 +22951,6 @@
4451 ac_check_lib_save_LIBS=$LIBS
4452 LIBS="-lsecurity $LIBS"
4453 cat >conftest.$ac_ext <<_ACEOF
4454 -#line $LINENO "configure"
4455 /* confdefs.h. */
4456 _ACEOF
4457 cat confdefs.h >>conftest.$ac_ext
4458 @@ -22145,11 +22974,20 @@
4459 _ACEOF
4460 rm -f conftest.$ac_objext conftest$ac_exeext
4461 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4462 - (eval $ac_link) 2>&5
4463 + (eval $ac_link) 2>conftest.er1
4464 ac_status=$?
4465 + grep -v '^ *+' conftest.er1 >conftest.err
4466 + rm -f conftest.er1
4467 + cat conftest.err >&5
4468 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4469 (exit $ac_status); } &&
4470 - { ac_try='test -s conftest$ac_exeext'
4471 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
4472 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4473 + (eval $ac_try) 2>&5
4474 + ac_status=$?
4475 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4476 + (exit $ac_status); }; } &&
4477 + { ac_try='test -s conftest$ac_exeext'
4478 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4479 (eval $ac_try) 2>&5
4480 ac_status=$?
4481 @@ -22162,7 +23000,8 @@
4483 ac_cv_lib_security_getprpwnam=no
4485 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4486 +rm -f conftest.err conftest.$ac_objext \
4487 + conftest$ac_exeext conftest.$ac_ext
4488 LIBS=$ac_check_lib_save_LIBS
4490 echo "$as_me:$LINENO: result: $ac_cv_lib_security_getprpwnam" >&5
4491 @@ -22181,7 +23020,6 @@
4492 ac_check_lib_save_LIBS=$LIBS
4493 LIBS="-lprot $LIBS"
4494 cat >conftest.$ac_ext <<_ACEOF
4495 -#line $LINENO "configure"
4496 /* confdefs.h. */
4497 _ACEOF
4498 cat confdefs.h >>conftest.$ac_ext
4499 @@ -22205,11 +23043,20 @@
4500 _ACEOF
4501 rm -f conftest.$ac_objext conftest$ac_exeext
4502 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4503 - (eval $ac_link) 2>&5
4504 + (eval $ac_link) 2>conftest.er1
4505 ac_status=$?
4506 + grep -v '^ *+' conftest.er1 >conftest.err
4507 + rm -f conftest.er1
4508 + cat conftest.err >&5
4509 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4510 (exit $ac_status); } &&
4511 - { ac_try='test -s conftest$ac_exeext'
4512 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
4513 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4514 + (eval $ac_try) 2>&5
4515 + ac_status=$?
4516 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4517 + (exit $ac_status); }; } &&
4518 + { ac_try='test -s conftest$ac_exeext'
4519 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4520 (eval $ac_try) 2>&5
4521 ac_status=$?
4522 @@ -22222,7 +23069,8 @@
4524 ac_cv_lib_prot_getprpwnam=no
4526 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4527 +rm -f conftest.err conftest.$ac_objext \
4528 + conftest$ac_exeext conftest.$ac_ext
4529 LIBS=$ac_check_lib_save_LIBS
4531 echo "$as_me:$LINENO: result: $ac_cv_lib_prot_getprpwnam" >&5
4532 @@ -22250,7 +23098,6 @@
4533 else
4534 ac_pattern="Autoconf.*'x'"
4535 cat >conftest.$ac_ext <<_ACEOF
4536 -#line $LINENO "configure"
4537 /* confdefs.h. */
4538 _ACEOF
4539 cat confdefs.h >>conftest.$ac_ext
4540 @@ -22270,7 +23117,6 @@
4542 if test $ac_cv_prog_gcc_traditional = no; then
4543 cat >conftest.$ac_ext <<_ACEOF
4544 -#line $LINENO "configure"
4545 /* confdefs.h. */
4546 _ACEOF
4547 cat confdefs.h >>conftest.$ac_ext
4548 @@ -22300,7 +23146,6 @@
4549 echo $ECHO_N "(cached) $ECHO_C" >&6
4550 else
4551 cat >conftest.$ac_ext <<_ACEOF
4552 -#line $LINENO "configure"
4553 /* confdefs.h. */
4554 _ACEOF
4555 cat confdefs.h >>conftest.$ac_ext
4556 @@ -22363,11 +23208,20 @@
4557 _ACEOF
4558 rm -f conftest.$ac_objext
4559 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4560 - (eval $ac_compile) 2>&5
4561 + (eval $ac_compile) 2>conftest.er1
4562 ac_status=$?
4563 + grep -v '^ *+' conftest.er1 >conftest.err
4564 + rm -f conftest.er1
4565 + cat conftest.err >&5
4566 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4567 (exit $ac_status); } &&
4568 - { ac_try='test -s conftest.$ac_objext'
4569 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
4570 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4571 + (eval $ac_try) 2>&5
4572 + ac_status=$?
4573 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4574 + (exit $ac_status); }; } &&
4575 + { ac_try='test -s conftest.$ac_objext'
4576 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4577 (eval $ac_try) 2>&5
4578 ac_status=$?
4579 @@ -22380,7 +23234,7 @@
4581 ac_cv_c_const=no
4583 -rm -f conftest.$ac_objext conftest.$ac_ext
4584 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4586 echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5
4587 echo "${ECHO_T}$ac_cv_c_const" >&6
4588 @@ -22398,7 +23252,6 @@
4589 echo $ECHO_N "(cached) $ECHO_C" >&6
4590 else
4591 cat >conftest.$ac_ext <<_ACEOF
4592 -#line $LINENO "configure"
4593 /* confdefs.h. */
4594 _ACEOF
4595 cat confdefs.h >>conftest.$ac_ext
4596 @@ -22417,11 +23270,20 @@
4597 _ACEOF
4598 rm -f conftest.$ac_objext
4599 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4600 - (eval $ac_compile) 2>&5
4601 + (eval $ac_compile) 2>conftest.er1
4602 ac_status=$?
4603 + grep -v '^ *+' conftest.er1 >conftest.err
4604 + rm -f conftest.er1
4605 + cat conftest.err >&5
4606 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4607 (exit $ac_status); } &&
4608 - { ac_try='test -s conftest.$ac_objext'
4609 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
4610 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4611 + (eval $ac_try) 2>&5
4612 + ac_status=$?
4613 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4614 + (exit $ac_status); }; } &&
4615 + { ac_try='test -s conftest.$ac_objext'
4616 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4617 (eval $ac_try) 2>&5
4618 ac_status=$?
4619 @@ -22434,7 +23296,7 @@
4621 ac_cv_c_volatile=no
4623 -rm -f conftest.$ac_objext conftest.$ac_ext
4624 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4626 echo "$as_me:$LINENO: result: $ac_cv_c_volatile" >&5
4627 echo "${ECHO_T}$ac_cv_c_volatile" >&6
4628 @@ -22686,7 +23548,6 @@
4629 echo $ECHO_N "(cached) $ECHO_C" >&6
4630 else
4631 cat >conftest.$ac_ext <<_ACEOF
4632 -#line $LINENO "configure"
4633 /* confdefs.h. */
4634 _ACEOF
4635 cat confdefs.h >>conftest.$ac_ext
4636 @@ -22707,11 +23568,20 @@
4637 _ACEOF
4638 rm -f conftest.$ac_objext
4639 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4640 - (eval $ac_compile) 2>&5
4641 + (eval $ac_compile) 2>conftest.er1
4642 ac_status=$?
4643 + grep -v '^ *+' conftest.er1 >conftest.err
4644 + rm -f conftest.er1
4645 + cat conftest.err >&5
4646 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4647 (exit $ac_status); } &&
4648 - { ac_try='test -s conftest.$ac_objext'
4649 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
4650 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4651 + (eval $ac_try) 2>&5
4652 + ac_status=$?
4653 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4654 + (exit $ac_status); }; } &&
4655 + { ac_try='test -s conftest.$ac_objext'
4656 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4657 (eval $ac_try) 2>&5
4658 ac_status=$?
4659 @@ -22724,12 +23594,11 @@
4661 ac_cv_header_stdc=no
4663 -rm -f conftest.$ac_objext conftest.$ac_ext
4664 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4666 if test $ac_cv_header_stdc = yes; then
4667 # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
4668 cat >conftest.$ac_ext <<_ACEOF
4669 -#line $LINENO "configure"
4670 /* confdefs.h. */
4671 _ACEOF
4672 cat confdefs.h >>conftest.$ac_ext
4673 @@ -22751,7 +23620,6 @@
4674 if test $ac_cv_header_stdc = yes; then
4675 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
4676 cat >conftest.$ac_ext <<_ACEOF
4677 -#line $LINENO "configure"
4678 /* confdefs.h. */
4679 _ACEOF
4680 cat confdefs.h >>conftest.$ac_ext
4681 @@ -22776,7 +23644,6 @@
4683 else
4684 cat >conftest.$ac_ext <<_ACEOF
4685 -#line $LINENO "configure"
4686 /* confdefs.h. */
4687 _ACEOF
4688 cat confdefs.h >>conftest.$ac_ext
4689 @@ -22788,9 +23655,9 @@
4690 # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
4691 #else
4692 # define ISLOWER(c) \
4693 - (('a' <= (c) && (c) <= 'i') \
4694 - || ('j' <= (c) && (c) <= 'r') \
4695 - || ('s' <= (c) && (c) <= 'z'))
4696 + (('a' <= (c) && (c) <= 'i') \
4697 + || ('j' <= (c) && (c) <= 'r') \
4698 + || ('s' <= (c) && (c) <= 'z'))
4699 # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
4700 #endif
4702 @@ -22801,7 +23668,7 @@
4703 int i;
4704 for (i = 0; i < 256; i++)
4705 if (XOR (islower (i), ISLOWER (i))
4706 - || toupper (i) != TOUPPER (i))
4707 + || toupper (i) != TOUPPER (i))
4708 exit(2);
4709 exit (0);
4711 @@ -22826,7 +23693,7 @@
4712 ( exit $ac_status )
4713 ac_cv_header_stdc=no
4715 -rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
4716 +rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
4720 @@ -22854,7 +23721,6 @@
4721 echo $ECHO_N "(cached) $ECHO_C" >&6
4722 else
4723 cat >conftest.$ac_ext <<_ACEOF
4724 -#line $LINENO "configure"
4725 /* confdefs.h. */
4726 _ACEOF
4727 cat confdefs.h >>conftest.$ac_ext
4728 @@ -22874,11 +23740,20 @@
4729 _ACEOF
4730 rm -f conftest.$ac_objext
4731 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4732 - (eval $ac_compile) 2>&5
4733 + (eval $ac_compile) 2>conftest.er1
4734 ac_status=$?
4735 + grep -v '^ *+' conftest.er1 >conftest.err
4736 + rm -f conftest.er1
4737 + cat conftest.err >&5
4738 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4739 (exit $ac_status); } &&
4740 - { ac_try='test -s conftest.$ac_objext'
4741 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
4742 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4743 + (eval $ac_try) 2>&5
4744 + ac_status=$?
4745 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4746 + (exit $ac_status); }; } &&
4747 + { ac_try='test -s conftest.$ac_objext'
4748 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4749 (eval $ac_try) 2>&5
4750 ac_status=$?
4751 @@ -22891,7 +23766,7 @@
4753 eval "$as_ac_Header=no"
4755 -rm -f conftest.$ac_objext conftest.$ac_ext
4756 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4758 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
4759 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
4760 @@ -22914,7 +23789,6 @@
4761 ac_func_search_save_LIBS=$LIBS
4762 ac_cv_search_opendir=no
4763 cat >conftest.$ac_ext <<_ACEOF
4764 -#line $LINENO "configure"
4765 /* confdefs.h. */
4766 _ACEOF
4767 cat confdefs.h >>conftest.$ac_ext
4768 @@ -22938,11 +23812,20 @@
4769 _ACEOF
4770 rm -f conftest.$ac_objext conftest$ac_exeext
4771 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4772 - (eval $ac_link) 2>&5
4773 + (eval $ac_link) 2>conftest.er1
4774 ac_status=$?
4775 + grep -v '^ *+' conftest.er1 >conftest.err
4776 + rm -f conftest.er1
4777 + cat conftest.err >&5
4778 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4779 (exit $ac_status); } &&
4780 - { ac_try='test -s conftest$ac_exeext'
4781 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
4782 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4783 + (eval $ac_try) 2>&5
4784 + ac_status=$?
4785 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4786 + (exit $ac_status); }; } &&
4787 + { ac_try='test -s conftest$ac_exeext'
4788 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4789 (eval $ac_try) 2>&5
4790 ac_status=$?
4791 @@ -22954,12 +23837,12 @@
4792 sed 's/^/| /' conftest.$ac_ext >&5
4795 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4796 +rm -f conftest.err conftest.$ac_objext \
4797 + conftest$ac_exeext conftest.$ac_ext
4798 if test "$ac_cv_search_opendir" = no; then
4799 for ac_lib in dir; do
4800 LIBS="-l$ac_lib $ac_func_search_save_LIBS"
4801 cat >conftest.$ac_ext <<_ACEOF
4802 -#line $LINENO "configure"
4803 /* confdefs.h. */
4804 _ACEOF
4805 cat confdefs.h >>conftest.$ac_ext
4806 @@ -22983,11 +23866,20 @@
4807 _ACEOF
4808 rm -f conftest.$ac_objext conftest$ac_exeext
4809 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4810 - (eval $ac_link) 2>&5
4811 + (eval $ac_link) 2>conftest.er1
4812 ac_status=$?
4813 - echo "$as_me:$LINENO: \$? = $ac_status" >&5
4814 + grep -v '^ *+' conftest.er1 >conftest.err
4815 + rm -f conftest.er1
4816 + cat conftest.err >&5
4817 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4818 (exit $ac_status); } &&
4819 - { ac_try='test -s conftest$ac_exeext'
4820 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
4821 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4822 + (eval $ac_try) 2>&5
4823 + ac_status=$?
4824 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4825 + (exit $ac_status); }; } &&
4826 + { ac_try='test -s conftest$ac_exeext'
4827 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4828 (eval $ac_try) 2>&5
4829 ac_status=$?
4830 @@ -23000,7 +23892,8 @@
4831 sed 's/^/| /' conftest.$ac_ext >&5
4834 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4835 +rm -f conftest.err conftest.$ac_objext \
4836 + conftest$ac_exeext conftest.$ac_ext
4837 done
4839 LIBS=$ac_func_search_save_LIBS
4840 @@ -23021,7 +23914,6 @@
4841 ac_func_search_save_LIBS=$LIBS
4842 ac_cv_search_opendir=no
4843 cat >conftest.$ac_ext <<_ACEOF
4844 -#line $LINENO "configure"
4845 /* confdefs.h. */
4846 _ACEOF
4847 cat confdefs.h >>conftest.$ac_ext
4848 @@ -23045,11 +23937,20 @@
4849 _ACEOF
4850 rm -f conftest.$ac_objext conftest$ac_exeext
4851 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4852 - (eval $ac_link) 2>&5
4853 + (eval $ac_link) 2>conftest.er1
4854 ac_status=$?
4855 + grep -v '^ *+' conftest.er1 >conftest.err
4856 + rm -f conftest.er1
4857 + cat conftest.err >&5
4858 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4859 (exit $ac_status); } &&
4860 - { ac_try='test -s conftest$ac_exeext'
4861 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
4862 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4863 + (eval $ac_try) 2>&5
4864 + ac_status=$?
4865 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4866 + (exit $ac_status); }; } &&
4867 + { ac_try='test -s conftest$ac_exeext'
4868 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4869 (eval $ac_try) 2>&5
4870 ac_status=$?
4871 @@ -23061,12 +23962,12 @@
4872 sed 's/^/| /' conftest.$ac_ext >&5
4875 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4876 +rm -f conftest.err conftest.$ac_objext \
4877 + conftest$ac_exeext conftest.$ac_ext
4878 if test "$ac_cv_search_opendir" = no; then
4879 for ac_lib in x; do
4880 LIBS="-l$ac_lib $ac_func_search_save_LIBS"
4881 cat >conftest.$ac_ext <<_ACEOF
4882 -#line $LINENO "configure"
4883 /* confdefs.h. */
4884 _ACEOF
4885 cat confdefs.h >>conftest.$ac_ext
4886 @@ -23090,11 +23991,20 @@
4887 _ACEOF
4888 rm -f conftest.$ac_objext conftest$ac_exeext
4889 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
4890 - (eval $ac_link) 2>&5
4891 + (eval $ac_link) 2>conftest.er1
4892 ac_status=$?
4893 + grep -v '^ *+' conftest.er1 >conftest.err
4894 + rm -f conftest.er1
4895 + cat conftest.err >&5
4896 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4897 (exit $ac_status); } &&
4898 - { ac_try='test -s conftest$ac_exeext'
4899 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
4900 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4901 + (eval $ac_try) 2>&5
4902 + ac_status=$?
4903 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4904 + (exit $ac_status); }; } &&
4905 + { ac_try='test -s conftest$ac_exeext'
4906 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4907 (eval $ac_try) 2>&5
4908 ac_status=$?
4909 @@ -23107,7 +24017,8 @@
4910 sed 's/^/| /' conftest.$ac_ext >&5
4913 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4914 +rm -f conftest.err conftest.$ac_objext \
4915 + conftest$ac_exeext conftest.$ac_ext
4916 done
4918 LIBS=$ac_func_search_save_LIBS
4919 @@ -23144,7 +24055,6 @@
4920 echo "$as_me:$LINENO: checking $ac_header usability" >&5
4921 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
4922 cat >conftest.$ac_ext <<_ACEOF
4923 -#line $LINENO "configure"
4924 /* confdefs.h. */
4925 _ACEOF
4926 cat confdefs.h >>conftest.$ac_ext
4927 @@ -23155,11 +24065,20 @@
4928 _ACEOF
4929 rm -f conftest.$ac_objext
4930 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4931 - (eval $ac_compile) 2>&5
4932 + (eval $ac_compile) 2>conftest.er1
4933 ac_status=$?
4934 + grep -v '^ *+' conftest.er1 >conftest.err
4935 + rm -f conftest.er1
4936 + cat conftest.err >&5
4937 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4938 (exit $ac_status); } &&
4939 - { ac_try='test -s conftest.$ac_objext'
4940 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
4941 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4942 + (eval $ac_try) 2>&5
4943 + ac_status=$?
4944 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
4945 + (exit $ac_status); }; } &&
4946 + { ac_try='test -s conftest.$ac_objext'
4947 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
4948 (eval $ac_try) 2>&5
4949 ac_status=$?
4950 @@ -23172,7 +24091,7 @@
4952 ac_header_compiler=no
4954 -rm -f conftest.$ac_objext conftest.$ac_ext
4955 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
4956 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
4957 echo "${ECHO_T}$ac_header_compiler" >&6
4959 @@ -23180,7 +24099,6 @@
4960 echo "$as_me:$LINENO: checking $ac_header presence" >&5
4961 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
4962 cat >conftest.$ac_ext <<_ACEOF
4963 -#line $LINENO "configure"
4964 /* confdefs.h. */
4965 _ACEOF
4966 cat confdefs.h >>conftest.$ac_ext
4967 @@ -23198,6 +24116,7 @@
4968 (exit $ac_status); } >/dev/null; then
4969 if test -s conftest.err; then
4970 ac_cpp_err=$ac_c_preproc_warn_flag
4971 + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
4972 else
4973 ac_cpp_err=
4975 @@ -23217,33 +24136,32 @@
4976 echo "${ECHO_T}$ac_header_preproc" >&6
4978 # So? What about this header?
4979 -case $ac_header_compiler:$ac_header_preproc in
4980 - yes:no )
4981 +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
4982 + yes:no: )
4983 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
4984 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
4985 - { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
4986 -echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
4988 - cat <<\_ASBOX
4989 -## ------------------------------------ ##
4990 -## Report this to bug-autoconf@gnu.org. ##
4991 -## ------------------------------------ ##
4992 -_ASBOX
4993 - ) |
4994 - sed "s/^/$as_me: WARNING: /" >&2
4995 + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
4996 +echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
4997 + ac_header_preproc=yes
4999 - no:yes )
5000 + no:yes:* )
5001 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
5002 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
5003 - { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
5004 -echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
5005 + { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
5006 +echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
5007 + { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
5008 +echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
5009 + { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5
5010 +echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}
5011 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
5012 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
5013 + { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
5014 +echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
5016 cat <<\_ASBOX
5017 -## ------------------------------------ ##
5018 -## Report this to bug-autoconf@gnu.org. ##
5019 -## ------------------------------------ ##
5020 +## ------------------------------- ##
5021 +## Report this to the sudo lists. ##
5022 +## ------------------------------- ##
5023 _ASBOX
5025 sed "s/^/$as_me: WARNING: /" >&2
5026 @@ -23254,7 +24172,7 @@
5027 if eval "test \"\${$as_ac_Header+set}\" = set"; then
5028 echo $ECHO_N "(cached) $ECHO_C" >&6
5029 else
5030 - eval "$as_ac_Header=$ac_header_preproc"
5031 + eval "$as_ac_Header=\$ac_header_preproc"
5033 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
5034 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
5035 @@ -23286,7 +24204,6 @@
5036 echo "$as_me:$LINENO: checking $ac_header usability" >&5
5037 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
5038 cat >conftest.$ac_ext <<_ACEOF
5039 -#line $LINENO "configure"
5040 /* confdefs.h. */
5041 _ACEOF
5042 cat confdefs.h >>conftest.$ac_ext
5043 @@ -23297,11 +24214,20 @@
5044 _ACEOF
5045 rm -f conftest.$ac_objext
5046 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5047 - (eval $ac_compile) 2>&5
5048 + (eval $ac_compile) 2>conftest.er1
5049 ac_status=$?
5050 + grep -v '^ *+' conftest.er1 >conftest.err
5051 + rm -f conftest.er1
5052 + cat conftest.err >&5
5053 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5054 (exit $ac_status); } &&
5055 - { ac_try='test -s conftest.$ac_objext'
5056 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
5057 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5058 + (eval $ac_try) 2>&5
5059 + ac_status=$?
5060 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
5061 + (exit $ac_status); }; } &&
5062 + { ac_try='test -s conftest.$ac_objext'
5063 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5064 (eval $ac_try) 2>&5
5065 ac_status=$?
5066 @@ -23314,7 +24240,7 @@
5068 ac_header_compiler=no
5070 -rm -f conftest.$ac_objext conftest.$ac_ext
5071 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
5072 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
5073 echo "${ECHO_T}$ac_header_compiler" >&6
5075 @@ -23322,7 +24248,6 @@
5076 echo "$as_me:$LINENO: checking $ac_header presence" >&5
5077 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
5078 cat >conftest.$ac_ext <<_ACEOF
5079 -#line $LINENO "configure"
5080 /* confdefs.h. */
5081 _ACEOF
5082 cat confdefs.h >>conftest.$ac_ext
5083 @@ -23340,6 +24265,7 @@
5084 (exit $ac_status); } >/dev/null; then
5085 if test -s conftest.err; then
5086 ac_cpp_err=$ac_c_preproc_warn_flag
5087 + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
5088 else
5089 ac_cpp_err=
5091 @@ -23359,33 +24285,32 @@
5092 echo "${ECHO_T}$ac_header_preproc" >&6
5094 # So? What about this header?
5095 -case $ac_header_compiler:$ac_header_preproc in
5096 - yes:no )
5097 +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
5098 + yes:no: )
5099 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
5100 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
5101 - { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
5102 -echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
5104 - cat <<\_ASBOX
5105 -## ------------------------------------ ##
5106 -## Report this to bug-autoconf@gnu.org. ##
5107 -## ------------------------------------ ##
5108 -_ASBOX
5109 - ) |
5110 - sed "s/^/$as_me: WARNING: /" >&2
5111 + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
5112 +echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
5113 + ac_header_preproc=yes
5115 - no:yes )
5116 + no:yes:* )
5117 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
5118 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
5119 - { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
5120 -echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
5121 + { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
5122 +echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
5123 + { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
5124 +echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
5125 + { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5
5126 +echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}
5127 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
5128 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
5129 + { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
5130 +echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
5132 cat <<\_ASBOX
5133 -## ------------------------------------ ##
5134 -## Report this to bug-autoconf@gnu.org. ##
5135 -## ------------------------------------ ##
5136 +## ------------------------------- ##
5137 +## Report this to the sudo lists. ##
5138 +## ------------------------------- ##
5139 _ASBOX
5141 sed "s/^/$as_me: WARNING: /" >&2
5142 @@ -23396,7 +24321,7 @@
5143 if eval "test \"\${$as_ac_Header+set}\" = set"; then
5144 echo $ECHO_N "(cached) $ECHO_C" >&6
5145 else
5146 - eval "$as_ac_Header=$ac_header_preproc"
5147 + eval "$as_ac_Header=\$ac_header_preproc"
5149 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
5150 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
5151 @@ -23408,7 +24333,14 @@
5152 _ACEOF
5154 else
5155 - LIBOBJS="$LIBOBJS err.$ac_objext"
5156 + case $LIBOBJS in
5157 + "err.$ac_objext" | \
5158 + *" err.$ac_objext" | \
5159 + "err.$ac_objext "* | \
5160 + *" err.$ac_objext "* ) ;;
5161 + *) LIBOBJS="$LIBOBJS err.$ac_objext" ;;
5162 +esac
5166 done
5167 @@ -23420,7 +24352,6 @@
5168 echo $ECHO_N "(cached) $ECHO_C" >&6
5169 else
5170 cat >conftest.$ac_ext <<_ACEOF
5171 -#line $LINENO "configure"
5172 /* confdefs.h. */
5173 _ACEOF
5174 cat confdefs.h >>conftest.$ac_ext
5175 @@ -23441,11 +24372,20 @@
5176 _ACEOF
5177 rm -f conftest.$ac_objext conftest$ac_exeext
5178 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5179 - (eval $ac_link) 2>&5
5180 + (eval $ac_link) 2>conftest.er1
5181 ac_status=$?
5182 + grep -v '^ *+' conftest.er1 >conftest.err
5183 + rm -f conftest.er1
5184 + cat conftest.err >&5
5185 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5186 (exit $ac_status); } &&
5187 - { ac_try='test -s conftest$ac_exeext'
5188 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
5189 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5190 + (eval $ac_try) 2>&5
5191 + ac_status=$?
5192 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
5193 + (exit $ac_status); }; } &&
5194 + { ac_try='test -s conftest$ac_exeext'
5195 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5196 (eval $ac_try) 2>&5
5197 ac_status=$?
5198 @@ -23458,7 +24398,8 @@
5200 ac_cv_sys_posix_termios=no
5202 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
5203 +rm -f conftest.err conftest.$ac_objext \
5204 + conftest$ac_exeext conftest.$ac_ext
5206 echo "$as_me:$LINENO: result: $ac_cv_sys_posix_termios" >&5
5207 echo "${ECHO_T}$ac_cv_sys_posix_termios" >&6
5208 @@ -23486,7 +24427,6 @@
5209 echo "$as_me:$LINENO: checking $ac_header usability" >&5
5210 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
5211 cat >conftest.$ac_ext <<_ACEOF
5212 -#line $LINENO "configure"
5213 /* confdefs.h. */
5214 _ACEOF
5215 cat confdefs.h >>conftest.$ac_ext
5216 @@ -23497,11 +24437,20 @@
5217 _ACEOF
5218 rm -f conftest.$ac_objext
5219 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5220 - (eval $ac_compile) 2>&5
5221 + (eval $ac_compile) 2>conftest.er1
5222 ac_status=$?
5223 + grep -v '^ *+' conftest.er1 >conftest.err
5224 + rm -f conftest.er1
5225 + cat conftest.err >&5
5226 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5227 (exit $ac_status); } &&
5228 - { ac_try='test -s conftest.$ac_objext'
5229 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
5230 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5231 + (eval $ac_try) 2>&5
5232 + ac_status=$?
5233 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
5234 + (exit $ac_status); }; } &&
5235 + { ac_try='test -s conftest.$ac_objext'
5236 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5237 (eval $ac_try) 2>&5
5238 ac_status=$?
5239 @@ -23514,7 +24463,7 @@
5241 ac_header_compiler=no
5243 -rm -f conftest.$ac_objext conftest.$ac_ext
5244 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
5245 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
5246 echo "${ECHO_T}$ac_header_compiler" >&6
5248 @@ -23522,7 +24471,6 @@
5249 echo "$as_me:$LINENO: checking $ac_header presence" >&5
5250 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
5251 cat >conftest.$ac_ext <<_ACEOF
5252 -#line $LINENO "configure"
5253 /* confdefs.h. */
5254 _ACEOF
5255 cat confdefs.h >>conftest.$ac_ext
5256 @@ -23540,6 +24488,7 @@
5257 (exit $ac_status); } >/dev/null; then
5258 if test -s conftest.err; then
5259 ac_cpp_err=$ac_c_preproc_warn_flag
5260 + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
5261 else
5262 ac_cpp_err=
5264 @@ -23559,33 +24508,32 @@
5265 echo "${ECHO_T}$ac_header_preproc" >&6
5267 # So? What about this header?
5268 -case $ac_header_compiler:$ac_header_preproc in
5269 - yes:no )
5270 +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
5271 + yes:no: )
5272 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
5273 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
5274 - { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
5275 -echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
5277 - cat <<\_ASBOX
5278 -## ------------------------------------ ##
5279 -## Report this to bug-autoconf@gnu.org. ##
5280 -## ------------------------------------ ##
5281 -_ASBOX
5282 - ) |
5283 - sed "s/^/$as_me: WARNING: /" >&2
5284 + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
5285 +echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
5286 + ac_header_preproc=yes
5288 - no:yes )
5289 + no:yes:* )
5290 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
5291 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
5292 - { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
5293 -echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
5294 + { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
5295 +echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
5296 + { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
5297 +echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
5298 + { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5
5299 +echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}
5300 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
5301 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
5302 + { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
5303 +echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
5305 cat <<\_ASBOX
5306 -## ------------------------------------ ##
5307 -## Report this to bug-autoconf@gnu.org. ##
5308 -## ------------------------------------ ##
5309 +## ------------------------------- ##
5310 +## Report this to the sudo lists. ##
5311 +## ------------------------------- ##
5312 _ASBOX
5314 sed "s/^/$as_me: WARNING: /" >&2
5315 @@ -23596,7 +24544,7 @@
5316 if eval "test \"\${$as_ac_Header+set}\" = set"; then
5317 echo $ECHO_N "(cached) $ECHO_C" >&6
5318 else
5319 - eval "$as_ac_Header=$ac_header_preproc"
5320 + eval "$as_ac_Header=\$ac_header_preproc"
5322 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
5323 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
5324 @@ -23631,7 +24579,6 @@
5325 echo "$as_me:$LINENO: checking $ac_header usability" >&5
5326 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
5327 cat >conftest.$ac_ext <<_ACEOF
5328 -#line $LINENO "configure"
5329 /* confdefs.h. */
5330 _ACEOF
5331 cat confdefs.h >>conftest.$ac_ext
5332 @@ -23642,11 +24589,20 @@
5333 _ACEOF
5334 rm -f conftest.$ac_objext
5335 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5336 - (eval $ac_compile) 2>&5
5337 + (eval $ac_compile) 2>conftest.er1
5338 ac_status=$?
5339 + grep -v '^ *+' conftest.er1 >conftest.err
5340 + rm -f conftest.er1
5341 + cat conftest.err >&5
5342 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5343 (exit $ac_status); } &&
5344 - { ac_try='test -s conftest.$ac_objext'
5345 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
5346 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5347 + (eval $ac_try) 2>&5
5348 + ac_status=$?
5349 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
5350 + (exit $ac_status); }; } &&
5351 + { ac_try='test -s conftest.$ac_objext'
5352 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5353 (eval $ac_try) 2>&5
5354 ac_status=$?
5355 @@ -23659,7 +24615,7 @@
5357 ac_header_compiler=no
5359 -rm -f conftest.$ac_objext conftest.$ac_ext
5360 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
5361 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
5362 echo "${ECHO_T}$ac_header_compiler" >&6
5364 @@ -23667,7 +24623,6 @@
5365 echo "$as_me:$LINENO: checking $ac_header presence" >&5
5366 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
5367 cat >conftest.$ac_ext <<_ACEOF
5368 -#line $LINENO "configure"
5369 /* confdefs.h. */
5370 _ACEOF
5371 cat confdefs.h >>conftest.$ac_ext
5372 @@ -23685,6 +24640,7 @@
5373 (exit $ac_status); } >/dev/null; then
5374 if test -s conftest.err; then
5375 ac_cpp_err=$ac_c_preproc_warn_flag
5376 + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
5377 else
5378 ac_cpp_err=
5380 @@ -23704,33 +24660,32 @@
5381 echo "${ECHO_T}$ac_header_preproc" >&6
5383 # So? What about this header?
5384 -case $ac_header_compiler:$ac_header_preproc in
5385 - yes:no )
5386 +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
5387 + yes:no: )
5388 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
5389 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
5390 - { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
5391 -echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
5393 - cat <<\_ASBOX
5394 -## ------------------------------------ ##
5395 -## Report this to bug-autoconf@gnu.org. ##
5396 -## ------------------------------------ ##
5397 -_ASBOX
5398 - ) |
5399 - sed "s/^/$as_me: WARNING: /" >&2
5400 + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
5401 +echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
5402 + ac_header_preproc=yes
5404 - no:yes )
5405 + no:yes:* )
5406 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
5407 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
5408 - { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
5409 -echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
5410 + { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
5411 +echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
5412 + { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
5413 +echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
5414 + { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5
5415 +echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}
5416 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
5417 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
5418 + { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
5419 +echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
5421 cat <<\_ASBOX
5422 -## ------------------------------------ ##
5423 -## Report this to bug-autoconf@gnu.org. ##
5424 -## ------------------------------------ ##
5425 +## ------------------------------- ##
5426 +## Report this to the sudo lists. ##
5427 +## ------------------------------- ##
5428 _ASBOX
5430 sed "s/^/$as_me: WARNING: /" >&2
5431 @@ -23741,7 +24696,7 @@
5432 if eval "test \"\${$as_ac_Header+set}\" = set"; then
5433 echo $ECHO_N "(cached) $ECHO_C" >&6
5434 else
5435 - eval "$as_ac_Header=$ac_header_preproc"
5436 + eval "$as_ac_Header=\$ac_header_preproc"
5438 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
5439 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
5440 @@ -23771,7 +24726,6 @@
5441 echo "$as_me:$LINENO: checking bsd_auth.h usability" >&5
5442 echo $ECHO_N "checking bsd_auth.h usability... $ECHO_C" >&6
5443 cat >conftest.$ac_ext <<_ACEOF
5444 -#line $LINENO "configure"
5445 /* confdefs.h. */
5446 _ACEOF
5447 cat confdefs.h >>conftest.$ac_ext
5448 @@ -23782,11 +24736,20 @@
5449 _ACEOF
5450 rm -f conftest.$ac_objext
5451 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5452 - (eval $ac_compile) 2>&5
5453 + (eval $ac_compile) 2>conftest.er1
5454 ac_status=$?
5455 + grep -v '^ *+' conftest.er1 >conftest.err
5456 + rm -f conftest.er1
5457 + cat conftest.err >&5
5458 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5459 (exit $ac_status); } &&
5460 - { ac_try='test -s conftest.$ac_objext'
5461 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
5462 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5463 + (eval $ac_try) 2>&5
5464 + ac_status=$?
5465 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
5466 + (exit $ac_status); }; } &&
5467 + { ac_try='test -s conftest.$ac_objext'
5468 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5469 (eval $ac_try) 2>&5
5470 ac_status=$?
5471 @@ -23799,7 +24762,7 @@
5473 ac_header_compiler=no
5475 -rm -f conftest.$ac_objext conftest.$ac_ext
5476 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
5477 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
5478 echo "${ECHO_T}$ac_header_compiler" >&6
5480 @@ -23807,7 +24770,6 @@
5481 echo "$as_me:$LINENO: checking bsd_auth.h presence" >&5
5482 echo $ECHO_N "checking bsd_auth.h presence... $ECHO_C" >&6
5483 cat >conftest.$ac_ext <<_ACEOF
5484 -#line $LINENO "configure"
5485 /* confdefs.h. */
5486 _ACEOF
5487 cat confdefs.h >>conftest.$ac_ext
5488 @@ -23825,6 +24787,7 @@
5489 (exit $ac_status); } >/dev/null; then
5490 if test -s conftest.err; then
5491 ac_cpp_err=$ac_c_preproc_warn_flag
5492 + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
5493 else
5494 ac_cpp_err=
5496 @@ -23844,33 +24807,32 @@
5497 echo "${ECHO_T}$ac_header_preproc" >&6
5499 # So? What about this header?
5500 -case $ac_header_compiler:$ac_header_preproc in
5501 - yes:no )
5502 +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
5503 + yes:no: )
5504 { echo "$as_me:$LINENO: WARNING: bsd_auth.h: accepted by the compiler, rejected by the preprocessor!" >&5
5505 echo "$as_me: WARNING: bsd_auth.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
5506 - { echo "$as_me:$LINENO: WARNING: bsd_auth.h: proceeding with the preprocessor's result" >&5
5507 -echo "$as_me: WARNING: bsd_auth.h: proceeding with the preprocessor's result" >&2;}
5509 - cat <<\_ASBOX
5510 -## ------------------------------------ ##
5511 -## Report this to bug-autoconf@gnu.org. ##
5512 -## ------------------------------------ ##
5513 -_ASBOX
5514 - ) |
5515 - sed "s/^/$as_me: WARNING: /" >&2
5516 + { echo "$as_me:$LINENO: WARNING: bsd_auth.h: proceeding with the compiler's result" >&5
5517 +echo "$as_me: WARNING: bsd_auth.h: proceeding with the compiler's result" >&2;}
5518 + ac_header_preproc=yes
5520 - no:yes )
5521 + no:yes:* )
5522 { echo "$as_me:$LINENO: WARNING: bsd_auth.h: present but cannot be compiled" >&5
5523 echo "$as_me: WARNING: bsd_auth.h: present but cannot be compiled" >&2;}
5524 - { echo "$as_me:$LINENO: WARNING: bsd_auth.h: check for missing prerequisite headers?" >&5
5525 -echo "$as_me: WARNING: bsd_auth.h: check for missing prerequisite headers?" >&2;}
5526 + { echo "$as_me:$LINENO: WARNING: bsd_auth.h: check for missing prerequisite headers?" >&5
5527 +echo "$as_me: WARNING: bsd_auth.h: check for missing prerequisite headers?" >&2;}
5528 + { echo "$as_me:$LINENO: WARNING: bsd_auth.h: see the Autoconf documentation" >&5
5529 +echo "$as_me: WARNING: bsd_auth.h: see the Autoconf documentation" >&2;}
5530 + { echo "$as_me:$LINENO: WARNING: bsd_auth.h: section \"Present But Cannot Be Compiled\"" >&5
5531 +echo "$as_me: WARNING: bsd_auth.h: section \"Present But Cannot Be Compiled\"" >&2;}
5532 { echo "$as_me:$LINENO: WARNING: bsd_auth.h: proceeding with the preprocessor's result" >&5
5533 echo "$as_me: WARNING: bsd_auth.h: proceeding with the preprocessor's result" >&2;}
5534 + { echo "$as_me:$LINENO: WARNING: bsd_auth.h: in the future, the compiler will take precedence" >&5
5535 +echo "$as_me: WARNING: bsd_auth.h: in the future, the compiler will take precedence" >&2;}
5537 cat <<\_ASBOX
5538 -## ------------------------------------ ##
5539 -## Report this to bug-autoconf@gnu.org. ##
5540 -## ------------------------------------ ##
5541 +## ------------------------------- ##
5542 +## Report this to the sudo lists. ##
5543 +## ------------------------------- ##
5544 _ASBOX
5546 sed "s/^/$as_me: WARNING: /" >&2
5547 @@ -23904,7 +24866,6 @@
5548 echo $ECHO_N "(cached) $ECHO_C" >&6
5549 else
5550 cat >conftest.$ac_ext <<_ACEOF
5551 -#line $LINENO "configure"
5552 /* confdefs.h. */
5553 _ACEOF
5554 cat confdefs.h >>conftest.$ac_ext
5555 @@ -23924,11 +24885,20 @@
5556 _ACEOF
5557 rm -f conftest.$ac_objext
5558 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5559 - (eval $ac_compile) 2>&5
5560 + (eval $ac_compile) 2>conftest.er1
5561 ac_status=$?
5562 + grep -v '^ *+' conftest.er1 >conftest.err
5563 + rm -f conftest.er1
5564 + cat conftest.err >&5
5565 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5566 (exit $ac_status); } &&
5567 - { ac_try='test -s conftest.$ac_objext'
5568 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
5569 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5570 + (eval $ac_try) 2>&5
5571 + ac_status=$?
5572 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
5573 + (exit $ac_status); }; } &&
5574 + { ac_try='test -s conftest.$ac_objext'
5575 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5576 (eval $ac_try) 2>&5
5577 ac_status=$?
5578 @@ -23941,7 +24911,7 @@
5580 ac_cv_type_mode_t=no
5582 -rm -f conftest.$ac_objext conftest.$ac_ext
5583 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
5585 echo "$as_me:$LINENO: result: $ac_cv_type_mode_t" >&5
5586 echo "${ECHO_T}$ac_cv_type_mode_t" >&6
5587 @@ -23961,7 +24931,6 @@
5588 echo $ECHO_N "(cached) $ECHO_C" >&6
5589 else
5590 cat >conftest.$ac_ext <<_ACEOF
5591 -#line $LINENO "configure"
5592 /* confdefs.h. */
5593 _ACEOF
5594 cat confdefs.h >>conftest.$ac_ext
5595 @@ -24000,7 +24969,6 @@
5596 echo $ECHO_N "(cached) $ECHO_C" >&6
5597 else
5598 cat >conftest.$ac_ext <<_ACEOF
5599 -#line $LINENO "configure"
5600 /* confdefs.h. */
5601 _ACEOF
5602 cat confdefs.h >>conftest.$ac_ext
5603 @@ -24022,11 +24990,20 @@
5604 _ACEOF
5605 rm -f conftest.$ac_objext
5606 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5607 - (eval $ac_compile) 2>&5
5608 + (eval $ac_compile) 2>conftest.er1
5609 ac_status=$?
5610 + grep -v '^ *+' conftest.er1 >conftest.err
5611 + rm -f conftest.er1
5612 + cat conftest.err >&5
5613 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5614 (exit $ac_status); } &&
5615 - { ac_try='test -s conftest.$ac_objext'
5616 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
5617 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5618 + (eval $ac_try) 2>&5
5619 + ac_status=$?
5620 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
5621 + (exit $ac_status); }; } &&
5622 + { ac_try='test -s conftest.$ac_objext'
5623 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5624 (eval $ac_try) 2>&5
5625 ac_status=$?
5626 @@ -24039,7 +25016,7 @@
5628 ac_cv_type_sig_atomic_t=no
5630 -rm -f conftest.$ac_objext conftest.$ac_ext
5631 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
5633 echo "$as_me:$LINENO: result: $ac_cv_type_sig_atomic_t" >&5
5634 echo "${ECHO_T}$ac_cv_type_sig_atomic_t" >&6
5635 @@ -24063,7 +25040,6 @@
5636 echo $ECHO_N "(cached) $ECHO_C" >&6
5637 else
5638 cat >conftest.$ac_ext <<_ACEOF
5639 -#line $LINENO "configure"
5640 /* confdefs.h. */
5641 _ACEOF
5642 cat confdefs.h >>conftest.$ac_ext
5643 @@ -24085,11 +25061,20 @@
5644 _ACEOF
5645 rm -f conftest.$ac_objext
5646 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5647 - (eval $ac_compile) 2>&5
5648 + (eval $ac_compile) 2>conftest.er1
5649 ac_status=$?
5650 + grep -v '^ *+' conftest.er1 >conftest.err
5651 + rm -f conftest.er1
5652 + cat conftest.err >&5
5653 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5654 (exit $ac_status); } &&
5655 - { ac_try='test -s conftest.$ac_objext'
5656 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
5657 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5658 + (eval $ac_try) 2>&5
5659 + ac_status=$?
5660 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
5661 + (exit $ac_status); }; } &&
5662 + { ac_try='test -s conftest.$ac_objext'
5663 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5664 (eval $ac_try) 2>&5
5665 ac_status=$?
5666 @@ -24102,7 +25087,7 @@
5668 ac_cv_type_sigaction_t=no
5670 -rm -f conftest.$ac_objext conftest.$ac_ext
5671 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
5673 echo "$as_me:$LINENO: result: $ac_cv_type_sigaction_t" >&5
5674 echo "${ECHO_T}$ac_cv_type_sigaction_t" >&6
5675 @@ -24124,7 +25109,6 @@
5676 echo $ECHO_N "(cached) $ECHO_C" >&6
5677 else
5678 cat >conftest.$ac_ext <<_ACEOF
5679 -#line $LINENO "configure"
5680 /* confdefs.h. */
5681 _ACEOF
5682 cat confdefs.h >>conftest.$ac_ext
5683 @@ -24147,11 +25131,20 @@
5684 _ACEOF
5685 rm -f conftest.$ac_objext
5686 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5687 - (eval $ac_compile) 2>&5
5688 + (eval $ac_compile) 2>conftest.er1
5689 ac_status=$?
5690 + grep -v '^ *+' conftest.er1 >conftest.err
5691 + rm -f conftest.er1
5692 + cat conftest.err >&5
5693 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5694 (exit $ac_status); } &&
5695 - { ac_try='test -s conftest.$ac_objext'
5696 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
5697 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5698 + (eval $ac_try) 2>&5
5699 + ac_status=$?
5700 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
5701 + (exit $ac_status); }; } &&
5702 + { ac_try='test -s conftest.$ac_objext'
5703 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5704 (eval $ac_try) 2>&5
5705 ac_status=$?
5706 @@ -24164,7 +25157,7 @@
5708 ac_cv_type_struct_timespec=no
5710 -rm -f conftest.$ac_objext conftest.$ac_ext
5711 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
5713 echo "$as_me:$LINENO: result: $ac_cv_type_struct_timespec" >&5
5714 echo "${ECHO_T}$ac_cv_type_struct_timespec" >&6
5715 @@ -24181,7 +25174,6 @@
5716 echo $ECHO_N "(cached) $ECHO_C" >&6
5717 else
5718 cat >conftest.$ac_ext <<_ACEOF
5719 -#line $LINENO "configure"
5720 /* confdefs.h. */
5721 _ACEOF
5722 cat confdefs.h >>conftest.$ac_ext
5723 @@ -24221,7 +25213,6 @@
5724 echo $ECHO_N "(cached) $ECHO_C" >&6
5725 else
5726 cat >conftest.$ac_ext <<_ACEOF
5727 -#line $LINENO "configure"
5728 /* confdefs.h. */
5729 _ACEOF
5730 cat confdefs.h >>conftest.$ac_ext
5731 @@ -24261,7 +25252,6 @@
5732 echo $ECHO_N "(cached) $ECHO_C" >&6
5733 else
5734 cat >conftest.$ac_ext <<_ACEOF
5735 -#line $LINENO "configure"
5736 /* confdefs.h. */
5737 _ACEOF
5738 cat confdefs.h >>conftest.$ac_ext
5739 @@ -24301,7 +25291,6 @@
5740 echo $ECHO_N "(cached) $ECHO_C" >&6
5741 else
5742 cat >conftest.$ac_ext <<_ACEOF
5743 -#line $LINENO "configure"
5744 /* confdefs.h. */
5745 _ACEOF
5746 cat confdefs.h >>conftest.$ac_ext
5747 @@ -24338,7 +25327,6 @@
5748 echo "$as_me:$LINENO: checking for full void implementation" >&5
5749 echo $ECHO_N "checking for full void implementation... $ECHO_C" >&6
5750 cat >conftest.$ac_ext <<_ACEOF
5751 -#line $LINENO "configure"
5752 /* confdefs.h. */
5753 _ACEOF
5754 cat confdefs.h >>conftest.$ac_ext
5755 @@ -24356,11 +25344,20 @@
5756 _ACEOF
5757 rm -f conftest.$ac_objext
5758 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5759 - (eval $ac_compile) 2>&5
5760 + (eval $ac_compile) 2>conftest.er1
5761 ac_status=$?
5762 + grep -v '^ *+' conftest.er1 >conftest.err
5763 + rm -f conftest.er1
5764 + cat conftest.err >&5
5765 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5766 (exit $ac_status); } &&
5767 - { ac_try='test -s conftest.$ac_objext'
5768 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
5769 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5770 + (eval $ac_try) 2>&5
5771 + ac_status=$?
5772 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
5773 + (exit $ac_status); }; } &&
5774 + { ac_try='test -s conftest.$ac_objext'
5775 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5776 (eval $ac_try) 2>&5
5777 ac_status=$?
5778 @@ -24384,7 +25381,7 @@
5779 echo "$as_me:$LINENO: result: no" >&5
5780 echo "${ECHO_T}no" >&6
5782 -rm -f conftest.$ac_objext conftest.$ac_ext
5783 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
5785 echo "$as_me:$LINENO: checking max length of uid_t" >&5
5786 echo $ECHO_N "checking max length of uid_t... $ECHO_C" >&6
5787 @@ -24393,14 +25390,9 @@
5788 else
5789 rm -f conftestdata
5790 if test "$cross_compiling" = yes; then
5791 - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
5792 -See \`config.log' for more details." >&5
5793 -echo "$as_me: error: cannot run test program while cross compiling
5794 -See \`config.log' for more details." >&2;}
5795 - { (exit 1); exit 1; }; }
5796 + true
5797 else
5798 cat >conftest.$ac_ext <<_ACEOF
5799 -#line $LINENO "configure"
5800 /* confdefs.h. */
5801 _ACEOF
5802 cat confdefs.h >>conftest.$ac_ext
5803 @@ -24445,7 +25437,7 @@
5804 ( exit $ac_status )
5805 sudo_cv_uid_t_len=10
5807 -rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
5808 +rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
5812 @@ -24462,7 +25454,6 @@
5813 echo "$as_me:$LINENO: checking for long long support" >&5
5814 echo $ECHO_N "checking for long long support... $ECHO_C" >&6
5815 cat >conftest.$ac_ext <<_ACEOF
5816 -#line $LINENO "configure"
5817 /* confdefs.h. */
5818 _ACEOF
5819 cat confdefs.h >>conftest.$ac_ext
5820 @@ -24479,11 +25470,20 @@
5821 _ACEOF
5822 rm -f conftest.$ac_objext conftest$ac_exeext
5823 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5824 - (eval $ac_link) 2>&5
5825 + (eval $ac_link) 2>conftest.er1
5826 ac_status=$?
5827 + grep -v '^ *+' conftest.er1 >conftest.err
5828 + rm -f conftest.er1
5829 + cat conftest.err >&5
5830 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5831 (exit $ac_status); } &&
5832 - { ac_try='test -s conftest$ac_exeext'
5833 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
5834 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5835 + (eval $ac_try) 2>&5
5836 + ac_status=$?
5837 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
5838 + (exit $ac_status); }; } &&
5839 + { ac_try='test -s conftest$ac_exeext'
5840 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5841 (eval $ac_try) 2>&5
5842 ac_status=$?
5843 @@ -24495,14 +25495,9 @@
5844 _ACEOF
5846 if test "$cross_compiling" = yes; then
5847 - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
5848 -See \`config.log' for more details." >&5
5849 -echo "$as_me: error: cannot run test program while cross compiling
5850 -See \`config.log' for more details." >&2;}
5851 - { (exit 1); exit 1; }; }
5852 + true
5853 else
5854 cat >conftest.$ac_ext <<_ACEOF
5855 -#line $LINENO "configure"
5856 /* confdefs.h. */
5857 _ACEOF
5858 cat confdefs.h >>conftest.$ac_ext
5859 @@ -24531,8 +25526,10 @@
5860 echo "$as_me: failed program was:" >&5
5861 sed 's/^/| /' conftest.$ac_ext >&5
5863 +( exit $ac_status )
5864 +true
5866 -rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
5867 +rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
5869 echo "$as_me:$LINENO: result: yes" >&5
5870 echo "${ECHO_T}yes" >&6
5871 @@ -24543,7 +25540,8 @@
5872 echo "$as_me:$LINENO: result: no" >&5
5873 echo "${ECHO_T}no" >&6
5875 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
5876 +rm -f conftest.err conftest.$ac_objext \
5877 + conftest$ac_exeext conftest.$ac_ext
5878 echo "$as_me:$LINENO: checking for sa_len field in struct sockaddr" >&5
5879 echo $ECHO_N "checking for sa_len field in struct sockaddr... $ECHO_C" >&6
5880 if test "${sudo_cv_sock_sa_len+set}" = set; then
5881 @@ -24553,7 +25551,6 @@
5882 sudo_cv_sock_sa_len=no
5883 else
5884 cat >conftest.$ac_ext <<_ACEOF
5885 -#line $LINENO "configure"
5886 /* confdefs.h. */
5887 _ACEOF
5888 cat confdefs.h >>conftest.$ac_ext
5889 @@ -24587,7 +25584,7 @@
5890 ( exit $ac_status )
5891 sudo_cv_sock_sa_len=no
5893 -rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
5894 +rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
5896 rm -f core core.* *.core
5898 @@ -24609,7 +25606,6 @@
5899 echo $ECHO_N "(cached) $ECHO_C" >&6
5900 else
5901 cat >conftest.$ac_ext <<_ACEOF
5902 -#line $LINENO "configure"
5903 /* confdefs.h. */
5904 _ACEOF
5905 cat confdefs.h >>conftest.$ac_ext
5906 @@ -24636,11 +25632,20 @@
5907 _ACEOF
5908 rm -f conftest.$ac_objext
5909 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5910 - (eval $ac_compile) 2>&5
5911 + (eval $ac_compile) 2>conftest.er1
5912 ac_status=$?
5913 + grep -v '^ *+' conftest.er1 >conftest.err
5914 + rm -f conftest.er1
5915 + cat conftest.err >&5
5916 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5917 (exit $ac_status); } &&
5918 - { ac_try='test -s conftest.$ac_objext'
5919 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
5920 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5921 + (eval $ac_try) 2>&5
5922 + ac_status=$?
5923 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
5924 + (exit $ac_status); }; } &&
5925 + { ac_try='test -s conftest.$ac_objext'
5926 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5927 (eval $ac_try) 2>&5
5928 ac_status=$?
5929 @@ -24653,7 +25658,7 @@
5931 ac_cv_type_signal=int
5933 -rm -f conftest.$ac_objext conftest.$ac_ext
5934 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
5936 echo "$as_me:$LINENO: result: $ac_cv_type_signal" >&5
5937 echo "${ECHO_T}$ac_cv_type_signal" >&6
5938 @@ -24686,21 +25691,28 @@
5939 echo $ECHO_N "(cached) $ECHO_C" >&6
5940 else
5941 cat >conftest.$ac_ext <<_ACEOF
5942 -#line $LINENO "configure"
5943 /* confdefs.h. */
5944 _ACEOF
5945 cat confdefs.h >>conftest.$ac_ext
5946 cat >>conftest.$ac_ext <<_ACEOF
5947 /* end confdefs.h. */
5948 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
5949 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
5950 +#define $ac_func innocuous_$ac_func
5952 /* System header to define __stub macros and hopefully few prototypes,
5953 which can conflict with char $ac_func (); below.
5954 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
5955 <limits.h> exists even on freestanding compilers. */
5957 #ifdef __STDC__
5958 # include <limits.h>
5959 #else
5960 # include <assert.h>
5961 #endif
5963 +#undef $ac_func
5965 /* Override any gcc2 internal prototype to avoid an error. */
5966 #ifdef __cplusplus
5967 extern "C"
5968 @@ -24731,11 +25743,20 @@
5969 _ACEOF
5970 rm -f conftest.$ac_objext conftest$ac_exeext
5971 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
5972 - (eval $ac_link) 2>&5
5973 + (eval $ac_link) 2>conftest.er1
5974 ac_status=$?
5975 + grep -v '^ *+' conftest.er1 >conftest.err
5976 + rm -f conftest.er1
5977 + cat conftest.err >&5
5978 echo "$as_me:$LINENO: \$? = $ac_status" >&5
5979 (exit $ac_status); } &&
5980 - { ac_try='test -s conftest$ac_exeext'
5981 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
5982 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5983 + (eval $ac_try) 2>&5
5984 + ac_status=$?
5985 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
5986 + (exit $ac_status); }; } &&
5987 + { ac_try='test -s conftest$ac_exeext'
5988 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
5989 (eval $ac_try) 2>&5
5990 ac_status=$?
5991 @@ -24748,7 +25769,8 @@
5993 eval "$as_ac_var=no"
5995 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
5996 +rm -f conftest.err conftest.$ac_objext \
5997 + conftest$ac_exeext conftest.$ac_ext
5999 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
6000 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
6001 @@ -24770,21 +25792,28 @@
6002 echo $ECHO_N "(cached) $ECHO_C" >&6
6003 else
6004 cat >conftest.$ac_ext <<_ACEOF
6005 -#line $LINENO "configure"
6006 /* confdefs.h. */
6007 _ACEOF
6008 cat confdefs.h >>conftest.$ac_ext
6009 cat >>conftest.$ac_ext <<_ACEOF
6010 /* end confdefs.h. */
6011 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
6012 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
6013 +#define $ac_func innocuous_$ac_func
6015 /* System header to define __stub macros and hopefully few prototypes,
6016 which can conflict with char $ac_func (); below.
6017 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6018 <limits.h> exists even on freestanding compilers. */
6020 #ifdef __STDC__
6021 # include <limits.h>
6022 #else
6023 # include <assert.h>
6024 #endif
6026 +#undef $ac_func
6028 /* Override any gcc2 internal prototype to avoid an error. */
6029 #ifdef __cplusplus
6030 extern "C"
6031 @@ -24815,11 +25844,20 @@
6032 _ACEOF
6033 rm -f conftest.$ac_objext conftest$ac_exeext
6034 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6035 - (eval $ac_link) 2>&5
6036 + (eval $ac_link) 2>conftest.er1
6037 ac_status=$?
6038 + grep -v '^ *+' conftest.er1 >conftest.err
6039 + rm -f conftest.er1
6040 + cat conftest.err >&5
6041 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6042 (exit $ac_status); } &&
6043 - { ac_try='test -s conftest$ac_exeext'
6044 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
6045 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6046 + (eval $ac_try) 2>&5
6047 + ac_status=$?
6048 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
6049 + (exit $ac_status); }; } &&
6050 + { ac_try='test -s conftest$ac_exeext'
6051 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6052 (eval $ac_try) 2>&5
6053 ac_status=$?
6054 @@ -24832,7 +25870,8 @@
6056 eval "$as_ac_var=no"
6058 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
6059 +rm -f conftest.err conftest.$ac_objext \
6060 + conftest$ac_exeext conftest.$ac_ext
6062 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
6063 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
6064 @@ -24860,21 +25899,28 @@
6065 echo $ECHO_N "(cached) $ECHO_C" >&6
6066 else
6067 cat >conftest.$ac_ext <<_ACEOF
6068 -#line $LINENO "configure"
6069 /* confdefs.h. */
6070 _ACEOF
6071 cat confdefs.h >>conftest.$ac_ext
6072 cat >>conftest.$ac_ext <<_ACEOF
6073 /* end confdefs.h. */
6074 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
6075 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
6076 +#define $ac_func innocuous_$ac_func
6078 /* System header to define __stub macros and hopefully few prototypes,
6079 which can conflict with char $ac_func (); below.
6080 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6081 <limits.h> exists even on freestanding compilers. */
6083 #ifdef __STDC__
6084 # include <limits.h>
6085 #else
6086 # include <assert.h>
6087 #endif
6089 +#undef $ac_func
6091 /* Override any gcc2 internal prototype to avoid an error. */
6092 #ifdef __cplusplus
6093 extern "C"
6094 @@ -24905,11 +25951,20 @@
6095 _ACEOF
6096 rm -f conftest.$ac_objext conftest$ac_exeext
6097 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6098 - (eval $ac_link) 2>&5
6099 + (eval $ac_link) 2>conftest.er1
6100 ac_status=$?
6101 + grep -v '^ *+' conftest.er1 >conftest.err
6102 + rm -f conftest.er1
6103 + cat conftest.err >&5
6104 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6105 (exit $ac_status); } &&
6106 - { ac_try='test -s conftest$ac_exeext'
6107 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
6108 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6109 + (eval $ac_try) 2>&5
6110 + ac_status=$?
6111 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
6112 + (exit $ac_status); }; } &&
6113 + { ac_try='test -s conftest$ac_exeext'
6114 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6115 (eval $ac_try) 2>&5
6116 ac_status=$?
6117 @@ -24922,7 +25977,8 @@
6119 eval "$as_ac_var=no"
6121 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
6122 +rm -f conftest.err conftest.$ac_objext \
6123 + conftest$ac_exeext conftest.$ac_ext
6125 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
6126 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
6127 @@ -24946,21 +26002,28 @@
6128 echo $ECHO_N "(cached) $ECHO_C" >&6
6129 else
6130 cat >conftest.$ac_ext <<_ACEOF
6131 -#line $LINENO "configure"
6132 /* confdefs.h. */
6133 _ACEOF
6134 cat confdefs.h >>conftest.$ac_ext
6135 cat >>conftest.$ac_ext <<_ACEOF
6136 /* end confdefs.h. */
6137 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
6138 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
6139 +#define $ac_func innocuous_$ac_func
6141 /* System header to define __stub macros and hopefully few prototypes,
6142 which can conflict with char $ac_func (); below.
6143 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6144 <limits.h> exists even on freestanding compilers. */
6146 #ifdef __STDC__
6147 # include <limits.h>
6148 #else
6149 # include <assert.h>
6150 #endif
6152 +#undef $ac_func
6154 /* Override any gcc2 internal prototype to avoid an error. */
6155 #ifdef __cplusplus
6156 extern "C"
6157 @@ -24991,11 +26054,20 @@
6158 _ACEOF
6159 rm -f conftest.$ac_objext conftest$ac_exeext
6160 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6161 - (eval $ac_link) 2>&5
6162 + (eval $ac_link) 2>conftest.er1
6163 ac_status=$?
6164 + grep -v '^ *+' conftest.er1 >conftest.err
6165 + rm -f conftest.er1
6166 + cat conftest.err >&5
6167 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6168 (exit $ac_status); } &&
6169 - { ac_try='test -s conftest$ac_exeext'
6170 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
6171 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6172 + (eval $ac_try) 2>&5
6173 + ac_status=$?
6174 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
6175 + (exit $ac_status); }; } &&
6176 + { ac_try='test -s conftest$ac_exeext'
6177 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6178 (eval $ac_try) 2>&5
6179 ac_status=$?
6180 @@ -25008,7 +26080,8 @@
6182 eval "$as_ac_var=no"
6184 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
6185 +rm -f conftest.err conftest.$ac_objext \
6186 + conftest$ac_exeext conftest.$ac_ext
6188 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
6189 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
6190 @@ -25032,21 +26105,28 @@
6191 echo $ECHO_N "(cached) $ECHO_C" >&6
6192 else
6193 cat >conftest.$ac_ext <<_ACEOF
6194 -#line $LINENO "configure"
6195 /* confdefs.h. */
6196 _ACEOF
6197 cat confdefs.h >>conftest.$ac_ext
6198 cat >>conftest.$ac_ext <<_ACEOF
6199 /* end confdefs.h. */
6200 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
6201 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
6202 +#define $ac_func innocuous_$ac_func
6204 /* System header to define __stub macros and hopefully few prototypes,
6205 which can conflict with char $ac_func (); below.
6206 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6207 <limits.h> exists even on freestanding compilers. */
6209 #ifdef __STDC__
6210 # include <limits.h>
6211 #else
6212 # include <assert.h>
6213 #endif
6215 +#undef $ac_func
6217 /* Override any gcc2 internal prototype to avoid an error. */
6218 #ifdef __cplusplus
6219 extern "C"
6220 @@ -25077,11 +26157,20 @@
6221 _ACEOF
6222 rm -f conftest.$ac_objext conftest$ac_exeext
6223 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6224 - (eval $ac_link) 2>&5
6225 + (eval $ac_link) 2>conftest.er1
6226 ac_status=$?
6227 + grep -v '^ *+' conftest.er1 >conftest.err
6228 + rm -f conftest.er1
6229 + cat conftest.err >&5
6230 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6231 (exit $ac_status); } &&
6232 - { ac_try='test -s conftest$ac_exeext'
6233 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
6234 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6235 + (eval $ac_try) 2>&5
6236 + ac_status=$?
6237 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
6238 + (exit $ac_status); }; } &&
6239 + { ac_try='test -s conftest$ac_exeext'
6240 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6241 (eval $ac_try) 2>&5
6242 ac_status=$?
6243 @@ -25094,7 +26183,8 @@
6245 eval "$as_ac_var=no"
6247 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
6248 +rm -f conftest.err conftest.$ac_objext \
6249 + conftest$ac_exeext conftest.$ac_ext
6251 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
6252 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
6253 @@ -25112,21 +26202,28 @@
6254 echo $ECHO_N "(cached) $ECHO_C" >&6
6255 else
6256 cat >conftest.$ac_ext <<_ACEOF
6257 -#line $LINENO "configure"
6258 /* confdefs.h. */
6259 _ACEOF
6260 cat confdefs.h >>conftest.$ac_ext
6261 cat >>conftest.$ac_ext <<_ACEOF
6262 /* end confdefs.h. */
6263 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
6264 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
6265 +#define $ac_func innocuous_$ac_func
6267 /* System header to define __stub macros and hopefully few prototypes,
6268 which can conflict with char $ac_func (); below.
6269 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6270 <limits.h> exists even on freestanding compilers. */
6272 #ifdef __STDC__
6273 # include <limits.h>
6274 #else
6275 # include <assert.h>
6276 #endif
6278 +#undef $ac_func
6280 /* Override any gcc2 internal prototype to avoid an error. */
6281 #ifdef __cplusplus
6282 extern "C"
6283 @@ -25157,11 +26254,20 @@
6284 _ACEOF
6285 rm -f conftest.$ac_objext conftest$ac_exeext
6286 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6287 - (eval $ac_link) 2>&5
6288 + (eval $ac_link) 2>conftest.er1
6289 ac_status=$?
6290 + grep -v '^ *+' conftest.er1 >conftest.err
6291 + rm -f conftest.er1
6292 + cat conftest.err >&5
6293 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6294 (exit $ac_status); } &&
6295 - { ac_try='test -s conftest$ac_exeext'
6296 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
6297 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6298 + (eval $ac_try) 2>&5
6299 + ac_status=$?
6300 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
6301 + (exit $ac_status); }; } &&
6302 + { ac_try='test -s conftest$ac_exeext'
6303 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6304 (eval $ac_try) 2>&5
6305 ac_status=$?
6306 @@ -25174,7 +26280,8 @@
6308 eval "$as_ac_var=no"
6310 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
6311 +rm -f conftest.err conftest.$ac_objext \
6312 + conftest$ac_exeext conftest.$ac_ext
6314 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
6315 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
6316 @@ -25203,21 +26310,28 @@
6317 echo $ECHO_N "(cached) $ECHO_C" >&6
6318 else
6319 cat >conftest.$ac_ext <<_ACEOF
6320 -#line $LINENO "configure"
6321 /* confdefs.h. */
6322 _ACEOF
6323 cat confdefs.h >>conftest.$ac_ext
6324 cat >>conftest.$ac_ext <<_ACEOF
6325 /* end confdefs.h. */
6326 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
6327 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
6328 +#define $ac_func innocuous_$ac_func
6330 /* System header to define __stub macros and hopefully few prototypes,
6331 which can conflict with char $ac_func (); below.
6332 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6333 <limits.h> exists even on freestanding compilers. */
6335 #ifdef __STDC__
6336 # include <limits.h>
6337 #else
6338 # include <assert.h>
6339 #endif
6341 +#undef $ac_func
6343 /* Override any gcc2 internal prototype to avoid an error. */
6344 #ifdef __cplusplus
6345 extern "C"
6346 @@ -25248,11 +26362,20 @@
6347 _ACEOF
6348 rm -f conftest.$ac_objext conftest$ac_exeext
6349 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6350 - (eval $ac_link) 2>&5
6351 + (eval $ac_link) 2>conftest.er1
6352 ac_status=$?
6353 + grep -v '^ *+' conftest.er1 >conftest.err
6354 + rm -f conftest.er1
6355 + cat conftest.err >&5
6356 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6357 (exit $ac_status); } &&
6358 - { ac_try='test -s conftest$ac_exeext'
6359 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
6360 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6361 + (eval $ac_try) 2>&5
6362 + ac_status=$?
6363 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
6364 + (exit $ac_status); }; } &&
6365 + { ac_try='test -s conftest$ac_exeext'
6366 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6367 (eval $ac_try) 2>&5
6368 ac_status=$?
6369 @@ -25265,7 +26388,8 @@
6371 eval "$as_ac_var=no"
6373 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
6374 +rm -f conftest.err conftest.$ac_objext \
6375 + conftest$ac_exeext conftest.$ac_ext
6377 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
6378 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
6379 @@ -25289,21 +26413,28 @@
6380 echo $ECHO_N "(cached) $ECHO_C" >&6
6381 else
6382 cat >conftest.$ac_ext <<_ACEOF
6383 -#line $LINENO "configure"
6384 /* confdefs.h. */
6385 _ACEOF
6386 cat confdefs.h >>conftest.$ac_ext
6387 cat >>conftest.$ac_ext <<_ACEOF
6388 /* end confdefs.h. */
6389 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
6390 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
6391 +#define $ac_func innocuous_$ac_func
6393 /* System header to define __stub macros and hopefully few prototypes,
6394 which can conflict with char $ac_func (); below.
6395 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6396 <limits.h> exists even on freestanding compilers. */
6398 #ifdef __STDC__
6399 # include <limits.h>
6400 #else
6401 # include <assert.h>
6402 #endif
6404 +#undef $ac_func
6406 /* Override any gcc2 internal prototype to avoid an error. */
6407 #ifdef __cplusplus
6408 extern "C"
6409 @@ -25334,11 +26465,20 @@
6410 _ACEOF
6411 rm -f conftest.$ac_objext conftest$ac_exeext
6412 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6413 - (eval $ac_link) 2>&5
6414 + (eval $ac_link) 2>conftest.er1
6415 ac_status=$?
6416 + grep -v '^ *+' conftest.er1 >conftest.err
6417 + rm -f conftest.er1
6418 + cat conftest.err >&5
6419 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6420 (exit $ac_status); } &&
6421 - { ac_try='test -s conftest$ac_exeext'
6422 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
6423 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6424 + (eval $ac_try) 2>&5
6425 + ac_status=$?
6426 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
6427 + (exit $ac_status); }; } &&
6428 + { ac_try='test -s conftest$ac_exeext'
6429 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6430 (eval $ac_try) 2>&5
6431 ac_status=$?
6432 @@ -25351,7 +26491,8 @@
6434 eval "$as_ac_var=no"
6436 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
6437 +rm -f conftest.err conftest.$ac_objext \
6438 + conftest$ac_exeext conftest.$ac_ext
6440 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
6441 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
6442 @@ -25361,7 +26502,14 @@
6443 _ACEOF
6445 else
6446 - LIBOBJS="$LIBOBJS $ac_func.$ac_objext"
6447 + case $LIBOBJS in
6448 + "$ac_func.$ac_objext" | \
6449 + *" $ac_func.$ac_objext" | \
6450 + "$ac_func.$ac_objext "* | \
6451 + *" $ac_func.$ac_objext "* ) ;;
6452 + *) LIBOBJS="$LIBOBJS $ac_func.$ac_objext" ;;
6453 +esac
6456 done
6458 @@ -25378,21 +26526,28 @@
6459 echo $ECHO_N "(cached) $ECHO_C" >&6
6460 else
6461 cat >conftest.$ac_ext <<_ACEOF
6462 -#line $LINENO "configure"
6463 /* confdefs.h. */
6464 _ACEOF
6465 cat confdefs.h >>conftest.$ac_ext
6466 cat >>conftest.$ac_ext <<_ACEOF
6467 /* end confdefs.h. */
6468 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
6469 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
6470 +#define $ac_func innocuous_$ac_func
6472 /* System header to define __stub macros and hopefully few prototypes,
6473 which can conflict with char $ac_func (); below.
6474 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6475 <limits.h> exists even on freestanding compilers. */
6477 #ifdef __STDC__
6478 # include <limits.h>
6479 #else
6480 # include <assert.h>
6481 #endif
6483 +#undef $ac_func
6485 /* Override any gcc2 internal prototype to avoid an error. */
6486 #ifdef __cplusplus
6487 extern "C"
6488 @@ -25423,11 +26578,20 @@
6489 _ACEOF
6490 rm -f conftest.$ac_objext conftest$ac_exeext
6491 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6492 - (eval $ac_link) 2>&5
6493 + (eval $ac_link) 2>conftest.er1
6494 ac_status=$?
6495 + grep -v '^ *+' conftest.er1 >conftest.err
6496 + rm -f conftest.er1
6497 + cat conftest.err >&5
6498 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6499 (exit $ac_status); } &&
6500 - { ac_try='test -s conftest$ac_exeext'
6501 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
6502 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6503 + (eval $ac_try) 2>&5
6504 + ac_status=$?
6505 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
6506 + (exit $ac_status); }; } &&
6507 + { ac_try='test -s conftest$ac_exeext'
6508 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6509 (eval $ac_try) 2>&5
6510 ac_status=$?
6511 @@ -25440,7 +26604,8 @@
6513 eval "$as_ac_var=no"
6515 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
6516 +rm -f conftest.err conftest.$ac_objext \
6517 + conftest$ac_exeext conftest.$ac_ext
6519 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
6520 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
6521 @@ -25463,21 +26628,28 @@
6522 echo $ECHO_N "(cached) $ECHO_C" >&6
6523 else
6524 cat >conftest.$ac_ext <<_ACEOF
6525 -#line $LINENO "configure"
6526 /* confdefs.h. */
6527 _ACEOF
6528 cat confdefs.h >>conftest.$ac_ext
6529 cat >>conftest.$ac_ext <<_ACEOF
6530 /* end confdefs.h. */
6531 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
6532 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
6533 +#define $ac_func innocuous_$ac_func
6535 /* System header to define __stub macros and hopefully few prototypes,
6536 which can conflict with char $ac_func (); below.
6537 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6538 <limits.h> exists even on freestanding compilers. */
6540 #ifdef __STDC__
6541 # include <limits.h>
6542 #else
6543 # include <assert.h>
6544 #endif
6546 +#undef $ac_func
6548 /* Override any gcc2 internal prototype to avoid an error. */
6549 #ifdef __cplusplus
6550 extern "C"
6551 @@ -25508,11 +26680,20 @@
6552 _ACEOF
6553 rm -f conftest.$ac_objext conftest$ac_exeext
6554 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6555 - (eval $ac_link) 2>&5
6556 + (eval $ac_link) 2>conftest.er1
6557 ac_status=$?
6558 + grep -v '^ *+' conftest.er1 >conftest.err
6559 + rm -f conftest.er1
6560 + cat conftest.err >&5
6561 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6562 (exit $ac_status); } &&
6563 - { ac_try='test -s conftest$ac_exeext'
6564 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
6565 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6566 + (eval $ac_try) 2>&5
6567 + ac_status=$?
6568 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
6569 + (exit $ac_status); }; } &&
6570 + { ac_try='test -s conftest$ac_exeext'
6571 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6572 (eval $ac_try) 2>&5
6573 ac_status=$?
6574 @@ -25525,7 +26706,8 @@
6576 eval "$as_ac_var=no"
6578 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
6579 +rm -f conftest.err conftest.$ac_objext \
6580 + conftest$ac_exeext conftest.$ac_ext
6582 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
6583 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
6584 @@ -25548,21 +26730,28 @@
6585 echo $ECHO_N "(cached) $ECHO_C" >&6
6586 else
6587 cat >conftest.$ac_ext <<_ACEOF
6588 -#line $LINENO "configure"
6589 /* confdefs.h. */
6590 _ACEOF
6591 cat confdefs.h >>conftest.$ac_ext
6592 cat >>conftest.$ac_ext <<_ACEOF
6593 /* end confdefs.h. */
6594 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
6595 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
6596 +#define $ac_func innocuous_$ac_func
6598 /* System header to define __stub macros and hopefully few prototypes,
6599 which can conflict with char $ac_func (); below.
6600 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6601 <limits.h> exists even on freestanding compilers. */
6603 #ifdef __STDC__
6604 # include <limits.h>
6605 #else
6606 # include <assert.h>
6607 #endif
6609 +#undef $ac_func
6611 /* Override any gcc2 internal prototype to avoid an error. */
6612 #ifdef __cplusplus
6613 extern "C"
6614 @@ -25593,11 +26782,20 @@
6615 _ACEOF
6616 rm -f conftest.$ac_objext conftest$ac_exeext
6617 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6618 - (eval $ac_link) 2>&5
6619 + (eval $ac_link) 2>conftest.er1
6620 ac_status=$?
6621 + grep -v '^ *+' conftest.er1 >conftest.err
6622 + rm -f conftest.er1
6623 + cat conftest.err >&5
6624 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6625 (exit $ac_status); } &&
6626 - { ac_try='test -s conftest$ac_exeext'
6627 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
6628 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6629 + (eval $ac_try) 2>&5
6630 + ac_status=$?
6631 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
6632 + (exit $ac_status); }; } &&
6633 + { ac_try='test -s conftest$ac_exeext'
6634 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6635 (eval $ac_try) 2>&5
6636 ac_status=$?
6637 @@ -25610,7 +26808,8 @@
6639 eval "$as_ac_var=no"
6641 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
6642 +rm -f conftest.err conftest.$ac_objext \
6643 + conftest$ac_exeext conftest.$ac_ext
6645 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
6646 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
6647 @@ -25628,21 +26827,28 @@
6648 echo $ECHO_N "(cached) $ECHO_C" >&6
6649 else
6650 cat >conftest.$ac_ext <<_ACEOF
6651 -#line $LINENO "configure"
6652 /* confdefs.h. */
6653 _ACEOF
6654 cat confdefs.h >>conftest.$ac_ext
6655 cat >>conftest.$ac_ext <<_ACEOF
6656 /* end confdefs.h. */
6657 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
6658 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
6659 +#define $ac_func innocuous_$ac_func
6661 /* System header to define __stub macros and hopefully few prototypes,
6662 which can conflict with char $ac_func (); below.
6663 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6664 <limits.h> exists even on freestanding compilers. */
6666 #ifdef __STDC__
6667 # include <limits.h>
6668 #else
6669 # include <assert.h>
6670 #endif
6672 +#undef $ac_func
6674 /* Override any gcc2 internal prototype to avoid an error. */
6675 #ifdef __cplusplus
6676 extern "C"
6677 @@ -25673,11 +26879,20 @@
6678 _ACEOF
6679 rm -f conftest.$ac_objext conftest$ac_exeext
6680 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6681 - (eval $ac_link) 2>&5
6682 + (eval $ac_link) 2>conftest.er1
6683 ac_status=$?
6684 + grep -v '^ *+' conftest.er1 >conftest.err
6685 + rm -f conftest.er1
6686 + cat conftest.err >&5
6687 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6688 (exit $ac_status); } &&
6689 - { ac_try='test -s conftest$ac_exeext'
6690 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
6691 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6692 + (eval $ac_try) 2>&5
6693 + ac_status=$?
6694 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
6695 + (exit $ac_status); }; } &&
6696 + { ac_try='test -s conftest$ac_exeext'
6697 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6698 (eval $ac_try) 2>&5
6699 ac_status=$?
6700 @@ -25690,7 +26905,8 @@
6702 eval "$as_ac_var=no"
6704 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
6705 +rm -f conftest.err conftest.$ac_objext \
6706 + conftest$ac_exeext conftest.$ac_ext
6708 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
6709 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
6710 @@ -25715,21 +26931,28 @@
6711 echo $ECHO_N "(cached) $ECHO_C" >&6
6712 else
6713 cat >conftest.$ac_ext <<_ACEOF
6714 -#line $LINENO "configure"
6715 /* confdefs.h. */
6716 _ACEOF
6717 cat confdefs.h >>conftest.$ac_ext
6718 cat >>conftest.$ac_ext <<_ACEOF
6719 /* end confdefs.h. */
6720 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
6721 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
6722 +#define $ac_func innocuous_$ac_func
6724 /* System header to define __stub macros and hopefully few prototypes,
6725 which can conflict with char $ac_func (); below.
6726 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6727 <limits.h> exists even on freestanding compilers. */
6729 #ifdef __STDC__
6730 # include <limits.h>
6731 #else
6732 # include <assert.h>
6733 #endif
6735 +#undef $ac_func
6737 /* Override any gcc2 internal prototype to avoid an error. */
6738 #ifdef __cplusplus
6739 extern "C"
6740 @@ -25760,11 +26983,20 @@
6741 _ACEOF
6742 rm -f conftest.$ac_objext conftest$ac_exeext
6743 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6744 - (eval $ac_link) 2>&5
6745 + (eval $ac_link) 2>conftest.er1
6746 ac_status=$?
6747 + grep -v '^ *+' conftest.er1 >conftest.err
6748 + rm -f conftest.er1
6749 + cat conftest.err >&5
6750 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6751 (exit $ac_status); } &&
6752 - { ac_try='test -s conftest$ac_exeext'
6753 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
6754 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6755 + (eval $ac_try) 2>&5
6756 + ac_status=$?
6757 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
6758 + (exit $ac_status); }; } &&
6759 + { ac_try='test -s conftest$ac_exeext'
6760 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6761 (eval $ac_try) 2>&5
6762 ac_status=$?
6763 @@ -25777,7 +27009,8 @@
6765 eval "$as_ac_var=no"
6767 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
6768 +rm -f conftest.err conftest.$ac_objext \
6769 + conftest$ac_exeext conftest.$ac_ext
6771 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
6772 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
6773 @@ -25795,7 +27028,6 @@
6774 ac_check_lib_save_LIBS=$LIBS
6775 LIBS="-lcompat $LIBS"
6776 cat >conftest.$ac_ext <<_ACEOF
6777 -#line $LINENO "configure"
6778 /* confdefs.h. */
6779 _ACEOF
6780 cat confdefs.h >>conftest.$ac_ext
6781 @@ -25819,11 +27051,20 @@
6782 _ACEOF
6783 rm -f conftest.$ac_objext conftest$ac_exeext
6784 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6785 - (eval $ac_link) 2>&5
6786 + (eval $ac_link) 2>conftest.er1
6787 ac_status=$?
6788 + grep -v '^ *+' conftest.er1 >conftest.err
6789 + rm -f conftest.er1
6790 + cat conftest.err >&5
6791 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6792 (exit $ac_status); } &&
6793 - { ac_try='test -s conftest$ac_exeext'
6794 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
6795 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6796 + (eval $ac_try) 2>&5
6797 + ac_status=$?
6798 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
6799 + (exit $ac_status); }; } &&
6800 + { ac_try='test -s conftest$ac_exeext'
6801 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6802 (eval $ac_try) 2>&5
6803 ac_status=$?
6804 @@ -25836,7 +27077,8 @@
6806 ac_cv_lib_compat_lsearch=no
6808 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
6809 +rm -f conftest.err conftest.$ac_objext \
6810 + conftest$ac_exeext conftest.$ac_ext
6811 LIBS=$ac_check_lib_save_LIBS
6813 echo "$as_me:$LINENO: result: $ac_cv_lib_compat_lsearch" >&5
6814 @@ -25848,7 +27090,6 @@
6815 echo $ECHO_N "(cached) $ECHO_C" >&6
6816 else
6817 cat >conftest.$ac_ext <<_ACEOF
6818 -#line $LINENO "configure"
6819 /* confdefs.h. */
6820 _ACEOF
6821 cat confdefs.h >>conftest.$ac_ext
6822 @@ -25866,6 +27107,7 @@
6823 (exit $ac_status); } >/dev/null; then
6824 if test -s conftest.err; then
6825 ac_cpp_err=$ac_c_preproc_warn_flag
6826 + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
6827 else
6828 ac_cpp_err=
6830 @@ -25890,12 +27132,26 @@
6831 _ACEOF
6832 LIBS="${LIBS} -lcompat"
6833 else
6834 - LIBOBJS="$LIBOBJS lsearch.$ac_objext"
6835 + case $LIBOBJS in
6836 + "lsearch.$ac_objext" | \
6837 + *" lsearch.$ac_objext" | \
6838 + "lsearch.$ac_objext "* | \
6839 + *" lsearch.$ac_objext "* ) ;;
6840 + *) LIBOBJS="$LIBOBJS lsearch.$ac_objext" ;;
6841 +esac
6846 else
6847 - LIBOBJS="$LIBOBJS lsearch.$ac_objext"
6848 + case $LIBOBJS in
6849 + "lsearch.$ac_objext" | \
6850 + *" lsearch.$ac_objext" | \
6851 + "lsearch.$ac_objext "* | \
6852 + *" lsearch.$ac_objext "* ) ;;
6853 + *) LIBOBJS="$LIBOBJS lsearch.$ac_objext" ;;
6854 +esac
6859 @@ -25911,21 +27167,28 @@
6860 echo $ECHO_N "(cached) $ECHO_C" >&6
6861 else
6862 cat >conftest.$ac_ext <<_ACEOF
6863 -#line $LINENO "configure"
6864 /* confdefs.h. */
6865 _ACEOF
6866 cat confdefs.h >>conftest.$ac_ext
6867 cat >>conftest.$ac_ext <<_ACEOF
6868 /* end confdefs.h. */
6869 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
6870 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
6871 +#define $ac_func innocuous_$ac_func
6873 /* System header to define __stub macros and hopefully few prototypes,
6874 which can conflict with char $ac_func (); below.
6875 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6876 <limits.h> exists even on freestanding compilers. */
6878 #ifdef __STDC__
6879 # include <limits.h>
6880 #else
6881 # include <assert.h>
6882 #endif
6884 +#undef $ac_func
6886 /* Override any gcc2 internal prototype to avoid an error. */
6887 #ifdef __cplusplus
6888 extern "C"
6889 @@ -25956,11 +27219,20 @@
6890 _ACEOF
6891 rm -f conftest.$ac_objext conftest$ac_exeext
6892 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6893 - (eval $ac_link) 2>&5
6894 + (eval $ac_link) 2>conftest.er1
6895 ac_status=$?
6896 + grep -v '^ *+' conftest.er1 >conftest.err
6897 + rm -f conftest.er1
6898 + cat conftest.err >&5
6899 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6900 (exit $ac_status); } &&
6901 - { ac_try='test -s conftest$ac_exeext'
6902 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
6903 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6904 + (eval $ac_try) 2>&5
6905 + ac_status=$?
6906 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
6907 + (exit $ac_status); }; } &&
6908 + { ac_try='test -s conftest$ac_exeext'
6909 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6910 (eval $ac_try) 2>&5
6911 ac_status=$?
6912 @@ -25973,7 +27245,8 @@
6914 eval "$as_ac_var=no"
6916 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
6917 +rm -f conftest.err conftest.$ac_objext \
6918 + conftest$ac_exeext conftest.$ac_ext
6920 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
6921 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
6922 @@ -25992,21 +27265,28 @@
6923 echo $ECHO_N "(cached) $ECHO_C" >&6
6924 else
6925 cat >conftest.$ac_ext <<_ACEOF
6926 -#line $LINENO "configure"
6927 /* confdefs.h. */
6928 _ACEOF
6929 cat confdefs.h >>conftest.$ac_ext
6930 cat >>conftest.$ac_ext <<_ACEOF
6931 /* end confdefs.h. */
6932 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
6933 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
6934 +#define $ac_func innocuous_$ac_func
6936 /* System header to define __stub macros and hopefully few prototypes,
6937 which can conflict with char $ac_func (); below.
6938 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6939 <limits.h> exists even on freestanding compilers. */
6941 #ifdef __STDC__
6942 # include <limits.h>
6943 #else
6944 # include <assert.h>
6945 #endif
6947 +#undef $ac_func
6949 /* Override any gcc2 internal prototype to avoid an error. */
6950 #ifdef __cplusplus
6951 extern "C"
6952 @@ -26037,11 +27317,20 @@
6953 _ACEOF
6954 rm -f conftest.$ac_objext conftest$ac_exeext
6955 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
6956 - (eval $ac_link) 2>&5
6957 + (eval $ac_link) 2>conftest.er1
6958 ac_status=$?
6959 + grep -v '^ *+' conftest.er1 >conftest.err
6960 + rm -f conftest.er1
6961 + cat conftest.err >&5
6962 echo "$as_me:$LINENO: \$? = $ac_status" >&5
6963 (exit $ac_status); } &&
6964 - { ac_try='test -s conftest$ac_exeext'
6965 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
6966 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6967 + (eval $ac_try) 2>&5
6968 + ac_status=$?
6969 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
6970 + (exit $ac_status); }; } &&
6971 + { ac_try='test -s conftest$ac_exeext'
6972 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
6973 (eval $ac_try) 2>&5
6974 ac_status=$?
6975 @@ -26054,7 +27343,8 @@
6977 eval "$as_ac_var=no"
6979 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
6980 +rm -f conftest.err conftest.$ac_objext \
6981 + conftest$ac_exeext conftest.$ac_ext
6983 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
6984 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
6985 @@ -26077,21 +27367,28 @@
6986 echo $ECHO_N "(cached) $ECHO_C" >&6
6987 else
6988 cat >conftest.$ac_ext <<_ACEOF
6989 -#line $LINENO "configure"
6990 /* confdefs.h. */
6991 _ACEOF
6992 cat confdefs.h >>conftest.$ac_ext
6993 cat >>conftest.$ac_ext <<_ACEOF
6994 /* end confdefs.h. */
6995 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
6996 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
6997 +#define $ac_func innocuous_$ac_func
6999 /* System header to define __stub macros and hopefully few prototypes,
7000 which can conflict with char $ac_func (); below.
7001 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
7002 <limits.h> exists even on freestanding compilers. */
7004 #ifdef __STDC__
7005 # include <limits.h>
7006 #else
7007 # include <assert.h>
7008 #endif
7010 +#undef $ac_func
7012 /* Override any gcc2 internal prototype to avoid an error. */
7013 #ifdef __cplusplus
7014 extern "C"
7015 @@ -26122,11 +27419,20 @@
7016 _ACEOF
7017 rm -f conftest.$ac_objext conftest$ac_exeext
7018 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7019 - (eval $ac_link) 2>&5
7020 + (eval $ac_link) 2>conftest.er1
7021 ac_status=$?
7022 + grep -v '^ *+' conftest.er1 >conftest.err
7023 + rm -f conftest.er1
7024 + cat conftest.err >&5
7025 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7026 (exit $ac_status); } &&
7027 - { ac_try='test -s conftest$ac_exeext'
7028 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
7029 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7030 + (eval $ac_try) 2>&5
7031 + ac_status=$?
7032 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
7033 + (exit $ac_status); }; } &&
7034 + { ac_try='test -s conftest$ac_exeext'
7035 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7036 (eval $ac_try) 2>&5
7037 ac_status=$?
7038 @@ -26139,7 +27445,8 @@
7040 eval "$as_ac_var=no"
7042 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7043 +rm -f conftest.err conftest.$ac_objext \
7044 + conftest$ac_exeext conftest.$ac_ext
7046 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
7047 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
7048 @@ -26150,7 +27457,14 @@
7051 done
7052 - LIBOBJS="$LIBOBJS utimes.$ac_objext"
7053 + case $LIBOBJS in
7054 + "utimes.$ac_objext" | \
7055 + *" utimes.$ac_objext" | \
7056 + "utimes.$ac_objext "* | \
7057 + *" utimes.$ac_objext "* ) ;;
7058 + *) LIBOBJS="$LIBOBJS utimes.$ac_objext" ;;
7059 +esac
7062 done
7064 @@ -26164,7 +27478,6 @@
7065 sudo_cv_func_fnmatch=no
7066 else
7067 cat >conftest.$ac_ext <<_ACEOF
7068 -#line $LINENO "configure"
7069 /* confdefs.h. */
7070 _ACEOF
7071 cat confdefs.h >>conftest.$ac_ext
7072 @@ -26194,7 +27507,7 @@
7073 ( exit $ac_status )
7074 sudo_cv_func_fnmatch=no
7076 -rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
7077 +rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
7079 rm -f core core.* *.core
7081 @@ -26206,7 +27519,14 @@
7082 _ACEOF
7084 else
7085 - LIBOBJS="$LIBOBJS fnmatch.$ac_objext"
7086 + case $LIBOBJS in
7087 + "fnmatch.$ac_objext" | \
7088 + *" fnmatch.$ac_objext" | \
7089 + "fnmatch.$ac_objext "* | \
7090 + *" fnmatch.$ac_objext "* ) ;;
7091 + *) LIBOBJS="$LIBOBJS fnmatch.$ac_objext" ;;
7092 +esac
7096 echo "$as_me:$LINENO: checking for isblank" >&5
7097 @@ -26215,7 +27535,6 @@
7098 echo $ECHO_N "(cached) $ECHO_C" >&6
7099 else
7100 cat >conftest.$ac_ext <<_ACEOF
7101 -#line $LINENO "configure"
7102 /* confdefs.h. */
7103 _ACEOF
7104 cat confdefs.h >>conftest.$ac_ext
7105 @@ -26232,11 +27551,20 @@
7106 _ACEOF
7107 rm -f conftest.$ac_objext conftest$ac_exeext
7108 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7109 - (eval $ac_link) 2>&5
7110 + (eval $ac_link) 2>conftest.er1
7111 ac_status=$?
7112 + grep -v '^ *+' conftest.er1 >conftest.err
7113 + rm -f conftest.er1
7114 + cat conftest.err >&5
7115 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7116 (exit $ac_status); } &&
7117 - { ac_try='test -s conftest$ac_exeext'
7118 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
7119 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7120 + (eval $ac_try) 2>&5
7121 + ac_status=$?
7122 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
7123 + (exit $ac_status); }; } &&
7124 + { ac_try='test -s conftest$ac_exeext'
7125 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7126 (eval $ac_try) 2>&5
7127 ac_status=$?
7128 @@ -26249,7 +27577,8 @@
7130 sudo_cv_func_isblank=no
7132 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7133 +rm -f conftest.err conftest.$ac_objext \
7134 + conftest$ac_exeext conftest.$ac_ext
7136 echo "$as_me:$LINENO: result: $sudo_cv_func_isblank" >&5
7137 echo "${ECHO_T}$sudo_cv_func_isblank" >&6
7138 @@ -26277,21 +27606,28 @@
7139 echo $ECHO_N "(cached) $ECHO_C" >&6
7140 else
7141 cat >conftest.$ac_ext <<_ACEOF
7142 -#line $LINENO "configure"
7143 /* confdefs.h. */
7144 _ACEOF
7145 cat confdefs.h >>conftest.$ac_ext
7146 cat >>conftest.$ac_ext <<_ACEOF
7147 /* end confdefs.h. */
7148 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
7149 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
7150 +#define $ac_func innocuous_$ac_func
7152 /* System header to define __stub macros and hopefully few prototypes,
7153 which can conflict with char $ac_func (); below.
7154 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
7155 <limits.h> exists even on freestanding compilers. */
7157 #ifdef __STDC__
7158 # include <limits.h>
7159 #else
7160 # include <assert.h>
7161 #endif
7163 +#undef $ac_func
7165 /* Override any gcc2 internal prototype to avoid an error. */
7166 #ifdef __cplusplus
7167 extern "C"
7168 @@ -26322,11 +27658,20 @@
7169 _ACEOF
7170 rm -f conftest.$ac_objext conftest$ac_exeext
7171 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7172 - (eval $ac_link) 2>&5
7173 + (eval $ac_link) 2>conftest.er1
7174 ac_status=$?
7175 + grep -v '^ *+' conftest.er1 >conftest.err
7176 + rm -f conftest.er1
7177 + cat conftest.err >&5
7178 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7179 (exit $ac_status); } &&
7180 - { ac_try='test -s conftest$ac_exeext'
7181 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
7182 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7183 + (eval $ac_try) 2>&5
7184 + ac_status=$?
7185 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
7186 + (exit $ac_status); }; } &&
7187 + { ac_try='test -s conftest$ac_exeext'
7188 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7189 (eval $ac_try) 2>&5
7190 ac_status=$?
7191 @@ -26339,7 +27684,8 @@
7193 eval "$as_ac_var=no"
7195 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7196 +rm -f conftest.err conftest.$ac_objext \
7197 + conftest$ac_exeext conftest.$ac_ext
7199 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
7200 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
7201 @@ -26349,7 +27695,14 @@
7202 _ACEOF
7204 else
7205 - LIBOBJS="$LIBOBJS $ac_func.$ac_objext"
7206 + case $LIBOBJS in
7207 + "$ac_func.$ac_objext" | \
7208 + *" $ac_func.$ac_objext" | \
7209 + "$ac_func.$ac_objext "* | \
7210 + *" $ac_func.$ac_objext "* ) ;;
7211 + *) LIBOBJS="$LIBOBJS $ac_func.$ac_objext" ;;
7212 +esac
7215 done
7217 @@ -26367,21 +27720,28 @@
7218 echo $ECHO_N "(cached) $ECHO_C" >&6
7219 else
7220 cat >conftest.$ac_ext <<_ACEOF
7221 -#line $LINENO "configure"
7222 /* confdefs.h. */
7223 _ACEOF
7224 cat confdefs.h >>conftest.$ac_ext
7225 cat >>conftest.$ac_ext <<_ACEOF
7226 /* end confdefs.h. */
7227 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
7228 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
7229 +#define $ac_func innocuous_$ac_func
7231 /* System header to define __stub macros and hopefully few prototypes,
7232 which can conflict with char $ac_func (); below.
7233 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
7234 <limits.h> exists even on freestanding compilers. */
7236 #ifdef __STDC__
7237 # include <limits.h>
7238 #else
7239 # include <assert.h>
7240 #endif
7242 +#undef $ac_func
7244 /* Override any gcc2 internal prototype to avoid an error. */
7245 #ifdef __cplusplus
7246 extern "C"
7247 @@ -26412,11 +27772,20 @@
7248 _ACEOF
7249 rm -f conftest.$ac_objext conftest$ac_exeext
7250 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7251 - (eval $ac_link) 2>&5
7252 + (eval $ac_link) 2>conftest.er1
7253 ac_status=$?
7254 + grep -v '^ *+' conftest.er1 >conftest.err
7255 + rm -f conftest.er1
7256 + cat conftest.err >&5
7257 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7258 (exit $ac_status); } &&
7259 - { ac_try='test -s conftest$ac_exeext'
7260 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
7261 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7262 + (eval $ac_try) 2>&5
7263 + ac_status=$?
7264 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
7265 + (exit $ac_status); }; } &&
7266 + { ac_try='test -s conftest$ac_exeext'
7267 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7268 (eval $ac_try) 2>&5
7269 ac_status=$?
7270 @@ -26429,7 +27798,8 @@
7272 eval "$as_ac_var=no"
7274 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7275 +rm -f conftest.err conftest.$ac_objext \
7276 + conftest$ac_exeext conftest.$ac_ext
7278 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
7279 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
7280 @@ -26450,7 +27820,6 @@
7281 echo $ECHO_N "(cached) $ECHO_C" >&6
7282 else
7283 cat >conftest.$ac_ext <<_ACEOF
7284 -#line $LINENO "configure"
7285 /* confdefs.h. */
7286 _ACEOF
7287 cat confdefs.h >>conftest.$ac_ext
7288 @@ -26469,11 +27838,20 @@
7289 _ACEOF
7290 rm -f conftest.$ac_objext
7291 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7292 - (eval $ac_compile) 2>&5
7293 + (eval $ac_compile) 2>conftest.er1
7294 ac_status=$?
7295 + grep -v '^ *+' conftest.er1 >conftest.err
7296 + rm -f conftest.er1
7297 + cat conftest.err >&5
7298 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7299 (exit $ac_status); } &&
7300 - { ac_try='test -s conftest.$ac_objext'
7301 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
7302 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7303 + (eval $ac_try) 2>&5
7304 + ac_status=$?
7305 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
7306 + (exit $ac_status); }; } &&
7307 + { ac_try='test -s conftest.$ac_objext'
7308 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7309 (eval $ac_try) 2>&5
7310 ac_status=$?
7311 @@ -26485,7 +27863,6 @@
7312 sed 's/^/| /' conftest.$ac_ext >&5
7314 cat >conftest.$ac_ext <<_ACEOF
7315 -#line $LINENO "configure"
7316 /* confdefs.h. */
7317 _ACEOF
7318 cat confdefs.h >>conftest.$ac_ext
7319 @@ -26504,11 +27881,20 @@
7320 _ACEOF
7321 rm -f conftest.$ac_objext
7322 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7323 - (eval $ac_compile) 2>&5
7324 + (eval $ac_compile) 2>conftest.er1
7325 ac_status=$?
7326 + grep -v '^ *+' conftest.er1 >conftest.err
7327 + rm -f conftest.er1
7328 + cat conftest.err >&5
7329 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7330 (exit $ac_status); } &&
7331 - { ac_try='test -s conftest.$ac_objext'
7332 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
7333 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7334 + (eval $ac_try) 2>&5
7335 + ac_status=$?
7336 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
7337 + (exit $ac_status); }; } &&
7338 + { ac_try='test -s conftest.$ac_objext'
7339 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7340 (eval $ac_try) 2>&5
7341 ac_status=$?
7342 @@ -26521,9 +27907,9 @@
7344 ac_cv_member_struct_stat_st_mtim=no
7346 -rm -f conftest.$ac_objext conftest.$ac_ext
7347 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
7349 -rm -f conftest.$ac_objext conftest.$ac_ext
7350 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
7352 echo "$as_me:$LINENO: result: $ac_cv_member_struct_stat_st_mtim" >&5
7353 echo "${ECHO_T}$ac_cv_member_struct_stat_st_mtim" >&6
7354 @@ -26539,7 +27925,6 @@
7355 echo $ECHO_N "(cached) $ECHO_C" >&6
7356 else
7357 cat >conftest.$ac_ext <<_ACEOF
7358 -#line $LINENO "configure"
7359 /* confdefs.h. */
7360 _ACEOF
7361 cat confdefs.h >>conftest.$ac_ext
7362 @@ -26558,11 +27943,20 @@
7363 _ACEOF
7364 rm -f conftest.$ac_objext
7365 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7366 - (eval $ac_compile) 2>&5
7367 + (eval $ac_compile) 2>conftest.er1
7368 ac_status=$?
7369 + grep -v '^ *+' conftest.er1 >conftest.err
7370 + rm -f conftest.er1
7371 + cat conftest.err >&5
7372 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7373 (exit $ac_status); } &&
7374 - { ac_try='test -s conftest.$ac_objext'
7375 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
7376 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7377 + (eval $ac_try) 2>&5
7378 + ac_status=$?
7379 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
7380 + (exit $ac_status); }; } &&
7381 + { ac_try='test -s conftest.$ac_objext'
7382 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7383 (eval $ac_try) 2>&5
7384 ac_status=$?
7385 @@ -26574,7 +27968,6 @@
7386 sed 's/^/| /' conftest.$ac_ext >&5
7388 cat >conftest.$ac_ext <<_ACEOF
7389 -#line $LINENO "configure"
7390 /* confdefs.h. */
7391 _ACEOF
7392 cat confdefs.h >>conftest.$ac_ext
7393 @@ -26593,11 +27986,20 @@
7394 _ACEOF
7395 rm -f conftest.$ac_objext
7396 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7397 - (eval $ac_compile) 2>&5
7398 + (eval $ac_compile) 2>conftest.er1
7399 ac_status=$?
7400 + grep -v '^ *+' conftest.er1 >conftest.err
7401 + rm -f conftest.er1
7402 + cat conftest.err >&5
7403 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7404 (exit $ac_status); } &&
7405 - { ac_try='test -s conftest.$ac_objext'
7406 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
7407 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7408 + (eval $ac_try) 2>&5
7409 + ac_status=$?
7410 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
7411 + (exit $ac_status); }; } &&
7412 + { ac_try='test -s conftest.$ac_objext'
7413 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7414 (eval $ac_try) 2>&5
7415 ac_status=$?
7416 @@ -26610,9 +28012,9 @@
7418 ac_cv_member_struct_stat_st_mtimespec=no
7420 -rm -f conftest.$ac_objext conftest.$ac_ext
7421 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
7423 -rm -f conftest.$ac_objext conftest.$ac_ext
7424 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
7426 echo "$as_me:$LINENO: result: $ac_cv_member_struct_stat_st_mtimespec" >&5
7427 echo "${ECHO_T}$ac_cv_member_struct_stat_st_mtimespec" >&6
7428 @@ -26628,7 +28030,6 @@
7429 echo "$as_me:$LINENO: checking for two-parameter timespecsub" >&5
7430 echo $ECHO_N "checking for two-parameter timespecsub... $ECHO_C" >&6
7431 cat >conftest.$ac_ext <<_ACEOF
7432 -#line $LINENO "configure"
7433 /* confdefs.h. */
7434 _ACEOF
7435 cat confdefs.h >>conftest.$ac_ext
7436 @@ -26651,11 +28052,20 @@
7437 _ACEOF
7438 rm -f conftest.$ac_objext
7439 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
7440 - (eval $ac_compile) 2>&5
7441 + (eval $ac_compile) 2>conftest.er1
7442 ac_status=$?
7443 + grep -v '^ *+' conftest.er1 >conftest.err
7444 + rm -f conftest.er1
7445 + cat conftest.err >&5
7446 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7447 (exit $ac_status); } &&
7448 - { ac_try='test -s conftest.$ac_objext'
7449 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
7450 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7451 + (eval $ac_try) 2>&5
7452 + ac_status=$?
7453 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
7454 + (exit $ac_status); }; } &&
7455 + { ac_try='test -s conftest.$ac_objext'
7456 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7457 (eval $ac_try) 2>&5
7458 ac_status=$?
7459 @@ -26674,10 +28084,9 @@
7460 echo "$as_me:$LINENO: result: no" >&5
7461 echo "${ECHO_T}no" >&6
7463 -rm -f conftest.$ac_objext conftest.$ac_ext
7464 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
7466 cat >conftest.$ac_ext <<_ACEOF
7467 -#line $LINENO "configure"
7468 /* confdefs.h. */
7469 _ACEOF
7470 cat confdefs.h >>conftest.$ac_ext
7471 @@ -26695,11 +28104,20 @@
7472 _ACEOF
7473 rm -f conftest.$ac_objext conftest$ac_exeext
7474 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7475 - (eval $ac_link) 2>&5
7476 + (eval $ac_link) 2>conftest.er1
7477 ac_status=$?
7478 + grep -v '^ *+' conftest.er1 >conftest.err
7479 + rm -f conftest.er1
7480 + cat conftest.err >&5
7481 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7482 (exit $ac_status); } &&
7483 - { ac_try='test -s conftest$ac_exeext'
7484 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
7485 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7486 + (eval $ac_try) 2>&5
7487 + ac_status=$?
7488 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
7489 + (exit $ac_status); }; } &&
7490 + { ac_try='test -s conftest$ac_exeext'
7491 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7492 (eval $ac_try) 2>&5
7493 ac_status=$?
7494 @@ -26714,7 +28132,6 @@
7495 sed 's/^/| /' conftest.$ac_ext >&5
7497 cat >conftest.$ac_ext <<_ACEOF
7498 -#line $LINENO "configure"
7499 /* confdefs.h. */
7500 _ACEOF
7501 cat confdefs.h >>conftest.$ac_ext
7502 @@ -26732,11 +28149,20 @@
7503 _ACEOF
7504 rm -f conftest.$ac_objext conftest$ac_exeext
7505 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7506 - (eval $ac_link) 2>&5
7507 + (eval $ac_link) 2>conftest.er1
7508 ac_status=$?
7509 + grep -v '^ *+' conftest.er1 >conftest.err
7510 + rm -f conftest.er1
7511 + cat conftest.err >&5
7512 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7513 (exit $ac_status); } &&
7514 - { ac_try='test -s conftest$ac_exeext'
7515 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
7516 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7517 + (eval $ac_try) 2>&5
7518 + ac_status=$?
7519 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
7520 + (exit $ac_status); }; } &&
7521 + { ac_try='test -s conftest$ac_exeext'
7522 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7523 (eval $ac_try) 2>&5
7524 ac_status=$?
7525 @@ -26751,11 +28177,20 @@
7526 sed 's/^/| /' conftest.$ac_ext >&5
7529 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7530 +rm -f conftest.err conftest.$ac_objext \
7531 + conftest$ac_exeext conftest.$ac_ext
7533 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7534 +rm -f conftest.err conftest.$ac_objext \
7535 + conftest$ac_exeext conftest.$ac_ext
7536 if test -n "$NEED_SNPRINTF"; then
7537 - LIBOBJS="$LIBOBJS snprintf.$ac_objext"
7538 + case $LIBOBJS in
7539 + "snprintf.$ac_objext" | \
7540 + *" snprintf.$ac_objext" | \
7541 + "snprintf.$ac_objext "* | \
7542 + *" snprintf.$ac_objext "* ) ;;
7543 + *) LIBOBJS="$LIBOBJS snprintf.$ac_objext" ;;
7544 +esac
7547 if test -z "$LIB_CRYPT" -a "$with_pam" != "yes"; then
7548 echo "$as_me:$LINENO: checking for crypt" >&5
7549 @@ -26764,21 +28199,28 @@
7550 echo $ECHO_N "(cached) $ECHO_C" >&6
7551 else
7552 cat >conftest.$ac_ext <<_ACEOF
7553 -#line $LINENO "configure"
7554 /* confdefs.h. */
7555 _ACEOF
7556 cat confdefs.h >>conftest.$ac_ext
7557 cat >>conftest.$ac_ext <<_ACEOF
7558 /* end confdefs.h. */
7559 +/* Define crypt to an innocuous variant, in case <limits.h> declares crypt.
7560 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
7561 +#define crypt innocuous_crypt
7563 /* System header to define __stub macros and hopefully few prototypes,
7564 which can conflict with char crypt (); below.
7565 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
7566 <limits.h> exists even on freestanding compilers. */
7568 #ifdef __STDC__
7569 # include <limits.h>
7570 #else
7571 # include <assert.h>
7572 #endif
7574 +#undef crypt
7576 /* Override any gcc2 internal prototype to avoid an error. */
7577 #ifdef __cplusplus
7578 extern "C"
7579 @@ -26809,11 +28251,20 @@
7580 _ACEOF
7581 rm -f conftest.$ac_objext conftest$ac_exeext
7582 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7583 - (eval $ac_link) 2>&5
7584 + (eval $ac_link) 2>conftest.er1
7585 ac_status=$?
7586 + grep -v '^ *+' conftest.er1 >conftest.err
7587 + rm -f conftest.er1
7588 + cat conftest.err >&5
7589 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7590 (exit $ac_status); } &&
7591 - { ac_try='test -s conftest$ac_exeext'
7592 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
7593 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7594 + (eval $ac_try) 2>&5
7595 + ac_status=$?
7596 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
7597 + (exit $ac_status); }; } &&
7598 + { ac_try='test -s conftest$ac_exeext'
7599 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7600 (eval $ac_try) 2>&5
7601 ac_status=$?
7602 @@ -26826,7 +28277,8 @@
7604 ac_cv_func_crypt=no
7606 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7607 +rm -f conftest.err conftest.$ac_objext \
7608 + conftest$ac_exeext conftest.$ac_ext
7610 echo "$as_me:$LINENO: result: $ac_cv_func_crypt" >&5
7611 echo "${ECHO_T}$ac_cv_func_crypt" >&6
7612 @@ -26841,7 +28293,6 @@
7613 ac_check_lib_save_LIBS=$LIBS
7614 LIBS="-lcrypt $LIBS"
7615 cat >conftest.$ac_ext <<_ACEOF
7616 -#line $LINENO "configure"
7617 /* confdefs.h. */
7618 _ACEOF
7619 cat confdefs.h >>conftest.$ac_ext
7620 @@ -26865,11 +28316,20 @@
7621 _ACEOF
7622 rm -f conftest.$ac_objext conftest$ac_exeext
7623 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7624 - (eval $ac_link) 2>&5
7625 + (eval $ac_link) 2>conftest.er1
7626 ac_status=$?
7627 + grep -v '^ *+' conftest.er1 >conftest.err
7628 + rm -f conftest.er1
7629 + cat conftest.err >&5
7630 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7631 (exit $ac_status); } &&
7632 - { ac_try='test -s conftest$ac_exeext'
7633 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
7634 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7635 + (eval $ac_try) 2>&5
7636 + ac_status=$?
7637 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
7638 + (exit $ac_status); }; } &&
7639 + { ac_try='test -s conftest$ac_exeext'
7640 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7641 (eval $ac_try) 2>&5
7642 ac_status=$?
7643 @@ -26882,7 +28342,8 @@
7645 ac_cv_lib_crypt_crypt=no
7647 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7648 +rm -f conftest.err conftest.$ac_objext \
7649 + conftest$ac_exeext conftest.$ac_ext
7650 LIBS=$ac_check_lib_save_LIBS
7652 echo "$as_me:$LINENO: result: $ac_cv_lib_crypt_crypt" >&5
7653 @@ -26898,7 +28359,6 @@
7654 ac_check_lib_save_LIBS=$LIBS
7655 LIBS="-lcrypt_d $LIBS"
7656 cat >conftest.$ac_ext <<_ACEOF
7657 -#line $LINENO "configure"
7658 /* confdefs.h. */
7659 _ACEOF
7660 cat confdefs.h >>conftest.$ac_ext
7661 @@ -26922,11 +28382,20 @@
7662 _ACEOF
7663 rm -f conftest.$ac_objext conftest$ac_exeext
7664 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7665 - (eval $ac_link) 2>&5
7666 + (eval $ac_link) 2>conftest.er1
7667 ac_status=$?
7668 + grep -v '^ *+' conftest.er1 >conftest.err
7669 + rm -f conftest.er1
7670 + cat conftest.err >&5
7671 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7672 (exit $ac_status); } &&
7673 - { ac_try='test -s conftest$ac_exeext'
7674 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
7675 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7676 + (eval $ac_try) 2>&5
7677 + ac_status=$?
7678 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
7679 + (exit $ac_status); }; } &&
7680 + { ac_try='test -s conftest$ac_exeext'
7681 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7682 (eval $ac_try) 2>&5
7683 ac_status=$?
7684 @@ -26939,7 +28408,8 @@
7686 ac_cv_lib_crypt_d_crypt=no
7688 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7689 +rm -f conftest.err conftest.$ac_objext \
7690 + conftest$ac_exeext conftest.$ac_ext
7691 LIBS=$ac_check_lib_save_LIBS
7693 echo "$as_me:$LINENO: result: $ac_cv_lib_crypt_d_crypt" >&5
7694 @@ -26955,7 +28425,6 @@
7695 ac_check_lib_save_LIBS=$LIBS
7696 LIBS="-lufc $LIBS"
7697 cat >conftest.$ac_ext <<_ACEOF
7698 -#line $LINENO "configure"
7699 /* confdefs.h. */
7700 _ACEOF
7701 cat confdefs.h >>conftest.$ac_ext
7702 @@ -26979,11 +28448,20 @@
7703 _ACEOF
7704 rm -f conftest.$ac_objext conftest$ac_exeext
7705 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7706 - (eval $ac_link) 2>&5
7707 + (eval $ac_link) 2>conftest.er1
7708 ac_status=$?
7709 + grep -v '^ *+' conftest.er1 >conftest.err
7710 + rm -f conftest.er1
7711 + cat conftest.err >&5
7712 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7713 (exit $ac_status); } &&
7714 - { ac_try='test -s conftest$ac_exeext'
7715 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
7716 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7717 + (eval $ac_try) 2>&5
7718 + ac_status=$?
7719 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
7720 + (exit $ac_status); }; } &&
7721 + { ac_try='test -s conftest$ac_exeext'
7722 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7723 (eval $ac_try) 2>&5
7724 ac_status=$?
7725 @@ -26996,7 +28474,8 @@
7727 ac_cv_lib_ufc_crypt=no
7729 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7730 +rm -f conftest.err conftest.$ac_objext \
7731 + conftest$ac_exeext conftest.$ac_ext
7732 LIBS=$ac_check_lib_save_LIBS
7734 echo "$as_me:$LINENO: result: $ac_cv_lib_ufc_crypt" >&5
7735 @@ -27018,21 +28497,28 @@
7736 echo $ECHO_N "(cached) $ECHO_C" >&6
7737 else
7738 cat >conftest.$ac_ext <<_ACEOF
7739 -#line $LINENO "configure"
7740 /* confdefs.h. */
7741 _ACEOF
7742 cat confdefs.h >>conftest.$ac_ext
7743 cat >>conftest.$ac_ext <<_ACEOF
7744 /* end confdefs.h. */
7745 +/* Define socket to an innocuous variant, in case <limits.h> declares socket.
7746 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
7747 +#define socket innocuous_socket
7749 /* System header to define __stub macros and hopefully few prototypes,
7750 which can conflict with char socket (); below.
7751 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
7752 <limits.h> exists even on freestanding compilers. */
7754 #ifdef __STDC__
7755 # include <limits.h>
7756 #else
7757 # include <assert.h>
7758 #endif
7760 +#undef socket
7762 /* Override any gcc2 internal prototype to avoid an error. */
7763 #ifdef __cplusplus
7764 extern "C"
7765 @@ -27063,11 +28549,20 @@
7766 _ACEOF
7767 rm -f conftest.$ac_objext conftest$ac_exeext
7768 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7769 - (eval $ac_link) 2>&5
7770 + (eval $ac_link) 2>conftest.er1
7771 ac_status=$?
7772 + grep -v '^ *+' conftest.er1 >conftest.err
7773 + rm -f conftest.er1
7774 + cat conftest.err >&5
7775 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7776 (exit $ac_status); } &&
7777 - { ac_try='test -s conftest$ac_exeext'
7778 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
7779 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7780 + (eval $ac_try) 2>&5
7781 + ac_status=$?
7782 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
7783 + (exit $ac_status); }; } &&
7784 + { ac_try='test -s conftest$ac_exeext'
7785 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7786 (eval $ac_try) 2>&5
7787 ac_status=$?
7788 @@ -27080,7 +28575,8 @@
7790 ac_cv_func_socket=no
7792 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7793 +rm -f conftest.err conftest.$ac_objext \
7794 + conftest$ac_exeext conftest.$ac_ext
7796 echo "$as_me:$LINENO: result: $ac_cv_func_socket" >&5
7797 echo "${ECHO_T}$ac_cv_func_socket" >&6
7798 @@ -27095,7 +28591,6 @@
7799 ac_check_lib_save_LIBS=$LIBS
7800 LIBS="-lsocket $LIBS"
7801 cat >conftest.$ac_ext <<_ACEOF
7802 -#line $LINENO "configure"
7803 /* confdefs.h. */
7804 _ACEOF
7805 cat confdefs.h >>conftest.$ac_ext
7806 @@ -27119,11 +28614,20 @@
7807 _ACEOF
7808 rm -f conftest.$ac_objext conftest$ac_exeext
7809 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7810 - (eval $ac_link) 2>&5
7811 + (eval $ac_link) 2>conftest.er1
7812 ac_status=$?
7813 + grep -v '^ *+' conftest.er1 >conftest.err
7814 + rm -f conftest.er1
7815 + cat conftest.err >&5
7816 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7817 (exit $ac_status); } &&
7818 - { ac_try='test -s conftest$ac_exeext'
7819 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
7820 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7821 + (eval $ac_try) 2>&5
7822 + ac_status=$?
7823 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
7824 + (exit $ac_status); }; } &&
7825 + { ac_try='test -s conftest$ac_exeext'
7826 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7827 (eval $ac_try) 2>&5
7828 ac_status=$?
7829 @@ -27136,7 +28640,8 @@
7831 ac_cv_lib_socket_socket=no
7833 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7834 +rm -f conftest.err conftest.$ac_objext \
7835 + conftest$ac_exeext conftest.$ac_ext
7836 LIBS=$ac_check_lib_save_LIBS
7838 echo "$as_me:$LINENO: result: $ac_cv_lib_socket_socket" >&5
7839 @@ -27152,7 +28657,6 @@
7840 ac_check_lib_save_LIBS=$LIBS
7841 LIBS="-linet $LIBS"
7842 cat >conftest.$ac_ext <<_ACEOF
7843 -#line $LINENO "configure"
7844 /* confdefs.h. */
7845 _ACEOF
7846 cat confdefs.h >>conftest.$ac_ext
7847 @@ -27176,11 +28680,20 @@
7848 _ACEOF
7849 rm -f conftest.$ac_objext conftest$ac_exeext
7850 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7851 - (eval $ac_link) 2>&5
7852 + (eval $ac_link) 2>conftest.er1
7853 ac_status=$?
7854 + grep -v '^ *+' conftest.er1 >conftest.err
7855 + rm -f conftest.er1
7856 + cat conftest.err >&5
7857 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7858 (exit $ac_status); } &&
7859 - { ac_try='test -s conftest$ac_exeext'
7860 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
7861 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7862 + (eval $ac_try) 2>&5
7863 + ac_status=$?
7864 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
7865 + (exit $ac_status); }; } &&
7866 + { ac_try='test -s conftest$ac_exeext'
7867 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7868 (eval $ac_try) 2>&5
7869 ac_status=$?
7870 @@ -27193,7 +28706,8 @@
7872 ac_cv_lib_inet_socket=no
7874 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7875 +rm -f conftest.err conftest.$ac_objext \
7876 + conftest$ac_exeext conftest.$ac_ext
7877 LIBS=$ac_check_lib_save_LIBS
7879 echo "$as_me:$LINENO: result: $ac_cv_lib_inet_socket" >&5
7880 @@ -27205,13 +28719,12 @@
7881 echo "$as_me: WARNING: unable to find socket() trying -lsocket -lnsl" >&2;}
7882 echo "$as_me:$LINENO: checking for socket in -lsocket" >&5
7883 echo $ECHO_N "checking for socket in -lsocket... $ECHO_C" >&6
7884 -if test "${ac_cv_lib_socket_socket_lnsl+set}" = set; then
7885 +if test "${ac_cv_lib_socket_socket+set}" = set; then
7886 echo $ECHO_N "(cached) $ECHO_C" >&6
7887 else
7888 ac_check_lib_save_LIBS=$LIBS
7889 LIBS="-lsocket -lnsl $LIBS"
7890 cat >conftest.$ac_ext <<_ACEOF
7891 -#line $LINENO "configure"
7892 /* confdefs.h. */
7893 _ACEOF
7894 cat confdefs.h >>conftest.$ac_ext
7895 @@ -27235,29 +28748,39 @@
7896 _ACEOF
7897 rm -f conftest.$ac_objext conftest$ac_exeext
7898 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7899 - (eval $ac_link) 2>&5
7900 + (eval $ac_link) 2>conftest.er1
7901 ac_status=$?
7902 + grep -v '^ *+' conftest.er1 >conftest.err
7903 + rm -f conftest.er1
7904 + cat conftest.err >&5
7905 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7906 (exit $ac_status); } &&
7907 - { ac_try='test -s conftest$ac_exeext'
7908 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
7909 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7910 + (eval $ac_try) 2>&5
7911 + ac_status=$?
7912 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
7913 + (exit $ac_status); }; } &&
7914 + { ac_try='test -s conftest$ac_exeext'
7915 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7916 (eval $ac_try) 2>&5
7917 ac_status=$?
7918 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7919 (exit $ac_status); }; }; then
7920 - ac_cv_lib_socket_socket_lnsl=yes
7921 + ac_cv_lib_socket_socket=yes
7922 else
7923 echo "$as_me: failed program was:" >&5
7924 sed 's/^/| /' conftest.$ac_ext >&5
7926 -ac_cv_lib_socket_socket_lnsl=no
7927 +ac_cv_lib_socket_socket=no
7929 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7930 +rm -f conftest.err conftest.$ac_objext \
7931 + conftest$ac_exeext conftest.$ac_ext
7932 LIBS=$ac_check_lib_save_LIBS
7934 -echo "$as_me:$LINENO: result: $ac_cv_lib_socket_socket_lnsl" >&5
7935 -echo "${ECHO_T}$ac_cv_lib_socket_socket_lnsl" >&6
7936 -if test $ac_cv_lib_socket_socket_lnsl = yes; then
7937 +echo "$as_me:$LINENO: result: $ac_cv_lib_socket_socket" >&5
7938 +echo "${ECHO_T}$ac_cv_lib_socket_socket" >&6
7939 +if test $ac_cv_lib_socket_socket = yes; then
7940 NET_LIBS="${NET_LIBS} -lsocket -lnsl"; LIBS="${LIBS} -lsocket -lnsl"
7943 @@ -27273,21 +28796,28 @@
7944 echo $ECHO_N "(cached) $ECHO_C" >&6
7945 else
7946 cat >conftest.$ac_ext <<_ACEOF
7947 -#line $LINENO "configure"
7948 /* confdefs.h. */
7949 _ACEOF
7950 cat confdefs.h >>conftest.$ac_ext
7951 cat >>conftest.$ac_ext <<_ACEOF
7952 /* end confdefs.h. */
7953 +/* Define inet_addr to an innocuous variant, in case <limits.h> declares inet_addr.
7954 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
7955 +#define inet_addr innocuous_inet_addr
7957 /* System header to define __stub macros and hopefully few prototypes,
7958 which can conflict with char inet_addr (); below.
7959 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
7960 <limits.h> exists even on freestanding compilers. */
7962 #ifdef __STDC__
7963 # include <limits.h>
7964 #else
7965 # include <assert.h>
7966 #endif
7968 +#undef inet_addr
7970 /* Override any gcc2 internal prototype to avoid an error. */
7971 #ifdef __cplusplus
7972 extern "C"
7973 @@ -27318,11 +28848,20 @@
7974 _ACEOF
7975 rm -f conftest.$ac_objext conftest$ac_exeext
7976 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
7977 - (eval $ac_link) 2>&5
7978 + (eval $ac_link) 2>conftest.er1
7979 ac_status=$?
7980 + grep -v '^ *+' conftest.er1 >conftest.err
7981 + rm -f conftest.er1
7982 + cat conftest.err >&5
7983 echo "$as_me:$LINENO: \$? = $ac_status" >&5
7984 (exit $ac_status); } &&
7985 - { ac_try='test -s conftest$ac_exeext'
7986 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
7987 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7988 + (eval $ac_try) 2>&5
7989 + ac_status=$?
7990 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
7991 + (exit $ac_status); }; } &&
7992 + { ac_try='test -s conftest$ac_exeext'
7993 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
7994 (eval $ac_try) 2>&5
7995 ac_status=$?
7996 @@ -27335,7 +28874,8 @@
7998 ac_cv_func_inet_addr=no
8000 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8001 +rm -f conftest.err conftest.$ac_objext \
8002 + conftest$ac_exeext conftest.$ac_ext
8004 echo "$as_me:$LINENO: result: $ac_cv_func_inet_addr" >&5
8005 echo "${ECHO_T}$ac_cv_func_inet_addr" >&6
8006 @@ -27348,21 +28888,28 @@
8007 echo $ECHO_N "(cached) $ECHO_C" >&6
8008 else
8009 cat >conftest.$ac_ext <<_ACEOF
8010 -#line $LINENO "configure"
8011 /* confdefs.h. */
8012 _ACEOF
8013 cat confdefs.h >>conftest.$ac_ext
8014 cat >>conftest.$ac_ext <<_ACEOF
8015 /* end confdefs.h. */
8016 +/* Define __inet_addr to an innocuous variant, in case <limits.h> declares __inet_addr.
8017 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
8018 +#define __inet_addr innocuous___inet_addr
8020 /* System header to define __stub macros and hopefully few prototypes,
8021 which can conflict with char __inet_addr (); below.
8022 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
8023 <limits.h> exists even on freestanding compilers. */
8025 #ifdef __STDC__
8026 # include <limits.h>
8027 #else
8028 # include <assert.h>
8029 #endif
8031 +#undef __inet_addr
8033 /* Override any gcc2 internal prototype to avoid an error. */
8034 #ifdef __cplusplus
8035 extern "C"
8036 @@ -27393,11 +28940,20 @@
8037 _ACEOF
8038 rm -f conftest.$ac_objext conftest$ac_exeext
8039 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8040 - (eval $ac_link) 2>&5
8041 + (eval $ac_link) 2>conftest.er1
8042 ac_status=$?
8043 + grep -v '^ *+' conftest.er1 >conftest.err
8044 + rm -f conftest.er1
8045 + cat conftest.err >&5
8046 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8047 (exit $ac_status); } &&
8048 - { ac_try='test -s conftest$ac_exeext'
8049 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
8050 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8051 + (eval $ac_try) 2>&5
8052 + ac_status=$?
8053 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
8054 + (exit $ac_status); }; } &&
8055 + { ac_try='test -s conftest$ac_exeext'
8056 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8057 (eval $ac_try) 2>&5
8058 ac_status=$?
8059 @@ -27410,7 +28966,8 @@
8061 ac_cv_func___inet_addr=no
8063 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8064 +rm -f conftest.err conftest.$ac_objext \
8065 + conftest$ac_exeext conftest.$ac_ext
8067 echo "$as_me:$LINENO: result: $ac_cv_func___inet_addr" >&5
8068 echo "${ECHO_T}$ac_cv_func___inet_addr" >&6
8069 @@ -27425,7 +28982,6 @@
8070 ac_check_lib_save_LIBS=$LIBS
8071 LIBS="-lnsl $LIBS"
8072 cat >conftest.$ac_ext <<_ACEOF
8073 -#line $LINENO "configure"
8074 /* confdefs.h. */
8075 _ACEOF
8076 cat confdefs.h >>conftest.$ac_ext
8077 @@ -27449,11 +29005,20 @@
8078 _ACEOF
8079 rm -f conftest.$ac_objext conftest$ac_exeext
8080 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8081 - (eval $ac_link) 2>&5
8082 + (eval $ac_link) 2>conftest.er1
8083 ac_status=$?
8084 + grep -v '^ *+' conftest.er1 >conftest.err
8085 + rm -f conftest.er1
8086 + cat conftest.err >&5
8087 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8088 (exit $ac_status); } &&
8089 - { ac_try='test -s conftest$ac_exeext'
8090 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
8091 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8092 + (eval $ac_try) 2>&5
8093 + ac_status=$?
8094 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
8095 + (exit $ac_status); }; } &&
8096 + { ac_try='test -s conftest$ac_exeext'
8097 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8098 (eval $ac_try) 2>&5
8099 ac_status=$?
8100 @@ -27466,7 +29031,8 @@
8102 ac_cv_lib_nsl_inet_addr=no
8104 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8105 +rm -f conftest.err conftest.$ac_objext \
8106 + conftest$ac_exeext conftest.$ac_ext
8107 LIBS=$ac_check_lib_save_LIBS
8109 echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_inet_addr" >&5
8110 @@ -27482,7 +29048,6 @@
8111 ac_check_lib_save_LIBS=$LIBS
8112 LIBS="-linet $LIBS"
8113 cat >conftest.$ac_ext <<_ACEOF
8114 -#line $LINENO "configure"
8115 /* confdefs.h. */
8116 _ACEOF
8117 cat confdefs.h >>conftest.$ac_ext
8118 @@ -27506,11 +29071,20 @@
8119 _ACEOF
8120 rm -f conftest.$ac_objext conftest$ac_exeext
8121 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8122 - (eval $ac_link) 2>&5
8123 + (eval $ac_link) 2>conftest.er1
8124 ac_status=$?
8125 + grep -v '^ *+' conftest.er1 >conftest.err
8126 + rm -f conftest.er1
8127 + cat conftest.err >&5
8128 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8129 (exit $ac_status); } &&
8130 - { ac_try='test -s conftest$ac_exeext'
8131 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
8132 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8133 + (eval $ac_try) 2>&5
8134 + ac_status=$?
8135 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
8136 + (exit $ac_status); }; } &&
8137 + { ac_try='test -s conftest$ac_exeext'
8138 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8139 (eval $ac_try) 2>&5
8140 ac_status=$?
8141 @@ -27523,7 +29097,8 @@
8143 ac_cv_lib_inet_inet_addr=no
8145 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8146 +rm -f conftest.err conftest.$ac_objext \
8147 + conftest$ac_exeext conftest.$ac_ext
8148 LIBS=$ac_check_lib_save_LIBS
8150 echo "$as_me:$LINENO: result: $ac_cv_lib_inet_inet_addr" >&5
8151 @@ -27535,13 +29110,12 @@
8152 echo "$as_me: WARNING: unable to find inet_addr() trying -lsocket -lnsl" >&2;}
8153 echo "$as_me:$LINENO: checking for inet_addr in -lsocket" >&5
8154 echo $ECHO_N "checking for inet_addr in -lsocket... $ECHO_C" >&6
8155 -if test "${ac_cv_lib_socket_inet_addr_lnsl+set}" = set; then
8156 +if test "${ac_cv_lib_socket_inet_addr+set}" = set; then
8157 echo $ECHO_N "(cached) $ECHO_C" >&6
8158 else
8159 ac_check_lib_save_LIBS=$LIBS
8160 LIBS="-lsocket -lnsl $LIBS"
8161 cat >conftest.$ac_ext <<_ACEOF
8162 -#line $LINENO "configure"
8163 /* confdefs.h. */
8164 _ACEOF
8165 cat confdefs.h >>conftest.$ac_ext
8166 @@ -27565,29 +29139,39 @@
8167 _ACEOF
8168 rm -f conftest.$ac_objext conftest$ac_exeext
8169 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8170 - (eval $ac_link) 2>&5
8171 + (eval $ac_link) 2>conftest.er1
8172 ac_status=$?
8173 + grep -v '^ *+' conftest.er1 >conftest.err
8174 + rm -f conftest.er1
8175 + cat conftest.err >&5
8176 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8177 (exit $ac_status); } &&
8178 - { ac_try='test -s conftest$ac_exeext'
8179 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
8180 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8181 + (eval $ac_try) 2>&5
8182 + ac_status=$?
8183 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
8184 + (exit $ac_status); }; } &&
8185 + { ac_try='test -s conftest$ac_exeext'
8186 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8187 (eval $ac_try) 2>&5
8188 ac_status=$?
8189 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8190 (exit $ac_status); }; }; then
8191 - ac_cv_lib_socket_inet_addr_lnsl=yes
8192 + ac_cv_lib_socket_inet_addr=yes
8193 else
8194 echo "$as_me: failed program was:" >&5
8195 sed 's/^/| /' conftest.$ac_ext >&5
8197 -ac_cv_lib_socket_inet_addr_lnsl=no
8198 +ac_cv_lib_socket_inet_addr=no
8200 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8201 +rm -f conftest.err conftest.$ac_objext \
8202 + conftest$ac_exeext conftest.$ac_ext
8203 LIBS=$ac_check_lib_save_LIBS
8205 -echo "$as_me:$LINENO: result: $ac_cv_lib_socket_inet_addr_lnsl" >&5
8206 -echo "${ECHO_T}$ac_cv_lib_socket_inet_addr_lnsl" >&6
8207 -if test $ac_cv_lib_socket_inet_addr_lnsl = yes; then
8208 +echo "$as_me:$LINENO: result: $ac_cv_lib_socket_inet_addr" >&5
8209 +echo "${ECHO_T}$ac_cv_lib_socket_inet_addr" >&6
8210 +if test $ac_cv_lib_socket_inet_addr = yes; then
8211 NET_LIBS="${NET_LIBS} -lsocket -lnsl"; LIBS="${LIBS} -lsocket -lnsl"
8214 @@ -27605,21 +29189,28 @@
8215 echo $ECHO_N "(cached) $ECHO_C" >&6
8216 else
8217 cat >conftest.$ac_ext <<_ACEOF
8218 -#line $LINENO "configure"
8219 /* confdefs.h. */
8220 _ACEOF
8221 cat confdefs.h >>conftest.$ac_ext
8222 cat >>conftest.$ac_ext <<_ACEOF
8223 /* end confdefs.h. */
8224 +/* Define syslog to an innocuous variant, in case <limits.h> declares syslog.
8225 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
8226 +#define syslog innocuous_syslog
8228 /* System header to define __stub macros and hopefully few prototypes,
8229 which can conflict with char syslog (); below.
8230 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
8231 <limits.h> exists even on freestanding compilers. */
8233 #ifdef __STDC__
8234 # include <limits.h>
8235 #else
8236 # include <assert.h>
8237 #endif
8239 +#undef syslog
8241 /* Override any gcc2 internal prototype to avoid an error. */
8242 #ifdef __cplusplus
8243 extern "C"
8244 @@ -27650,11 +29241,20 @@
8245 _ACEOF
8246 rm -f conftest.$ac_objext conftest$ac_exeext
8247 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8248 - (eval $ac_link) 2>&5
8249 + (eval $ac_link) 2>conftest.er1
8250 ac_status=$?
8251 + grep -v '^ *+' conftest.er1 >conftest.err
8252 + rm -f conftest.er1
8253 + cat conftest.err >&5
8254 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8255 (exit $ac_status); } &&
8256 - { ac_try='test -s conftest$ac_exeext'
8257 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
8258 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8259 + (eval $ac_try) 2>&5
8260 + ac_status=$?
8261 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
8262 + (exit $ac_status); }; } &&
8263 + { ac_try='test -s conftest$ac_exeext'
8264 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8265 (eval $ac_try) 2>&5
8266 ac_status=$?
8267 @@ -27667,7 +29267,8 @@
8269 ac_cv_func_syslog=no
8271 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8272 +rm -f conftest.err conftest.$ac_objext \
8273 + conftest$ac_exeext conftest.$ac_ext
8275 echo "$as_me:$LINENO: result: $ac_cv_func_syslog" >&5
8276 echo "${ECHO_T}$ac_cv_func_syslog" >&6
8277 @@ -27682,7 +29283,6 @@
8278 ac_check_lib_save_LIBS=$LIBS
8279 LIBS="-lsocket $LIBS"
8280 cat >conftest.$ac_ext <<_ACEOF
8281 -#line $LINENO "configure"
8282 /* confdefs.h. */
8283 _ACEOF
8284 cat confdefs.h >>conftest.$ac_ext
8285 @@ -27706,11 +29306,20 @@
8286 _ACEOF
8287 rm -f conftest.$ac_objext conftest$ac_exeext
8288 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8289 - (eval $ac_link) 2>&5
8290 + (eval $ac_link) 2>conftest.er1
8291 ac_status=$?
8292 + grep -v '^ *+' conftest.er1 >conftest.err
8293 + rm -f conftest.er1
8294 + cat conftest.err >&5
8295 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8296 (exit $ac_status); } &&
8297 - { ac_try='test -s conftest$ac_exeext'
8298 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
8299 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8300 + (eval $ac_try) 2>&5
8301 + ac_status=$?
8302 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
8303 + (exit $ac_status); }; } &&
8304 + { ac_try='test -s conftest$ac_exeext'
8305 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8306 (eval $ac_try) 2>&5
8307 ac_status=$?
8308 @@ -27723,7 +29332,8 @@
8310 ac_cv_lib_socket_syslog=no
8312 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8313 +rm -f conftest.err conftest.$ac_objext \
8314 + conftest$ac_exeext conftest.$ac_ext
8315 LIBS=$ac_check_lib_save_LIBS
8317 echo "$as_me:$LINENO: result: $ac_cv_lib_socket_syslog" >&5
8318 @@ -27739,7 +29349,6 @@
8319 ac_check_lib_save_LIBS=$LIBS
8320 LIBS="-lnsl $LIBS"
8321 cat >conftest.$ac_ext <<_ACEOF
8322 -#line $LINENO "configure"
8323 /* confdefs.h. */
8324 _ACEOF
8325 cat confdefs.h >>conftest.$ac_ext
8326 @@ -27763,11 +29372,20 @@
8327 _ACEOF
8328 rm -f conftest.$ac_objext conftest$ac_exeext
8329 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8330 - (eval $ac_link) 2>&5
8331 + (eval $ac_link) 2>conftest.er1
8332 + ac_status=$?
8333 + grep -v '^ *+' conftest.er1 >conftest.err
8334 + rm -f conftest.er1
8335 + cat conftest.err >&5
8336 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
8337 + (exit $ac_status); } &&
8338 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
8339 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8340 + (eval $ac_try) 2>&5
8341 ac_status=$?
8342 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8343 - (exit $ac_status); } &&
8344 - { ac_try='test -s conftest$ac_exeext'
8345 + (exit $ac_status); }; } &&
8346 + { ac_try='test -s conftest$ac_exeext'
8347 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8348 (eval $ac_try) 2>&5
8349 ac_status=$?
8350 @@ -27780,7 +29398,8 @@
8352 ac_cv_lib_nsl_syslog=no
8354 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8355 +rm -f conftest.err conftest.$ac_objext \
8356 + conftest$ac_exeext conftest.$ac_ext
8357 LIBS=$ac_check_lib_save_LIBS
8359 echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_syslog" >&5
8360 @@ -27796,7 +29415,6 @@
8361 ac_check_lib_save_LIBS=$LIBS
8362 LIBS="-linet $LIBS"
8363 cat >conftest.$ac_ext <<_ACEOF
8364 -#line $LINENO "configure"
8365 /* confdefs.h. */
8366 _ACEOF
8367 cat confdefs.h >>conftest.$ac_ext
8368 @@ -27820,11 +29438,20 @@
8369 _ACEOF
8370 rm -f conftest.$ac_objext conftest$ac_exeext
8371 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8372 - (eval $ac_link) 2>&5
8373 + (eval $ac_link) 2>conftest.er1
8374 ac_status=$?
8375 + grep -v '^ *+' conftest.er1 >conftest.err
8376 + rm -f conftest.er1
8377 + cat conftest.err >&5
8378 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8379 (exit $ac_status); } &&
8380 - { ac_try='test -s conftest$ac_exeext'
8381 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
8382 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8383 + (eval $ac_try) 2>&5
8384 + ac_status=$?
8385 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
8386 + (exit $ac_status); }; } &&
8387 + { ac_try='test -s conftest$ac_exeext'
8388 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8389 (eval $ac_try) 2>&5
8390 ac_status=$?
8391 @@ -27837,7 +29464,8 @@
8393 ac_cv_lib_inet_syslog=no
8395 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8396 +rm -f conftest.err conftest.$ac_objext \
8397 + conftest$ac_exeext conftest.$ac_ext
8398 LIBS=$ac_check_lib_save_LIBS
8400 echo "$as_me:$LINENO: result: $ac_cv_lib_inet_syslog" >&5
8401 @@ -27861,7 +29489,6 @@
8402 echo $ECHO_N "(cached) $ECHO_C" >&6
8403 else
8404 cat >conftest.$ac_ext <<_ACEOF
8405 -#line $LINENO "configure"
8406 /* confdefs.h. */
8407 _ACEOF
8408 cat confdefs.h >>conftest.$ac_ext
8409 @@ -27878,11 +29505,20 @@
8410 _ACEOF
8411 rm -f conftest.$ac_objext conftest$ac_exeext
8412 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8413 - (eval $ac_link) 2>&5
8414 + (eval $ac_link) 2>conftest.er1
8415 ac_status=$?
8416 + grep -v '^ *+' conftest.er1 >conftest.err
8417 + rm -f conftest.er1
8418 + cat conftest.err >&5
8419 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8420 (exit $ac_status); } &&
8421 - { ac_try='test -s conftest$ac_exeext'
8422 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
8423 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8424 + (eval $ac_try) 2>&5
8425 + ac_status=$?
8426 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
8427 + (exit $ac_status); }; } &&
8428 + { ac_try='test -s conftest$ac_exeext'
8429 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8430 (eval $ac_try) 2>&5
8431 ac_status=$?
8432 @@ -27895,7 +29531,8 @@
8434 ac_cv_working_alloca_h=no
8436 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8437 +rm -f conftest.err conftest.$ac_objext \
8438 + conftest$ac_exeext conftest.$ac_ext
8440 echo "$as_me:$LINENO: result: $ac_cv_working_alloca_h" >&5
8441 echo "${ECHO_T}$ac_cv_working_alloca_h" >&6
8442 @@ -27913,7 +29550,6 @@
8443 echo $ECHO_N "(cached) $ECHO_C" >&6
8444 else
8445 cat >conftest.$ac_ext <<_ACEOF
8446 -#line $LINENO "configure"
8447 /* confdefs.h. */
8448 _ACEOF
8449 cat confdefs.h >>conftest.$ac_ext
8450 @@ -27950,11 +29586,20 @@
8451 _ACEOF
8452 rm -f conftest.$ac_objext conftest$ac_exeext
8453 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8454 - (eval $ac_link) 2>&5
8455 + (eval $ac_link) 2>conftest.er1
8456 ac_status=$?
8457 + grep -v '^ *+' conftest.er1 >conftest.err
8458 + rm -f conftest.er1
8459 + cat conftest.err >&5
8460 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8461 (exit $ac_status); } &&
8462 - { ac_try='test -s conftest$ac_exeext'
8463 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
8464 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8465 + (eval $ac_try) 2>&5
8466 + ac_status=$?
8467 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
8468 + (exit $ac_status); }; } &&
8469 + { ac_try='test -s conftest$ac_exeext'
8470 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8471 (eval $ac_try) 2>&5
8472 ac_status=$?
8473 @@ -27967,7 +29612,8 @@
8475 ac_cv_func_alloca_works=no
8477 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8478 +rm -f conftest.err conftest.$ac_objext \
8479 + conftest$ac_exeext conftest.$ac_ext
8481 echo "$as_me:$LINENO: result: $ac_cv_func_alloca_works" >&5
8482 echo "${ECHO_T}$ac_cv_func_alloca_works" >&6
8483 @@ -27997,7 +29643,6 @@
8484 echo $ECHO_N "(cached) $ECHO_C" >&6
8485 else
8486 cat >conftest.$ac_ext <<_ACEOF
8487 -#line $LINENO "configure"
8488 /* confdefs.h. */
8489 _ACEOF
8490 cat confdefs.h >>conftest.$ac_ext
8491 @@ -28030,21 +29675,28 @@
8492 echo $ECHO_N "(cached) $ECHO_C" >&6
8493 else
8494 cat >conftest.$ac_ext <<_ACEOF
8495 -#line $LINENO "configure"
8496 /* confdefs.h. */
8497 _ACEOF
8498 cat confdefs.h >>conftest.$ac_ext
8499 cat >>conftest.$ac_ext <<_ACEOF
8500 /* end confdefs.h. */
8501 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
8502 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
8503 +#define $ac_func innocuous_$ac_func
8505 /* System header to define __stub macros and hopefully few prototypes,
8506 which can conflict with char $ac_func (); below.
8507 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
8508 <limits.h> exists even on freestanding compilers. */
8510 #ifdef __STDC__
8511 # include <limits.h>
8512 #else
8513 # include <assert.h>
8514 #endif
8516 +#undef $ac_func
8518 /* Override any gcc2 internal prototype to avoid an error. */
8519 #ifdef __cplusplus
8520 extern "C"
8521 @@ -28075,11 +29727,20 @@
8522 _ACEOF
8523 rm -f conftest.$ac_objext conftest$ac_exeext
8524 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8525 - (eval $ac_link) 2>&5
8526 + (eval $ac_link) 2>conftest.er1
8527 ac_status=$?
8528 + grep -v '^ *+' conftest.er1 >conftest.err
8529 + rm -f conftest.er1
8530 + cat conftest.err >&5
8531 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8532 (exit $ac_status); } &&
8533 - { ac_try='test -s conftest$ac_exeext'
8534 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
8535 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8536 + (eval $ac_try) 2>&5
8537 + ac_status=$?
8538 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
8539 + (exit $ac_status); }; } &&
8540 + { ac_try='test -s conftest$ac_exeext'
8541 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8542 (eval $ac_try) 2>&5
8543 ac_status=$?
8544 @@ -28092,7 +29753,8 @@
8546 eval "$as_ac_var=no"
8548 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8549 +rm -f conftest.err conftest.$ac_objext \
8550 + conftest$ac_exeext conftest.$ac_ext
8552 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
8553 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
8554 @@ -28117,7 +29779,6 @@
8555 ac_cv_c_stack_direction=0
8556 else
8557 cat >conftest.$ac_ext <<_ACEOF
8558 -#line $LINENO "configure"
8559 /* confdefs.h. */
8560 _ACEOF
8561 cat confdefs.h >>conftest.$ac_ext
8562 @@ -28163,7 +29824,7 @@
8563 ( exit $ac_status )
8564 ac_cv_c_stack_direction=-1
8566 -rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
8567 +rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
8570 echo "$as_me:$LINENO: result: $ac_cv_c_stack_direction" >&5
8571 @@ -28187,21 +29848,28 @@
8572 echo $ECHO_N "(cached) $ECHO_C" >&6
8573 else
8574 cat >conftest.$ac_ext <<_ACEOF
8575 -#line $LINENO "configure"
8576 /* confdefs.h. */
8577 _ACEOF
8578 cat confdefs.h >>conftest.$ac_ext
8579 cat >>conftest.$ac_ext <<_ACEOF
8580 /* end confdefs.h. */
8581 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
8582 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
8583 +#define $ac_func innocuous_$ac_func
8585 /* System header to define __stub macros and hopefully few prototypes,
8586 which can conflict with char $ac_func (); below.
8587 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
8588 <limits.h> exists even on freestanding compilers. */
8590 #ifdef __STDC__
8591 # include <limits.h>
8592 #else
8593 # include <assert.h>
8594 #endif
8596 +#undef $ac_func
8598 /* Override any gcc2 internal prototype to avoid an error. */
8599 #ifdef __cplusplus
8600 extern "C"
8601 @@ -28232,11 +29900,20 @@
8602 _ACEOF
8603 rm -f conftest.$ac_objext conftest$ac_exeext
8604 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8605 - (eval $ac_link) 2>&5
8606 + (eval $ac_link) 2>conftest.er1
8607 ac_status=$?
8608 + grep -v '^ *+' conftest.er1 >conftest.err
8609 + rm -f conftest.er1
8610 + cat conftest.err >&5
8611 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8612 (exit $ac_status); } &&
8613 - { ac_try='test -s conftest$ac_exeext'
8614 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
8615 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8616 + (eval $ac_try) 2>&5
8617 + ac_status=$?
8618 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
8619 + (exit $ac_status); }; } &&
8620 + { ac_try='test -s conftest$ac_exeext'
8621 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8622 (eval $ac_try) 2>&5
8623 ac_status=$?
8624 @@ -28249,7 +29926,8 @@
8626 eval "$as_ac_var=no"
8628 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8629 +rm -f conftest.err conftest.$ac_objext \
8630 + conftest$ac_exeext conftest.$ac_ext
8632 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
8633 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
8634 @@ -28267,7 +29945,6 @@
8635 else
8637 cat >conftest.$ac_ext <<_ACEOF
8638 -#line $LINENO "configure"
8639 /* confdefs.h. */
8640 _ACEOF
8641 cat confdefs.h >>conftest.$ac_ext
8642 @@ -28284,11 +29961,20 @@
8643 _ACEOF
8644 rm -f conftest.$ac_objext conftest$ac_exeext
8645 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8646 - (eval $ac_link) 2>&5
8647 + (eval $ac_link) 2>conftest.er1
8648 ac_status=$?
8649 + grep -v '^ *+' conftest.er1 >conftest.err
8650 + rm -f conftest.er1
8651 + cat conftest.err >&5
8652 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8653 (exit $ac_status); } &&
8654 - { ac_try='test -s conftest$ac_exeext'
8655 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
8656 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8657 + (eval $ac_try) 2>&5
8658 + ac_status=$?
8659 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
8660 + (exit $ac_status); }; } &&
8661 + { ac_try='test -s conftest$ac_exeext'
8662 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8663 (eval $ac_try) 2>&5
8664 ac_status=$?
8665 @@ -28301,7 +29987,8 @@
8667 sudo_cv___progname=no
8669 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8670 +rm -f conftest.err conftest.$ac_objext \
8671 + conftest$ac_exeext conftest.$ac_ext
8674 if test "$sudo_cv___progname" = "yes"; then
8675 @@ -28310,7 +29997,14 @@
8676 _ACEOF
8678 else
8679 - LIBOBJS="$LIBOBJS getprogname.$ac_objext"
8680 + case $LIBOBJS in
8681 + "getprogname.$ac_objext" | \
8682 + *" getprogname.$ac_objext" | \
8683 + "getprogname.$ac_objext "* | \
8684 + *" getprogname.$ac_objext "* ) ;;
8685 + *) LIBOBJS="$LIBOBJS getprogname.$ac_objext" ;;
8686 +esac
8689 echo "$as_me:$LINENO: result: $sudo_cv___progname" >&5
8690 echo "${ECHO_T}$sudo_cv___progname" >&6
8691 @@ -28342,6 +30036,7 @@
8692 (exit $ac_status); } >/dev/null; then
8693 if test -s conftest.err; then
8694 ac_cpp_err=$ac_c_preproc_warn_flag
8695 + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
8696 else
8697 ac_cpp_err=
8699 @@ -28394,7 +30089,6 @@
8700 echo "$as_me:$LINENO: checking krb.h usability" >&5
8701 echo $ECHO_N "checking krb.h usability... $ECHO_C" >&6
8702 cat >conftest.$ac_ext <<_ACEOF
8703 -#line $LINENO "configure"
8704 /* confdefs.h. */
8705 _ACEOF
8706 cat confdefs.h >>conftest.$ac_ext
8707 @@ -28405,11 +30099,20 @@
8708 _ACEOF
8709 rm -f conftest.$ac_objext
8710 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
8711 - (eval $ac_compile) 2>&5
8712 + (eval $ac_compile) 2>conftest.er1
8713 ac_status=$?
8714 + grep -v '^ *+' conftest.er1 >conftest.err
8715 + rm -f conftest.er1
8716 + cat conftest.err >&5
8717 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8718 (exit $ac_status); } &&
8719 - { ac_try='test -s conftest.$ac_objext'
8720 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
8721 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8722 + (eval $ac_try) 2>&5
8723 + ac_status=$?
8724 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
8725 + (exit $ac_status); }; } &&
8726 + { ac_try='test -s conftest.$ac_objext'
8727 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8728 (eval $ac_try) 2>&5
8729 ac_status=$?
8730 @@ -28422,7 +30125,7 @@
8732 ac_header_compiler=no
8734 -rm -f conftest.$ac_objext conftest.$ac_ext
8735 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
8736 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
8737 echo "${ECHO_T}$ac_header_compiler" >&6
8739 @@ -28430,7 +30133,6 @@
8740 echo "$as_me:$LINENO: checking krb.h presence" >&5
8741 echo $ECHO_N "checking krb.h presence... $ECHO_C" >&6
8742 cat >conftest.$ac_ext <<_ACEOF
8743 -#line $LINENO "configure"
8744 /* confdefs.h. */
8745 _ACEOF
8746 cat confdefs.h >>conftest.$ac_ext
8747 @@ -28448,6 +30150,7 @@
8748 (exit $ac_status); } >/dev/null; then
8749 if test -s conftest.err; then
8750 ac_cpp_err=$ac_c_preproc_warn_flag
8751 + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
8752 else
8753 ac_cpp_err=
8755 @@ -28467,33 +30170,32 @@
8756 echo "${ECHO_T}$ac_header_preproc" >&6
8758 # So? What about this header?
8759 -case $ac_header_compiler:$ac_header_preproc in
8760 - yes:no )
8761 +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
8762 + yes:no: )
8763 { echo "$as_me:$LINENO: WARNING: krb.h: accepted by the compiler, rejected by the preprocessor!" >&5
8764 echo "$as_me: WARNING: krb.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
8765 - { echo "$as_me:$LINENO: WARNING: krb.h: proceeding with the preprocessor's result" >&5
8766 -echo "$as_me: WARNING: krb.h: proceeding with the preprocessor's result" >&2;}
8768 - cat <<\_ASBOX
8769 -## ------------------------------------ ##
8770 -## Report this to bug-autoconf@gnu.org. ##
8771 -## ------------------------------------ ##
8772 -_ASBOX
8773 - ) |
8774 - sed "s/^/$as_me: WARNING: /" >&2
8775 + { echo "$as_me:$LINENO: WARNING: krb.h: proceeding with the compiler's result" >&5
8776 +echo "$as_me: WARNING: krb.h: proceeding with the compiler's result" >&2;}
8777 + ac_header_preproc=yes
8779 - no:yes )
8780 + no:yes:* )
8781 { echo "$as_me:$LINENO: WARNING: krb.h: present but cannot be compiled" >&5
8782 echo "$as_me: WARNING: krb.h: present but cannot be compiled" >&2;}
8783 - { echo "$as_me:$LINENO: WARNING: krb.h: check for missing prerequisite headers?" >&5
8784 -echo "$as_me: WARNING: krb.h: check for missing prerequisite headers?" >&2;}
8785 + { echo "$as_me:$LINENO: WARNING: krb.h: check for missing prerequisite headers?" >&5
8786 +echo "$as_me: WARNING: krb.h: check for missing prerequisite headers?" >&2;}
8787 + { echo "$as_me:$LINENO: WARNING: krb.h: see the Autoconf documentation" >&5
8788 +echo "$as_me: WARNING: krb.h: see the Autoconf documentation" >&2;}
8789 + { echo "$as_me:$LINENO: WARNING: krb.h: section \"Present But Cannot Be Compiled\"" >&5
8790 +echo "$as_me: WARNING: krb.h: section \"Present But Cannot Be Compiled\"" >&2;}
8791 { echo "$as_me:$LINENO: WARNING: krb.h: proceeding with the preprocessor's result" >&5
8792 echo "$as_me: WARNING: krb.h: proceeding with the preprocessor's result" >&2;}
8793 + { echo "$as_me:$LINENO: WARNING: krb.h: in the future, the compiler will take precedence" >&5
8794 +echo "$as_me: WARNING: krb.h: in the future, the compiler will take precedence" >&2;}
8796 cat <<\_ASBOX
8797 -## ------------------------------------ ##
8798 -## Report this to bug-autoconf@gnu.org. ##
8799 -## ------------------------------------ ##
8800 +## ------------------------------- ##
8801 +## Report this to the sudo lists. ##
8802 +## ------------------------------- ##
8803 _ASBOX
8805 sed "s/^/$as_me: WARNING: /" >&2
8806 @@ -28531,7 +30233,6 @@
8807 ac_check_lib_save_LIBS=$LIBS
8808 LIBS="-ldes $LIBS"
8809 cat >conftest.$ac_ext <<_ACEOF
8810 -#line $LINENO "configure"
8811 /* confdefs.h. */
8812 _ACEOF
8813 cat confdefs.h >>conftest.$ac_ext
8814 @@ -28555,11 +30256,20 @@
8815 _ACEOF
8816 rm -f conftest.$ac_objext conftest$ac_exeext
8817 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8818 - (eval $ac_link) 2>&5
8819 + (eval $ac_link) 2>conftest.er1
8820 ac_status=$?
8821 + grep -v '^ *+' conftest.er1 >conftest.err
8822 + rm -f conftest.er1
8823 + cat conftest.err >&5
8824 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8825 (exit $ac_status); } &&
8826 - { ac_try='test -s conftest$ac_exeext'
8827 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
8828 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8829 + (eval $ac_try) 2>&5
8830 + ac_status=$?
8831 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
8832 + (exit $ac_status); }; } &&
8833 + { ac_try='test -s conftest$ac_exeext'
8834 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8835 (eval $ac_try) 2>&5
8836 ac_status=$?
8837 @@ -28572,7 +30282,8 @@
8839 ac_cv_lib_des_des_cbc_encrypt=no
8841 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8842 +rm -f conftest.err conftest.$ac_objext \
8843 + conftest$ac_exeext conftest.$ac_ext
8844 LIBS=$ac_check_lib_save_LIBS
8846 echo "$as_me:$LINENO: result: $ac_cv_lib_des_des_cbc_encrypt" >&5
8847 @@ -28589,7 +30300,6 @@
8848 ac_check_lib_save_LIBS=$LIBS
8849 LIBS="-ldes425 $LIBS"
8850 cat >conftest.$ac_ext <<_ACEOF
8851 -#line $LINENO "configure"
8852 /* confdefs.h. */
8853 _ACEOF
8854 cat confdefs.h >>conftest.$ac_ext
8855 @@ -28613,11 +30323,20 @@
8856 _ACEOF
8857 rm -f conftest.$ac_objext conftest$ac_exeext
8858 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8859 - (eval $ac_link) 2>&5
8860 + (eval $ac_link) 2>conftest.er1
8861 ac_status=$?
8862 + grep -v '^ *+' conftest.er1 >conftest.err
8863 + rm -f conftest.er1
8864 + cat conftest.err >&5
8865 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8866 (exit $ac_status); } &&
8867 - { ac_try='test -s conftest$ac_exeext'
8868 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
8869 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8870 + (eval $ac_try) 2>&5
8871 + ac_status=$?
8872 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
8873 + (exit $ac_status); }; } &&
8874 + { ac_try='test -s conftest$ac_exeext'
8875 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8876 (eval $ac_try) 2>&5
8877 ac_status=$?
8878 @@ -28630,7 +30349,8 @@
8880 ac_cv_lib_des425_des_cbc_encrypt=no
8882 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8883 +rm -f conftest.err conftest.$ac_objext \
8884 + conftest$ac_exeext conftest.$ac_ext
8885 LIBS=$ac_check_lib_save_LIBS
8887 echo "$as_me:$LINENO: result: $ac_cv_lib_des425_des_cbc_encrypt" >&5
8888 @@ -28647,7 +30367,6 @@
8889 echo "$as_me:$LINENO: checking whether we are using KTH Kerberos IV" >&5
8890 echo $ECHO_N "checking whether we are using KTH Kerberos IV... $ECHO_C" >&6
8891 cat >conftest.$ac_ext <<_ACEOF
8892 -#line $LINENO "configure"
8893 /* confdefs.h. */
8894 _ACEOF
8895 cat confdefs.h >>conftest.$ac_ext
8896 @@ -28664,11 +30383,20 @@
8897 _ACEOF
8898 rm -f conftest.$ac_objext
8899 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
8900 - (eval $ac_compile) 2>&5
8901 + (eval $ac_compile) 2>conftest.er1
8902 ac_status=$?
8903 + grep -v '^ *+' conftest.er1 >conftest.err
8904 + rm -f conftest.er1
8905 + cat conftest.err >&5
8906 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8907 (exit $ac_status); } &&
8908 - { ac_try='test -s conftest.$ac_objext'
8909 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
8910 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8911 + (eval $ac_try) 2>&5
8912 + ac_status=$?
8913 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
8914 + (exit $ac_status); }; } &&
8915 + { ac_try='test -s conftest.$ac_objext'
8916 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8917 (eval $ac_try) 2>&5
8918 ac_status=$?
8919 @@ -28686,7 +30414,6 @@
8920 ac_check_lib_save_LIBS=$LIBS
8921 LIBS="-lroken $LIBS"
8922 cat >conftest.$ac_ext <<_ACEOF
8923 -#line $LINENO "configure"
8924 /* confdefs.h. */
8925 _ACEOF
8926 cat confdefs.h >>conftest.$ac_ext
8927 @@ -28704,11 +30431,20 @@
8928 _ACEOF
8929 rm -f conftest.$ac_objext conftest$ac_exeext
8930 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8931 - (eval $ac_link) 2>&5
8932 + (eval $ac_link) 2>conftest.er1
8933 ac_status=$?
8934 + grep -v '^ *+' conftest.er1 >conftest.err
8935 + rm -f conftest.er1
8936 + cat conftest.err >&5
8937 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8938 (exit $ac_status); } &&
8939 - { ac_try='test -s conftest$ac_exeext'
8940 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
8941 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8942 + (eval $ac_try) 2>&5
8943 + ac_status=$?
8944 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
8945 + (exit $ac_status); }; } &&
8946 + { ac_try='test -s conftest$ac_exeext'
8947 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8948 (eval $ac_try) 2>&5
8949 ac_status=$?
8950 @@ -28721,7 +30457,8 @@
8952 ac_cv_lib_roken_main=no
8954 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8955 +rm -f conftest.err conftest.$ac_objext \
8956 + conftest$ac_exeext conftest.$ac_ext
8957 LIBS=$ac_check_lib_save_LIBS
8959 echo "$as_me:$LINENO: result: $ac_cv_lib_roken_main" >&5
8960 @@ -28741,17 +30478,15 @@
8964 -rm -f conftest.$ac_objext conftest.$ac_ext
8965 - as_ac_Lib=`echo "ac_cv_lib_krb_main$K4LIBS" | $as_tr_sh`
8966 -echo "$as_me:$LINENO: checking for main in -lkrb" >&5
8967 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
8968 + echo "$as_me:$LINENO: checking for main in -lkrb" >&5
8969 echo $ECHO_N "checking for main in -lkrb... $ECHO_C" >&6
8970 -if eval "test \"\${$as_ac_Lib+set}\" = set"; then
8971 +if test "${ac_cv_lib_krb_main+set}" = set; then
8972 echo $ECHO_N "(cached) $ECHO_C" >&6
8973 else
8974 ac_check_lib_save_LIBS=$LIBS
8975 LIBS="-lkrb $K4LIBS $LIBS"
8976 cat >conftest.$ac_ext <<_ACEOF
8977 -#line $LINENO "configure"
8978 /* confdefs.h. */
8979 _ACEOF
8980 cat confdefs.h >>conftest.$ac_ext
8981 @@ -28769,42 +30504,50 @@
8982 _ACEOF
8983 rm -f conftest.$ac_objext conftest$ac_exeext
8984 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
8985 - (eval $ac_link) 2>&5
8986 + (eval $ac_link) 2>conftest.er1
8987 ac_status=$?
8988 + grep -v '^ *+' conftest.er1 >conftest.err
8989 + rm -f conftest.er1
8990 + cat conftest.err >&5
8991 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8992 (exit $ac_status); } &&
8993 - { ac_try='test -s conftest$ac_exeext'
8994 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
8995 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
8996 + (eval $ac_try) 2>&5
8997 + ac_status=$?
8998 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
8999 + (exit $ac_status); }; } &&
9000 + { ac_try='test -s conftest$ac_exeext'
9001 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9002 (eval $ac_try) 2>&5
9003 ac_status=$?
9004 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9005 (exit $ac_status); }; }; then
9006 - eval "$as_ac_Lib=yes"
9007 + ac_cv_lib_krb_main=yes
9008 else
9009 echo "$as_me: failed program was:" >&5
9010 sed 's/^/| /' conftest.$ac_ext >&5
9012 -eval "$as_ac_Lib=no"
9013 +ac_cv_lib_krb_main=no
9015 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
9016 +rm -f conftest.err conftest.$ac_objext \
9017 + conftest$ac_exeext conftest.$ac_ext
9018 LIBS=$ac_check_lib_save_LIBS
9020 -echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Lib'}'`" >&5
9021 -echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6
9022 -if test `eval echo '${'$as_ac_Lib'}'` = yes; then
9023 +echo "$as_me:$LINENO: result: $ac_cv_lib_krb_main" >&5
9024 +echo "${ECHO_T}$ac_cv_lib_krb_main" >&6
9025 +if test $ac_cv_lib_krb_main = yes; then
9026 K4LIBS="-lkrb $K4LIBS"
9027 else
9029 - as_ac_Lib=`echo "ac_cv_lib_krb4_main$K4LIBS" | $as_tr_sh`
9030 -echo "$as_me:$LINENO: checking for main in -lkrb4" >&5
9031 + echo "$as_me:$LINENO: checking for main in -lkrb4" >&5
9032 echo $ECHO_N "checking for main in -lkrb4... $ECHO_C" >&6
9033 -if eval "test \"\${$as_ac_Lib+set}\" = set"; then
9034 +if test "${ac_cv_lib_krb4_main+set}" = set; then
9035 echo $ECHO_N "(cached) $ECHO_C" >&6
9036 else
9037 ac_check_lib_save_LIBS=$LIBS
9038 LIBS="-lkrb4 $K4LIBS $LIBS"
9039 cat >conftest.$ac_ext <<_ACEOF
9040 -#line $LINENO "configure"
9041 /* confdefs.h. */
9042 _ACEOF
9043 cat confdefs.h >>conftest.$ac_ext
9044 @@ -28822,29 +30565,39 @@
9045 _ACEOF
9046 rm -f conftest.$ac_objext conftest$ac_exeext
9047 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
9048 - (eval $ac_link) 2>&5
9049 + (eval $ac_link) 2>conftest.er1
9050 ac_status=$?
9051 + grep -v '^ *+' conftest.er1 >conftest.err
9052 + rm -f conftest.er1
9053 + cat conftest.err >&5
9054 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9055 (exit $ac_status); } &&
9056 - { ac_try='test -s conftest$ac_exeext'
9057 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
9058 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9059 + (eval $ac_try) 2>&5
9060 + ac_status=$?
9061 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
9062 + (exit $ac_status); }; } &&
9063 + { ac_try='test -s conftest$ac_exeext'
9064 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9065 (eval $ac_try) 2>&5
9066 ac_status=$?
9067 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9068 (exit $ac_status); }; }; then
9069 - eval "$as_ac_Lib=yes"
9070 + ac_cv_lib_krb4_main=yes
9071 else
9072 echo "$as_me: failed program was:" >&5
9073 sed 's/^/| /' conftest.$ac_ext >&5
9075 -eval "$as_ac_Lib=no"
9076 +ac_cv_lib_krb4_main=no
9078 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
9079 +rm -f conftest.err conftest.$ac_objext \
9080 + conftest$ac_exeext conftest.$ac_ext
9081 LIBS=$ac_check_lib_save_LIBS
9083 -echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Lib'}'`" >&5
9084 -echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6
9085 -if test `eval echo '${'$as_ac_Lib'}'` = yes; then
9086 +echo "$as_me:$LINENO: result: $ac_cv_lib_krb4_main" >&5
9087 +echo "${ECHO_T}$ac_cv_lib_krb4_main" >&6
9088 +if test $ac_cv_lib_krb4_main = yes; then
9089 K4LIBS="-lkrb4 $K4LIBS"
9090 else
9091 K4LIBS="-lkrb $K4LIBS"
9092 @@ -28909,7 +30662,6 @@
9093 echo "$as_me:$LINENO: checking whether we are using Heimdal" >&5
9094 echo $ECHO_N "checking whether we are using Heimdal... $ECHO_C" >&6
9095 cat >conftest.$ac_ext <<_ACEOF
9096 -#line $LINENO "configure"
9097 /* confdefs.h. */
9098 _ACEOF
9099 cat confdefs.h >>conftest.$ac_ext
9100 @@ -28926,11 +30678,20 @@
9101 _ACEOF
9102 rm -f conftest.$ac_objext
9103 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
9104 - (eval $ac_compile) 2>&5
9105 + (eval $ac_compile) 2>conftest.er1
9106 ac_status=$?
9107 + grep -v '^ *+' conftest.er1 >conftest.err
9108 + rm -f conftest.er1
9109 + cat conftest.err >&5
9110 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9111 (exit $ac_status); } &&
9112 - { ac_try='test -s conftest.$ac_objext'
9113 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
9114 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9115 + (eval $ac_try) 2>&5
9116 + ac_status=$?
9117 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
9118 + (exit $ac_status); }; } &&
9119 + { ac_try='test -s conftest.$ac_objext'
9120 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9121 (eval $ac_try) 2>&5
9122 ac_status=$?
9123 @@ -28950,7 +30711,7 @@
9124 sed 's/^/| /' conftest.$ac_ext >&5
9127 -rm -f conftest.$ac_objext conftest.$ac_ext
9128 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
9131 if test -n "$with_kerb5" -a -z "$KRB5CONFIG"; then
9132 @@ -28976,6 +30737,7 @@
9133 (exit $ac_status); } >/dev/null; then
9134 if test -s conftest.err; then
9135 ac_cpp_err=$ac_c_preproc_warn_flag
9136 + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
9137 else
9138 ac_cpp_err=
9140 @@ -29014,7 +30776,6 @@
9141 echo "$as_me:$LINENO: checking whether we are using Heimdal" >&5
9142 echo $ECHO_N "checking whether we are using Heimdal... $ECHO_C" >&6
9143 cat >conftest.$ac_ext <<_ACEOF
9144 -#line $LINENO "configure"
9145 /* confdefs.h. */
9146 _ACEOF
9147 cat confdefs.h >>conftest.$ac_ext
9148 @@ -29031,11 +30792,20 @@
9149 _ACEOF
9150 rm -f conftest.$ac_objext
9151 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
9152 - (eval $ac_compile) 2>&5
9153 + (eval $ac_compile) 2>conftest.er1
9154 ac_status=$?
9155 + grep -v '^ *+' conftest.er1 >conftest.err
9156 + rm -f conftest.er1
9157 + cat conftest.err >&5
9158 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9159 (exit $ac_status); } &&
9160 - { ac_try='test -s conftest.$ac_objext'
9161 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
9162 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9163 + (eval $ac_try) 2>&5
9164 + ac_status=$?
9165 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
9166 + (exit $ac_status); }; } &&
9167 + { ac_try='test -s conftest.$ac_objext'
9168 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9169 (eval $ac_try) 2>&5
9170 ac_status=$?
9171 @@ -29057,7 +30827,6 @@
9172 ac_check_lib_save_LIBS=$LIBS
9173 LIBS="-lroken $LIBS"
9174 cat >conftest.$ac_ext <<_ACEOF
9175 -#line $LINENO "configure"
9176 /* confdefs.h. */
9177 _ACEOF
9178 cat confdefs.h >>conftest.$ac_ext
9179 @@ -29075,11 +30844,20 @@
9180 _ACEOF
9181 rm -f conftest.$ac_objext conftest$ac_exeext
9182 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
9183 - (eval $ac_link) 2>&5
9184 + (eval $ac_link) 2>conftest.er1
9185 ac_status=$?
9186 + grep -v '^ *+' conftest.er1 >conftest.err
9187 + rm -f conftest.er1
9188 + cat conftest.err >&5
9189 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9190 (exit $ac_status); } &&
9191 - { ac_try='test -s conftest$ac_exeext'
9192 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
9193 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9194 + (eval $ac_try) 2>&5
9195 + ac_status=$?
9196 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
9197 + (exit $ac_status); }; } &&
9198 + { ac_try='test -s conftest$ac_exeext'
9199 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9200 (eval $ac_try) 2>&5
9201 ac_status=$?
9202 @@ -29092,7 +30870,8 @@
9204 ac_cv_lib_roken_main=no
9206 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
9207 +rm -f conftest.err conftest.$ac_objext \
9208 + conftest$ac_exeext conftest.$ac_ext
9209 LIBS=$ac_check_lib_save_LIBS
9211 echo "$as_me:$LINENO: result: $ac_cv_lib_roken_main" >&5
9212 @@ -29113,7 +30892,7 @@
9216 -rm -f conftest.$ac_objext conftest.$ac_ext
9217 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
9218 AUTH_OBJS="${AUTH_OBJS} kerb5.o"
9221 @@ -29126,7 +30905,6 @@
9222 ac_check_lib_save_LIBS=$LIBS
9223 LIBS="-ldl $LIBS"
9224 cat >conftest.$ac_ext <<_ACEOF
9225 -#line $LINENO "configure"
9226 /* confdefs.h. */
9227 _ACEOF
9228 cat confdefs.h >>conftest.$ac_ext
9229 @@ -29144,11 +30922,20 @@
9230 _ACEOF
9231 rm -f conftest.$ac_objext conftest$ac_exeext
9232 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
9233 - (eval $ac_link) 2>&5
9234 + (eval $ac_link) 2>conftest.er1
9235 ac_status=$?
9236 + grep -v '^ *+' conftest.er1 >conftest.err
9237 + rm -f conftest.er1
9238 + cat conftest.err >&5
9239 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9240 (exit $ac_status); } &&
9241 - { ac_try='test -s conftest$ac_exeext'
9242 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
9243 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9244 + (eval $ac_try) 2>&5
9245 + ac_status=$?
9246 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
9247 + (exit $ac_status); }; } &&
9248 + { ac_try='test -s conftest$ac_exeext'
9249 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9250 (eval $ac_try) 2>&5
9251 ac_status=$?
9252 @@ -29161,7 +30948,8 @@
9254 ac_cv_lib_dl_main=no
9256 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
9257 +rm -f conftest.err conftest.$ac_objext \
9258 + conftest$ac_exeext conftest.$ac_ext
9259 LIBS=$ac_check_lib_save_LIBS
9261 echo "$as_me:$LINENO: result: $ac_cv_lib_dl_main" >&5
9262 @@ -29190,7 +30978,6 @@
9263 echo "$as_me:$LINENO: checking $ac_header usability" >&5
9264 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
9265 cat >conftest.$ac_ext <<_ACEOF
9266 -#line $LINENO "configure"
9267 /* confdefs.h. */
9268 _ACEOF
9269 cat confdefs.h >>conftest.$ac_ext
9270 @@ -29201,11 +30988,20 @@
9271 _ACEOF
9272 rm -f conftest.$ac_objext
9273 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
9274 - (eval $ac_compile) 2>&5
9275 + (eval $ac_compile) 2>conftest.er1
9276 ac_status=$?
9277 + grep -v '^ *+' conftest.er1 >conftest.err
9278 + rm -f conftest.er1
9279 + cat conftest.err >&5
9280 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9281 (exit $ac_status); } &&
9282 - { ac_try='test -s conftest.$ac_objext'
9283 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
9284 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9285 + (eval $ac_try) 2>&5
9286 + ac_status=$?
9287 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
9288 + (exit $ac_status); }; } &&
9289 + { ac_try='test -s conftest.$ac_objext'
9290 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9291 (eval $ac_try) 2>&5
9292 ac_status=$?
9293 @@ -29218,7 +31014,7 @@
9295 ac_header_compiler=no
9297 -rm -f conftest.$ac_objext conftest.$ac_ext
9298 +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
9299 echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
9300 echo "${ECHO_T}$ac_header_compiler" >&6
9302 @@ -29226,7 +31022,6 @@
9303 echo "$as_me:$LINENO: checking $ac_header presence" >&5
9304 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
9305 cat >conftest.$ac_ext <<_ACEOF
9306 -#line $LINENO "configure"
9307 /* confdefs.h. */
9308 _ACEOF
9309 cat confdefs.h >>conftest.$ac_ext
9310 @@ -29244,6 +31039,7 @@
9311 (exit $ac_status); } >/dev/null; then
9312 if test -s conftest.err; then
9313 ac_cpp_err=$ac_c_preproc_warn_flag
9314 + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
9315 else
9316 ac_cpp_err=
9318 @@ -29263,33 +31059,32 @@
9319 echo "${ECHO_T}$ac_header_preproc" >&6
9321 # So? What about this header?
9322 -case $ac_header_compiler:$ac_header_preproc in
9323 - yes:no )
9324 +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
9325 + yes:no: )
9326 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
9327 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
9328 - { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
9329 -echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
9331 - cat <<\_ASBOX
9332 -## ------------------------------------ ##
9333 -## Report this to bug-autoconf@gnu.org. ##
9334 -## ------------------------------------ ##
9335 -_ASBOX
9336 - ) |
9337 - sed "s/^/$as_me: WARNING: /" >&2
9338 + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
9339 +echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
9340 + ac_header_preproc=yes
9342 - no:yes )
9343 + no:yes:* )
9344 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
9345 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
9346 - { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
9347 -echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
9348 + { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
9349 +echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
9350 + { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
9351 +echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
9352 + { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5
9353 +echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}
9354 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
9355 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
9356 + { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
9357 +echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
9359 cat <<\_ASBOX
9360 -## ------------------------------------ ##
9361 -## Report this to bug-autoconf@gnu.org. ##
9362 -## ------------------------------------ ##
9363 +## ------------------------------- ##
9364 +## Report this to the sudo lists. ##
9365 +## ------------------------------- ##
9366 _ASBOX
9368 sed "s/^/$as_me: WARNING: /" >&2
9369 @@ -29300,7 +31095,7 @@
9370 if eval "test \"\${$as_ac_Header+set}\" = set"; then
9371 echo $ECHO_N "(cached) $ECHO_C" >&6
9372 else
9373 - eval "$as_ac_Header=$ac_header_preproc"
9374 + eval "$as_ac_Header=\$ac_header_preproc"
9376 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
9377 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
9378 @@ -29412,6 +31207,7 @@
9379 (exit $ac_status); } >/dev/null; then
9380 if test -s conftest.err; then
9381 ac_cpp_err=$ac_c_preproc_warn_flag
9382 + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
9383 else
9384 ac_cpp_err=
9386 @@ -29445,6 +31241,7 @@
9387 (exit $ac_status); } >/dev/null; then
9388 if test -s conftest.err; then
9389 ac_cpp_err=$ac_c_preproc_warn_flag
9390 + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
9391 else
9392 ac_cpp_err=
9394 @@ -29498,7 +31295,6 @@
9395 ac_check_lib_save_LIBS=$LIBS
9396 LIBS="-lskey $LIBS"
9397 cat >conftest.$ac_ext <<_ACEOF
9398 -#line $LINENO "configure"
9399 /* confdefs.h. */
9400 _ACEOF
9401 cat confdefs.h >>conftest.$ac_ext
9402 @@ -29516,11 +31312,20 @@
9403 _ACEOF
9404 rm -f conftest.$ac_objext conftest$ac_exeext
9405 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
9406 - (eval $ac_link) 2>&5
9407 + (eval $ac_link) 2>conftest.er1
9408 ac_status=$?
9409 + grep -v '^ *+' conftest.er1 >conftest.err
9410 + rm -f conftest.er1
9411 + cat conftest.err >&5
9412 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9413 (exit $ac_status); } &&
9414 - { ac_try='test -s conftest$ac_exeext'
9415 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
9416 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9417 + (eval $ac_try) 2>&5
9418 + ac_status=$?
9419 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
9420 + (exit $ac_status); }; } &&
9421 + { ac_try='test -s conftest$ac_exeext'
9422 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9423 (eval $ac_try) 2>&5
9424 ac_status=$?
9425 @@ -29533,7 +31338,8 @@
9427 ac_cv_lib_skey_main=no
9429 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
9430 +rm -f conftest.err conftest.$ac_objext \
9431 + conftest$ac_exeext conftest.$ac_ext
9432 LIBS=$ac_check_lib_save_LIBS
9434 echo "$as_me:$LINENO: result: $ac_cv_lib_skey_main" >&5
9435 @@ -29553,7 +31359,6 @@
9436 ac_check_lib_save_LIBS=$LIBS
9437 LIBS="-lskey $LIBS"
9438 cat >conftest.$ac_ext <<_ACEOF
9439 -#line $LINENO "configure"
9440 /* confdefs.h. */
9441 _ACEOF
9442 cat confdefs.h >>conftest.$ac_ext
9443 @@ -29577,11 +31382,20 @@
9444 _ACEOF
9445 rm -f conftest.$ac_objext conftest$ac_exeext
9446 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
9447 - (eval $ac_link) 2>&5
9448 + (eval $ac_link) 2>conftest.er1
9449 ac_status=$?
9450 + grep -v '^ *+' conftest.er1 >conftest.err
9451 + rm -f conftest.er1
9452 + cat conftest.err >&5
9453 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9454 (exit $ac_status); } &&
9455 - { ac_try='test -s conftest$ac_exeext'
9456 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
9457 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9458 + (eval $ac_try) 2>&5
9459 + ac_status=$?
9460 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
9461 + (exit $ac_status); }; } &&
9462 + { ac_try='test -s conftest$ac_exeext'
9463 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9464 (eval $ac_try) 2>&5
9465 ac_status=$?
9466 @@ -29594,7 +31408,8 @@
9468 ac_cv_lib_skey_skeyaccess=no
9470 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
9471 +rm -f conftest.err conftest.$ac_objext \
9472 + conftest$ac_exeext conftest.$ac_ext
9473 LIBS=$ac_check_lib_save_LIBS
9475 echo "$as_me:$LINENO: result: $ac_cv_lib_skey_skeyaccess" >&5
9476 @@ -29647,6 +31462,7 @@
9477 (exit $ac_status); } >/dev/null; then
9478 if test -s conftest.err; then
9479 ac_cpp_err=$ac_c_preproc_warn_flag
9480 + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
9481 else
9482 ac_cpp_err=
9484 @@ -29680,6 +31496,7 @@
9485 (exit $ac_status); } >/dev/null; then
9486 if test -s conftest.err; then
9487 ac_cpp_err=$ac_c_preproc_warn_flag
9488 + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
9489 else
9490 ac_cpp_err=
9492 @@ -29733,7 +31550,6 @@
9493 ac_check_lib_save_LIBS=$LIBS
9494 LIBS="-lopie $LIBS"
9495 cat >conftest.$ac_ext <<_ACEOF
9496 -#line $LINENO "configure"
9497 /* confdefs.h. */
9498 _ACEOF
9499 cat confdefs.h >>conftest.$ac_ext
9500 @@ -29751,11 +31567,20 @@
9501 _ACEOF
9502 rm -f conftest.$ac_objext conftest$ac_exeext
9503 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
9504 - (eval $ac_link) 2>&5
9505 + (eval $ac_link) 2>conftest.er1
9506 ac_status=$?
9507 + grep -v '^ *+' conftest.er1 >conftest.err
9508 + rm -f conftest.er1
9509 + cat conftest.err >&5
9510 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9511 (exit $ac_status); } &&
9512 - { ac_try='test -s conftest$ac_exeext'
9513 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
9514 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9515 + (eval $ac_try) 2>&5
9516 + ac_status=$?
9517 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
9518 + (exit $ac_status); }; } &&
9519 + { ac_try='test -s conftest$ac_exeext'
9520 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9521 (eval $ac_try) 2>&5
9522 ac_status=$?
9523 @@ -29768,7 +31593,8 @@
9525 ac_cv_lib_opie_main=no
9527 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
9528 +rm -f conftest.err conftest.$ac_objext \
9529 + conftest$ac_exeext conftest.$ac_ext
9530 LIBS=$ac_check_lib_save_LIBS
9532 echo "$as_me:$LINENO: result: $ac_cv_lib_opie_main" >&5
9533 @@ -29809,7 +31635,7 @@
9535 echo "$as_me:$LINENO: checking for SD_Init in -laceclnt" >&5
9536 echo $ECHO_N "checking for SD_Init in -laceclnt... $ECHO_C" >&6
9537 -if test "${ac_cv_lib_aceclnt_SD_Init_______lpthread_______+set}" = set; then
9538 +if test "${ac_cv_lib_aceclnt_SD_Init+set}" = set; then
9539 echo $ECHO_N "(cached) $ECHO_C" >&6
9540 else
9541 ac_check_lib_save_LIBS=$LIBS
9542 @@ -29818,7 +31644,6 @@
9544 $LIBS"
9545 cat >conftest.$ac_ext <<_ACEOF
9546 -#line $LINENO "configure"
9547 /* confdefs.h. */
9548 _ACEOF
9549 cat confdefs.h >>conftest.$ac_ext
9550 @@ -29842,29 +31667,39 @@
9551 _ACEOF
9552 rm -f conftest.$ac_objext conftest$ac_exeext
9553 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
9554 - (eval $ac_link) 2>&5
9555 + (eval $ac_link) 2>conftest.er1
9556 ac_status=$?
9557 + grep -v '^ *+' conftest.er1 >conftest.err
9558 + rm -f conftest.er1
9559 + cat conftest.err >&5
9560 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9561 (exit $ac_status); } &&
9562 - { ac_try='test -s conftest$ac_exeext'
9563 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
9564 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9565 + (eval $ac_try) 2>&5
9566 + ac_status=$?
9567 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
9568 + (exit $ac_status); }; } &&
9569 + { ac_try='test -s conftest$ac_exeext'
9570 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9571 (eval $ac_try) 2>&5
9572 ac_status=$?
9573 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9574 (exit $ac_status); }; }; then
9575 - ac_cv_lib_aceclnt_SD_Init_______lpthread_______=yes
9576 + ac_cv_lib_aceclnt_SD_Init=yes
9577 else
9578 echo "$as_me: failed program was:" >&5
9579 sed 's/^/| /' conftest.$ac_ext >&5
9581 -ac_cv_lib_aceclnt_SD_Init_______lpthread_______=no
9582 +ac_cv_lib_aceclnt_SD_Init=no
9584 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
9585 +rm -f conftest.err conftest.$ac_objext \
9586 + conftest$ac_exeext conftest.$ac_ext
9587 LIBS=$ac_check_lib_save_LIBS
9589 -echo "$as_me:$LINENO: result: $ac_cv_lib_aceclnt_SD_Init_______lpthread_______" >&5
9590 -echo "${ECHO_T}$ac_cv_lib_aceclnt_SD_Init_______lpthread_______" >&6
9591 -if test $ac_cv_lib_aceclnt_SD_Init_______lpthread_______ = yes; then
9592 +echo "$as_me:$LINENO: result: $ac_cv_lib_aceclnt_SD_Init" >&5
9593 +echo "${ECHO_T}$ac_cv_lib_aceclnt_SD_Init" >&6
9594 +if test $ac_cv_lib_aceclnt_SD_Init = yes; then
9596 AUTH_OBJS="securid5.o"
9597 SUDO_LIBS="${SUDO_LIBS} -laceclnt -lpthread"
9598 @@ -29950,7 +31785,6 @@
9599 LIBS="${LIBS} $l"
9600 LDAP_LIBS="${LDAP_LIBS} $l"
9601 cat >conftest.$ac_ext <<_ACEOF
9602 -#line $LINENO "configure"
9603 /* confdefs.h. */
9604 _ACEOF
9605 cat confdefs.h >>conftest.$ac_ext
9606 @@ -29969,11 +31803,20 @@
9607 _ACEOF
9608 rm -f conftest.$ac_objext conftest$ac_exeext
9609 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
9610 - (eval $ac_link) 2>&5
9611 + (eval $ac_link) 2>conftest.er1
9612 ac_status=$?
9613 + grep -v '^ *+' conftest.er1 >conftest.err
9614 + rm -f conftest.er1
9615 + cat conftest.err >&5
9616 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9617 (exit $ac_status); } &&
9618 - { ac_try='test -s conftest$ac_exeext'
9619 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
9620 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9621 + (eval $ac_try) 2>&5
9622 + ac_status=$?
9623 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
9624 + (exit $ac_status); }; } &&
9625 + { ac_try='test -s conftest$ac_exeext'
9626 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9627 (eval $ac_try) 2>&5
9628 ac_status=$?
9629 @@ -29985,7 +31828,8 @@
9630 sed 's/^/| /' conftest.$ac_ext >&5
9633 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
9634 +rm -f conftest.err conftest.$ac_objext \
9635 + conftest$ac_exeext conftest.$ac_ext
9636 done
9637 if test "$found" = "no"; then
9638 LDAP_LIBS=" -ldap"
9639 @@ -29998,7 +31842,6 @@
9640 echo "$as_me:$LINENO: checking whether lber.h is needed" >&5
9641 echo $ECHO_N "checking whether lber.h is needed... $ECHO_C" >&6
9642 cat >conftest.$ac_ext <<_ACEOF
9643 -#line $LINENO "configure"
9644 /* confdefs.h. */
9645 _ACEOF
9646 cat confdefs.h >>conftest.$ac_ext
9647 @@ -30016,11 +31859,20 @@
9648 _ACEOF
9649 rm -f conftest.$ac_objext conftest$ac_exeext
9650 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
9651 - (eval $ac_link) 2>&5
9652 + (eval $ac_link) 2>conftest.er1
9653 ac_status=$?
9654 + grep -v '^ *+' conftest.er1 >conftest.err
9655 + rm -f conftest.er1
9656 + cat conftest.err >&5
9657 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9658 (exit $ac_status); } &&
9659 - { ac_try='test -s conftest$ac_exeext'
9660 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
9661 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9662 + (eval $ac_try) 2>&5
9663 + ac_status=$?
9664 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
9665 + (exit $ac_status); }; } &&
9666 + { ac_try='test -s conftest$ac_exeext'
9667 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9668 (eval $ac_try) 2>&5
9669 ac_status=$?
9670 @@ -30040,7 +31892,8 @@
9671 _ACEOF
9674 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
9675 +rm -f conftest.err conftest.$ac_objext \
9676 + conftest$ac_exeext conftest.$ac_ext
9680 @@ -30053,21 +31906,28 @@
9681 echo $ECHO_N "(cached) $ECHO_C" >&6
9682 else
9683 cat >conftest.$ac_ext <<_ACEOF
9684 -#line $LINENO "configure"
9685 /* confdefs.h. */
9686 _ACEOF
9687 cat confdefs.h >>conftest.$ac_ext
9688 cat >>conftest.$ac_ext <<_ACEOF
9689 /* end confdefs.h. */
9690 +/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
9691 + For example, HP-UX 11i <limits.h> declares gettimeofday. */
9692 +#define $ac_func innocuous_$ac_func
9694 /* System header to define __stub macros and hopefully few prototypes,
9695 which can conflict with char $ac_func (); below.
9696 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
9697 <limits.h> exists even on freestanding compilers. */
9699 #ifdef __STDC__
9700 # include <limits.h>
9701 #else
9702 # include <assert.h>
9703 #endif
9705 +#undef $ac_func
9707 /* Override any gcc2 internal prototype to avoid an error. */
9708 #ifdef __cplusplus
9709 extern "C"
9710 @@ -30098,11 +31958,20 @@
9711 _ACEOF
9712 rm -f conftest.$ac_objext conftest$ac_exeext
9713 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
9714 - (eval $ac_link) 2>&5
9715 + (eval $ac_link) 2>conftest.er1
9716 ac_status=$?
9717 + grep -v '^ *+' conftest.er1 >conftest.err
9718 + rm -f conftest.er1
9719 + cat conftest.err >&5
9720 echo "$as_me:$LINENO: \$? = $ac_status" >&5
9721 (exit $ac_status); } &&
9722 - { ac_try='test -s conftest$ac_exeext'
9723 + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
9724 + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9725 + (eval $ac_try) 2>&5
9726 + ac_status=$?
9727 + echo "$as_me:$LINENO: \$? = $ac_status" >&5
9728 + (exit $ac_status); }; } &&
9729 + { ac_try='test -s conftest$ac_exeext'
9730 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
9731 (eval $ac_try) 2>&5
9732 ac_status=$?
9733 @@ -30115,7 +31984,8 @@
9735 eval "$as_ac_var=no"
9737 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
9738 +rm -f conftest.err conftest.$ac_objext \
9739 + conftest$ac_exeext conftest.$ac_ext
9741 echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
9742 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
9743 @@ -30295,13 +32165,13 @@
9744 # `set' does not quote correctly, so add quotes (double-quote
9745 # substitution turns \\\\ into \\, and sed turns \\ into \).
9746 sed -n \
9747 - "s/'/'\\\\''/g;
9748 - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
9749 + "s/'/'\\\\''/g;
9750 + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
9753 # `set' quotes correctly as required by POSIX, so do not add quotes.
9754 sed -n \
9755 - "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
9756 + "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
9758 esac;
9760 @@ -30331,13 +32201,13 @@
9761 # trailing colons and then remove the whole line if VPATH becomes empty
9762 # (actually we leave an empty line to preserve line numbers).
9763 if test "x$srcdir" = x.; then
9764 - ac_vpsub='/^[ ]*VPATH[ ]*=/{
9765 + ac_vpsub='/^[ ]*VPATH[ ]*=/{
9766 s/:*\$(srcdir):*/:/;
9767 s/:*\${srcdir}:*/:/;
9768 s/:*@srcdir@:*/:/;
9769 -s/^\([^=]*=[ ]*\):*/\1/;
9770 +s/^\([^=]*=[ ]*\):*/\1/;
9771 s/:*$//;
9772 -s/^[^=]*=[ ]*$//;
9773 +s/^[^=]*=[ ]*$//;
9777 @@ -30348,7 +32218,7 @@
9778 for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
9779 # 1. Remove the extension, and $U if already installed.
9780 ac_i=`echo "$ac_i" |
9781 - sed 's/\$U\././;s/\.o$//;s/\.obj$//'`
9782 + sed 's/\$U\././;s/\.o$//;s/\.obj$//'`
9783 # 2. Add them.
9784 ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext"
9785 ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo'
9786 @@ -30392,9 +32262,10 @@
9787 elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
9788 set -o posix
9790 +DUALCASE=1; export DUALCASE # for MKS sh
9792 # Support unset when possible.
9793 -if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
9794 +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
9795 as_unset=unset
9796 else
9797 as_unset=false
9798 @@ -30413,7 +32284,7 @@
9799 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
9800 LC_TELEPHONE LC_TIME
9802 - if (set +x; test -n "`(eval $as_var=C; export $as_var) 2>&1`"); then
9803 + if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
9804 eval $as_var=C; export $as_var
9805 else
9806 $as_unset $as_var
9807 @@ -30592,16 +32463,17 @@
9808 if mkdir -p . 2>/dev/null; then
9809 as_mkdir_p=:
9810 else
9811 + test -d ./-p && rmdir ./-p
9812 as_mkdir_p=false
9815 as_executable_p="test -f"
9817 # Sed expression to map a string onto a valid CPP name.
9818 -as_tr_cpp="sed y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g"
9819 +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
9821 # Sed expression to map a string onto a valid variable name.
9822 -as_tr_sh="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g"
9823 +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
9826 # IFS
9827 @@ -30628,7 +32500,7 @@
9828 cat >&5 <<_CSEOF
9830 This file was extended by sudo $as_me 1.6.8, which was
9831 -generated by GNU Autoconf 2.57. Invocation command line was
9832 +generated by GNU Autoconf 2.59. Invocation command line was
9834 CONFIG_FILES = $CONFIG_FILES
9835 CONFIG_HEADERS = $CONFIG_HEADERS
9836 @@ -30672,9 +32544,9 @@
9837 -d, --debug don't remove temporary files
9838 --recheck update $as_me by reconfiguring in the same conditions
9839 --file=FILE[:TEMPLATE]
9840 - instantiate the configuration file FILE
9841 + instantiate the configuration file FILE
9842 --header=FILE[:TEMPLATE]
9843 - instantiate the configuration header FILE
9844 + instantiate the configuration header FILE
9846 Configuration files:
9847 $config_files
9848 @@ -30688,11 +32560,10 @@
9849 cat >>$CONFIG_STATUS <<_ACEOF
9850 ac_cs_version="\\
9851 sudo config.status 1.6.8
9852 -configured by $0, generated by GNU Autoconf 2.57,
9853 +configured by $0, generated by GNU Autoconf 2.59,
9854 with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
9856 -Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
9857 -Free Software Foundation, Inc.
9858 +Copyright (C) 2003 Free Software Foundation, Inc.
9859 This config.status script is free software; the Free Software Foundation
9860 gives unlimited permission to copy, distribute and modify it."
9861 srcdir=$srcdir
9862 @@ -31000,9 +32871,9 @@
9863 (echo ':t
9864 /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
9865 if test -z "$ac_sed_cmds"; then
9866 - ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
9867 + ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
9868 else
9869 - ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
9870 + ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
9872 ac_sed_frag=`expr $ac_sed_frag + 1`
9873 ac_beg=$ac_end
9874 @@ -31020,21 +32891,21 @@
9875 # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
9876 case $ac_file in
9877 - | *:- | *:-:* ) # input from stdin
9878 - cat >$tmp/stdin
9879 - ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
9880 - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
9881 + cat >$tmp/stdin
9882 + ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
9883 + ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
9884 *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
9885 - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
9886 + ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
9887 * ) ac_file_in=$ac_file.in ;;
9888 esac
9890 # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
9891 ac_dir=`(dirname "$ac_file") 2>/dev/null ||
9892 $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
9893 - X"$ac_file" : 'X\(//\)[^/]' \| \
9894 - X"$ac_file" : 'X\(//\)$' \| \
9895 - X"$ac_file" : 'X\(/\)' \| \
9896 - . : '\(.\)' 2>/dev/null ||
9897 + X"$ac_file" : 'X\(//\)[^/]' \| \
9898 + X"$ac_file" : 'X\(//\)$' \| \
9899 + X"$ac_file" : 'X\(/\)' \| \
9900 + . : '\(.\)' 2>/dev/null ||
9901 echo X"$ac_file" |
9902 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
9903 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
9904 @@ -31050,10 +32921,10 @@
9905 as_dirs="$as_dir $as_dirs"
9906 as_dir=`(dirname "$as_dir") 2>/dev/null ||
9907 $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
9908 - X"$as_dir" : 'X\(//\)[^/]' \| \
9909 - X"$as_dir" : 'X\(//\)$' \| \
9910 - X"$as_dir" : 'X\(/\)' \| \
9911 - . : '\(.\)' 2>/dev/null ||
9912 + X"$as_dir" : 'X\(//\)[^/]' \| \
9913 + X"$as_dir" : 'X\(//\)$' \| \
9914 + X"$as_dir" : 'X\(/\)' \| \
9915 + . : '\(.\)' 2>/dev/null ||
9916 echo X"$as_dir" |
9917 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
9918 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
9919 @@ -31091,20 +32962,48 @@
9920 ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
9921 ac_top_srcdir=$ac_top_builddir$srcdir ;;
9922 esac
9923 -# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
9924 -# absolute.
9925 -ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
9926 -ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd`
9927 -ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
9928 -ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
9930 +# Do not use `cd foo && pwd` to compute absolute paths, because
9931 +# the directories may not exist.
9932 +case `pwd` in
9933 +.) ac_abs_builddir="$ac_dir";;
9935 + case "$ac_dir" in
9936 + .) ac_abs_builddir=`pwd`;;
9937 + [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
9938 + *) ac_abs_builddir=`pwd`/"$ac_dir";;
9939 + esac;;
9940 +esac
9941 +case $ac_abs_builddir in
9942 +.) ac_abs_top_builddir=${ac_top_builddir}.;;
9944 + case ${ac_top_builddir}. in
9945 + .) ac_abs_top_builddir=$ac_abs_builddir;;
9946 + [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
9947 + *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
9948 + esac;;
9949 +esac
9950 +case $ac_abs_builddir in
9951 +.) ac_abs_srcdir=$ac_srcdir;;
9953 + case $ac_srcdir in
9954 + .) ac_abs_srcdir=$ac_abs_builddir;;
9955 + [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
9956 + *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
9957 + esac;;
9958 +esac
9959 +case $ac_abs_builddir in
9960 +.) ac_abs_top_srcdir=$ac_top_srcdir;;
9962 + case $ac_top_srcdir in
9963 + .) ac_abs_top_srcdir=$ac_abs_builddir;;
9964 + [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
9965 + *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
9966 + esac;;
9967 +esac
9971 - if test x"$ac_file" != x-; then
9972 - { echo "$as_me:$LINENO: creating $ac_file" >&5
9973 -echo "$as_me: creating $ac_file" >&6;}
9974 - rm -f "$ac_file"
9975 - fi
9976 # Let's still pretend it is `configure' which instantiates (i.e., don't
9977 # use $as_me), people would be surprised to read:
9978 # /* config.h. Generated by config.status. */
9979 @@ -31114,7 +33013,7 @@
9980 configure_input="$ac_file. "
9982 configure_input=$configure_input"Generated from `echo $ac_file_in |
9983 - sed 's,.*/,,'` by configure."
9984 + sed 's,.*/,,'` by configure."
9986 # First look for the input files in the build tree, otherwise in the
9987 # src tree.
9988 @@ -31123,26 +33022,32 @@
9989 case $f in
9990 -) echo $tmp/stdin ;;
9991 [\\/$]*)
9992 - # Absolute (can't be DOS-style, as IFS=:)
9993 - test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
9994 + # Absolute (can't be DOS-style, as IFS=:)
9995 + test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
9996 echo "$as_me: error: cannot find input file: $f" >&2;}
9997 { (exit 1); exit 1; }; }
9998 - echo $f;;
9999 + echo "$f";;
10000 *) # Relative
10001 - if test -f "$f"; then
10002 - # Build tree
10003 - echo $f
10004 - elif test -f "$srcdir/$f"; then
10005 - # Source tree
10006 - echo $srcdir/$f
10007 - else
10008 - # /dev/null tree
10009 - { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
10010 + if test -f "$f"; then
10011 + # Build tree
10012 + echo "$f"
10013 + elif test -f "$srcdir/$f"; then
10014 + # Source tree
10015 + echo "$srcdir/$f"
10016 + else
10017 + # /dev/null tree
10018 + { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
10019 echo "$as_me: error: cannot find input file: $f" >&2;}
10020 { (exit 1); exit 1; }; }
10021 - fi;;
10022 + fi;;
10023 esac
10024 done` || { (exit 1); exit 1; }
10026 + if test x"$ac_file" != x-; then
10027 + { echo "$as_me:$LINENO: creating $ac_file" >&5
10028 +echo "$as_me: creating $ac_file" >&6;}
10029 + rm -f "$ac_file"
10030 + fi
10031 _ACEOF
10032 cat >>$CONFIG_STATUS <<_ACEOF
10033 sed "$ac_vpsub
10034 @@ -31181,12 +33086,12 @@
10035 # NAME is the cpp macro being defined and VALUE is the value it is being given.
10037 # ac_d sets the value in "#define NAME VALUE" lines.
10038 -ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)'
10039 -ac_dB='[ ].*$,\1#\2'
10040 +ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)'
10041 +ac_dB='[ ].*$,\1#\2'
10042 ac_dC=' '
10043 ac_dD=',;t'
10044 # ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
10045 -ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)'
10046 +ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)'
10047 ac_uB='$,\1#\2define\3'
10048 ac_uC=' '
10049 ac_uD=',;t'
10050 @@ -31195,11 +33100,11 @@
10051 # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
10052 case $ac_file in
10053 - | *:- | *:-:* ) # input from stdin
10054 - cat >$tmp/stdin
10055 - ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
10056 - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
10057 + cat >$tmp/stdin
10058 + ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
10059 + ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
10060 *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
10061 - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
10062 + ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
10063 * ) ac_file_in=$ac_file.in ;;
10064 esac
10066 @@ -31213,28 +33118,29 @@
10067 case $f in
10068 -) echo $tmp/stdin ;;
10069 [\\/$]*)
10070 - # Absolute (can't be DOS-style, as IFS=:)
10071 - test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
10072 + # Absolute (can't be DOS-style, as IFS=:)
10073 + test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
10074 echo "$as_me: error: cannot find input file: $f" >&2;}
10075 { (exit 1); exit 1; }; }
10076 - echo $f;;
10077 + # Do quote $f, to prevent DOS paths from being IFS'd.
10078 + echo "$f";;
10079 *) # Relative
10080 - if test -f "$f"; then
10081 - # Build tree
10082 - echo $f
10083 - elif test -f "$srcdir/$f"; then
10084 - # Source tree
10085 - echo $srcdir/$f
10086 - else
10087 - # /dev/null tree
10088 - { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
10089 + if test -f "$f"; then
10090 + # Build tree
10091 + echo "$f"
10092 + elif test -f "$srcdir/$f"; then
10093 + # Source tree
10094 + echo "$srcdir/$f"
10095 + else
10096 + # /dev/null tree
10097 + { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
10098 echo "$as_me: error: cannot find input file: $f" >&2;}
10099 { (exit 1); exit 1; }; }
10100 - fi;;
10101 + fi;;
10102 esac
10103 done` || { (exit 1); exit 1; }
10104 # Remove the trailing spaces.
10105 - sed 's/[ ]*$//' $ac_file_inputs >$tmp/in
10106 + sed 's/[ ]*$//' $ac_file_inputs >$tmp/in
10108 _ACEOF
10110 @@ -31257,9 +33163,9 @@
10111 s,[\\$`],\\&,g
10112 t clear
10113 : clear
10114 -s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp
10115 +s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp
10116 t end
10117 -s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp
10118 +s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp
10119 : end
10120 _ACEOF
10121 # If some macros were called several times there might be several times
10122 @@ -31273,13 +33179,13 @@
10123 # example, in the case of _POSIX_SOURCE, which is predefined and required
10124 # on some systems where configure will not decide to define it.
10125 cat >>conftest.undefs <<\_ACEOF
10126 -s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
10127 +s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
10128 _ACEOF
10130 # Break up conftest.defines because some shells have a limit on the size
10131 # of here documents, and old seds have small limits too (100 cmds).
10132 echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS
10133 -echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
10134 +echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
10135 echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS
10136 echo ' :' >>$CONFIG_STATUS
10137 rm -f conftest.tail
10138 @@ -31288,7 +33194,7 @@
10139 # Write a limited-size here document to $tmp/defines.sed.
10140 echo ' cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS
10141 # Speed up: don't consider the non `#define' lines.
10142 - echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS
10143 + echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS
10144 # Work around the forget-to-reset-the-flag bug.
10145 echo 't clr' >>$CONFIG_STATUS
10146 echo ': clr' >>$CONFIG_STATUS
10147 @@ -31315,7 +33221,7 @@
10148 # Write a limited-size here document to $tmp/undefs.sed.
10149 echo ' cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS
10150 # Speed up: don't consider the non `#undef'
10151 - echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS
10152 + echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS
10153 # Work around the forget-to-reset-the-flag bug.
10154 echo 't clr' >>$CONFIG_STATUS
10155 echo ': clr' >>$CONFIG_STATUS
10156 @@ -31349,10 +33255,10 @@
10157 else
10158 ac_dir=`(dirname "$ac_file") 2>/dev/null ||
10159 $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
10160 - X"$ac_file" : 'X\(//\)[^/]' \| \
10161 - X"$ac_file" : 'X\(//\)$' \| \
10162 - X"$ac_file" : 'X\(/\)' \| \
10163 - . : '\(.\)' 2>/dev/null ||
10164 + X"$ac_file" : 'X\(//\)[^/]' \| \
10165 + X"$ac_file" : 'X\(//\)$' \| \
10166 + X"$ac_file" : 'X\(/\)' \| \
10167 + . : '\(.\)' 2>/dev/null ||
10168 echo X"$ac_file" |
10169 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
10170 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
10171 @@ -31368,10 +33274,10 @@
10172 as_dirs="$as_dir $as_dirs"
10173 as_dir=`(dirname "$as_dir") 2>/dev/null ||
10174 $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
10175 - X"$as_dir" : 'X\(//\)[^/]' \| \
10176 - X"$as_dir" : 'X\(//\)$' \| \
10177 - X"$as_dir" : 'X\(/\)' \| \
10178 - . : '\(.\)' 2>/dev/null ||
10179 + X"$as_dir" : 'X\(//\)[^/]' \| \
10180 + X"$as_dir" : 'X\(//\)$' \| \
10181 + X"$as_dir" : 'X\(/\)' \| \
10182 + . : '\(.\)' 2>/dev/null ||
10183 echo X"$as_dir" |
10184 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
10185 /^X\(\/\/\)[^/].*/{ s//\1/; q; }
10186 diff -ur sudo-1.6.8p9/configure.in sudo-1.6.8p9-patched/configure.in
10187 --- sudo-1.6.8p9/configure.in 2004-11-25 11:31:20.000000000 -0600
10188 +++ sudo-1.6.8p9-patched/configure.in 2006-05-26 13:05:14.000000000 -0500
10189 @@ -1703,9 +1703,9 @@
10190 AC_CHECK_FUNCS(lockf flock, [break])
10191 AC_CHECK_FUNCS(waitpid wait3, [break])
10192 AC_CHECK_FUNCS(innetgr _innetgr, [AC_CHECK_FUNCS(getdomainname) [break]])
10193 -AC_CHECK_FUNCS(lsearch, , [AC_CHECK_LIB(compat, lsearch, AC_CHECK_HEADER(search.h, AC_DEFINE(HAVE_LSEARCH) [LIBS="${LIBS} -lcompat"], AC_LIBOBJ(lsearch), -), AC_LIBOBJ(lsearch))])
10194 +AC_CHECK_FUNCS(lsearch, , [AC_CHECK_LIB(compat, lsearch, [AC_CHECK_HEADER(search.h, AC_DEFINE(HAVE_LSEARCH) [LIBS="${LIBS} -lcompat"], [AC_LIBOBJ(lsearch)], -)], [AC_LIBOBJ(lsearch)])])
10195 AC_CHECK_FUNCS(utimes, [AC_CHECK_FUNCS(futimes futimesat, [break])], [AC_CHECK_FUNCS(futime) AC_LIBOBJ(utimes)])
10196 -SUDO_FUNC_FNMATCH(AC_DEFINE(HAVE_FNMATCH), AC_LIBOBJ(fnmatch))
10197 +SUDO_FUNC_FNMATCH(AC_DEFINE(HAVE_FNMATCH), [AC_LIBOBJ(fnmatch)])
10198 SUDO_FUNC_ISBLANK
10199 AC_REPLACE_FUNCS(strerror strcasecmp sigaction strlcpy strlcat closefrom)
10200 AC_CHECK_FUNCS(snprintf vsnprintf asprintf vasprintf, , [NEED_SNPRINTF=1])
10201 diff -ur sudo-1.6.8p9/Makefile.in sudo-1.6.8p9-patched/Makefile.in
10202 --- sudo-1.6.8p9/Makefile.in 2005-06-19 15:03:50.000000000 -0500
10203 +++ sudo-1.6.8p9-patched/Makefile.in 2006-05-26 13:04:20.000000000 -0500
10204 @@ -301,11 +301,13 @@
10205 $(DESTDIR)$(noexecdir)
10207 install-binaries: $(PROGS)
10208 - $(INSTALL) -O $(install_uid) -G $(install_gid) -M 4111 -s sudo $(DESTDIR)$(sudodir)/sudo
10209 + $(INSTALL) -O $(install_uid) -G $(install_gid) -M 4111 sudo $(DESTDIR)$(sudodir)/sudo
10210 + $(STRIP) $(DESTDIR)$(sudodir)/sudo
10211 rm -f $(DESTDIR)$(sudodir)/sudoedit
10212 ln $(DESTDIR)$(sudodir)/sudo $(DESTDIR)$(sudodir)/sudoedit
10214 - $(INSTALL) -O $(install_uid) -G $(install_gid) -M 0111 -s visudo $(DESTDIR)$(visudodir)/visudo
10215 + $(INSTALL) -O $(install_uid) -G $(install_gid) -M 0111 visudo $(DESTDIR)$(visudodir)/visudo
10216 + $(STRIP) $(DESTDIR)$(visudodir)/visudo
10218 install-noexec: sudo_noexec.la
10219 $(LIBTOOL) --mode=install $(INSTALL) sudo_noexec.la $(DESTDIR)$(noexecdir)