Codebase list libvirt / 744aaeb
Drop Readd-LFS-support.patch fixed upstream Guido Günther 12 years ago
3 changed file(s) with 0 addition(s) and 8078 deletion(s). Raw diff Collapse all Expand all
+0
-8053
debian/patches/Autoreconf.patch less more
0 From: =?UTF-8?q?Guido=20G=C3=BCnther?= <agx@sigxcpu.org>
1 Date: Tue, 9 Aug 2011 14:46:21 +0200
2 Subject: Autoreconf
3
4 ---
5 aclocal.m4 | 18 +-
6 config.h.in | 6 +
7 configure | 1996 +++++++++++++++++++++++++++++++++--------------------------
8 3 files changed, 1145 insertions(+), 875 deletions(-)
9
10 diff --git a/aclocal.m4 b/aclocal.m4
11 index e30a5e1..01ca3c3 100644
12 --- a/aclocal.m4
13 +++ b/aclocal.m4
14 @@ -13,8 +13,8 @@
15
16 m4_ifndef([AC_AUTOCONF_VERSION],
17 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
18 -m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.66],,
19 -[m4_warning([this file was generated for autoconf 2.66.
20 +m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],,
21 +[m4_warning([this file was generated for autoconf 2.68.
22 You have another version of autoconf. It may work, but is not guaranteed to.
23 If you have problems, you may need to regenerate the build system entirely.
24 To do so, use the procedure documented by the package, typically `autoreconf'.])])
25 @@ -47,7 +47,8 @@ To do so, use the procedure documented by the package, typically `autoreconf'.])
26 # ----------------------------------
27 AC_DEFUN([PKG_PROG_PKG_CONFIG],
28 [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
29 -m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
30 +m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
31 +m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
32 AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
33 AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
34 AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
35 @@ -93,7 +94,8 @@ m4_define([_PKG_CONFIG],
36 pkg_cv_[]$1="$$1"
37 elif test -n "$PKG_CONFIG"; then
38 PKG_CHECK_EXISTS([$3],
39 - [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
40 + [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
41 + test "x$?" != "x0" && pkg_failed=yes ],
42 [pkg_failed=yes])
43 else
44 pkg_failed=untried
45 @@ -141,9 +143,9 @@ if test $pkg_failed = yes; then
46 AC_MSG_RESULT([no])
47 _PKG_SHORT_ERRORS_SUPPORTED
48 if test $_pkg_short_errors_supported = yes; then
49 - $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1`
50 + $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
51 else
52 - $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1`
53 + $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
54 fi
55 # Put the nasty error message in config.log where it belongs
56 echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
57 @@ -156,7 +158,7 @@ $$1_PKG_ERRORS
58 Consider adjusting the PKG_CONFIG_PATH environment variable if you
59 installed software in a non-standard prefix.
60
61 -_PKG_TEXT])
62 +_PKG_TEXT])[]dnl
63 ])
64 elif test $pkg_failed = untried; then
65 AC_MSG_RESULT([no])
66 @@ -167,7 +169,7 @@ path to pkg-config.
67
68 _PKG_TEXT
69
70 -To get pkg-config, see <http://pkg-config.freedesktop.org/>.])
71 +To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
72 ])
73 else
74 $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
75 diff --git a/config.h.in b/config.h.in
76 index e3d4ef7..44f3c26 100644
77 --- a/config.h.in
78 +++ b/config.h.in
79 @@ -1924,9 +1924,15 @@
80 # endif
81 #endif
82
83 +/* Number of bits in a file offset, on hosts where this is settable. */
84 +#undef _FILE_OFFSET_BITS
85 +
86 /* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
87 #undef _LARGEFILE_SOURCE
88
89 +/* Define for large files, on AIX-style hosts. */
90 +#undef _LARGE_FILES
91 +
92 /* Define in order to get some macros on AIX systems. */
93 #undef _LINUX_SOURCE_COMPAT
94
95 diff --git a/configure b/configure
96 index 523bbbd..d27d876 100755
97 --- a/configure
98 +++ b/configure
99 @@ -1,6 +1,6 @@
100 #! /bin/sh
101 # Guess values for system-dependent variables and create Makefiles.
102 -# Generated by GNU Autoconf 2.66 for libvirt 0.9.4.
103 +# Generated by GNU Autoconf 2.68 for libvirt 0.9.4.
104 #
105 # Report bugs to <libvir-list@redhat.com>.
106 #
107 @@ -91,6 +91,7 @@ fi
108 IFS=" "" $as_nl"
109
110 # Find who we are. Look in the path if we contain no directory separator.
111 +as_myself=
112 case $0 in #((
113 *[\\/]* ) as_myself=$0 ;;
114 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
115 @@ -224,11 +225,18 @@ IFS=$as_save_IFS
116 # We cannot yet assume a decent shell, so we have to provide a
117 # neutralization value for shells without unset; and this also
118 # works around shells that cannot unset nonexistent variables.
119 + # Preserve -v and -x to the replacement shell.
120 BASH_ENV=/dev/null
121 ENV=/dev/null
122 (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
123 export CONFIG_SHELL
124 - exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
125 + case $- in # ((((
126 + *v*x* | *x*v* ) as_opts=-vx ;;
127 + *v* ) as_opts=-v ;;
128 + *x* ) as_opts=-x ;;
129 + * ) as_opts= ;;
130 + esac
131 + exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"}
132 fi
133
134 if test x$as_have_required = xno; then :
135 @@ -1836,6 +1844,7 @@ with_pic
136 enable_fast_install
137 enable_libtool_lock
138 enable_compile_warnings
139 +enable_largefile
140 with_html_dir
141 with_html_subdir
142 with_xml_catalog_file
143 @@ -1998,8 +2007,9 @@ do
144 fi
145
146 case $ac_option in
147 - *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
148 - *) ac_optarg=yes ;;
149 + *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
150 + *=) ac_optarg= ;;
151 + *) ac_optarg=yes ;;
152 esac
153
154 # Accept the important Cygnus configure options, so we can diagnose typos.
155 @@ -2339,7 +2349,7 @@ Try \`$0 --help' for more information"
156 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
157 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
158 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
159 - : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
160 + : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
161 ;;
162
163 esac
164 @@ -2572,6 +2582,7 @@ Optional Features:
165 --disable-libtool-lock avoid locking (might break parallel builds)
166 --enable-compile-warnings=[no/yes/error]
167 Turn on compiler warnings
168 + --disable-largefile omit support for large files
169 --enable-debug=[no|yes] enable debugging output [default=yes]
170 --enable-test-coverage turn on code coverage instrumentation [default=no]
171 --enable-test-oom memory allocation failure checking [default=no]
172 @@ -2793,7 +2804,7 @@ test -n "$ac_init_help" && exit $ac_status
173 if $ac_init_version; then
174 cat <<\_ACEOF
175 libvirt configure 0.9.4
176 -generated by GNU Autoconf 2.66
177 +generated by GNU Autoconf 2.68
178
179 Copyright (C) 2010 Free Software Foundation, Inc.
180 This configure script is free software; the Free Software Foundation
181 @@ -2839,7 +2850,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
182
183 ac_retval=1
184 fi
185 - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
186 + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
187 as_fn_set_status $ac_retval
188
189 } # ac_fn_c_try_compile
190 @@ -2865,7 +2876,7 @@ $as_echo "$ac_try_echo"; } >&5
191 mv -f conftest.er1 conftest.err
192 fi
193 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
194 - test $ac_status = 0; } >/dev/null && {
195 + test $ac_status = 0; } > conftest.i && {
196 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
197 test ! -s conftest.err
198 }; then :
199 @@ -2876,7 +2887,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
200
201 ac_retval=1
202 fi
203 - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
204 + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
205 as_fn_set_status $ac_retval
206
207 } # ac_fn_c_try_cpp
208 @@ -2889,10 +2900,10 @@ fi
209 ac_fn_c_check_header_mongrel ()
210 {
211 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
212 - if eval "test \"\${$3+set}\"" = set; then :
213 + if eval \${$3+:} false; then :
214 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
215 $as_echo_n "checking for $2... " >&6; }
216 -if eval "test \"\${$3+set}\"" = set; then :
217 +if eval \${$3+:} false; then :
218 $as_echo_n "(cached) " >&6
219 fi
220 eval ac_res=\$$3
221 @@ -2928,7 +2939,7 @@ if ac_fn_c_try_cpp "$LINENO"; then :
222 else
223 ac_header_preproc=no
224 fi
225 -rm -f conftest.err conftest.$ac_ext
226 +rm -f conftest.err conftest.i conftest.$ac_ext
227 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
228 $as_echo "$ac_header_preproc" >&6; }
229
230 @@ -2959,7 +2970,7 @@ $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
231 esac
232 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
233 $as_echo_n "checking for $2... " >&6; }
234 -if eval "test \"\${$3+set}\"" = set; then :
235 +if eval \${$3+:} false; then :
236 $as_echo_n "(cached) " >&6
237 else
238 eval "$3=\$ac_header_compiler"
239 @@ -2968,7 +2979,7 @@ eval ac_res=\$$3
240 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
241 $as_echo "$ac_res" >&6; }
242 fi
243 - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
244 + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
245
246 } # ac_fn_c_check_header_mongrel
247
248 @@ -3009,7 +3020,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
249 ac_retval=$ac_status
250 fi
251 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
252 - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
253 + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
254 as_fn_set_status $ac_retval
255
256 } # ac_fn_c_try_run
257 @@ -3023,7 +3034,7 @@ ac_fn_c_check_header_compile ()
258 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
259 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
260 $as_echo_n "checking for $2... " >&6; }
261 -if eval "test \"\${$3+set}\"" = set; then :
262 +if eval \${$3+:} false; then :
263 $as_echo_n "(cached) " >&6
264 else
265 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
266 @@ -3041,7 +3052,7 @@ fi
267 eval ac_res=\$$3
268 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
269 $as_echo "$ac_res" >&6; }
270 - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
271 + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
272
273 } # ac_fn_c_check_header_compile
274
275 @@ -3086,7 +3097,7 @@ fi
276 # interfere with the next link command; also delete a directory that is
277 # left behind by Apple's compiler. We do this before executing the actions.
278 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
279 - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
280 + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
281 as_fn_set_status $ac_retval
282
283 } # ac_fn_c_try_link
284 @@ -3099,7 +3110,7 @@ ac_fn_c_check_func ()
285 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
286 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
287 $as_echo_n "checking for $2... " >&6; }
288 -if eval "test \"\${$3+set}\"" = set; then :
289 +if eval \${$3+:} false; then :
290 $as_echo_n "(cached) " >&6
291 else
292 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
293 @@ -3154,7 +3165,7 @@ fi
294 eval ac_res=\$$3
295 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
296 $as_echo "$ac_res" >&6; }
297 - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
298 + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
299
300 } # ac_fn_c_check_func
301
302 @@ -3167,7 +3178,7 @@ ac_fn_c_check_type ()
303 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
304 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
305 $as_echo_n "checking for $2... " >&6; }
306 -if eval "test \"\${$3+set}\"" = set; then :
307 +if eval \${$3+:} false; then :
308 $as_echo_n "(cached) " >&6
309 else
310 eval "$3=no"
311 @@ -3208,7 +3219,7 @@ fi
312 eval ac_res=\$$3
313 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
314 $as_echo "$ac_res" >&6; }
315 - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
316 + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
317
318 } # ac_fn_c_check_type
319
320 @@ -3221,7 +3232,7 @@ ac_fn_c_check_member ()
321 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
322 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5
323 $as_echo_n "checking for $2.$3... " >&6; }
324 -if eval "test \"\${$4+set}\"" = set; then :
325 +if eval \${$4+:} false; then :
326 $as_echo_n "(cached) " >&6
327 else
328 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
329 @@ -3265,7 +3276,7 @@ fi
330 eval ac_res=\$$4
331 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
332 $as_echo "$ac_res" >&6; }
333 - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
334 + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
335
336 } # ac_fn_c_check_member
337
338 @@ -3442,7 +3453,7 @@ rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
339 rm -f conftest.val
340
341 fi
342 - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
343 + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
344 as_fn_set_status $ac_retval
345
346 } # ac_fn_c_compute_int
347 @@ -3458,7 +3469,7 @@ ac_fn_c_check_decl ()
348 as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'`
349 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5
350 $as_echo_n "checking whether $as_decl_name is declared... " >&6; }
351 -if eval "test \"\${$3+set}\"" = set; then :
352 +if eval \${$3+:} false; then :
353 $as_echo_n "(cached) " >&6
354 else
355 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
356 @@ -3489,7 +3500,7 @@ fi
357 eval ac_res=\$$3
358 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
359 $as_echo "$ac_res" >&6; }
360 - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
361 + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
362
363 } # ac_fn_c_check_decl
364 cat >config.log <<_ACEOF
365 @@ -3497,7 +3508,7 @@ This file contains any messages produced by compilers while
366 running configure, to aid debugging if configure makes a mistake.
367
368 It was created by libvirt $as_me 0.9.4, which was
369 -generated by GNU Autoconf 2.66. Invocation command line was
370 +generated by GNU Autoconf 2.68. Invocation command line was
371
372 $ $0 $@
373
374 @@ -4004,7 +4015,7 @@ am__api_version='1.11'
375 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
376 $as_echo_n "checking for a BSD-compatible install... " >&6; }
377 if test -z "$INSTALL"; then
378 -if test "${ac_cv_path_install+set}" = set; then :
379 +if ${ac_cv_path_install+:} false; then :
380 $as_echo_n "(cached) " >&6
381 else
382 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
383 @@ -4181,7 +4192,7 @@ if test "$cross_compiling" != no; then
384 set dummy ${ac_tool_prefix}strip; ac_word=$2
385 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
386 $as_echo_n "checking for $ac_word... " >&6; }
387 -if test "${ac_cv_prog_STRIP+set}" = set; then :
388 +if ${ac_cv_prog_STRIP+:} false; then :
389 $as_echo_n "(cached) " >&6
390 else
391 if test -n "$STRIP"; then
392 @@ -4221,7 +4232,7 @@ if test -z "$ac_cv_prog_STRIP"; then
393 set dummy strip; ac_word=$2
394 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
395 $as_echo_n "checking for $ac_word... " >&6; }
396 -if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then :
397 +if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
398 $as_echo_n "(cached) " >&6
399 else
400 if test -n "$ac_ct_STRIP"; then
401 @@ -4274,7 +4285,7 @@ INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
402 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
403 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
404 if test -z "$MKDIR_P"; then
405 - if test "${ac_cv_path_mkdir+set}" = set; then :
406 + if ${ac_cv_path_mkdir+:} false; then :
407 $as_echo_n "(cached) " >&6
408 else
409 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
410 @@ -4326,7 +4337,7 @@ do
411 set dummy $ac_prog; ac_word=$2
412 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
413 $as_echo_n "checking for $ac_word... " >&6; }
414 -if test "${ac_cv_prog_AWK+set}" = set; then :
415 +if ${ac_cv_prog_AWK+:} false; then :
416 $as_echo_n "(cached) " >&6
417 else
418 if test -n "$AWK"; then
419 @@ -4366,7 +4377,7 @@ done
420 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
421 set x ${MAKE-make}
422 ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
423 -if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\"" = set; then :
424 +if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
425 $as_echo_n "(cached) " >&6
426 else
427 cat >conftest.make <<\_ACEOF
428 @@ -4516,7 +4527,7 @@ $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
429
430 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
431 $as_echo_n "checking build system type... " >&6; }
432 -if test "${ac_cv_build+set}" = set; then :
433 +if ${ac_cv_build+:} false; then :
434 $as_echo_n "(cached) " >&6
435 else
436 ac_build_alias=$build_alias
437 @@ -4550,7 +4561,7 @@ case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
438
439 { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
440 $as_echo_n "checking host system type... " >&6; }
441 -if test "${ac_cv_host+set}" = set; then :
442 +if ${ac_cv_host+:} false; then :
443 $as_echo_n "(cached) " >&6
444 else
445 if test "x$host_alias" = x; then
446 @@ -4655,7 +4666,7 @@ if test -n "$ac_tool_prefix"; then
447 set dummy ${ac_tool_prefix}gcc; ac_word=$2
448 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
449 $as_echo_n "checking for $ac_word... " >&6; }
450 -if test "${ac_cv_prog_CC+set}" = set; then :
451 +if ${ac_cv_prog_CC+:} false; then :
452 $as_echo_n "(cached) " >&6
453 else
454 if test -n "$CC"; then
455 @@ -4695,7 +4706,7 @@ if test -z "$ac_cv_prog_CC"; then
456 set dummy gcc; ac_word=$2
457 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
458 $as_echo_n "checking for $ac_word... " >&6; }
459 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
460 +if ${ac_cv_prog_ac_ct_CC+:} false; then :
461 $as_echo_n "(cached) " >&6
462 else
463 if test -n "$ac_ct_CC"; then
464 @@ -4748,7 +4759,7 @@ if test -z "$CC"; then
465 set dummy ${ac_tool_prefix}cc; ac_word=$2
466 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
467 $as_echo_n "checking for $ac_word... " >&6; }
468 -if test "${ac_cv_prog_CC+set}" = set; then :
469 +if ${ac_cv_prog_CC+:} false; then :
470 $as_echo_n "(cached) " >&6
471 else
472 if test -n "$CC"; then
473 @@ -4788,7 +4799,7 @@ if test -z "$CC"; then
474 set dummy cc; ac_word=$2
475 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
476 $as_echo_n "checking for $ac_word... " >&6; }
477 -if test "${ac_cv_prog_CC+set}" = set; then :
478 +if ${ac_cv_prog_CC+:} false; then :
479 $as_echo_n "(cached) " >&6
480 else
481 if test -n "$CC"; then
482 @@ -4847,7 +4858,7 @@ if test -z "$CC"; then
483 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
484 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
485 $as_echo_n "checking for $ac_word... " >&6; }
486 -if test "${ac_cv_prog_CC+set}" = set; then :
487 +if ${ac_cv_prog_CC+:} false; then :
488 $as_echo_n "(cached) " >&6
489 else
490 if test -n "$CC"; then
491 @@ -4891,7 +4902,7 @@ do
492 set dummy $ac_prog; ac_word=$2
493 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
494 $as_echo_n "checking for $ac_word... " >&6; }
495 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
496 +if ${ac_cv_prog_ac_ct_CC+:} false; then :
497 $as_echo_n "(cached) " >&6
498 else
499 if test -n "$ac_ct_CC"; then
500 @@ -5174,7 +5185,7 @@ rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
501 ac_clean_files=$ac_clean_files_save
502 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
503 $as_echo_n "checking for suffix of object files... " >&6; }
504 -if test "${ac_cv_objext+set}" = set; then :
505 +if ${ac_cv_objext+:} false; then :
506 $as_echo_n "(cached) " >&6
507 else
508 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
509 @@ -5225,7 +5236,7 @@ OBJEXT=$ac_cv_objext
510 ac_objext=$OBJEXT
511 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
512 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
513 -if test "${ac_cv_c_compiler_gnu+set}" = set; then :
514 +if ${ac_cv_c_compiler_gnu+:} false; then :
515 $as_echo_n "(cached) " >&6
516 else
517 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
518 @@ -5262,7 +5273,7 @@ ac_test_CFLAGS=${CFLAGS+set}
519 ac_save_CFLAGS=$CFLAGS
520 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
521 $as_echo_n "checking whether $CC accepts -g... " >&6; }
522 -if test "${ac_cv_prog_cc_g+set}" = set; then :
523 +if ${ac_cv_prog_cc_g+:} false; then :
524 $as_echo_n "(cached) " >&6
525 else
526 ac_save_c_werror_flag=$ac_c_werror_flag
527 @@ -5340,7 +5351,7 @@ else
528 fi
529 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
530 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
531 -if test "${ac_cv_prog_cc_c89+set}" = set; then :
532 +if ${ac_cv_prog_cc_c89+:} false; then :
533 $as_echo_n "(cached) " >&6
534 else
535 ac_cv_prog_cc_c89=no
536 @@ -5501,7 +5512,7 @@ depcc="$CC" am_compiler_list=
537
538 { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
539 $as_echo_n "checking dependency style of $depcc... " >&6; }
540 -if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then :
541 +if ${am_cv_CC_dependencies_compiler_type+:} false; then :
542 $as_echo_n "(cached) " >&6
543 else
544 if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
545 @@ -5637,7 +5648,7 @@ if test -n "$CPP" && test -d "$CPP"; then
546 CPP=
547 fi
548 if test -z "$CPP"; then
549 - if test "${ac_cv_prog_CPP+set}" = set; then :
550 + if ${ac_cv_prog_CPP+:} false; then :
551 $as_echo_n "(cached) " >&6
552 else
553 # Double quotes because CPP needs to be expanded
554 @@ -5667,7 +5678,7 @@ else
555 # Broken: fails on valid input.
556 continue
557 fi
558 -rm -f conftest.err conftest.$ac_ext
559 +rm -f conftest.err conftest.i conftest.$ac_ext
560
561 # OK, works on sane cases. Now check whether nonexistent headers
562 # can be detected and how.
563 @@ -5683,11 +5694,11 @@ else
564 ac_preproc_ok=:
565 break
566 fi
567 -rm -f conftest.err conftest.$ac_ext
568 +rm -f conftest.err conftest.i conftest.$ac_ext
569
570 done
571 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
572 -rm -f conftest.err conftest.$ac_ext
573 +rm -f conftest.i conftest.err conftest.$ac_ext
574 if $ac_preproc_ok; then :
575 break
576 fi
577 @@ -5726,7 +5737,7 @@ else
578 # Broken: fails on valid input.
579 continue
580 fi
581 -rm -f conftest.err conftest.$ac_ext
582 +rm -f conftest.err conftest.i conftest.$ac_ext
583
584 # OK, works on sane cases. Now check whether nonexistent headers
585 # can be detected and how.
586 @@ -5742,11 +5753,11 @@ else
587 ac_preproc_ok=:
588 break
589 fi
590 -rm -f conftest.err conftest.$ac_ext
591 +rm -f conftest.err conftest.i conftest.$ac_ext
592
593 done
594 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
595 -rm -f conftest.err conftest.$ac_ext
596 +rm -f conftest.i conftest.err conftest.$ac_ext
597 if $ac_preproc_ok; then :
598
599 else
600 @@ -5772,7 +5783,7 @@ if test -n "$ac_tool_prefix"; then
601 set dummy ${ac_tool_prefix}gcc; ac_word=$2
602 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
603 $as_echo_n "checking for $ac_word... " >&6; }
604 -if test "${ac_cv_prog_CC+set}" = set; then :
605 +if ${ac_cv_prog_CC+:} false; then :
606 $as_echo_n "(cached) " >&6
607 else
608 if test -n "$CC"; then
609 @@ -5812,7 +5823,7 @@ if test -z "$ac_cv_prog_CC"; then
610 set dummy gcc; ac_word=$2
611 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
612 $as_echo_n "checking for $ac_word... " >&6; }
613 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
614 +if ${ac_cv_prog_ac_ct_CC+:} false; then :
615 $as_echo_n "(cached) " >&6
616 else
617 if test -n "$ac_ct_CC"; then
618 @@ -5865,7 +5876,7 @@ if test -z "$CC"; then
619 set dummy ${ac_tool_prefix}cc; ac_word=$2
620 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
621 $as_echo_n "checking for $ac_word... " >&6; }
622 -if test "${ac_cv_prog_CC+set}" = set; then :
623 +if ${ac_cv_prog_CC+:} false; then :
624 $as_echo_n "(cached) " >&6
625 else
626 if test -n "$CC"; then
627 @@ -5905,7 +5916,7 @@ if test -z "$CC"; then
628 set dummy cc; ac_word=$2
629 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
630 $as_echo_n "checking for $ac_word... " >&6; }
631 -if test "${ac_cv_prog_CC+set}" = set; then :
632 +if ${ac_cv_prog_CC+:} false; then :
633 $as_echo_n "(cached) " >&6
634 else
635 if test -n "$CC"; then
636 @@ -5964,7 +5975,7 @@ if test -z "$CC"; then
637 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
638 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
639 $as_echo_n "checking for $ac_word... " >&6; }
640 -if test "${ac_cv_prog_CC+set}" = set; then :
641 +if ${ac_cv_prog_CC+:} false; then :
642 $as_echo_n "(cached) " >&6
643 else
644 if test -n "$CC"; then
645 @@ -6008,7 +6019,7 @@ do
646 set dummy $ac_prog; ac_word=$2
647 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
648 $as_echo_n "checking for $ac_word... " >&6; }
649 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
650 +if ${ac_cv_prog_ac_ct_CC+:} false; then :
651 $as_echo_n "(cached) " >&6
652 else
653 if test -n "$ac_ct_CC"; then
654 @@ -6092,7 +6103,7 @@ done
655
656 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
657 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
658 -if test "${ac_cv_c_compiler_gnu+set}" = set; then :
659 +if ${ac_cv_c_compiler_gnu+:} false; then :
660 $as_echo_n "(cached) " >&6
661 else
662 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
663 @@ -6129,7 +6140,7 @@ ac_test_CFLAGS=${CFLAGS+set}
664 ac_save_CFLAGS=$CFLAGS
665 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
666 $as_echo_n "checking whether $CC accepts -g... " >&6; }
667 -if test "${ac_cv_prog_cc_g+set}" = set; then :
668 +if ${ac_cv_prog_cc_g+:} false; then :
669 $as_echo_n "(cached) " >&6
670 else
671 ac_save_c_werror_flag=$ac_c_werror_flag
672 @@ -6207,7 +6218,7 @@ else
673 fi
674 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
675 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
676 -if test "${ac_cv_prog_cc_c89+set}" = set; then :
677 +if ${ac_cv_prog_cc_c89+:} false; then :
678 $as_echo_n "(cached) " >&6
679 else
680 ac_cv_prog_cc_c89=no
681 @@ -6306,7 +6317,7 @@ depcc="$CC" am_compiler_list=
682
683 { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
684 $as_echo_n "checking dependency style of $depcc... " >&6; }
685 -if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then :
686 +if ${am_cv_CC_dependencies_compiler_type+:} false; then :
687 $as_echo_n "(cached) " >&6
688 else
689 if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
690 @@ -6438,7 +6449,7 @@ if test -n "$ac_tool_prefix"; then
691 set dummy ${ac_tool_prefix}ranlib; ac_word=$2
692 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
693 $as_echo_n "checking for $ac_word... " >&6; }
694 -if test "${ac_cv_prog_RANLIB+set}" = set; then :
695 +if ${ac_cv_prog_RANLIB+:} false; then :
696 $as_echo_n "(cached) " >&6
697 else
698 if test -n "$RANLIB"; then
699 @@ -6478,7 +6489,7 @@ if test -z "$ac_cv_prog_RANLIB"; then
700 set dummy ranlib; ac_word=$2
701 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
702 $as_echo_n "checking for $ac_word... " >&6; }
703 -if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then :
704 +if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
705 $as_echo_n "(cached) " >&6
706 else
707 if test -n "$ac_ct_RANLIB"; then
708 @@ -6534,7 +6545,7 @@ $as_echo_n "checking whether cc understands -c and -o together... " >&6; }
709 fi
710 set dummy $CC; ac_cc=`$as_echo "$2" |
711 sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
712 -if eval "test \"\${ac_cv_prog_cc_${ac_cc}_c_o+set}\"" = set; then :
713 +if eval \${ac_cv_prog_cc_${ac_cc}_c_o+:} false; then :
714 $as_echo_n "(cached) " >&6
715 else
716 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
717 @@ -6655,7 +6666,7 @@ fi
718
719 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
720 $as_echo_n "checking for grep that handles long lines and -e... " >&6; }
721 -if test "${ac_cv_path_GREP+set}" = set; then :
722 +if ${ac_cv_path_GREP+:} false; then :
723 $as_echo_n "(cached) " >&6
724 else
725 if test -z "$GREP"; then
726 @@ -6718,7 +6729,7 @@ $as_echo "$ac_cv_path_GREP" >&6; }
727
728 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
729 $as_echo_n "checking for egrep... " >&6; }
730 -if test "${ac_cv_path_EGREP+set}" = set; then :
731 +if ${ac_cv_path_EGREP+:} false; then :
732 $as_echo_n "(cached) " >&6
733 else
734 if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
735 @@ -6785,7 +6796,7 @@ $as_echo "$ac_cv_path_EGREP" >&6; }
736
737 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
738 $as_echo_n "checking for ANSI C header files... " >&6; }
739 -if test "${ac_cv_header_stdc+set}" = set; then :
740 +if ${ac_cv_header_stdc+:} false; then :
741 $as_echo_n "(cached) " >&6
742 else
743 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
744 @@ -6916,7 +6927,7 @@ done
745
746
747 ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default"
748 -if test "x$ac_cv_header_minix_config_h" = x""yes; then :
749 +if test "x$ac_cv_header_minix_config_h" = xyes; then :
750 MINIX=yes
751 else
752 MINIX=
753 @@ -6946,7 +6957,7 @@ $as_echo "#define _XOPEN_SOURCE 500" >>confdefs.h
754
755 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5
756 $as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; }
757 -if test "${ac_cv_safe_to_define___extensions__+set}" = set; then :
758 +if ${ac_cv_safe_to_define___extensions__+:} false; then :
759 $as_echo_n "(cached) " >&6
760 else
761 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
762 @@ -6993,7 +7004,7 @@ $as_echo "$ac_cv_safe_to_define___extensions__" >&6; }
763
764 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGEFILE_SOURCE value needed for large files" >&5
765 $as_echo_n "checking for _LARGEFILE_SOURCE value needed for large files... " >&6; }
766 -if test "${ac_cv_sys_largefile_source+set}" = set; then :
767 +if ${ac_cv_sys_largefile_source+:} false; then :
768 $as_echo_n "(cached) " >&6
769 else
770 while :; do
771 @@ -7092,7 +7103,7 @@ fi
772 *) :
773 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C99" >&5
774 $as_echo_n "checking for $CC option to accept ISO C99... " >&6; }
775 -if test "${ac_cv_prog_cc_c99+set}" = set; then :
776 +if ${ac_cv_prog_cc_c99+:} false; then :
777 $as_echo_n "(cached) " >&6
778 else
779 ac_cv_prog_cc_c99=no
780 @@ -7267,7 +7278,7 @@ if test "x$ac_cv_prog_cc_c99" != xno; then :
781 else
782 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
783 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
784 -if test "${ac_cv_prog_cc_c89+set}" = set; then :
785 +if ${ac_cv_prog_cc_c89+:} false; then :
786 $as_echo_n "(cached) " >&6
787 else
788 ac_cv_prog_cc_c89=no
789 @@ -7363,7 +7374,7 @@ fi
790 esac
791 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO Standard C" >&5
792 $as_echo_n "checking for $CC option to accept ISO Standard C... " >&6; }
793 - if test "${ac_cv_prog_cc_stdc+set}" = set; then :
794 + if ${ac_cv_prog_cc_stdc+:} false; then :
795 $as_echo_n "(cached) " >&6
796 fi
797
798 @@ -7824,7 +7835,7 @@ fi
799
800 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5
801 $as_echo_n "checking for inline... " >&6; }
802 -if test "${ac_cv_c_inline+set}" = set; then :
803 +if ${ac_cv_c_inline+:} false; then :
804 $as_echo_n "(cached) " >&6
805 else
806 ac_cv_c_inline=no
807 @@ -7896,7 +7907,7 @@ done
808 for ac_header in ws2tcpip.h
809 do :
810 ac_fn_c_check_header_mongrel "$LINENO" "ws2tcpip.h" "ac_cv_header_ws2tcpip_h" "$ac_includes_default"
811 -if test "x$ac_cv_header_ws2tcpip_h" = x""yes; then :
812 +if test "x$ac_cv_header_ws2tcpip_h" = xyes; then :
813 cat >>confdefs.h <<_ACEOF
814 #define HAVE_WS2TCPIP_H 1
815 _ACEOF
816 @@ -7911,7 +7922,7 @@ done
817
818 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the preprocessor supports include_next" >&5
819 $as_echo_n "checking whether the preprocessor supports include_next... " >&6; }
820 -if test "${gl_cv_have_include_next+set}" = set; then :
821 +if ${gl_cv_have_include_next+:} false; then :
822 $as_echo_n "(cached) " >&6
823 else
824 rm -rf conftestd1a conftestd1b conftestd2
825 @@ -7991,7 +8002,7 @@ $as_echo "$gl_cv_have_include_next" >&6; }
826
827 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether system header files limit the line length" >&5
828 $as_echo_n "checking whether system header files limit the line length... " >&6; }
829 -if test "${gl_cv_pragma_columns+set}" = set; then :
830 +if ${gl_cv_pragma_columns+:} false; then :
831 $as_echo_n "(cached) " >&6
832 else
833 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
834 @@ -8156,7 +8167,7 @@ $as_echo "#define _POSIX_PII_SOCKET 1" >>confdefs.h
835
836 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether <sys/socket.h> is self-contained" >&5
837 $as_echo_n "checking whether <sys/socket.h> is self-contained... " >&6; }
838 -if test "${gl_cv_header_sys_socket_h_selfcontained+set}" = set; then :
839 +if ${gl_cv_header_sys_socket_h_selfcontained+:} false; then :
840 $as_echo_n "(cached) " >&6
841 else
842
843 @@ -8185,7 +8196,7 @@ $as_echo "$gl_cv_header_sys_socket_h_selfcontained" >&6; }
844 for ac_func in shutdown
845 do :
846 ac_fn_c_check_func "$LINENO" "shutdown" "ac_cv_func_shutdown"
847 -if test "x$ac_cv_func_shutdown" = x""yes; then :
848 +if test "x$ac_cv_func_shutdown" = xyes; then :
849 cat >>confdefs.h <<_ACEOF
850 #define HAVE_SHUTDOWN 1
851 _ACEOF
852 @@ -8196,7 +8207,7 @@ done
853 if test $ac_cv_func_shutdown = yes; then
854 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether <sys/socket.h> defines the SHUT_* macros" >&5
855 $as_echo_n "checking whether <sys/socket.h> defines the SHUT_* macros... " >&6; }
856 -if test "${gl_cv_header_sys_socket_h_shut+set}" = set; then :
857 +if ${gl_cv_header_sys_socket_h_shut+:} false; then :
858 $as_echo_n "(cached) " >&6
859 else
860
861 @@ -8249,7 +8260,7 @@ $as_echo "$gl_cv_header_sys_socket_h_shut" >&6; }
862 else
863 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <sys/socket.h>" >&5
864 $as_echo_n "checking absolute name of <sys/socket.h>... " >&6; }
865 -if test "${gl_cv_next_sys_socket_h+set}" = set; then :
866 +if ${gl_cv_next_sys_socket_h+:} false; then :
867 $as_echo_n "(cached) " >&6
868 else
869
870 @@ -8322,7 +8333,7 @@ $as_echo "$gl_cv_next_sys_socket_h" >&6; }
871 #endif
872
873 "
874 -if test "x$ac_cv_type_struct_sockaddr_storage" = x""yes; then :
875 +if test "x$ac_cv_type_struct_sockaddr_storage" = xyes; then :
876
877 cat >>confdefs.h <<_ACEOF
878 #define HAVE_STRUCT_SOCKADDR_STORAGE 1
879 @@ -8343,7 +8354,7 @@ ac_fn_c_check_type "$LINENO" "sa_family_t" "ac_cv_type_sa_family_t" "
880 #endif
881
882 "
883 -if test "x$ac_cv_type_sa_family_t" = x""yes; then :
884 +if test "x$ac_cv_type_sa_family_t" = xyes; then :
885
886 cat >>confdefs.h <<_ACEOF
887 #define HAVE_SA_FAMILY_T 1
888 @@ -8368,7 +8379,7 @@ fi
889 #endif
890
891 "
892 -if test "x$ac_cv_member_struct_sockaddr_storage_ss_family" = x""yes; then :
893 +if test "x$ac_cv_member_struct_sockaddr_storage_ss_family" = xyes; then :
894
895 cat >>confdefs.h <<_ACEOF
896 #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1
897 @@ -8398,7 +8409,7 @@ fi
898 for ac_header in winsock2.h
899 do :
900 ac_fn_c_check_header_mongrel "$LINENO" "winsock2.h" "ac_cv_header_winsock2_h" "$ac_includes_default"
901 -if test "x$ac_cv_header_winsock2_h" = x""yes; then :
902 +if test "x$ac_cv_header_winsock2_h" = xyes; then :
903 cat >>confdefs.h <<_ACEOF
904 #define HAVE_WINSOCK2_H 1
905 _ACEOF
906 @@ -8420,11 +8431,22 @@ done
907
908
909
910 +ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default"
911 +if test "x$ac_cv_type_size_t" = xyes; then :
912 +
913 +else
914 +
915 +cat >>confdefs.h <<_ACEOF
916 +#define size_t unsigned int
917 +_ACEOF
918 +
919 +fi
920 +
921 # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
922 # for constant arguments. Useless!
923 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working alloca.h" >&5
924 $as_echo_n "checking for working alloca.h... " >&6; }
925 -if test "${ac_cv_working_alloca_h+set}" = set; then :
926 +if ${ac_cv_working_alloca_h+:} false; then :
927 $as_echo_n "(cached) " >&6
928 else
929 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
930 @@ -8457,7 +8479,7 @@ fi
931
932 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for alloca" >&5
933 $as_echo_n "checking for alloca... " >&6; }
934 -if test "${ac_cv_func_alloca_works+set}" = set; then :
935 +if ${ac_cv_func_alloca_works+:} false; then :
936 $as_echo_n "(cached) " >&6
937 else
938 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
939 @@ -8476,7 +8498,7 @@ else
940 #pragma alloca
941 # else
942 # ifndef alloca /* predefined by HP cc +Olibcalls */
943 -char *alloca ();
944 +void *alloca (size_t);
945 # endif
946 # endif
947 # endif
948 @@ -8524,7 +8546,7 @@ $as_echo "#define C_ALLOCA 1" >>confdefs.h
949
950 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether \`alloca.c' needs Cray hooks" >&5
951 $as_echo_n "checking whether \`alloca.c' needs Cray hooks... " >&6; }
952 -if test "${ac_cv_os_cray+set}" = set; then :
953 +if ${ac_cv_os_cray+:} false; then :
954 $as_echo_n "(cached) " >&6
955 else
956 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
957 @@ -8565,7 +8587,7 @@ fi
958
959 { $as_echo "$as_me:${as_lineno-$LINENO}: checking stack direction for C alloca" >&5
960 $as_echo_n "checking stack direction for C alloca... " >&6; }
961 -if test "${ac_cv_c_stack_direction+set}" = set; then :
962 +if ${ac_cv_c_stack_direction+:} false; then :
963 $as_echo_n "(cached) " >&6
964 else
965 if test "$cross_compiling" = yes; then :
966 @@ -8643,7 +8665,7 @@ fi
967
968 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C/C++ restrict keyword" >&5
969 $as_echo_n "checking for C/C++ restrict keyword... " >&6; }
970 -if test "${ac_cv_c_restrict+set}" = set; then :
971 +if ${ac_cv_c_restrict+:} false; then :
972 $as_echo_n "(cached) " >&6
973 else
974 ac_cv_c_restrict=no
975 @@ -8757,7 +8779,7 @@ _ACEOF
976
977 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether malloc, realloc, calloc are POSIX compliant" >&5
978 $as_echo_n "checking whether malloc, realloc, calloc are POSIX compliant... " >&6; }
979 -if test "${gl_cv_func_malloc_posix+set}" = set; then :
980 +if ${gl_cv_func_malloc_posix+:} false; then :
981 $as_echo_n "(cached) " >&6
982 else
983
984 @@ -8820,7 +8842,7 @@ done
985
986 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether // is distinct from /" >&5
987 $as_echo_n "checking whether // is distinct from /... " >&6; }
988 -if test "${gl_cv_double_slash_root+set}" = set; then :
989 +if ${gl_cv_double_slash_root+:} false; then :
990 $as_echo_n "(cached) " >&6
991 else
992 if test x"$cross_compiling" = xyes ; then
993 @@ -8870,7 +8892,7 @@ $as_echo "#define DOUBLE_SLASH_IS_DISTINCT_ROOT 1" >>confdefs.h
994
995 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether realpath works" >&5
996 $as_echo_n "checking whether realpath works... " >&6; }
997 -if test "${gl_cv_func_realpath_works+set}" = set; then :
998 +if ${gl_cv_func_realpath_works+:} false; then :
999 $as_echo_n "(cached) " >&6
1000 else
1001
1002 @@ -9061,7 +9083,7 @@ $as_echo "#define FUNC_REALPATH_WORKS 1" >>confdefs.h
1003
1004 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uid_t in sys/types.h" >&5
1005 $as_echo_n "checking for uid_t in sys/types.h... " >&6; }
1006 -if test "${ac_cv_type_uid_t+set}" = set; then :
1007 +if ${ac_cv_type_uid_t+:} false; then :
1008 $as_echo_n "(cached) " >&6
1009 else
1010 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1011 @@ -9092,7 +9114,7 @@ fi
1012 for ac_header in unistd.h
1013 do :
1014 ac_fn_c_check_header_mongrel "$LINENO" "unistd.h" "ac_cv_header_unistd_h" "$ac_includes_default"
1015 -if test "x$ac_cv_header_unistd_h" = x""yes; then :
1016 +if test "x$ac_cv_header_unistd_h" = xyes; then :
1017 cat >>confdefs.h <<_ACEOF
1018 #define HAVE_UNISTD_H 1
1019 _ACEOF
1020 @@ -9103,7 +9125,7 @@ done
1021
1022 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working chown" >&5
1023 $as_echo_n "checking for working chown... " >&6; }
1024 -if test "${ac_cv_func_chown_works+set}" = set; then :
1025 +if ${ac_cv_func_chown_works+:} false; then :
1026 $as_echo_n "(cached) " >&6
1027 else
1028 if test "$cross_compiling" = yes; then :
1029 @@ -9157,7 +9179,7 @@ fi
1030
1031 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether chown dereferences symlinks" >&5
1032 $as_echo_n "checking whether chown dereferences symlinks... " >&6; }
1033 -if test "${gl_cv_func_chown_follows_symlink+set}" = set; then :
1034 +if ${gl_cv_func_chown_follows_symlink+:} false; then :
1035 $as_echo_n "(cached) " >&6
1036 else
1037
1038 @@ -9255,7 +9277,7 @@ $as_echo "#define CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE 1" >>confdefs.h
1039
1040 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether chown honors trailing slash" >&5
1041 $as_echo_n "checking whether chown honors trailing slash... " >&6; }
1042 -if test "${gl_cv_func_chown_slash_works+set}" = set; then :
1043 +if ${gl_cv_func_chown_slash_works+:} false; then :
1044 $as_echo_n "(cached) " >&6
1045 else
1046 touch conftest.file && rm -f conftest.link
1047 @@ -9301,7 +9323,7 @@ $as_echo "#define CHOWN_TRAILING_SLASH_BUG 1" >>confdefs.h
1048
1049 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether chown always updates ctime" >&5
1050 $as_echo_n "checking whether chown always updates ctime... " >&6; }
1051 -if test "${gl_cv_func_chown_ctime_works+set}" = set; then :
1052 +if ${gl_cv_func_chown_ctime_works+:} false; then :
1053 $as_echo_n "(cached) " >&6
1054 else
1055 if test "$cross_compiling" = yes; then :
1056 @@ -9355,7 +9377,7 @@ $as_echo "#define CHOWN_CHANGE_TIME_BUG 1" >>confdefs.h
1057
1058 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for unsigned long long int" >&5
1059 $as_echo_n "checking for unsigned long long int... " >&6; }
1060 -if test "${ac_cv_type_unsigned_long_long_int+set}" = set; then :
1061 +if ${ac_cv_type_unsigned_long_long_int+:} false; then :
1062 $as_echo_n "(cached) " >&6
1063 else
1064 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1065 @@ -9412,7 +9434,7 @@ $as_echo "#define HAVE_UNSIGNED_LONG_LONG_INT 1" >>confdefs.h
1066
1067 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5
1068 $as_echo_n "checking whether byte ordering is bigendian... " >&6; }
1069 -if test "${ac_cv_c_bigendian+set}" = set; then :
1070 +if ${ac_cv_c_bigendian+:} false; then :
1071 $as_echo_n "(cached) " >&6
1072 else
1073 ac_cv_c_bigendian=unknown
1074 @@ -9642,7 +9664,7 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
1075
1076 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if environ is properly declared" >&5
1077 $as_echo_n "checking if environ is properly declared... " >&6; }
1078 - if test "${gt_cv_var_environ_declaration+set}" = set; then :
1079 + if ${gt_cv_var_environ_declaration+:} false; then :
1080 $as_echo_n "(cached) " >&6
1081 else
1082
1083 @@ -9683,7 +9705,7 @@ $as_echo "#define HAVE_ENVIRON_DECL 1" >>confdefs.h
1084
1085 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for complete errno.h" >&5
1086 $as_echo_n "checking for complete errno.h... " >&6; }
1087 -if test "${gl_cv_header_errno_h_complete+set}" = set; then :
1088 +if ${gl_cv_header_errno_h_complete+:} false; then :
1089 $as_echo_n "(cached) " >&6
1090 else
1091
1092 @@ -9754,7 +9776,7 @@ $as_echo "$gl_cv_header_errno_h_complete" >&6; }
1093 else
1094 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <errno.h>" >&5
1095 $as_echo_n "checking absolute name of <errno.h>... " >&6; }
1096 -if test "${gl_cv_next_errno_h+set}" = set; then :
1097 +if ${gl_cv_next_errno_h+:} false; then :
1098 $as_echo_n "(cached) " >&6
1099 else
1100
1101 @@ -9809,7 +9831,7 @@ fi
1102 if test -n "$ERRNO_H"; then
1103 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for EMULTIHOP value" >&5
1104 $as_echo_n "checking for EMULTIHOP value... " >&6; }
1105 -if test "${gl_cv_header_errno_h_EMULTIHOP+set}" = set; then :
1106 +if ${gl_cv_header_errno_h_EMULTIHOP+:} false; then :
1107 $as_echo_n "(cached) " >&6
1108 else
1109
1110 @@ -9880,7 +9902,7 @@ $as_echo "$gl_cv_header_errno_h_EMULTIHOP" >&6; }
1111 if test -n "$ERRNO_H"; then
1112 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ENOLINK value" >&5
1113 $as_echo_n "checking for ENOLINK value... " >&6; }
1114 -if test "${gl_cv_header_errno_h_ENOLINK+set}" = set; then :
1115 +if ${gl_cv_header_errno_h_ENOLINK+:} false; then :
1116 $as_echo_n "(cached) " >&6
1117 else
1118
1119 @@ -9951,7 +9973,7 @@ $as_echo "$gl_cv_header_errno_h_ENOLINK" >&6; }
1120 if test -n "$ERRNO_H"; then
1121 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for EOVERFLOW value" >&5
1122 $as_echo_n "checking for EOVERFLOW value... " >&6; }
1123 -if test "${gl_cv_header_errno_h_EOVERFLOW+set}" = set; then :
1124 +if ${gl_cv_header_errno_h_EOVERFLOW+:} false; then :
1125 $as_echo_n "(cached) " >&6
1126 else
1127
1128 @@ -10138,7 +10160,7 @@ $as_echo "$gl_cv_header_errno_h_EOVERFLOW" >&6; }
1129
1130 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working fcntl.h" >&5
1131 $as_echo_n "checking for working fcntl.h... " >&6; }
1132 -if test "${gl_cv_header_working_fcntl_h+set}" = set; then :
1133 +if ${gl_cv_header_working_fcntl_h+:} false; then :
1134 $as_echo_n "(cached) " >&6
1135 else
1136 if test "$cross_compiling" = yes; then :
1137 @@ -10273,7 +10295,7 @@ _ACEOF
1138
1139 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mbstate_t" >&5
1140 $as_echo_n "checking for mbstate_t... " >&6; }
1141 -if test "${ac_cv_type_mbstate_t+set}" = set; then :
1142 +if ${ac_cv_type_mbstate_t+:} false; then :
1143 $as_echo_n "(cached) " >&6
1144 else
1145 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1146 @@ -10377,7 +10399,7 @@ $as_echo "#define mbstate_t int" >>confdefs.h
1147
1148 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stdin defaults to large file offsets" >&5
1149 $as_echo_n "checking whether stdin defaults to large file offsets... " >&6; }
1150 -if test "${gl_cv_var_stdin_large_offset+set}" = set; then :
1151 +if ${gl_cv_var_stdin_large_offset+:} false; then :
1152 $as_echo_n "(cached) " >&6
1153 else
1154 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1155 @@ -10412,7 +10434,7 @@ $as_echo "$gl_cv_var_stdin_large_offset" >&6; }
1156
1157
1158 ac_fn_c_check_decl "$LINENO" "fseeko" "ac_cv_have_decl_fseeko" "$ac_includes_default"
1159 -if test "x$ac_cv_have_decl_fseeko" = x""yes; then :
1160 +if test "x$ac_cv_have_decl_fseeko" = xyes; then :
1161 ac_have_decl=1
1162 else
1163 ac_have_decl=0
1164 @@ -10432,7 +10454,7 @@ _ACEOF
1165
1166 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fseeko" >&5
1167 $as_echo_n "checking for fseeko... " >&6; }
1168 -if test "${gl_cv_func_fseeko+set}" = set; then :
1169 +if ${gl_cv_func_fseeko+:} false; then :
1170 $as_echo_n "(cached) " >&6
1171 else
1172
1173 @@ -10481,7 +10503,7 @@ $as_echo "$gl_cv_func_fseeko" >&6; }
1174
1175 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether fflush works on input streams" >&5
1176 $as_echo_n "checking whether fflush works on input streams... " >&6; }
1177 -if test "${gl_cv_func_fflush_stdin+set}" = set; then :
1178 +if ${gl_cv_func_fflush_stdin+:} false; then :
1179 $as_echo_n "(cached) " >&6
1180 else
1181 echo hello world > conftest.txt
1182 @@ -10560,7 +10582,7 @@ $as_echo "$gl_cv_func_fflush_stdin" >&6; }
1183
1184
1185 ac_fn_c_check_decl "$LINENO" "ftello" "ac_cv_have_decl_ftello" "$ac_includes_default"
1186 -if test "x$ac_cv_have_decl_ftello" = x""yes; then :
1187 +if test "x$ac_cv_have_decl_ftello" = xyes; then :
1188 ac_have_decl=1
1189 else
1190 ac_have_decl=0
1191 @@ -10591,7 +10613,7 @@ _ACEOF
1192
1193 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ftello" >&5
1194 $as_echo_n "checking for ftello... " >&6; }
1195 -if test "${gl_cv_func_ftello+set}" = set; then :
1196 +if ${gl_cv_func_ftello+:} false; then :
1197 $as_echo_n "(cached) " >&6
1198 else
1199
1200 @@ -10626,7 +10648,7 @@ $as_echo "$gl_cv_func_ftello" >&6; }
1201
1202 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ftello works" >&5
1203 $as_echo_n "checking whether ftello works... " >&6; }
1204 -if test "${gl_cv_func_ftello_works+set}" = set; then :
1205 +if ${gl_cv_func_ftello_works+:} false; then :
1206 $as_echo_n "(cached) " >&6
1207 else
1208
1209 @@ -10761,7 +10783,7 @@ $as_echo "#define FTELLO_BROKEN_AFTER_SWITCHING_FROM_READ_TO_WRITE 1" >>confdefs
1210 else
1211 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <netdb.h>" >&5
1212 $as_echo_n "checking absolute name of <netdb.h>... " >&6; }
1213 -if test "${gl_cv_next_netdb_h+set}" = set; then :
1214 +if ${gl_cv_next_netdb_h+:} false; then :
1215 $as_echo_n "(cached) " >&6
1216 else
1217
1218 @@ -10821,7 +10843,7 @@ $as_echo "$gl_cv_next_netdb_h" >&6; }
1219 gl_saved_libs="$LIBS"
1220 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing gethostbyname" >&5
1221 $as_echo_n "checking for library containing gethostbyname... " >&6; }
1222 -if test "${ac_cv_search_gethostbyname+set}" = set; then :
1223 +if ${ac_cv_search_gethostbyname+:} false; then :
1224 $as_echo_n "(cached) " >&6
1225 else
1226 ac_func_search_save_LIBS=$LIBS
1227 @@ -10855,11 +10877,11 @@ for ac_lib in '' nsl network net; do
1228 fi
1229 rm -f core conftest.err conftest.$ac_objext \
1230 conftest$ac_exeext
1231 - if test "${ac_cv_search_gethostbyname+set}" = set; then :
1232 + if ${ac_cv_search_gethostbyname+:} false; then :
1233 break
1234 fi
1235 done
1236 -if test "${ac_cv_search_gethostbyname+set}" = set; then :
1237 +if ${ac_cv_search_gethostbyname+:} false; then :
1238
1239 else
1240 ac_cv_search_gethostbyname=no
1241 @@ -10882,7 +10904,7 @@ fi
1242 for ac_func in gethostbyname
1243 do :
1244 ac_fn_c_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname"
1245 -if test "x$ac_cv_func_gethostbyname" = x""yes; then :
1246 +if test "x$ac_cv_func_gethostbyname" = xyes; then :
1247 cat >>confdefs.h <<_ACEOF
1248 #define HAVE_GETHOSTBYNAME 1
1249 _ACEOF
1250 @@ -10891,7 +10913,7 @@ else
1251
1252 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in winsock2.h and -lws2_32" >&5
1253 $as_echo_n "checking for gethostbyname in winsock2.h and -lws2_32... " >&6; }
1254 -if test "${gl_cv_w32_gethostbyname+set}" = set; then :
1255 +if ${gl_cv_w32_gethostbyname+:} false; then :
1256 $as_echo_n "(cached) " >&6
1257 else
1258 gl_cv_w32_gethostbyname=no
1259 @@ -10938,7 +10960,7 @@ done
1260 gl_saved_libs="$LIBS"
1261 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing getservbyname" >&5
1262 $as_echo_n "checking for library containing getservbyname... " >&6; }
1263 -if test "${ac_cv_search_getservbyname+set}" = set; then :
1264 +if ${ac_cv_search_getservbyname+:} false; then :
1265 $as_echo_n "(cached) " >&6
1266 else
1267 ac_func_search_save_LIBS=$LIBS
1268 @@ -10972,11 +10994,11 @@ for ac_lib in '' socket network net; do
1269 fi
1270 rm -f core conftest.err conftest.$ac_objext \
1271 conftest$ac_exeext
1272 - if test "${ac_cv_search_getservbyname+set}" = set; then :
1273 + if ${ac_cv_search_getservbyname+:} false; then :
1274 break
1275 fi
1276 done
1277 -if test "${ac_cv_search_getservbyname+set}" = set; then :
1278 +if ${ac_cv_search_getservbyname+:} false; then :
1279
1280 else
1281 ac_cv_search_getservbyname=no
1282 @@ -10999,7 +11021,7 @@ fi
1283 for ac_func in getservbyname
1284 do :
1285 ac_fn_c_check_func "$LINENO" "getservbyname" "ac_cv_func_getservbyname"
1286 -if test "x$ac_cv_func_getservbyname" = x""yes; then :
1287 +if test "x$ac_cv_func_getservbyname" = xyes; then :
1288 cat >>confdefs.h <<_ACEOF
1289 #define HAVE_GETSERVBYNAME 1
1290 _ACEOF
1291 @@ -11008,7 +11030,7 @@ else
1292
1293 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for getservbyname in winsock2.h and -lws2_32" >&5
1294 $as_echo_n "checking for getservbyname in winsock2.h and -lws2_32... " >&6; }
1295 -if test "${gl_cv_w32_getservbyname+set}" = set; then :
1296 +if ${gl_cv_w32_getservbyname+:} false; then :
1297 $as_echo_n "(cached) " >&6
1298 else
1299 gl_cv_w32_getservbyname=no
1300 @@ -11057,7 +11079,7 @@ done
1301 gl_save_LIBS=$LIBS
1302 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing inet_ntop" >&5
1303 $as_echo_n "checking for library containing inet_ntop... " >&6; }
1304 -if test "${ac_cv_search_inet_ntop+set}" = set; then :
1305 +if ${ac_cv_search_inet_ntop+:} false; then :
1306 $as_echo_n "(cached) " >&6
1307 else
1308 ac_func_search_save_LIBS=$LIBS
1309 @@ -11091,11 +11113,11 @@ for ac_lib in '' nsl; do
1310 fi
1311 rm -f core conftest.err conftest.$ac_objext \
1312 conftest$ac_exeext
1313 - if test "${ac_cv_search_inet_ntop+set}" = set; then :
1314 + if ${ac_cv_search_inet_ntop+:} false; then :
1315 break
1316 fi
1317 done
1318 -if test "${ac_cv_search_inet_ntop+set}" = set; then :
1319 +if ${ac_cv_search_inet_ntop+:} false; then :
1320
1321 else
1322 ac_cv_search_inet_ntop=no
1323 @@ -11113,7 +11135,7 @@ else
1324 for ac_func in inet_ntop
1325 do :
1326 ac_fn_c_check_func "$LINENO" "inet_ntop" "ac_cv_func_inet_ntop"
1327 -if test "x$ac_cv_func_inet_ntop" = x""yes; then :
1328 +if test "x$ac_cv_func_inet_ntop" = xyes; then :
1329 cat >>confdefs.h <<_ACEOF
1330 #define HAVE_INET_NTOP 1
1331 _ACEOF
1332 @@ -11149,7 +11171,7 @@ fi
1333 #endif
1334
1335 "
1336 -if test "x$ac_cv_have_decl_inet_ntop" = x""yes; then :
1337 +if test "x$ac_cv_have_decl_inet_ntop" = xyes; then :
1338 ac_have_decl=1
1339 else
1340 ac_have_decl=0
1341 @@ -11181,7 +11203,7 @@ _ACEOF
1342
1343 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IPv4 sockets" >&5
1344 $as_echo_n "checking for IPv4 sockets... " >&6; }
1345 - if test "${gl_cv_socket_ipv4+set}" = set; then :
1346 + if ${gl_cv_socket_ipv4+:} false; then :
1347 $as_echo_n "(cached) " >&6
1348 else
1349 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1350 @@ -11223,7 +11245,7 @@ $as_echo "#define HAVE_IPV4 1" >>confdefs.h
1351
1352 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IPv6 sockets" >&5
1353 $as_echo_n "checking for IPv6 sockets... " >&6; }
1354 - if test "${gl_cv_socket_ipv6+set}" = set; then :
1355 + if ${gl_cv_socket_ipv6+:} false; then :
1356 $as_echo_n "(cached) " >&6
1357 else
1358 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1359 @@ -11269,7 +11291,7 @@ $as_echo "#define HAVE_IPV6 1" >>confdefs.h
1360
1361 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether getcwd (NULL, 0) allocates memory for result" >&5
1362 $as_echo_n "checking whether getcwd (NULL, 0) allocates memory for result... " >&6; }
1363 -if test "${gl_cv_func_getcwd_null+set}" = set; then :
1364 +if ${gl_cv_func_getcwd_null+:} false; then :
1365 $as_echo_n "(cached) " >&6
1366 else
1367 if test "$cross_compiling" = yes; then :
1368 @@ -11337,7 +11359,7 @@ $as_echo "$gl_cv_func_getcwd_null" >&6; }
1369
1370
1371 ac_fn_c_check_decl "$LINENO" "getdelim" "ac_cv_have_decl_getdelim" "$ac_includes_default"
1372 -if test "x$ac_cv_have_decl_getdelim" = x""yes; then :
1373 +if test "x$ac_cv_have_decl_getdelim" = xyes; then :
1374 ac_have_decl=1
1375 else
1376 ac_have_decl=0
1377 @@ -11360,7 +11382,7 @@ _ACEOF
1378
1379
1380 ac_fn_c_check_decl "$LINENO" "getline" "ac_cv_have_decl_getline" "$ac_includes_default"
1381 -if test "x$ac_cv_have_decl_getline" = x""yes; then :
1382 +if test "x$ac_cv_have_decl_getline" = xyes; then :
1383 ac_have_decl=1
1384 else
1385 ac_have_decl=0
1386 @@ -11373,7 +11395,7 @@ _ACEOF
1387
1388
1389 ac_fn_c_check_decl "$LINENO" "getpass" "ac_cv_have_decl_getpass" "$ac_includes_default"
1390 -if test "x$ac_cv_have_decl_getpass" = x""yes; then :
1391 +if test "x$ac_cv_have_decl_getpass" = xyes; then :
1392 ac_have_decl=1
1393 else
1394 ac_have_decl=0
1395 @@ -11411,7 +11433,7 @@ _ACEOF
1396
1397
1398 ac_fn_c_check_decl "$LINENO" "fflush_unlocked" "ac_cv_have_decl_fflush_unlocked" "$ac_includes_default"
1399 -if test "x$ac_cv_have_decl_fflush_unlocked" = x""yes; then :
1400 +if test "x$ac_cv_have_decl_fflush_unlocked" = xyes; then :
1401 ac_have_decl=1
1402 else
1403 ac_have_decl=0
1404 @@ -11424,7 +11446,7 @@ _ACEOF
1405
1406
1407 ac_fn_c_check_decl "$LINENO" "flockfile" "ac_cv_have_decl_flockfile" "$ac_includes_default"
1408 -if test "x$ac_cv_have_decl_flockfile" = x""yes; then :
1409 +if test "x$ac_cv_have_decl_flockfile" = xyes; then :
1410 ac_have_decl=1
1411 else
1412 ac_have_decl=0
1413 @@ -11437,7 +11459,7 @@ _ACEOF
1414
1415
1416 ac_fn_c_check_decl "$LINENO" "fputs_unlocked" "ac_cv_have_decl_fputs_unlocked" "$ac_includes_default"
1417 -if test "x$ac_cv_have_decl_fputs_unlocked" = x""yes; then :
1418 +if test "x$ac_cv_have_decl_fputs_unlocked" = xyes; then :
1419 ac_have_decl=1
1420 else
1421 ac_have_decl=0
1422 @@ -11450,7 +11472,7 @@ _ACEOF
1423
1424
1425 ac_fn_c_check_decl "$LINENO" "funlockfile" "ac_cv_have_decl_funlockfile" "$ac_includes_default"
1426 -if test "x$ac_cv_have_decl_funlockfile" = x""yes; then :
1427 +if test "x$ac_cv_have_decl_funlockfile" = xyes; then :
1428 ac_have_decl=1
1429 else
1430 ac_have_decl=0
1431 @@ -11463,7 +11485,7 @@ _ACEOF
1432
1433
1434 ac_fn_c_check_decl "$LINENO" "putc_unlocked" "ac_cv_have_decl_putc_unlocked" "$ac_includes_default"
1435 -if test "x$ac_cv_have_decl_putc_unlocked" = x""yes; then :
1436 +if test "x$ac_cv_have_decl_putc_unlocked" = xyes; then :
1437 ac_have_decl=1
1438 else
1439 ac_have_decl=0
1440 @@ -11516,7 +11538,7 @@ _ACEOF
1441 else
1442 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <sys/time.h>" >&5
1443 $as_echo_n "checking absolute name of <sys/time.h>... " >&6; }
1444 -if test "${gl_cv_next_sys_time_h+set}" = set; then :
1445 +if ${gl_cv_next_sys_time_h+:} false; then :
1446 $as_echo_n "(cached) " >&6
1447 else
1448
1449 @@ -11569,7 +11591,7 @@ $as_echo "$gl_cv_next_sys_time_h" >&6; }
1450
1451 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct timeval" >&5
1452 $as_echo_n "checking for struct timeval... " >&6; }
1453 -if test "${gl_cv_sys_struct_timeval+set}" = set; then :
1454 +if ${gl_cv_sys_struct_timeval+:} false; then :
1455 $as_echo_n "(cached) " >&6
1456 else
1457 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1458 @@ -11613,7 +11635,7 @@ $as_echo "$gl_cv_sys_struct_timeval" >&6; }
1459
1460 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for nl_langinfo and CODESET" >&5
1461 $as_echo_n "checking for nl_langinfo and CODESET... " >&6; }
1462 -if test "${am_cv_langinfo_codeset+set}" = set; then :
1463 +if ${am_cv_langinfo_codeset+:} false; then :
1464 $as_echo_n "(cached) " >&6
1465 else
1466 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1467 @@ -11646,7 +11668,7 @@ $as_echo "#define HAVE_LANGINFO_CODESET 1" >>confdefs.h
1468
1469
1470 ac_fn_c_check_decl "$LINENO" "getc_unlocked" "ac_cv_have_decl_getc_unlocked" "$ac_includes_default"
1471 -if test "x$ac_cv_have_decl_getc_unlocked" = x""yes; then :
1472 +if test "x$ac_cv_have_decl_getc_unlocked" = xyes; then :
1473 ac_have_decl=1
1474 else
1475 ac_have_decl=0
1476 @@ -11660,7 +11682,7 @@ _ACEOF
1477
1478 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C Library 2.1 or newer" >&5
1479 $as_echo_n "checking whether we are using the GNU C Library 2.1 or newer... " >&6; }
1480 -if test "${ac_cv_gnu_library_2_1+set}" = set; then :
1481 +if ${ac_cv_gnu_library_2_1+:} false; then :
1482 $as_echo_n "(cached) " >&6
1483 else
1484 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1485 @@ -11807,7 +11829,7 @@ else
1486 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5
1487 $as_echo_n "checking for non-GNU ld... " >&6; }
1488 fi
1489 -if test "${acl_cv_path_LD+set}" = set; then :
1490 +if ${acl_cv_path_LD+:} false; then :
1491 $as_echo_n "(cached) " >&6
1492 else
1493 if test -z "$LD"; then
1494 @@ -11844,7 +11866,7 @@ fi
1495 test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
1496 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
1497 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
1498 -if test "${acl_cv_prog_gnu_ld+set}" = set; then :
1499 +if ${acl_cv_prog_gnu_ld+:} false; then :
1500 $as_echo_n "(cached) " >&6
1501 else
1502 # I'd rather use --version here, but apparently some GNU ld's only accept -v.
1503 @@ -11864,7 +11886,7 @@ with_gnu_ld=$acl_cv_prog_gnu_ld
1504
1505 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared library run path origin" >&5
1506 $as_echo_n "checking for shared library run path origin... " >&6; }
1507 -if test "${acl_cv_rpath+set}" = set; then :
1508 +if ${acl_cv_rpath+:} false; then :
1509 $as_echo_n "(cached) " >&6
1510 else
1511
1512 @@ -11947,7 +11969,7 @@ $as_echo "$gl_have_weak" >&6; }
1513 # On OSF/1, the compiler needs the flag -pthread or -D_REENTRANT so that
1514 # it groks <pthread.h>. It's added above, in gl_LOCK_EARLY_BODY.
1515 ac_fn_c_check_header_mongrel "$LINENO" "pthread.h" "ac_cv_header_pthread_h" "$ac_includes_default"
1516 -if test "x$ac_cv_header_pthread_h" = x""yes; then :
1517 +if test "x$ac_cv_header_pthread_h" = xyes; then :
1518 gl_have_pthread_h=yes
1519 else
1520 gl_have_pthread_h=no
1521 @@ -11986,7 +12008,7 @@ rm -f core conftest.err conftest.$ac_objext \
1522 # need to link with libpthread in order to create multiple threads.
1523 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_kill in -lpthread" >&5
1524 $as_echo_n "checking for pthread_kill in -lpthread... " >&6; }
1525 -if test "${ac_cv_lib_pthread_pthread_kill+set}" = set; then :
1526 +if ${ac_cv_lib_pthread_pthread_kill+:} false; then :
1527 $as_echo_n "(cached) " >&6
1528 else
1529 ac_check_lib_save_LIBS=$LIBS
1530 @@ -12020,7 +12042,7 @@ LIBS=$ac_check_lib_save_LIBS
1531 fi
1532 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_pthread_kill" >&5
1533 $as_echo "$ac_cv_lib_pthread_pthread_kill" >&6; }
1534 -if test "x$ac_cv_lib_pthread_pthread_kill" = x""yes; then :
1535 +if test "x$ac_cv_lib_pthread_pthread_kill" = xyes; then :
1536 LIBMULTITHREAD=-lpthread LTLIBMULTITHREAD=-lpthread
1537 # On Solaris and HP-UX, most pthread functions exist also in libc.
1538 # Therefore pthread_in_use() needs to actually try to create a
1539 @@ -12039,7 +12061,7 @@ fi
1540 # Some library is needed. Try libpthread and libc_r.
1541 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_kill in -lpthread" >&5
1542 $as_echo_n "checking for pthread_kill in -lpthread... " >&6; }
1543 -if test "${ac_cv_lib_pthread_pthread_kill+set}" = set; then :
1544 +if ${ac_cv_lib_pthread_pthread_kill+:} false; then :
1545 $as_echo_n "(cached) " >&6
1546 else
1547 ac_check_lib_save_LIBS=$LIBS
1548 @@ -12073,7 +12095,7 @@ LIBS=$ac_check_lib_save_LIBS
1549 fi
1550 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_pthread_kill" >&5
1551 $as_echo "$ac_cv_lib_pthread_pthread_kill" >&6; }
1552 -if test "x$ac_cv_lib_pthread_pthread_kill" = x""yes; then :
1553 +if test "x$ac_cv_lib_pthread_pthread_kill" = xyes; then :
1554 gl_have_pthread=yes
1555 LIBTHREAD=-lpthread LTLIBTHREAD=-lpthread
1556 LIBMULTITHREAD=-lpthread LTLIBMULTITHREAD=-lpthread
1557 @@ -12083,7 +12105,7 @@ fi
1558 # For FreeBSD 4.
1559 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_kill in -lc_r" >&5
1560 $as_echo_n "checking for pthread_kill in -lc_r... " >&6; }
1561 -if test "${ac_cv_lib_c_r_pthread_kill+set}" = set; then :
1562 +if ${ac_cv_lib_c_r_pthread_kill+:} false; then :
1563 $as_echo_n "(cached) " >&6
1564 else
1565 ac_check_lib_save_LIBS=$LIBS
1566 @@ -12117,7 +12139,7 @@ LIBS=$ac_check_lib_save_LIBS
1567 fi
1568 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_c_r_pthread_kill" >&5
1569 $as_echo "$ac_cv_lib_c_r_pthread_kill" >&6; }
1570 -if test "x$ac_cv_lib_c_r_pthread_kill" = x""yes; then :
1571 +if test "x$ac_cv_lib_c_r_pthread_kill" = xyes; then :
1572 gl_have_pthread=yes
1573 LIBTHREAD=-lc_r LTLIBTHREAD=-lc_r
1574 LIBMULTITHREAD=-lc_r LTLIBMULTITHREAD=-lc_r
1575 @@ -12143,7 +12165,7 @@ $as_echo "#define USE_POSIX_THREADS_WEAK 1" >>confdefs.h
1576 # pthread_rwlock_* functions.
1577 ac_fn_c_check_type "$LINENO" "pthread_rwlock_t" "ac_cv_type_pthread_rwlock_t" "#include <pthread.h>
1578 "
1579 -if test "x$ac_cv_type_pthread_rwlock_t" = x""yes; then :
1580 +if test "x$ac_cv_type_pthread_rwlock_t" = xyes; then :
1581
1582 $as_echo "#define HAVE_PTHREAD_RWLOCK 1" >>confdefs.h
1583
1584 @@ -12226,7 +12248,7 @@ $as_echo "#define USE_SOLARIS_THREADS_WEAK 1" >>confdefs.h
1585
1586 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libpth" >&5
1587 $as_echo_n "checking how to link with libpth... " >&6; }
1588 -if test "${ac_cv_libpth_libs+set}" = set; then :
1589 +if ${ac_cv_libpth_libs+:} false; then :
1590 $as_echo_n "(cached) " >&6
1591 else
1592
1593 @@ -12815,7 +12837,7 @@ $as_echo "$gl_threads_api" >&6; }
1594
1595 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether lstat correctly handles trailing slash" >&5
1596 $as_echo_n "checking whether lstat correctly handles trailing slash... " >&6; }
1597 -if test "${gl_cv_func_lstat_dereferences_slashed_symlink+set}" = set; then :
1598 +if ${gl_cv_func_lstat_dereferences_slashed_symlink+:} false; then :
1599 $as_echo_n "(cached) " >&6
1600 else
1601 rm -f conftest.sym conftest.file
1602 @@ -12874,7 +12896,7 @@ _ACEOF
1603 for ac_header in stdlib.h
1604 do :
1605 ac_fn_c_check_header_mongrel "$LINENO" "stdlib.h" "ac_cv_header_stdlib_h" "$ac_includes_default"
1606 -if test "x$ac_cv_header_stdlib_h" = x""yes; then :
1607 +if test "x$ac_cv_header_stdlib_h" = xyes; then :
1608 cat >>confdefs.h <<_ACEOF
1609 #define HAVE_STDLIB_H 1
1610 _ACEOF
1611 @@ -12885,7 +12907,7 @@ done
1612
1613 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible malloc" >&5
1614 $as_echo_n "checking for GNU libc compatible malloc... " >&6; }
1615 -if test "${ac_cv_func_malloc_0_nonnull+set}" = set; then :
1616 +if ${ac_cv_func_malloc_0_nonnull+:} false; then :
1617 $as_echo_n "(cached) " >&6
1618 else
1619 if test "$cross_compiling" = yes; then :
1620 @@ -12934,7 +12956,7 @@ _ACEOF
1621
1622 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long long int" >&5
1623 $as_echo_n "checking for long long int... " >&6; }
1624 -if test "${ac_cv_type_long_long_int+set}" = set; then :
1625 +if ${ac_cv_type_long_long_int+:} false; then :
1626 $as_echo_n "(cached) " >&6
1627 else
1628 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1629 @@ -13133,7 +13155,7 @@ $as_echo "#define HAVE_LONG_LONG_INT 1" >>confdefs.h
1630
1631 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a traditional japanese locale" >&5
1632 $as_echo_n "checking for a traditional japanese locale... " >&6; }
1633 -if test "${gt_cv_locale_ja+set}" = set; then :
1634 +if ${gt_cv_locale_ja+:} false; then :
1635 $as_echo_n "(cached) " >&6
1636 else
1637
1638 @@ -13271,7 +13293,7 @@ $as_echo "$gt_cv_locale_ja" >&6; }
1639
1640 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a transitional chinese locale" >&5
1641 $as_echo_n "checking for a transitional chinese locale... " >&6; }
1642 -if test "${gt_cv_locale_zh_CN+set}" = set; then :
1643 +if ${gt_cv_locale_zh_CN+:} false; then :
1644 $as_echo_n "(cached) " >&6
1645 else
1646
1647 @@ -13403,7 +13425,7 @@ $as_echo "$gt_cv_locale_zh_CN" >&6; }
1648
1649 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a french Unicode locale" >&5
1650 $as_echo_n "checking for a french Unicode locale... " >&6; }
1651 -if test "${gt_cv_locale_fr_utf8+set}" = set; then :
1652 +if ${gt_cv_locale_fr_utf8+:} false; then :
1653 $as_echo_n "(cached) " >&6
1654 else
1655
1656 @@ -13530,7 +13552,7 @@ $as_echo "$gt_cv_locale_fr_utf8" >&6; }
1657
1658 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a traditional french locale" >&5
1659 $as_echo_n "checking for a traditional french locale... " >&6; }
1660 -if test "${gt_cv_locale_fr+set}" = set; then :
1661 +if ${gt_cv_locale_fr+:} false; then :
1662 $as_echo_n "(cached) " >&6
1663 else
1664
1665 @@ -13751,7 +13773,7 @@ $as_echo "$gt_cv_locale_fr" >&6; }
1666 # fails on HP-UX 11, because MAP_FIXED mappings do not work. But this is
1667 # irrelevant for anonymous mappings.
1668 ac_fn_c_check_func "$LINENO" "mmap" "ac_cv_func_mmap"
1669 -if test "x$ac_cv_func_mmap" = x""yes; then :
1670 +if test "x$ac_cv_func_mmap" = xyes; then :
1671 gl_have_mmap=yes
1672 else
1673 gl_have_mmap=no
1674 @@ -13834,7 +13856,7 @@ $as_echo "#define HAVE_MAP_ANONYMOUS 1" >>confdefs.h
1675 # Assume that memchr works on platforms that lack mprotect.
1676 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether memchr works" >&5
1677 $as_echo_n "checking whether memchr works... " >&6; }
1678 -if test "${gl_cv_func_memchr_works+set}" = set; then :
1679 +if ${gl_cv_func_memchr_works+:} false; then :
1680 $as_echo_n "(cached) " >&6
1681 else
1682 if test "$cross_compiling" = yes; then :
1683 @@ -14003,7 +14025,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
1684
1685 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C symbols are prefixed with underscore at the linker level" >&5
1686 $as_echo_n "checking whether C symbols are prefixed with underscore at the linker level... " >&6; }
1687 -if test "${gl_cv_prog_as_underscore+set}" = set; then :
1688 +if ${gl_cv_prog_as_underscore+:} false; then :
1689 $as_echo_n "(cached) " >&6
1690 else
1691 cat > conftest.c <<EOF
1692 @@ -14043,7 +14065,7 @@ _ACEOF
1693
1694
1695 ac_fn_c_check_type "$LINENO" "mode_t" "ac_cv_type_mode_t" "$ac_includes_default"
1696 -if test "x$ac_cv_type_mode_t" = x""yes; then :
1697 +if test "x$ac_cv_type_mode_t" = xyes; then :
1698
1699 else
1700
1701 @@ -14057,7 +14079,7 @@ fi
1702
1703 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for promoted mode_t type" >&5
1704 $as_echo_n "checking for promoted mode_t type... " >&6; }
1705 -if test "${gl_cv_promoted_mode_t+set}" = set; then :
1706 +if ${gl_cv_promoted_mode_t+:} false; then :
1707 $as_echo_n "(cached) " >&6
1708 else
1709
1710 @@ -14107,7 +14129,7 @@ _ACEOF
1711 REPLACE_STRERROR_0=0
1712 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether strerror(0) succeeds" >&5
1713 $as_echo_n "checking whether strerror(0) succeeds... " >&6; }
1714 -if test "${gl_cv_func_strerror_0_works+set}" = set; then :
1715 +if ${gl_cv_func_strerror_0_works+:} false; then :
1716 $as_echo_n "(cached) " >&6
1717 else
1718 if test "$cross_compiling" = yes; then :
1719 @@ -14179,7 +14201,7 @@ $as_echo "#define REPLACE_STRERROR_0 1" >>confdefs.h
1720 if test "$ERRNO_H:$REPLACE_STRERROR_0" = :0; then
1721 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strerror_r with POSIX signature" >&5
1722 $as_echo_n "checking for strerror_r with POSIX signature... " >&6; }
1723 -if test "${gl_cv_func_strerror_r_posix_signature+set}" = set; then :
1724 +if ${gl_cv_func_strerror_r_posix_signature+:} false; then :
1725 $as_echo_n "(cached) " >&6
1726 else
1727 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1728 @@ -14208,7 +14230,7 @@ $as_echo "$gl_cv_func_strerror_r_posix_signature" >&6; }
1729 if test $gl_cv_func_strerror_r_posix_signature = yes; then
1730 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether strerror_r works" >&5
1731 $as_echo_n "checking whether strerror_r works... " >&6; }
1732 -if test "${gl_cv_func_strerror_r_works+set}" = set; then :
1733 +if ${gl_cv_func_strerror_r_works+:} false; then :
1734 $as_echo_n "(cached) " >&6
1735 else
1736 if test "$cross_compiling" = yes; then :
1737 @@ -14285,7 +14307,7 @@ $as_echo "$gl_cv_func_strerror_r_works" >&6; }
1738 if test $ac_cv_func___xpg_strerror_r = yes; then
1739 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether __xpg_strerror_r works" >&5
1740 $as_echo_n "checking whether __xpg_strerror_r works... " >&6; }
1741 -if test "${gl_cv_func_strerror_r_works+set}" = set; then :
1742 +if ${gl_cv_func_strerror_r_works+:} false; then :
1743 $as_echo_n "(cached) " >&6
1744 else
1745 if test "$cross_compiling" = yes; then :
1746 @@ -14343,7 +14365,7 @@ $as_echo "$gl_cv_func_strerror_r_works" >&6; }
1747
1748
1749 ac_fn_c_check_decl "$LINENO" "strerror_r" "ac_cv_have_decl_strerror_r" "$ac_includes_default"
1750 -if test "x$ac_cv_have_decl_strerror_r" = x""yes; then :
1751 +if test "x$ac_cv_have_decl_strerror_r" = xyes; then :
1752 ac_have_decl=1
1753 else
1754 ac_have_decl=0
1755 @@ -14387,7 +14409,7 @@ _ACEOF
1756
1757 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for external symbol _system_configuration" >&5
1758 $as_echo_n "checking for external symbol _system_configuration... " >&6; }
1759 -if test "${gl_cv_var__system_configuration+set}" = set; then :
1760 +if ${gl_cv_var__system_configuration+:} false; then :
1761 $as_echo_n "(cached) " >&6
1762 else
1763 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1764 @@ -14478,7 +14500,7 @@ $as_echo "#define HAVE__SYSTEM_CONFIGURATION 1" >>confdefs.h
1765 else
1766 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <poll.h>" >&5
1767 $as_echo_n "checking absolute name of <poll.h>... " >&6; }
1768 -if test "${gl_cv_next_poll_h+set}" = set; then :
1769 +if ${gl_cv_next_poll_h+:} false; then :
1770 $as_echo_n "(cached) " >&6
1771 else
1772
1773 @@ -14591,7 +14613,7 @@ $as_echo "$gl_cv_next_poll_h" >&6; }
1774
1775 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether <sys/select.h> is self-contained" >&5
1776 $as_echo_n "checking whether <sys/select.h> is self-contained... " >&6; }
1777 -if test "${gl_cv_header_sys_select_h_selfcontained+set}" = set; then :
1778 +if ${gl_cv_header_sys_select_h_selfcontained+:} false; then :
1779 $as_echo_n "(cached) " >&6
1780 else
1781
1782 @@ -14690,7 +14712,7 @@ $as_echo "$gl_cv_header_sys_select_h_selfcontained" >&6; }
1783 else
1784 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <sys/select.h>" >&5
1785 $as_echo_n "checking absolute name of <sys/select.h>... " >&6; }
1786 -if test "${gl_cv_next_sys_select_h+set}" = set; then :
1787 +if ${gl_cv_next_sys_select_h+:} false; then :
1788 $as_echo_n "(cached) " >&6
1789 else
1790
1791 @@ -14756,7 +14778,7 @@ $as_echo "$gl_cv_next_sys_select_h" >&6; }
1792 for ac_header in winsock2.h
1793 do :
1794 ac_fn_c_check_header_mongrel "$LINENO" "winsock2.h" "ac_cv_header_winsock2_h" "$ac_includes_default"
1795 -if test "x$ac_cv_header_winsock2_h" = x""yes; then :
1796 +if test "x$ac_cv_header_winsock2_h" = xyes; then :
1797 cat >>confdefs.h <<_ACEOF
1798 #define HAVE_WINSOCK2_H 1
1799 _ACEOF
1800 @@ -14793,7 +14815,7 @@ done
1801 for ac_header in winsock2.h
1802 do :
1803 ac_fn_c_check_header_mongrel "$LINENO" "winsock2.h" "ac_cv_header_winsock2_h" "$ac_includes_default"
1804 -if test "x$ac_cv_header_winsock2_h" = x""yes; then :
1805 +if test "x$ac_cv_header_winsock2_h" = xyes; then :
1806 cat >>confdefs.h <<_ACEOF
1807 #define HAVE_WINSOCK2_H 1
1808 _ACEOF
1809 @@ -14815,7 +14837,7 @@ done
1810 if test $HAVE_WINSOCK2_H = 1; then
1811 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we need to call WSAStartup in winsock2.h and -lws2_32" >&5
1812 $as_echo_n "checking if we need to call WSAStartup in winsock2.h and -lws2_32... " >&6; }
1813 -if test "${gl_cv_func_wsastartup+set}" = set; then :
1814 +if ${gl_cv_func_wsastartup+:} false; then :
1815 $as_echo_n "(cached) " >&6
1816 else
1817
1818 @@ -14860,7 +14882,7 @@ $as_echo "#define WINDOWS_SOCKETS 1" >>confdefs.h
1819 else
1820 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing setsockopt" >&5
1821 $as_echo_n "checking for library containing setsockopt... " >&6; }
1822 -if test "${gl_cv_lib_socket+set}" = set; then :
1823 +if ${gl_cv_lib_socket+:} false; then :
1824 $as_echo_n "(cached) " >&6
1825 else
1826
1827 @@ -15001,7 +15023,7 @@ $as_echo "$gl_cv_lib_socket" >&6; }
1828 #include <sys/types.h>
1829
1830 "
1831 -if test "x$ac_cv_type_sigset_t" = x""yes; then :
1832 +if test "x$ac_cv_type_sigset_t" = xyes; then :
1833
1834 cat >>confdefs.h <<_ACEOF
1835 #define HAVE_SIGSET_T 1
1836 @@ -15020,7 +15042,7 @@ fi
1837
1838 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SIGPIPE" >&5
1839 $as_echo_n "checking for SIGPIPE... " >&6; }
1840 -if test "${gl_cv_header_signal_h_SIGPIPE+set}" = set; then :
1841 +if ${gl_cv_header_signal_h_SIGPIPE+:} false; then :
1842 $as_echo_n "(cached) " >&6
1843 else
1844
1845 @@ -15055,7 +15077,7 @@ $as_echo "$gl_cv_header_signal_h_SIGPIPE" >&6; }
1846
1847 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether snprintf returns a byte count as in C99" >&5
1848 $as_echo_n "checking whether snprintf returns a byte count as in C99... " >&6; }
1849 -if test "${gl_cv_func_snprintf_retval_c99+set}" = set; then :
1850 +if ${gl_cv_func_snprintf_retval_c99+:} false; then :
1851 $as_echo_n "(cached) " >&6
1852 else
1853
1854 @@ -15125,7 +15147,7 @@ $as_echo "$gl_cv_func_snprintf_retval_c99" >&6; }
1855
1856
1857 ac_fn_c_check_decl "$LINENO" "snprintf" "ac_cv_have_decl_snprintf" "$ac_includes_default"
1858 -if test "x$ac_cv_have_decl_snprintf" = x""yes; then :
1859 +if test "x$ac_cv_have_decl_snprintf" = xyes; then :
1860 ac_have_decl=1
1861 else
1862 ac_have_decl=0
1863 @@ -15138,7 +15160,7 @@ _ACEOF
1864
1865 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdbool.h that conforms to C99" >&5
1866 $as_echo_n "checking for stdbool.h that conforms to C99... " >&6; }
1867 -if test "${ac_cv_header_stdbool_h+set}" = set; then :
1868 +if ${ac_cv_header_stdbool_h+:} false; then :
1869 $as_echo_n "(cached) " >&6
1870 else
1871 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1872 @@ -15213,7 +15235,7 @@ fi
1873 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdbool_h" >&5
1874 $as_echo "$ac_cv_header_stdbool_h" >&6; }
1875 ac_fn_c_check_type "$LINENO" "_Bool" "ac_cv_type__Bool" "$ac_includes_default"
1876 -if test "x$ac_cv_type__Bool" = x""yes; then :
1877 +if test "x$ac_cv_type__Bool" = xyes; then :
1878
1879 cat >>confdefs.h <<_ACEOF
1880 #define HAVE__BOOL 1
1881 @@ -15230,7 +15252,7 @@ fi
1882
1883 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wchar_t" >&5
1884 $as_echo_n "checking for wchar_t... " >&6; }
1885 -if test "${gt_cv_c_wchar_t+set}" = set; then :
1886 +if ${gt_cv_c_wchar_t+:} false; then :
1887 $as_echo_n "(cached) " >&6
1888 else
1889 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1890 @@ -15335,7 +15357,7 @@ $as_echo "#define HAVE_WCHAR_T 1" >>confdefs.h
1891 else
1892 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <stdint.h>" >&5
1893 $as_echo_n "checking absolute name of <stdint.h>... " >&6; }
1894 -if test "${gl_cv_next_stdint_h+set}" = set; then :
1895 +if ${gl_cv_next_stdint_h+:} false; then :
1896 $as_echo_n "(cached) " >&6
1897 else
1898
1899 @@ -15391,7 +15413,7 @@ $as_echo "$gl_cv_next_stdint_h" >&6; }
1900 if test $ac_cv_header_stdint_h = yes; then
1901 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stdint.h conforms to C99" >&5
1902 $as_echo_n "checking whether stdint.h conforms to C99... " >&6; }
1903 -if test "${gl_cv_header_working_stdint_h+set}" = set; then :
1904 +if ${gl_cv_header_working_stdint_h+:} false; then :
1905 $as_echo_n "(cached) " >&6
1906 else
1907 gl_cv_header_working_stdint_h=no
1908 @@ -15694,7 +15716,7 @@ done
1909 for gltype in ptrdiff_t size_t ; do
1910 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bit size of $gltype" >&5
1911 $as_echo_n "checking for bit size of $gltype... " >&6; }
1912 -if eval "test \"\${gl_cv_bitsizeof_${gltype}+set}\"" = set; then :
1913 +if eval \${gl_cv_bitsizeof_${gltype}+:} false; then :
1914 $as_echo_n "(cached) " >&6
1915 else
1916 if ac_fn_c_compute_int "$LINENO" "sizeof ($gltype) * CHAR_BIT" "result" "
1917 @@ -15739,7 +15761,7 @@ _ACEOF
1918 for gltype in sig_atomic_t wchar_t wint_t ; do
1919 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bit size of $gltype" >&5
1920 $as_echo_n "checking for bit size of $gltype... " >&6; }
1921 -if eval "test \"\${gl_cv_bitsizeof_${gltype}+set}\"" = set; then :
1922 +if eval \${gl_cv_bitsizeof_${gltype}+:} false; then :
1923 $as_echo_n "(cached) " >&6
1924 else
1925 if ac_fn_c_compute_int "$LINENO" "sizeof ($gltype) * CHAR_BIT" "result" "
1926 @@ -15783,7 +15805,7 @@ _ACEOF
1927 for gltype in sig_atomic_t wchar_t wint_t ; do
1928 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $gltype is signed" >&5
1929 $as_echo_n "checking whether $gltype is signed... " >&6; }
1930 -if eval "test \"\${gl_cv_type_${gltype}_signed+set}\"" = set; then :
1931 +if eval \${gl_cv_type_${gltype}_signed+:} false; then :
1932 $as_echo_n "(cached) " >&6
1933 else
1934 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1935 @@ -15842,7 +15864,7 @@ _ACEOF
1936 for gltype in ptrdiff_t size_t ; do
1937 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $gltype integer literal suffix" >&5
1938 $as_echo_n "checking for $gltype integer literal suffix... " >&6; }
1939 -if eval "test \"\${gl_cv_type_${gltype}_suffix+set}\"" = set; then :
1940 +if eval \${gl_cv_type_${gltype}_suffix+:} false; then :
1941 $as_echo_n "(cached) " >&6
1942 else
1943 eval gl_cv_type_${gltype}_suffix=no
1944 @@ -15914,7 +15936,7 @@ _ACEOF
1945 for gltype in sig_atomic_t wchar_t wint_t ; do
1946 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $gltype integer literal suffix" >&5
1947 $as_echo_n "checking for $gltype integer literal suffix... " >&6; }
1948 -if eval "test \"\${gl_cv_type_${gltype}_suffix+set}\"" = set; then :
1949 +if eval \${gl_cv_type_${gltype}_suffix+:} false; then :
1950 $as_echo_n "(cached) " >&6
1951 else
1952 eval gl_cv_type_${gltype}_suffix=no
1953 @@ -16000,7 +16022,7 @@ fi
1954
1955
1956 ac_fn_c_check_decl "$LINENO" "strdup" "ac_cv_have_decl_strdup" "$ac_includes_default"
1957 -if test "x$ac_cv_have_decl_strdup" = x""yes; then :
1958 +if test "x$ac_cv_have_decl_strdup" = xyes; then :
1959 ac_have_decl=1
1960 else
1961 ac_have_decl=0
1962 @@ -16032,7 +16054,7 @@ _ACEOF
1963 else
1964 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <string.h>" >&5
1965 $as_echo_n "checking absolute name of <string.h>... " >&6; }
1966 -if test "${gl_cv_next_string_h+set}" = set; then :
1967 +if ${gl_cv_next_string_h+:} false; then :
1968 $as_echo_n "(cached) " >&6
1969 else
1970
1971 @@ -16102,7 +16124,7 @@ $as_echo "$gl_cv_next_string_h" >&6; }
1972 else
1973 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <strings.h>" >&5
1974 $as_echo_n "checking absolute name of <strings.h>... " >&6; }
1975 -if test "${gl_cv_next_strings_h+set}" = set; then :
1976 +if ${gl_cv_next_strings_h+:} false; then :
1977 $as_echo_n "(cached) " >&6
1978 else
1979
1980 @@ -16153,7 +16175,7 @@ $as_echo "$gl_cv_next_strings_h" >&6; }
1981
1982
1983 ac_fn_c_check_decl "$LINENO" "strndup" "ac_cv_have_decl_strndup" "$ac_includes_default"
1984 -if test "x$ac_cv_have_decl_strndup" = x""yes; then :
1985 +if test "x$ac_cv_have_decl_strndup" = xyes; then :
1986 ac_have_decl=1
1987 else
1988 ac_have_decl=0
1989 @@ -16171,7 +16193,7 @@ _ACEOF
1990
1991
1992 ac_fn_c_check_decl "$LINENO" "strnlen" "ac_cv_have_decl_strnlen" "$ac_includes_default"
1993 -if test "x$ac_cv_have_decl_strnlen" = x""yes; then :
1994 +if test "x$ac_cv_have_decl_strnlen" = xyes; then :
1995 ac_have_decl=1
1996 else
1997 ac_have_decl=0
1998 @@ -16190,7 +16212,7 @@ _ACEOF
1999
2000 ac_fn_c_check_member "$LINENO" "struct tm" "tm_gmtoff" "ac_cv_member_struct_tm_tm_gmtoff" "#include <time.h>
2001 "
2002 -if test "x$ac_cv_member_struct_tm_tm_gmtoff" = x""yes; then :
2003 +if test "x$ac_cv_member_struct_tm_tm_gmtoff" = xyes; then :
2004
2005 $as_echo "#define HAVE_TM_GMTOFF 1" >>confdefs.h
2006
2007 @@ -16199,7 +16221,7 @@ fi
2008
2009
2010 ac_fn_c_check_decl "$LINENO" "strtok_r" "ac_cv_have_decl_strtok_r" "$ac_includes_default"
2011 -if test "x$ac_cv_have_decl_strtok_r" = x""yes; then :
2012 +if test "x$ac_cv_have_decl_strtok_r" = xyes; then :
2013 ac_have_decl=1
2014 else
2015 ac_have_decl=0
2016 @@ -16212,7 +16234,7 @@ _ACEOF
2017
2018 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stat file-mode macros are broken" >&5
2019 $as_echo_n "checking whether stat file-mode macros are broken... " >&6; }
2020 -if test "${ac_cv_header_stat_broken+set}" = set; then :
2021 +if ${ac_cv_header_stat_broken+:} false; then :
2022 $as_echo_n "(cached) " >&6
2023 else
2024 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2025 @@ -16297,7 +16319,7 @@ fi
2026 if test "$gl_use_threads" != no; then
2027 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether imported symbols can be declared weak" >&5
2028 $as_echo_n "checking whether imported symbols can be declared weak... " >&6; }
2029 -if test "${gl_cv_have_weak+set}" = set; then :
2030 +if ${gl_cv_have_weak+:} false; then :
2031 $as_echo_n "(cached) " >&6
2032 else
2033 gl_cv_have_weak=no
2034 @@ -16365,7 +16387,7 @@ $as_echo "$gl_cv_have_weak" >&6; }
2035 # On OSF/1, the compiler needs the flag -pthread or -D_REENTRANT so that
2036 # it groks <pthread.h>. It's added above, in gl_THREADLIB_EARLY_BODY.
2037 ac_fn_c_check_header_mongrel "$LINENO" "pthread.h" "ac_cv_header_pthread_h" "$ac_includes_default"
2038 -if test "x$ac_cv_header_pthread_h" = x""yes; then :
2039 +if test "x$ac_cv_header_pthread_h" = xyes; then :
2040 gl_have_pthread_h=yes
2041 else
2042 gl_have_pthread_h=no
2043 @@ -16404,7 +16426,7 @@ rm -f core conftest.err conftest.$ac_objext \
2044 # need to link with libpthread in order to create multiple threads.
2045 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_kill in -lpthread" >&5
2046 $as_echo_n "checking for pthread_kill in -lpthread... " >&6; }
2047 -if test "${ac_cv_lib_pthread_pthread_kill+set}" = set; then :
2048 +if ${ac_cv_lib_pthread_pthread_kill+:} false; then :
2049 $as_echo_n "(cached) " >&6
2050 else
2051 ac_check_lib_save_LIBS=$LIBS
2052 @@ -16438,7 +16460,7 @@ LIBS=$ac_check_lib_save_LIBS
2053 fi
2054 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_pthread_kill" >&5
2055 $as_echo "$ac_cv_lib_pthread_pthread_kill" >&6; }
2056 -if test "x$ac_cv_lib_pthread_pthread_kill" = x""yes; then :
2057 +if test "x$ac_cv_lib_pthread_pthread_kill" = xyes; then :
2058 LIBMULTITHREAD=-lpthread LTLIBMULTITHREAD=-lpthread
2059 # On Solaris and HP-UX, most pthread functions exist also in libc.
2060 # Therefore pthread_in_use() needs to actually try to create a
2061 @@ -16457,7 +16479,7 @@ fi
2062 # Some library is needed. Try libpthread and libc_r.
2063 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_kill in -lpthread" >&5
2064 $as_echo_n "checking for pthread_kill in -lpthread... " >&6; }
2065 -if test "${ac_cv_lib_pthread_pthread_kill+set}" = set; then :
2066 +if ${ac_cv_lib_pthread_pthread_kill+:} false; then :
2067 $as_echo_n "(cached) " >&6
2068 else
2069 ac_check_lib_save_LIBS=$LIBS
2070 @@ -16491,7 +16513,7 @@ LIBS=$ac_check_lib_save_LIBS
2071 fi
2072 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_pthread_kill" >&5
2073 $as_echo "$ac_cv_lib_pthread_pthread_kill" >&6; }
2074 -if test "x$ac_cv_lib_pthread_pthread_kill" = x""yes; then :
2075 +if test "x$ac_cv_lib_pthread_pthread_kill" = xyes; then :
2076 gl_have_pthread=yes
2077 LIBTHREAD=-lpthread LTLIBTHREAD=-lpthread
2078 LIBMULTITHREAD=-lpthread LTLIBMULTITHREAD=-lpthread
2079 @@ -16501,7 +16523,7 @@ fi
2080 # For FreeBSD 4.
2081 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_kill in -lc_r" >&5
2082 $as_echo_n "checking for pthread_kill in -lc_r... " >&6; }
2083 -if test "${ac_cv_lib_c_r_pthread_kill+set}" = set; then :
2084 +if ${ac_cv_lib_c_r_pthread_kill+:} false; then :
2085 $as_echo_n "(cached) " >&6
2086 else
2087 ac_check_lib_save_LIBS=$LIBS
2088 @@ -16535,7 +16557,7 @@ LIBS=$ac_check_lib_save_LIBS
2089 fi
2090 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_c_r_pthread_kill" >&5
2091 $as_echo "$ac_cv_lib_c_r_pthread_kill" >&6; }
2092 -if test "x$ac_cv_lib_c_r_pthread_kill" = x""yes; then :
2093 +if test "x$ac_cv_lib_c_r_pthread_kill" = xyes; then :
2094 gl_have_pthread=yes
2095 LIBTHREAD=-lc_r LTLIBTHREAD=-lc_r
2096 LIBMULTITHREAD=-lc_r LTLIBMULTITHREAD=-lc_r
2097 @@ -16613,7 +16635,7 @@ $as_echo "#define USE_SOLARIS_THREADS_WEAK 1" >>confdefs.h
2098
2099 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libpth" >&5
2100 $as_echo_n "checking how to link with libpth... " >&6; }
2101 -if test "${ac_cv_libpth_libs+set}" = set; then :
2102 +if ${ac_cv_libpth_libs+:} false; then :
2103 $as_echo_n "(cached) " >&6
2104 else
2105
2106 @@ -17170,7 +17192,7 @@ $as_echo "$gl_threads_api" >&6; }
2107
2108 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct timespec in <time.h>" >&5
2109 $as_echo_n "checking for struct timespec in <time.h>... " >&6; }
2110 -if test "${gl_cv_sys_struct_timespec_in_time_h+set}" = set; then :
2111 +if ${gl_cv_sys_struct_timespec_in_time_h+:} false; then :
2112 $as_echo_n "(cached) " >&6
2113 else
2114 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2115 @@ -17203,7 +17225,7 @@ $as_echo "$gl_cv_sys_struct_timespec_in_time_h" >&6; }
2116 else
2117 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct timespec in <sys/time.h>" >&5
2118 $as_echo_n "checking for struct timespec in <sys/time.h>... " >&6; }
2119 -if test "${gl_cv_sys_struct_timespec_in_sys_time_h+set}" = set; then :
2120 +if ${gl_cv_sys_struct_timespec_in_sys_time_h+:} false; then :
2121 $as_echo_n "(cached) " >&6
2122 else
2123 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2124 @@ -17232,7 +17254,7 @@ $as_echo "$gl_cv_sys_struct_timespec_in_sys_time_h" >&6; }
2125 else
2126 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct timespec in <pthread.h>" >&5
2127 $as_echo_n "checking for struct timespec in <pthread.h>... " >&6; }
2128 -if test "${gl_cv_sys_struct_timespec_in_pthread_h+set}" = set; then :
2129 +if ${gl_cv_sys_struct_timespec_in_pthread_h+:} false; then :
2130 $as_echo_n "(cached) " >&6
2131 else
2132 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2133 @@ -17281,7 +17303,7 @@ $as_echo "$gl_cv_sys_struct_timespec_in_pthread_h" >&6; }
2134 else
2135 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <time.h>" >&5
2136 $as_echo_n "checking absolute name of <time.h>... " >&6; }
2137 -if test "${gl_cv_next_time_h+set}" = set; then :
2138 +if ${gl_cv_next_time_h+:} false; then :
2139 $as_echo_n "(cached) " >&6
2140 else
2141
2142 @@ -17325,7 +17347,7 @@ $as_echo "$gl_cv_next_time_h" >&6; }
2143
2144
2145 ac_fn_c_check_decl "$LINENO" "localtime_r" "ac_cv_have_decl_localtime_r" "$ac_includes_default"
2146 -if test "x$ac_cv_have_decl_localtime_r" = x""yes; then :
2147 +if test "x$ac_cv_have_decl_localtime_r" = xyes; then :
2148 ac_have_decl=1
2149 else
2150 ac_have_decl=0
2151 @@ -17359,7 +17381,7 @@ _ACEOF
2152
2153 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wint_t" >&5
2154 $as_echo_n "checking for wint_t... " >&6; }
2155 -if test "${gt_cv_c_wint_t+set}" = set; then :
2156 +if ${gt_cv_c_wint_t+:} false; then :
2157 $as_echo_n "(cached) " >&6
2158 else
2159 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2160 @@ -17397,21 +17419,10 @@ $as_echo "#define HAVE_WINT_T 1" >>confdefs.h
2161
2162 fi
2163
2164 -ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default"
2165 -if test "x$ac_cv_type_size_t" = x""yes; then :
2166 -
2167 -else
2168 -
2169 -cat >>confdefs.h <<_ACEOF
2170 -#define size_t unsigned int
2171 -_ACEOF
2172 -
2173 -fi
2174 -
2175
2176 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inttypes.h" >&5
2177 $as_echo_n "checking for inttypes.h... " >&6; }
2178 -if test "${gl_cv_header_inttypes_h+set}" = set; then :
2179 +if ${gl_cv_header_inttypes_h+:} false; then :
2180 $as_echo_n "(cached) " >&6
2181 else
2182 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2183 @@ -17446,7 +17457,7 @@ _ACEOF
2184
2185 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdint.h" >&5
2186 $as_echo_n "checking for stdint.h... " >&6; }
2187 -if test "${gl_cv_header_stdint_h+set}" = set; then :
2188 +if ${gl_cv_header_stdint_h+:} false; then :
2189 $as_echo_n "(cached) " >&6
2190 else
2191 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2192 @@ -17483,7 +17494,7 @@ _ACEOF
2193
2194 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for intmax_t" >&5
2195 $as_echo_n "checking for intmax_t... " >&6; }
2196 -if test "${gt_cv_c_intmax_t+set}" = set; then :
2197 +if ${gt_cv_c_intmax_t+:} false; then :
2198 $as_echo_n "(cached) " >&6
2199 else
2200 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2201 @@ -17551,7 +17562,7 @@ done
2202
2203 ac_fn_c_check_decl "$LINENO" "_snprintf" "ac_cv_have_decl__snprintf" "#include <stdio.h>
2204 "
2205 -if test "x$ac_cv_have_decl__snprintf" = x""yes; then :
2206 +if test "x$ac_cv_have_decl__snprintf" = xyes; then :
2207 ac_have_decl=1
2208 else
2209 ac_have_decl=0
2210 @@ -17575,7 +17586,7 @@ $as_echo "#define HAVE_SNPRINTF_RETVAL_C99 1" >>confdefs.h
2211
2212
2213 ac_fn_c_check_decl "$LINENO" "vsnprintf" "ac_cv_have_decl_vsnprintf" "$ac_includes_default"
2214 -if test "x$ac_cv_have_decl_vsnprintf" = x""yes; then :
2215 +if test "x$ac_cv_have_decl_vsnprintf" = xyes; then :
2216 ac_have_decl=1
2217 else
2218 ac_have_decl=0
2219 @@ -17589,7 +17600,7 @@ _ACEOF
2220
2221 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether <wchar.h> uses 'inline' correctly" >&5
2222 $as_echo_n "checking whether <wchar.h> uses 'inline' correctly... " >&6; }
2223 -if test "${gl_cv_header_wchar_h_correct_inline+set}" = set; then :
2224 +if ${gl_cv_header_wchar_h_correct_inline+:} false; then :
2225 $as_echo_n "(cached) " >&6
2226 else
2227 gl_cv_header_wchar_h_correct_inline=yes
2228 @@ -17682,7 +17693,7 @@ Configuration aborted." "$LINENO" 5
2229
2230
2231 ac_fn_c_check_decl "$LINENO" "strerror_r" "ac_cv_have_decl_strerror_r" "$ac_includes_default"
2232 -if test "x$ac_cv_have_decl_strerror_r" = x""yes; then :
2233 +if test "x$ac_cv_have_decl_strerror_r" = xyes; then :
2234 ac_have_decl=1
2235 else
2236 ac_have_decl=0
2237 @@ -17695,7 +17706,7 @@ _ACEOF
2238 for ac_func in strerror_r
2239 do :
2240 ac_fn_c_check_func "$LINENO" "strerror_r" "ac_cv_func_strerror_r"
2241 -if test "x$ac_cv_func_strerror_r" = x""yes; then :
2242 +if test "x$ac_cv_func_strerror_r" = xyes; then :
2243 cat >>confdefs.h <<_ACEOF
2244 #define HAVE_STRERROR_R 1
2245 _ACEOF
2246 @@ -17705,7 +17716,7 @@ done
2247
2248 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether strerror_r returns char *" >&5
2249 $as_echo_n "checking whether strerror_r returns char *... " >&6; }
2250 -if test "${ac_cv_func_strerror_r_char_p+set}" = set; then :
2251 +if ${ac_cv_func_strerror_r_char_p+:} false; then :
2252 $as_echo_n "(cached) " >&6
2253 else
2254
2255 @@ -17776,7 +17787,7 @@ fi
2256
2257 ac_fn_c_check_type "$LINENO" "sig_atomic_t" "ac_cv_type_sig_atomic_t" "#include <signal.h>
2258 "
2259 -if test "x$ac_cv_type_sig_atomic_t" = x""yes; then :
2260 +if test "x$ac_cv_type_sig_atomic_t" = xyes; then :
2261
2262 cat >>confdefs.h <<_ACEOF
2263 #define HAVE_SIG_ATOMIC_T 1
2264 @@ -17795,7 +17806,7 @@ fi
2265
2266 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ungetc works on arbitrary bytes" >&5
2267 $as_echo_n "checking whether ungetc works on arbitrary bytes... " >&6; }
2268 -if test "${gl_cv_func_ungetc_works+set}" = set; then :
2269 +if ${gl_cv_func_ungetc_works+:} false; then :
2270 $as_echo_n "(cached) " >&6
2271 else
2272 if test "$cross_compiling" = yes; then :
2273 @@ -17848,7 +17859,7 @@ $as_echo "#define FUNC_UNGETC_BROKEN 1" >>confdefs.h
2274
2275 { $as_echo "$as_me:${as_lineno-$LINENO}: checking type of array argument to getgroups" >&5
2276 $as_echo_n "checking type of array argument to getgroups... " >&6; }
2277 -if test "${ac_cv_type_getgroups+set}" = set; then :
2278 +if ${ac_cv_type_getgroups+:} false; then :
2279 $as_echo_n "(cached) " >&6
2280 else
2281 if test "$cross_compiling" = yes; then :
2282 @@ -17914,7 +17925,7 @@ _ACEOF
2283
2284
2285 ac_fn_c_check_func "$LINENO" "getgroups" "ac_cv_func_getgroups"
2286 -if test "x$ac_cv_func_getgroups" = x""yes; then :
2287 +if test "x$ac_cv_func_getgroups" = xyes; then :
2288
2289 fi
2290
2291 @@ -17925,7 +17936,7 @@ ac_save_LIBS=$LIBS
2292 if test $ac_cv_func_getgroups = no; then
2293 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for getgroups in -lbsd" >&5
2294 $as_echo_n "checking for getgroups in -lbsd... " >&6; }
2295 -if test "${ac_cv_lib_bsd_getgroups+set}" = set; then :
2296 +if ${ac_cv_lib_bsd_getgroups+:} false; then :
2297 $as_echo_n "(cached) " >&6
2298 else
2299 ac_check_lib_save_LIBS=$LIBS
2300 @@ -17959,7 +17970,7 @@ LIBS=$ac_check_lib_save_LIBS
2301 fi
2302 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_getgroups" >&5
2303 $as_echo "$ac_cv_lib_bsd_getgroups" >&6; }
2304 -if test "x$ac_cv_lib_bsd_getgroups" = x""yes; then :
2305 +if test "x$ac_cv_lib_bsd_getgroups" = xyes; then :
2306 GETGROUPS_LIB=-lbsd
2307 fi
2308
2309 @@ -17970,7 +17981,7 @@ fi
2310 if test $ac_cv_func_getgroups = yes; then
2311 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working getgroups" >&5
2312 $as_echo_n "checking for working getgroups... " >&6; }
2313 -if test "${ac_cv_func_getgroups_works+set}" = set; then :
2314 +if ${ac_cv_func_getgroups_works+:} false; then :
2315 $as_echo_n "(cached) " >&6
2316 else
2317 if test "$cross_compiling" = yes; then :
2318 @@ -18068,7 +18079,7 @@ LIBS=$ac_save_LIBS
2319 else
2320 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <inttypes.h>" >&5
2321 $as_echo_n "checking absolute name of <inttypes.h>... " >&6; }
2322 -if test "${gl_cv_next_inttypes_h+set}" = set; then :
2323 +if ${gl_cv_next_inttypes_h+:} false; then :
2324 $as_echo_n "(cached) " >&6
2325 else
2326
2327 @@ -18128,7 +18139,7 @@ $as_echo "#define GL_TRIGGER_STDC_LIMIT_MACROS 1" >>confdefs.h
2328 for ac_header in inttypes.h
2329 do :
2330 ac_fn_c_check_header_mongrel "$LINENO" "inttypes.h" "ac_cv_header_inttypes_h" "$ac_includes_default"
2331 -if test "x$ac_cv_header_inttypes_h" = x""yes; then :
2332 +if test "x$ac_cv_header_inttypes_h" = xyes; then :
2333 cat >>confdefs.h <<_ACEOF
2334 #define HAVE_INTTYPES_H 1
2335 _ACEOF
2336 @@ -18140,7 +18151,7 @@ done
2337 if test $ac_cv_header_inttypes_h = yes; then
2338 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the inttypes.h PRIxNN macros are broken" >&5
2339 $as_echo_n "checking whether the inttypes.h PRIxNN macros are broken... " >&6; }
2340 -if test "${gt_cv_inttypes_pri_broken+set}" = set; then :
2341 +if ${gt_cv_inttypes_pri_broken+:} false; then :
2342 $as_echo_n "(cached) " >&6
2343 else
2344
2345 @@ -18202,7 +18213,7 @@ _ACEOF
2346
2347 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5
2348 $as_echo_n "checking for LC_MESSAGES... " >&6; }
2349 -if test "${gt_cv_val_LC_MESSAGES+set}" = set; then :
2350 +if ${gt_cv_val_LC_MESSAGES+:} false; then :
2351 $as_echo_n "(cached) " >&6
2352 else
2353 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2354 @@ -18235,7 +18246,7 @@ $as_echo "#define HAVE_LC_MESSAGES 1" >>confdefs.h
2355
2356 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFPreferencesCopyAppValue" >&5
2357 $as_echo_n "checking for CFPreferencesCopyAppValue... " >&6; }
2358 -if test "${gt_cv_func_CFPreferencesCopyAppValue+set}" = set; then :
2359 +if ${gt_cv_func_CFPreferencesCopyAppValue+:} false; then :
2360 $as_echo_n "(cached) " >&6
2361 else
2362 gt_save_LIBS="$LIBS"
2363 @@ -18269,7 +18280,7 @@ $as_echo "#define HAVE_CFPREFERENCESCOPYAPPVALUE 1" >>confdefs.h
2364 fi
2365 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFLocaleCopyCurrent" >&5
2366 $as_echo_n "checking for CFLocaleCopyCurrent... " >&6; }
2367 -if test "${gt_cv_func_CFLocaleCopyCurrent+set}" = set; then :
2368 +if ${gt_cv_func_CFLocaleCopyCurrent+:} false; then :
2369 $as_echo_n "(cached) " >&6
2370 else
2371 gt_save_LIBS="$LIBS"
2372 @@ -18314,7 +18325,7 @@ $as_echo "#define HAVE_CFLOCALECOPYCURRENT 1" >>confdefs.h
2373
2374
2375 ac_fn_c_check_decl "$LINENO" "alarm" "ac_cv_have_decl_alarm" "$ac_includes_default"
2376 -if test "x$ac_cv_have_decl_alarm" = x""yes; then :
2377 +if test "x$ac_cv_have_decl_alarm" = xyes; then :
2378 ac_have_decl=1
2379 else
2380 ac_have_decl=0
2381 @@ -18385,7 +18396,7 @@ _ACEOF
2382
2383 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether posix_spawn works" >&5
2384 $as_echo_n "checking whether posix_spawn works... " >&6; }
2385 -if test "${gl_cv_func_posix_spawn_works+set}" = set; then :
2386 +if ${gl_cv_func_posix_spawn_works+:} false; then :
2387 $as_echo_n "(cached) " >&6
2388 else
2389 if test $cross_compiling = no; then
2390 @@ -18723,7 +18734,7 @@ $as_echo "$gl_cv_func_posix_spawn_works" >&6; }
2391 *yes)
2392 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether posix_spawnattr_setschedpolicy is supported" >&5
2393 $as_echo_n "checking whether posix_spawnattr_setschedpolicy is supported... " >&6; }
2394 -if test "${gl_cv_func_spawnattr_setschedpolicy+set}" = set; then :
2395 +if ${gl_cv_func_spawnattr_setschedpolicy+:} false; then :
2396 $as_echo_n "(cached) " >&6
2397 else
2398 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2399 @@ -18749,7 +18760,7 @@ fi
2400 $as_echo "$gl_cv_func_spawnattr_setschedpolicy" >&6; }
2401 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether posix_spawnattr_setschedparam is supported" >&5
2402 $as_echo_n "checking whether posix_spawnattr_setschedparam is supported... " >&6; }
2403 -if test "${gl_cv_func_spawnattr_setschedparam+set}" = set; then :
2404 +if ${gl_cv_func_spawnattr_setschedparam+:} false; then :
2405 $as_echo_n "(cached) " >&6
2406 else
2407 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2408 @@ -18780,7 +18791,7 @@ $as_echo "$gl_cv_func_spawnattr_setschedparam" >&6; }
2409
2410
2411 ac_fn_c_check_decl "$LINENO" "setenv" "ac_cv_have_decl_setenv" "$ac_includes_default"
2412 -if test "x$ac_cv_have_decl_setenv" = x""yes; then :
2413 +if test "x$ac_cv_have_decl_setenv" = xyes; then :
2414 ac_have_decl=1
2415 else
2416 ac_have_decl=0
2417 @@ -18828,7 +18839,7 @@ _ACEOF
2418 for ac_header in search.h
2419 do :
2420 ac_fn_c_check_header_mongrel "$LINENO" "search.h" "ac_cv_header_search_h" "$ac_includes_default"
2421 -if test "x$ac_cv_header_search_h" = x""yes; then :
2422 +if test "x$ac_cv_header_search_h" = xyes; then :
2423 cat >>confdefs.h <<_ACEOF
2424 #define HAVE_SEARCH_H 1
2425 _ACEOF
2426 @@ -18840,7 +18851,7 @@ done
2427 for ac_func in tsearch
2428 do :
2429 ac_fn_c_check_func "$LINENO" "tsearch" "ac_cv_func_tsearch"
2430 -if test "x$ac_cv_func_tsearch" = x""yes; then :
2431 +if test "x$ac_cv_func_tsearch" = xyes; then :
2432 cat >>confdefs.h <<_ACEOF
2433 #define HAVE_TSEARCH 1
2434 _ACEOF
2435 @@ -18867,7 +18878,7 @@ done
2436
2437
2438 ac_fn_c_check_decl "$LINENO" "unsetenv" "ac_cv_have_decl_unsetenv" "$ac_includes_default"
2439 -if test "x$ac_cv_have_decl_unsetenv" = x""yes; then :
2440 +if test "x$ac_cv_have_decl_unsetenv" = xyes; then :
2441 ac_have_decl=1
2442 else
2443 ac_have_decl=0
2444 @@ -18949,7 +18960,7 @@ LTALLOCA=`echo "$ALLOCA" | sed -e 's/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'`
2445 if test $ac_cv_working_alloca_h = yes; then
2446 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for alloca as a compiler built-in" >&5
2447 $as_echo_n "checking for alloca as a compiler built-in... " >&6; }
2448 -if test "${gl_cv_rpl_alloca+set}" = set; then :
2449 +if ${gl_cv_rpl_alloca+:} false; then :
2450 $as_echo_n "(cached) " >&6
2451 else
2452
2453 @@ -19030,7 +19041,7 @@ fi
2454 else
2455 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <arpa/inet.h>" >&5
2456 $as_echo_n "checking absolute name of <arpa/inet.h>... " >&6; }
2457 -if test "${gl_cv_next_arpa_inet_h+set}" = set; then :
2458 +if ${gl_cv_next_arpa_inet_h+:} false; then :
2459 $as_echo_n "(cached) " >&6
2460 else
2461
2462 @@ -19120,7 +19131,7 @@ $as_echo "#define GNULIB_TEST_BIND 1" >>confdefs.h
2463 for ac_header in byteswap.h
2464 do :
2465 ac_fn_c_check_header_mongrel "$LINENO" "byteswap.h" "ac_cv_header_byteswap_h" "$ac_includes_default"
2466 -if test "x$ac_cv_header_byteswap_h" = x""yes; then :
2467 +if test "x$ac_cv_header_byteswap_h" = xyes; then :
2468 cat >>confdefs.h <<_ACEOF
2469 #define HAVE_BYTESWAP_H 1
2470 _ACEOF
2471 @@ -19316,7 +19327,7 @@ $as_echo "#define GNULIB_TEST_CLOEXEC 1" >>confdefs.h
2472 for ac_header in winsock2.h
2473 do :
2474 ac_fn_c_check_header_mongrel "$LINENO" "winsock2.h" "ac_cv_header_winsock2_h" "$ac_includes_default"
2475 -if test "x$ac_cv_header_winsock2_h" = x""yes; then :
2476 +if test "x$ac_cv_header_winsock2_h" = xyes; then :
2477 cat >>confdefs.h <<_ACEOF
2478 #define HAVE_WINSOCK2_H 1
2479 _ACEOF
2480 @@ -19451,7 +19462,7 @@ $as_echo "#define GNULIB_TEST_CONNECT 1" >>confdefs.h
2481
2482 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether // is distinct from /" >&5
2483 $as_echo_n "checking whether // is distinct from /... " >&6; }
2484 -if test "${gl_cv_double_slash_root+set}" = set; then :
2485 +if ${gl_cv_double_slash_root+:} false; then :
2486 $as_echo_n "(cached) " >&6
2487 else
2488 if test x"$cross_compiling" = xyes ; then
2489 @@ -19497,7 +19508,7 @@ $as_echo "#define HAVE_DUP2 1" >>confdefs.h
2490 if test $HAVE_DUP2 = 1; then
2491 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether dup2 works" >&5
2492 $as_echo_n "checking whether dup2 works... " >&6; }
2493 -if test "${gl_cv_func_dup2_works+set}" = set; then :
2494 +if ${gl_cv_func_dup2_works+:} false; then :
2495 $as_echo_n "(cached) " >&6
2496 else
2497 if test "$cross_compiling" = yes; then :
2498 @@ -19618,7 +19629,7 @@ $as_echo "#define GNULIB_TEST_ENVIRON 1" >>confdefs.h
2499
2500 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether fflush works on input streams" >&5
2501 $as_echo_n "checking whether fflush works on input streams... " >&6; }
2502 -if test "${gl_cv_func_fflush_stdin+set}" = set; then :
2503 +if ${gl_cv_func_fflush_stdin+:} false; then :
2504 $as_echo_n "(cached) " >&6
2505 else
2506 echo hello world > conftest.txt
2507 @@ -19755,7 +19766,7 @@ $as_echo "#define GNULIB_TEST_FCLOSE 1" >>confdefs.h
2508 else
2509 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether fcntl handles F_DUPFD correctly" >&5
2510 $as_echo_n "checking whether fcntl handles F_DUPFD correctly... " >&6; }
2511 -if test "${gl_cv_func_fcntl_f_dupfd_works+set}" = set; then :
2512 +if ${gl_cv_func_fcntl_f_dupfd_works+:} false; then :
2513 $as_echo_n "(cached) " >&6
2514 else
2515 if test "$cross_compiling" = yes; then :
2516 @@ -19819,7 +19830,7 @@ $as_echo "#define FCNTL_DUPFD_BUGGY 1" >>confdefs.h
2517
2518 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether fcntl understands F_DUPFD_CLOEXEC" >&5
2519 $as_echo_n "checking whether fcntl understands F_DUPFD_CLOEXEC... " >&6; }
2520 -if test "${gl_cv_func_fcntl_f_dupfd_cloexec+set}" = set; then :
2521 +if ${gl_cv_func_fcntl_f_dupfd_cloexec+:} false; then :
2522 $as_echo_n "(cached) " >&6
2523 else
2524 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2525 @@ -19932,7 +19943,7 @@ $as_echo "#define GNULIB_TEST_FCNTL 1" >>confdefs.h
2526 else
2527 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <fcntl.h>" >&5
2528 $as_echo_n "checking absolute name of <fcntl.h>... " >&6; }
2529 -if test "${gl_cv_next_fcntl_h+set}" = set; then :
2530 +if ${gl_cv_next_fcntl_h+:} false; then :
2531 $as_echo_n "(cached) " >&6
2532 else
2533
2534 @@ -19980,7 +19991,7 @@ $as_echo "$gl_cv_next_fcntl_h" >&6; }
2535
2536 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether fflush works on input streams" >&5
2537 $as_echo_n "checking whether fflush works on input streams... " >&6; }
2538 -if test "${gl_cv_func_fflush_stdin+set}" = set; then :
2539 +if ${gl_cv_func_fflush_stdin+:} false; then :
2540 $as_echo_n "(cached) " >&6
2541 else
2542 echo hello world > conftest.txt
2543 @@ -20184,7 +20195,7 @@ rm -f conftest*
2544 else
2545 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <float.h>" >&5
2546 $as_echo_n "checking absolute name of <float.h>... " >&6; }
2547 -if test "${gl_cv_next_float_h+set}" = set; then :
2548 +if ${gl_cv_next_float_h+:} false; then :
2549 $as_echo_n "(cached) " >&6
2550 else
2551
2552 @@ -20259,7 +20270,7 @@ fi
2553 gl_fnmatch_cache_var="gl_cv_func_fnmatch_${gl_fnmatch_required_lowercase}"
2554 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working $gl_fnmatch_required fnmatch" >&5
2555 $as_echo_n "checking for working $gl_fnmatch_required fnmatch... " >&6; }
2556 -if eval "test \"\${$gl_fnmatch_cache_var+set}\"" = set; then :
2557 +if eval \${$gl_fnmatch_cache_var+:} false; then :
2558 $as_echo_n "(cached) " >&6
2559 else
2560 if test $gl_fnmatch_required = GNU; then
2561 @@ -20408,7 +20419,7 @@ _ACEOF
2562
2563 ac_fn_c_check_decl "$LINENO" "isblank" "ac_cv_have_decl_isblank" "#include <ctype.h>
2564 "
2565 -if test "x$ac_cv_have_decl_isblank" = x""yes; then :
2566 +if test "x$ac_cv_have_decl_isblank" = xyes; then :
2567 ac_have_decl=1
2568 else
2569 ac_have_decl=0
2570 @@ -20473,7 +20484,7 @@ fi
2571
2572 ac_fn_c_check_decl "$LINENO" "fpurge" "ac_cv_have_decl_fpurge" "#include <stdio.h>
2573 "
2574 -if test "x$ac_cv_have_decl_fpurge" = x""yes; then :
2575 +if test "x$ac_cv_have_decl_fpurge" = xyes; then :
2576 ac_have_decl=1
2577 else
2578 ac_have_decl=0
2579 @@ -20488,7 +20499,7 @@ _ACEOF
2580 # Detect BSD bug. Only cygwin 1.7 is known to be immune.
2581 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether fpurge works" >&5
2582 $as_echo_n "checking whether fpurge works... " >&6; }
2583 -if test "${gl_cv_func_fpurge_works+set}" = set; then :
2584 +if ${gl_cv_func_fpurge_works+:} false; then :
2585 $as_echo_n "(cached) " >&6
2586 else
2587 if test "$cross_compiling" = yes; then :
2588 @@ -20622,7 +20633,7 @@ $as_echo "#define GNULIB_TEST_FSEEK 1" >>confdefs.h
2589
2590 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fseeko" >&5
2591 $as_echo_n "checking for fseeko... " >&6; }
2592 -if test "${gl_cv_func_fseeko+set}" = set; then :
2593 +if ${gl_cv_func_fseeko+:} false; then :
2594 $as_echo_n "(cached) " >&6
2595 else
2596
2597 @@ -20671,7 +20682,7 @@ $as_echo "$gl_cv_func_fseeko" >&6; }
2598
2599 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether fflush works on input streams" >&5
2600 $as_echo_n "checking whether fflush works on input streams... " >&6; }
2601 -if test "${gl_cv_func_fflush_stdin+set}" = set; then :
2602 +if ${gl_cv_func_fflush_stdin+:} false; then :
2603 $as_echo_n "(cached) " >&6
2604 else
2605 echo hello world > conftest.txt
2606 @@ -20829,7 +20840,7 @@ $as_echo "#define GNULIB_TEST_FTELL 1" >>confdefs.h
2607
2608 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ftello" >&5
2609 $as_echo_n "checking for ftello... " >&6; }
2610 -if test "${gl_cv_func_ftello+set}" = set; then :
2611 +if ${gl_cv_func_ftello+:} false; then :
2612 $as_echo_n "(cached) " >&6
2613 else
2614
2615 @@ -20864,7 +20875,7 @@ $as_echo "$gl_cv_func_ftello" >&6; }
2616
2617 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ftello works" >&5
2618 $as_echo_n "checking whether ftello works... " >&6; }
2619 -if test "${gl_cv_func_ftello_works+set}" = set; then :
2620 +if ${gl_cv_func_ftello_works+:} false; then :
2621 $as_echo_n "(cached) " >&6
2622 else
2623
2624 @@ -20993,7 +21004,7 @@ $as_echo "#define GNULIB_TEST_FTELLO 1" >>confdefs.h
2625
2626 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether __func__ is available" >&5
2627 $as_echo_n "checking whether __func__ is available... " >&6; }
2628 -if test "${gl_cv_var_func+set}" = set; then :
2629 +if ${gl_cv_var_func+:} false; then :
2630 $as_echo_n "(cached) " >&6
2631 else
2632 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2633 @@ -21030,7 +21041,7 @@ $as_echo "$as_me: checking how to do getaddrinfo, freeaddrinfo and getnameinfo"
2634
2635 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing getaddrinfo" >&5
2636 $as_echo_n "checking for library containing getaddrinfo... " >&6; }
2637 -if test "${ac_cv_search_getaddrinfo+set}" = set; then :
2638 +if ${ac_cv_search_getaddrinfo+:} false; then :
2639 $as_echo_n "(cached) " >&6
2640 else
2641 ac_func_search_save_LIBS=$LIBS
2642 @@ -21064,11 +21075,11 @@ for ac_lib in '' socket network net; do
2643 fi
2644 rm -f core conftest.err conftest.$ac_objext \
2645 conftest$ac_exeext
2646 - if test "${ac_cv_search_getaddrinfo+set}" = set; then :
2647 + if ${ac_cv_search_getaddrinfo+:} false; then :
2648 break
2649 fi
2650 done
2651 -if test "${ac_cv_search_getaddrinfo+set}" = set; then :
2652 +if ${ac_cv_search_getaddrinfo+:} false; then :
2653
2654 else
2655 ac_cv_search_getaddrinfo=no
2656 @@ -21091,7 +21102,7 @@ fi
2657 HAVE_GETADDRINFO=1
2658 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for getaddrinfo" >&5
2659 $as_echo_n "checking for getaddrinfo... " >&6; }
2660 -if test "${gl_cv_func_getaddrinfo+set}" = set; then :
2661 +if ${gl_cv_func_getaddrinfo+:} false; then :
2662 $as_echo_n "(cached) " >&6
2663 else
2664
2665 @@ -21128,7 +21139,7 @@ $as_echo "$gl_cv_func_getaddrinfo" >&6; }
2666 if test $gl_cv_func_getaddrinfo = no; then
2667 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for getaddrinfo in ws2tcpip.h and -lws2_32" >&5
2668 $as_echo_n "checking for getaddrinfo in ws2tcpip.h and -lws2_32... " >&6; }
2669 -if test "${gl_cv_w32_getaddrinfo+set}" = set; then :
2670 +if ${gl_cv_w32_getaddrinfo+:} false; then :
2671 $as_echo_n "(cached) " >&6
2672 else
2673
2674 @@ -21186,7 +21197,7 @@ $as_echo "$gl_cv_w32_getaddrinfo" >&6; }
2675 #include <stddef.h>
2676
2677 "
2678 -if test "x$ac_cv_have_decl_gai_strerror" = x""yes; then :
2679 +if test "x$ac_cv_have_decl_gai_strerror" = xyes; then :
2680 ac_have_decl=1
2681 else
2682 ac_have_decl=0
2683 @@ -21214,7 +21225,7 @@ ac_fn_c_check_decl "$LINENO" "gai_strerrorA" "ac_cv_have_decl_gai_strerrorA" "
2684 #include <stddef.h>
2685
2686 "
2687 -if test "x$ac_cv_have_decl_gai_strerrorA" = x""yes; then :
2688 +if test "x$ac_cv_have_decl_gai_strerrorA" = xyes; then :
2689 ac_have_decl=1
2690 else
2691 ac_have_decl=0
2692 @@ -21232,7 +21243,7 @@ fi
2693 if test $ac_cv_have_decl_gai_strerror = yes; then
2694 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gai_strerror with POSIX signature" >&5
2695 $as_echo_n "checking for gai_strerror with POSIX signature... " >&6; }
2696 -if test "${gl_cv_func_gai_strerror_posix_signature+set}" = set; then :
2697 +if ${gl_cv_func_gai_strerror_posix_signature+:} false; then :
2698 $as_echo_n "(cached) " >&6
2699 else
2700
2701 @@ -21285,7 +21296,7 @@ $as_echo "$gl_cv_func_gai_strerror_posix_signature" >&6; }
2702 #include <sys/socket.h>
2703
2704 "
2705 -if test "x$ac_cv_member_struct_sockaddr_sa_len" = x""yes; then :
2706 +if test "x$ac_cv_member_struct_sockaddr_sa_len" = xyes; then :
2707
2708 cat >>confdefs.h <<_ACEOF
2709 #define HAVE_STRUCT_SOCKADDR_SA_LEN 1
2710 @@ -21319,7 +21330,7 @@ fi
2711 #endif
2712
2713 "
2714 -if test "x$ac_cv_have_decl_getaddrinfo" = x""yes; then :
2715 +if test "x$ac_cv_have_decl_getaddrinfo" = xyes; then :
2716 ac_have_decl=1
2717 else
2718 ac_have_decl=0
2719 @@ -21344,7 +21355,7 @@ ac_fn_c_check_decl "$LINENO" "freeaddrinfo" "ac_cv_have_decl_freeaddrinfo" "
2720 #endif
2721
2722 "
2723 -if test "x$ac_cv_have_decl_freeaddrinfo" = x""yes; then :
2724 +if test "x$ac_cv_have_decl_freeaddrinfo" = xyes; then :
2725 ac_have_decl=1
2726 else
2727 ac_have_decl=0
2728 @@ -21369,7 +21380,7 @@ ac_fn_c_check_decl "$LINENO" "getnameinfo" "ac_cv_have_decl_getnameinfo" "
2729 #endif
2730
2731 "
2732 -if test "x$ac_cv_have_decl_getnameinfo" = x""yes; then :
2733 +if test "x$ac_cv_have_decl_getnameinfo" = xyes; then :
2734 ac_have_decl=1
2735 else
2736 ac_have_decl=0
2737 @@ -21405,7 +21416,7 @@ _ACEOF
2738 #endif
2739
2740 "
2741 -if test "x$ac_cv_type_struct_addrinfo" = x""yes; then :
2742 +if test "x$ac_cv_type_struct_addrinfo" = xyes; then :
2743
2744 cat >>confdefs.h <<_ACEOF
2745 #define HAVE_STRUCT_ADDRINFO 1
2746 @@ -21537,7 +21548,7 @@ $as_echo "#define GNULIB_TEST_GETCWD 1" >>confdefs.h
2747 HAVE_GETDELIM=1
2748 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working getdelim function" >&5
2749 $as_echo_n "checking for working getdelim function... " >&6; }
2750 -if test "${gl_cv_func_working_getdelim+set}" = set; then :
2751 +if ${gl_cv_func_working_getdelim+:} false; then :
2752 $as_echo_n "(cached) " >&6
2753 else
2754 echo fooNbarN | tr -d '\012' | tr N '\012' > conftest.data
2755 @@ -21643,7 +21654,7 @@ fi
2756 done
2757
2758 ac_fn_c_check_decl "$LINENO" "getc_unlocked" "ac_cv_have_decl_getc_unlocked" "$ac_includes_default"
2759 -if test "x$ac_cv_have_decl_getc_unlocked" = x""yes; then :
2760 +if test "x$ac_cv_have_decl_getc_unlocked" = xyes; then :
2761 ac_have_decl=1
2762 else
2763 ac_have_decl=0
2764 @@ -21726,7 +21737,7 @@ $as_echo "#define GNULIB_TEST_GETDTABLESIZE 1" >>confdefs.h
2765 for ac_header in winsock2.h
2766 do :
2767 ac_fn_c_check_header_mongrel "$LINENO" "winsock2.h" "ac_cv_header_winsock2_h" "$ac_includes_default"
2768 -if test "x$ac_cv_header_winsock2_h" = x""yes; then :
2769 +if test "x$ac_cv_header_winsock2_h" = xyes; then :
2770 cat >>confdefs.h <<_ACEOF
2771 #define HAVE_WINSOCK2_H 1
2772 _ACEOF
2773 @@ -21750,7 +21761,7 @@ done
2774 for ac_func in gethostname
2775 do :
2776 ac_fn_c_check_func "$LINENO" "gethostname" "ac_cv_func_gethostname"
2777 -if test "x$ac_cv_func_gethostname" = x""yes; then :
2778 +if test "x$ac_cv_func_gethostname" = xyes; then :
2779 cat >>confdefs.h <<_ACEOF
2780 #define HAVE_GETHOSTNAME 1
2781 _ACEOF
2782 @@ -21759,7 +21770,7 @@ else
2783
2784 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostname in winsock2.h and -lws2_32" >&5
2785 $as_echo_n "checking for gethostname in winsock2.h and -lws2_32... " >&6; }
2786 -if test "${gl_cv_w32_gethostname+set}" = set; then :
2787 +if ${gl_cv_w32_gethostname+:} false; then :
2788 $as_echo_n "(cached) " >&6
2789 else
2790 gl_cv_w32_gethostname=no
2791 @@ -21827,7 +21838,7 @@ done
2792
2793 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for HOST_NAME_MAX" >&5
2794 $as_echo_n "checking for HOST_NAME_MAX... " >&6; }
2795 -if test "${gl_cv_decl_HOST_NAME_MAX+set}" = set; then :
2796 +if ${gl_cv_decl_HOST_NAME_MAX+:} false; then :
2797 $as_echo_n "(cached) " >&6
2798 else
2799
2800 @@ -21900,7 +21911,7 @@ if test $HAVE_GETHOSTNAME = 0; then
2801 for ac_func in uname
2802 do :
2803 ac_fn_c_check_func "$LINENO" "uname" "ac_cv_func_uname"
2804 -if test "x$ac_cv_func_uname" = x""yes; then :
2805 +if test "x$ac_cv_func_uname" = xyes; then :
2806 cat >>confdefs.h <<_ACEOF
2807 #define HAVE_UNAME 1
2808 _ACEOF
2809 @@ -21941,7 +21952,7 @@ $as_echo "#define GNULIB_TEST_GETHOSTNAME 1" >>confdefs.h
2810
2811 gl_getline_needs_run_time_check=no
2812 ac_fn_c_check_func "$LINENO" "getline" "ac_cv_func_getline"
2813 -if test "x$ac_cv_func_getline" = x""yes; then :
2814 +if test "x$ac_cv_func_getline" = xyes; then :
2815 gl_getline_needs_run_time_check=yes
2816 else
2817 am_cv_func_working_getline=no
2818 @@ -21950,7 +21961,7 @@ fi
2819 if test $gl_getline_needs_run_time_check = yes; then
2820 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working getline function" >&5
2821 $as_echo_n "checking for working getline function... " >&6; }
2822 -if test "${am_cv_func_working_getline+set}" = set; then :
2823 +if ${am_cv_func_working_getline+:} false; then :
2824 $as_echo_n "(cached) " >&6
2825 else
2826 echo fooNbarN | tr -d '\012' | tr N '\012' > conftest.data
2827 @@ -22066,7 +22077,7 @@ $as_echo "#define GNULIB_TEST_GETLINE 1" >>confdefs.h
2828 for ac_func in getpass
2829 do :
2830 ac_fn_c_check_func "$LINENO" "getpass" "ac_cv_func_getpass"
2831 -if test "x$ac_cv_func_getpass" = x""yes; then :
2832 +if test "x$ac_cv_func_getpass" = xyes; then :
2833 cat >>confdefs.h <<_ACEOF
2834 #define HAVE_GETPASS 1
2835 _ACEOF
2836 @@ -22127,7 +22138,7 @@ if test $HAVE_GETPASS = 0; then
2837 #include <stdio_ext.h>
2838 #endif
2839 "
2840 -if test "x$ac_cv_have_decl___fsetlocking" = x""yes; then :
2841 +if test "x$ac_cv_have_decl___fsetlocking" = xyes; then :
2842 ac_have_decl=1
2843 else
2844 ac_have_decl=0
2845 @@ -22254,7 +22265,7 @@ $as_echo "#define GNULIB_TEST_GETSOCKNAME 1" >>confdefs.h
2846
2847 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether gettimeofday clobbers localtime buffer" >&5
2848 $as_echo_n "checking whether gettimeofday clobbers localtime buffer... " >&6; }
2849 -if test "${gl_cv_func_gettimeofday_clobber+set}" = set; then :
2850 +if ${gl_cv_func_gettimeofday_clobber+:} false; then :
2851 $as_echo_n "(cached) " >&6
2852 else
2853 if test "$cross_compiling" = yes; then :
2854 @@ -22314,7 +22325,7 @@ $as_echo "#define GETTIMEOFDAY_CLOBBERS_LOCALTIME 1" >>confdefs.h
2855
2856 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gettimeofday with POSIX signature" >&5
2857 $as_echo_n "checking for gettimeofday with POSIX signature... " >&6; }
2858 -if test "${gl_cv_func_gettimeofday_posix_signature+set}" = set; then :
2859 +if ${gl_cv_func_gettimeofday_posix_signature+:} false; then :
2860 $as_echo_n "(cached) " >&6
2861 else
2862 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2863 @@ -22395,7 +22406,7 @@ if test $HAVE_GETTIMEOFDAY = 0 || test $REPLACE_GETTIMEOFDAY = 1; then
2864 for ac_header in sys/timeb.h
2865 do :
2866 ac_fn_c_check_header_mongrel "$LINENO" "sys/timeb.h" "ac_cv_header_sys_timeb_h" "$ac_includes_default"
2867 -if test "x$ac_cv_header_sys_timeb_h" = x""yes; then :
2868 +if test "x$ac_cv_header_sys_timeb_h" = xyes; then :
2869 cat >>confdefs.h <<_ACEOF
2870 #define HAVE_SYS_TIMEB_H 1
2871 _ACEOF
2872 @@ -22407,7 +22418,7 @@ done
2873 for ac_func in _ftime
2874 do :
2875 ac_fn_c_check_func "$LINENO" "_ftime" "ac_cv_func__ftime"
2876 -if test "x$ac_cv_func__ftime" = x""yes; then :
2877 +if test "x$ac_cv_func__ftime" = xyes; then :
2878 cat >>confdefs.h <<_ACEOF
2879 #define HAVE__FTIME 1
2880 _ACEOF
2881 @@ -22445,7 +22456,7 @@ ac_config_links="$ac_config_links $GNUmakefile:$GNUmakefile"
2882 gl_saved_libs="$LIBS"
2883 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing gethostbyname" >&5
2884 $as_echo_n "checking for library containing gethostbyname... " >&6; }
2885 -if test "${ac_cv_search_gethostbyname+set}" = set; then :
2886 +if ${ac_cv_search_gethostbyname+:} false; then :
2887 $as_echo_n "(cached) " >&6
2888 else
2889 ac_func_search_save_LIBS=$LIBS
2890 @@ -22479,11 +22490,11 @@ for ac_lib in '' nsl network net; do
2891 fi
2892 rm -f core conftest.err conftest.$ac_objext \
2893 conftest$ac_exeext
2894 - if test "${ac_cv_search_gethostbyname+set}" = set; then :
2895 + if ${ac_cv_search_gethostbyname+:} false; then :
2896 break
2897 fi
2898 done
2899 -if test "${ac_cv_search_gethostbyname+set}" = set; then :
2900 +if ${ac_cv_search_gethostbyname+:} false; then :
2901
2902 else
2903 ac_cv_search_gethostbyname=no
2904 @@ -22506,7 +22517,7 @@ fi
2905 for ac_func in gethostbyname
2906 do :
2907 ac_fn_c_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname"
2908 -if test "x$ac_cv_func_gethostbyname" = x""yes; then :
2909 +if test "x$ac_cv_func_gethostbyname" = xyes; then :
2910 cat >>confdefs.h <<_ACEOF
2911 #define HAVE_GETHOSTBYNAME 1
2912 _ACEOF
2913 @@ -22515,7 +22526,7 @@ else
2914
2915 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in winsock2.h and -lws2_32" >&5
2916 $as_echo_n "checking for gethostbyname in winsock2.h and -lws2_32... " >&6; }
2917 -if test "${gl_cv_w32_gethostbyname+set}" = set; then :
2918 +if ${gl_cv_w32_gethostbyname+:} false; then :
2919 $as_echo_n "(cached) " >&6
2920 else
2921 gl_cv_w32_gethostbyname=no
2922 @@ -22565,7 +22576,7 @@ done
2923 gl_save_LIBS=$LIBS
2924 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing inet_ntop" >&5
2925 $as_echo_n "checking for library containing inet_ntop... " >&6; }
2926 -if test "${ac_cv_search_inet_ntop+set}" = set; then :
2927 +if ${ac_cv_search_inet_ntop+:} false; then :
2928 $as_echo_n "(cached) " >&6
2929 else
2930 ac_func_search_save_LIBS=$LIBS
2931 @@ -22599,11 +22610,11 @@ for ac_lib in '' nsl; do
2932 fi
2933 rm -f core conftest.err conftest.$ac_objext \
2934 conftest$ac_exeext
2935 - if test "${ac_cv_search_inet_ntop+set}" = set; then :
2936 + if ${ac_cv_search_inet_ntop+:} false; then :
2937 break
2938 fi
2939 done
2940 -if test "${ac_cv_search_inet_ntop+set}" = set; then :
2941 +if ${ac_cv_search_inet_ntop+:} false; then :
2942
2943 else
2944 ac_cv_search_inet_ntop=no
2945 @@ -22621,7 +22632,7 @@ else
2946 for ac_func in inet_ntop
2947 do :
2948 ac_fn_c_check_func "$LINENO" "inet_ntop" "ac_cv_func_inet_ntop"
2949 -if test "x$ac_cv_func_inet_ntop" = x""yes; then :
2950 +if test "x$ac_cv_func_inet_ntop" = xyes; then :
2951 cat >>confdefs.h <<_ACEOF
2952 #define HAVE_INET_NTOP 1
2953 _ACEOF
2954 @@ -22657,7 +22668,7 @@ fi
2955 #endif
2956
2957 "
2958 -if test "x$ac_cv_have_decl_inet_ntop" = x""yes; then :
2959 +if test "x$ac_cv_have_decl_inet_ntop" = xyes; then :
2960 ac_have_decl=1
2961 else
2962 ac_have_decl=0
2963 @@ -22704,7 +22715,7 @@ fi
2964 gl_save_LIBS=$LIBS
2965 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing inet_pton" >&5
2966 $as_echo_n "checking for library containing inet_pton... " >&6; }
2967 -if test "${ac_cv_search_inet_pton+set}" = set; then :
2968 +if ${ac_cv_search_inet_pton+:} false; then :
2969 $as_echo_n "(cached) " >&6
2970 else
2971 ac_func_search_save_LIBS=$LIBS
2972 @@ -22738,11 +22749,11 @@ for ac_lib in '' nsl; do
2973 fi
2974 rm -f core conftest.err conftest.$ac_objext \
2975 conftest$ac_exeext
2976 - if test "${ac_cv_search_inet_pton+set}" = set; then :
2977 + if ${ac_cv_search_inet_pton+:} false; then :
2978 break
2979 fi
2980 done
2981 -if test "${ac_cv_search_inet_pton+set}" = set; then :
2982 +if ${ac_cv_search_inet_pton+:} false; then :
2983
2984 else
2985 ac_cv_search_inet_pton=no
2986 @@ -22760,7 +22771,7 @@ else
2987 for ac_func in inet_pton
2988 do :
2989 ac_fn_c_check_func "$LINENO" "inet_pton" "ac_cv_func_inet_pton"
2990 -if test "x$ac_cv_func_inet_pton" = x""yes; then :
2991 +if test "x$ac_cv_func_inet_pton" = xyes; then :
2992 cat >>confdefs.h <<_ACEOF
2993 #define HAVE_INET_PTON 1
2994 _ACEOF
2995 @@ -22796,7 +22807,7 @@ fi
2996 #endif
2997
2998 "
2999 -if test "x$ac_cv_have_decl_inet_pton" = x""yes; then :
3000 +if test "x$ac_cv_have_decl_inet_pton" = xyes; then :
3001 ac_have_decl=1
3002 else
3003 ac_have_decl=0
3004 @@ -22846,7 +22857,7 @@ fi
3005 for ac_func in ioctl
3006 do :
3007 ac_fn_c_check_func "$LINENO" "ioctl" "ac_cv_func_ioctl"
3008 -if test "x$ac_cv_func_ioctl" = x""yes; then :
3009 +if test "x$ac_cv_func_ioctl" = xyes; then :
3010 cat >>confdefs.h <<_ACEOF
3011 #define HAVE_IOCTL 1
3012 _ACEOF
3013 @@ -22856,7 +22867,7 @@ done
3014
3015 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ioctl with POSIX signature" >&5
3016 $as_echo_n "checking for ioctl with POSIX signature... " >&6; }
3017 -if test "${gl_cv_func_ioctl_posix_signature+set}" = set; then :
3018 +if ${gl_cv_func_ioctl_posix_signature+:} false; then :
3019 $as_echo_n "(cached) " >&6
3020 else
3021 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3022 @@ -22974,7 +22985,7 @@ LOCALCHARSET_TESTS_ENVIRONMENT="CHARSETALIASDIR=\"\$(top_builddir)/$gl_source_ba
3023
3024 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether lseek detects pipes" >&5
3025 $as_echo_n "checking whether lseek detects pipes... " >&6; }
3026 -if test "${gl_cv_func_lseek_pipe+set}" = set; then :
3027 +if ${gl_cv_func_lseek_pipe+:} false; then :
3028 $as_echo_n "(cached) " >&6
3029 else
3030 if test $cross_compiling = no; then
3031 @@ -23182,7 +23193,7 @@ $as_echo "#define GNULIB_TEST_MALLOC_POSIX 1" >>confdefs.h
3032
3033 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether mbrtowc handles incomplete characters" >&5
3034 $as_echo_n "checking whether mbrtowc handles incomplete characters... " >&6; }
3035 -if test "${gl_cv_func_mbrtowc_incomplete_state+set}" = set; then :
3036 +if ${gl_cv_func_mbrtowc_incomplete_state+:} false; then :
3037 $as_echo_n "(cached) " >&6
3038 else
3039
3040 @@ -23245,7 +23256,7 @@ $as_echo "$gl_cv_func_mbrtowc_incomplete_state" >&6; }
3041
3042 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether mbrtowc works as well as mbtowc" >&5
3043 $as_echo_n "checking whether mbrtowc works as well as mbtowc... " >&6; }
3044 -if test "${gl_cv_func_mbrtowc_sanitycheck+set}" = set; then :
3045 +if ${gl_cv_func_mbrtowc_sanitycheck+:} false; then :
3046 $as_echo_n "(cached) " >&6
3047 else
3048
3049 @@ -23339,7 +23350,7 @@ $as_echo "$gl_cv_func_mbrtowc_sanitycheck" >&6; }
3050
3051 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether mbrtowc handles a NULL pwc argument" >&5
3052 $as_echo_n "checking whether mbrtowc handles a NULL pwc argument... " >&6; }
3053 -if test "${gl_cv_func_mbrtowc_null_arg1+set}" = set; then :
3054 +if ${gl_cv_func_mbrtowc_null_arg1+:} false; then :
3055 $as_echo_n "(cached) " >&6
3056 else
3057
3058 @@ -23416,7 +23427,7 @@ $as_echo "$gl_cv_func_mbrtowc_null_arg1" >&6; }
3059
3060 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether mbrtowc handles a NULL string argument" >&5
3061 $as_echo_n "checking whether mbrtowc handles a NULL string argument... " >&6; }
3062 -if test "${gl_cv_func_mbrtowc_null_arg2+set}" = set; then :
3063 +if ${gl_cv_func_mbrtowc_null_arg2+:} false; then :
3064 $as_echo_n "(cached) " >&6
3065 else
3066
3067 @@ -23483,7 +23494,7 @@ $as_echo "$gl_cv_func_mbrtowc_null_arg2" >&6; }
3068
3069 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether mbrtowc has a correct return value" >&5
3070 $as_echo_n "checking whether mbrtowc has a correct return value... " >&6; }
3071 -if test "${gl_cv_func_mbrtowc_retval+set}" = set; then :
3072 +if ${gl_cv_func_mbrtowc_retval+:} false; then :
3073 $as_echo_n "(cached) " >&6
3074 else
3075
3076 @@ -23619,7 +23630,7 @@ $as_echo "$gl_cv_func_mbrtowc_retval" >&6; }
3077
3078 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether mbrtowc returns 0 when parsing a NUL character" >&5
3079 $as_echo_n "checking whether mbrtowc returns 0 when parsing a NUL character... " >&6; }
3080 -if test "${gl_cv_func_mbrtowc_nul_retval+set}" = set; then :
3081 +if ${gl_cv_func_mbrtowc_nul_retval+:} false; then :
3082 $as_echo_n "(cached) " >&6
3083 else
3084
3085 @@ -23770,7 +23781,7 @@ $as_echo "#define GNULIB_TEST_MBRTOWC 1" >>confdefs.h
3086
3087 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether mbrtowc handles incomplete characters" >&5
3088 $as_echo_n "checking whether mbrtowc handles incomplete characters... " >&6; }
3089 -if test "${gl_cv_func_mbrtowc_incomplete_state+set}" = set; then :
3090 +if ${gl_cv_func_mbrtowc_incomplete_state+:} false; then :
3091 $as_echo_n "(cached) " >&6
3092 else
3093
3094 @@ -23833,7 +23844,7 @@ $as_echo "$gl_cv_func_mbrtowc_incomplete_state" >&6; }
3095
3096 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether mbrtowc works as well as mbtowc" >&5
3097 $as_echo_n "checking whether mbrtowc works as well as mbtowc... " >&6; }
3098 -if test "${gl_cv_func_mbrtowc_sanitycheck+set}" = set; then :
3099 +if ${gl_cv_func_mbrtowc_sanitycheck+:} false; then :
3100 $as_echo_n "(cached) " >&6
3101 else
3102
3103 @@ -23986,7 +23997,7 @@ $as_echo "#define GNULIB_TEST_MBSINIT 1" >>confdefs.h
3104
3105 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether mbrtowc handles incomplete characters" >&5
3106 $as_echo_n "checking whether mbrtowc handles incomplete characters... " >&6; }
3107 -if test "${gl_cv_func_mbrtowc_incomplete_state+set}" = set; then :
3108 +if ${gl_cv_func_mbrtowc_incomplete_state+:} false; then :
3109 $as_echo_n "(cached) " >&6
3110 else
3111
3112 @@ -24049,7 +24060,7 @@ $as_echo "$gl_cv_func_mbrtowc_incomplete_state" >&6; }
3113
3114 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether mbrtowc works as well as mbtowc" >&5
3115 $as_echo_n "checking whether mbrtowc works as well as mbtowc... " >&6; }
3116 -if test "${gl_cv_func_mbrtowc_sanitycheck+set}" = set; then :
3117 +if ${gl_cv_func_mbrtowc_sanitycheck+:} false; then :
3118 $as_echo_n "(cached) " >&6
3119 else
3120
3121 @@ -24146,7 +24157,7 @@ $as_echo "$gl_cv_func_mbrtowc_sanitycheck" >&6; }
3122
3123 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether mbsrtowcs works" >&5
3124 $as_echo_n "checking whether mbsrtowcs works... " >&6; }
3125 -if test "${gl_cv_func_mbsrtowcs_works+set}" = set; then :
3126 +if ${gl_cv_func_mbsrtowcs_works+:} false; then :
3127 $as_echo_n "(cached) " >&6
3128 else
3129
3130 @@ -24314,7 +24325,7 @@ if test $HAVE_MEMCHR = 0 || test $REPLACE_MEMCHR = 1; then
3131 for ac_header in bp-sym.h
3132 do :
3133 ac_fn_c_check_header_mongrel "$LINENO" "bp-sym.h" "ac_cv_header_bp_sym_h" "$ac_includes_default"
3134 -if test "x$ac_cv_header_bp_sym_h" = x""yes; then :
3135 +if test "x$ac_cv_header_bp_sym_h" = xyes; then :
3136 cat >>confdefs.h <<_ACEOF
3137 #define HAVE_BP_SYM_H 1
3138 _ACEOF
3139 @@ -24353,7 +24364,7 @@ $as_echo "#define GNULIB_TEST_MEMCHR 1" >>confdefs.h
3140 if test $ac_cv_func_mkstemp = yes; then
3141 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working mkstemp" >&5
3142 $as_echo_n "checking for working mkstemp... " >&6; }
3143 -if test "${gl_cv_func_working_mkstemp+set}" = set; then :
3144 +if ${gl_cv_func_working_mkstemp+:} false; then :
3145 $as_echo_n "(cached) " >&6
3146 else
3147
3148 @@ -24524,7 +24535,7 @@ $as_echo "#define GNULIB_TEST_MKSTEMPS 1" >>confdefs.h
3149 fi
3150 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working mktime" >&5
3151 $as_echo_n "checking for working mktime... " >&6; }
3152 -if test "${gl_cv_func_working_mktime+set}" = set; then :
3153 +if ${gl_cv_func_working_mktime+:} false; then :
3154 $as_echo_n "(cached) " >&6
3155 else
3156 if test "$cross_compiling" = yes; then :
3157 @@ -24778,7 +24789,7 @@ $as_echo "#define GNULIB_TEST_MKTIME 1" >>confdefs.h
3158
3159 if test $REPLACE_MKTIME = 0; then
3160 ac_fn_c_check_func "$LINENO" "__mktime_internal" "ac_cv_func___mktime_internal"
3161 -if test "x$ac_cv_func___mktime_internal" = x""yes; then :
3162 +if test "x$ac_cv_func___mktime_internal" = xyes; then :
3163
3164 $as_echo "#define mktime_internal __mktime_internal" >>confdefs.h
3165
3166 @@ -24828,7 +24839,7 @@ fi
3167 else
3168 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <netdb.h>" >&5
3169 $as_echo_n "checking absolute name of <netdb.h>... " >&6; }
3170 -if test "${gl_cv_next_netdb_h+set}" = set; then :
3171 +if ${gl_cv_next_netdb_h+:} false; then :
3172 $as_echo_n "(cached) " >&6
3173 else
3174
3175 @@ -24886,7 +24897,7 @@ $as_echo "$gl_cv_next_netdb_h" >&6; }
3176
3177 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether <netinet/in.h> is self-contained" >&5
3178 $as_echo_n "checking whether <netinet/in.h> is self-contained... " >&6; }
3179 -if test "${gl_cv_header_netinet_in_h_selfcontained+set}" = set; then :
3180 +if ${gl_cv_header_netinet_in_h_selfcontained+:} false; then :
3181 $as_echo_n "(cached) " >&6
3182 else
3183
3184 @@ -24918,7 +24929,7 @@ $as_echo "$gl_cv_header_netinet_in_h_selfcontained" >&6; }
3185 for ac_header in netinet/in.h
3186 do :
3187 ac_fn_c_check_header_mongrel "$LINENO" "netinet/in.h" "ac_cv_header_netinet_in_h" "$ac_includes_default"
3188 -if test "x$ac_cv_header_netinet_in_h" = x""yes; then :
3189 +if test "x$ac_cv_header_netinet_in_h" = xyes; then :
3190 cat >>confdefs.h <<_ACEOF
3191 #define HAVE_NETINET_IN_H 1
3192 _ACEOF
3193 @@ -24947,7 +24958,7 @@ done
3194 else
3195 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <netinet/in.h>" >&5
3196 $as_echo_n "checking absolute name of <netinet/in.h>... " >&6; }
3197 -if test "${gl_cv_next_netinet_in_h+set}" = set; then :
3198 +if ${gl_cv_next_netinet_in_h+:} false; then :
3199 $as_echo_n "(cached) " >&6
3200 else
3201
3202 @@ -25057,7 +25068,7 @@ GNULIB_UNISTD_H_NONBLOCKING=1
3203
3204 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether open recognizes a trailing slash" >&5
3205 $as_echo_n "checking whether open recognizes a trailing slash... " >&6; }
3206 -if test "${gl_cv_func_open_slash+set}" = set; then :
3207 +if ${gl_cv_func_open_slash+:} false; then :
3208 $as_echo_n "(cached) " >&6
3209 else
3210 # Assume that if we have lstat, we can also check symlinks.
3211 @@ -25184,7 +25195,7 @@ $as_echo "#define _LINUX_SOURCE_COMPAT 1" >>confdefs.h
3212 #include <sys/socket.h>
3213
3214 "
3215 -if test "x$ac_cv_member_struct_msghdr_msg_accrights" = x""yes; then :
3216 +if test "x$ac_cv_member_struct_msghdr_msg_accrights" = xyes; then :
3217
3218 cat >>confdefs.h <<_ACEOF
3219 #define HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS 1
3220 @@ -25222,7 +25233,7 @@ fi
3221 unset|*yes)
3222 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether perror matches strerror" >&5
3223 $as_echo_n "checking whether perror matches strerror... " >&6; }
3224 -if test "${gl_cv_func_perror_works+set}" = set; then :
3225 +if ${gl_cv_func_perror_works+:} false; then :
3226 $as_echo_n "(cached) " >&6
3227 else
3228 if test "$cross_compiling" = yes; then :
3229 @@ -25323,7 +25334,7 @@ do :
3230 #endif
3231
3232 "
3233 -if test "x$ac_cv_header_sys_sysctl_h" = x""yes; then :
3234 +if test "x$ac_cv_header_sys_sysctl_h" = xyes; then :
3235 cat >>confdefs.h <<_ACEOF
3236 #define HAVE_SYS_SYSCTL_H 1
3237 _ACEOF
3238 @@ -25426,7 +25437,7 @@ $as_echo "#define GNULIB_TEST_PIPE2 1" >>confdefs.h
3239 gl_cv_func_poll=no
3240 else
3241 ac_fn_c_check_func "$LINENO" "poll" "ac_cv_func_poll"
3242 -if test "x$ac_cv_func_poll" = x""yes; then :
3243 +if test "x$ac_cv_func_poll" = xyes; then :
3244 # Check whether poll() works on special files (like /dev/null) and
3245 # and ttys (like /dev/tty). On MacOS X 10.4.0 and AIX 5.3, it doesn't.
3246 if test "$cross_compiling" = yes; then :
3247 @@ -25496,7 +25507,7 @@ fi
3248 fi
3249 if test $gl_cv_func_poll != yes; then
3250 ac_fn_c_check_func "$LINENO" "poll" "ac_cv_func_poll"
3251 -if test "x$ac_cv_func_poll" = x""yes; then :
3252 +if test "x$ac_cv_func_poll" = xyes; then :
3253 ac_cv_func_poll=yes
3254 else
3255 ac_cv_func_poll=no
3256 @@ -25592,7 +25603,7 @@ $as_echo "#define GNULIB_TEST_POLL 1" >>confdefs.h
3257 else
3258 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <poll.h>" >&5
3259 $as_echo_n "checking absolute name of <poll.h>... " >&6; }
3260 -if test "${gl_cv_next_poll_h+set}" = set; then :
3261 +if ${gl_cv_next_poll_h+:} false; then :
3262 $as_echo_n "(cached) " >&6
3263 else
3264
3265 @@ -25644,7 +25655,7 @@ $as_echo "$gl_cv_next_poll_h" >&6; }
3266
3267 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a shell that conforms to POSIX" >&5
3268 $as_echo_n "checking for a shell that conforms to POSIX... " >&6; }
3269 -if test "${gl_cv_posix_shell+set}" = set; then :
3270 +if ${gl_cv_posix_shell+:} false; then :
3271 $as_echo_n "(cached) " >&6
3272 else
3273 gl_test_posix_shell_script='
3274 @@ -25718,7 +25729,7 @@ $as_echo "$gl_cv_posix_shell" >&6; }
3275 else
3276 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <pthread.h>" >&5
3277 $as_echo_n "checking absolute name of <pthread.h>... " >&6; }
3278 -if test "${gl_cv_next_pthread_h+set}" = set; then :
3279 +if ${gl_cv_next_pthread_h+:} false; then :
3280 $as_echo_n "(cached) " >&6
3281 else
3282
3283 @@ -25775,7 +25786,7 @@ $as_echo "$gl_cv_next_pthread_h" >&6; }
3284 #include <pthread.h>
3285 #endif
3286 "
3287 -if test "x$ac_cv_type_pthread_t" = x""yes; then :
3288 +if test "x$ac_cv_type_pthread_t" = xyes; then :
3289
3290 cat >>confdefs.h <<_ACEOF
3291 #define HAVE_PTHREAD_T 1
3292 @@ -25788,7 +25799,7 @@ ac_fn_c_check_type "$LINENO" "pthread_spinlock_t" "ac_cv_type_pthread_spinlock_t
3293 #include <pthread.h>
3294 #endif
3295 "
3296 -if test "x$ac_cv_type_pthread_spinlock_t" = x""yes; then :
3297 +if test "x$ac_cv_type_pthread_spinlock_t" = xyes; then :
3298
3299 cat >>confdefs.h <<_ACEOF
3300 #define HAVE_PTHREAD_SPINLOCK_T 1
3301 @@ -25826,7 +25837,7 @@ fi
3302 gl_saved_libs=$LIBS
3303 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing pthread_create" >&5
3304 $as_echo_n "checking for library containing pthread_create... " >&6; }
3305 -if test "${ac_cv_search_pthread_create+set}" = set; then :
3306 +if ${ac_cv_search_pthread_create+:} false; then :
3307 $as_echo_n "(cached) " >&6
3308 else
3309 ac_func_search_save_LIBS=$LIBS
3310 @@ -25860,11 +25871,11 @@ for ac_lib in '' pthread; do
3311 fi
3312 rm -f core conftest.err conftest.$ac_objext \
3313 conftest$ac_exeext
3314 - if test "${ac_cv_search_pthread_create+set}" = set; then :
3315 + if ${ac_cv_search_pthread_create+:} false; then :
3316 break
3317 fi
3318 done
3319 -if test "${ac_cv_search_pthread_create+set}" = set; then :
3320 +if ${ac_cv_search_pthread_create+:} false; then :
3321
3322 else
3323 ac_cv_search_pthread_create=no
3324 @@ -25916,7 +25927,7 @@ fi
3325 if test -z "$LIB_PTHREAD_SIGMASK"; then
3326 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthread_sigmask works without -lpthread" >&5
3327 $as_echo_n "checking whether pthread_sigmask works without -lpthread... " >&6; }
3328 -if test "${gl_cv_func_pthread_sigmask_in_libc_works+set}" = set; then :
3329 +if ${gl_cv_func_pthread_sigmask_in_libc_works+:} false; then :
3330 $as_echo_n "(cached) " >&6
3331 else
3332
3333 @@ -25968,7 +25979,7 @@ $as_echo "#define PTHREAD_SIGMASK_INEFFECTIVE 1" >>confdefs.h
3334
3335 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthread_sigmask returns error numbers" >&5
3336 $as_echo_n "checking whether pthread_sigmask returns error numbers... " >&6; }
3337 -if test "${gl_cv_func_pthread_sigmask_return_works+set}" = set; then :
3338 +if ${gl_cv_func_pthread_sigmask_return_works+:} false; then :
3339 $as_echo_n "(cached) " >&6
3340 else
3341
3342 @@ -26023,7 +26034,7 @@ $as_echo "#define PTHREAD_SIGMASK_FAILS_WITH_ERRNO 1" >>confdefs.h
3343
3344 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthread_sigmask unblocks signals correctly" >&5
3345 $as_echo_n "checking whether pthread_sigmask unblocks signals correctly... " >&6; }
3346 -if test "${gl_cv_func_pthread_sigmask_unblock_works+set}" = set; then :
3347 +if ${gl_cv_func_pthread_sigmask_unblock_works+:} false; then :
3348 $as_echo_n "(cached) " >&6
3349 else
3350
3351 @@ -26140,7 +26151,7 @@ $as_echo "#define GNULIB_TEST_PTHREAD_SIGMASK 1" >>confdefs.h
3352 do :
3353 ac_fn_c_check_header_compile "$LINENO" "random.h" "ac_cv_header_random_h" "$ac_includes_default
3354 "
3355 -if test "x$ac_cv_header_random_h" = x""yes; then :
3356 +if test "x$ac_cv_header_random_h" = xyes; then :
3357 cat >>confdefs.h <<_ACEOF
3358 #define HAVE_RANDOM_H 1
3359 _ACEOF
3360 @@ -26159,7 +26170,7 @@ done
3361 #endif
3362
3363 "
3364 -if test "x$ac_cv_type_struct_random_data" = x""yes; then :
3365 +if test "x$ac_cv_type_struct_random_data" = xyes; then :
3366
3367 cat >>confdefs.h <<_ACEOF
3368 #define HAVE_STRUCT_RANDOM_DATA 1
3369 @@ -26174,7 +26185,7 @@ fi
3370 for ac_func in random_r
3371 do :
3372 ac_fn_c_check_func "$LINENO" "random_r" "ac_cv_func_random_r"
3373 -if test "x$ac_cv_func_random_r" = x""yes; then :
3374 +if test "x$ac_cv_func_random_r" = xyes; then :
3375 cat >>confdefs.h <<_ACEOF
3376 #define HAVE_RANDOM_R 1
3377 _ACEOF
3378 @@ -26223,7 +26234,7 @@ $as_echo "#define GNULIB_TEST_RANDOM_R 1" >>confdefs.h
3379 for ac_func in rawmemchr
3380 do :
3381 ac_fn_c_check_func "$LINENO" "rawmemchr" "ac_cv_func_rawmemchr"
3382 -if test "x$ac_cv_func_rawmemchr" = x""yes; then :
3383 +if test "x$ac_cv_func_rawmemchr" = xyes; then :
3384 cat >>confdefs.h <<_ACEOF
3385 #define HAVE_RAWMEMCHR 1
3386 _ACEOF
3387 @@ -26277,7 +26288,7 @@ $as_echo "#define GNULIB_TEST_RAWMEMCHR 1" >>confdefs.h
3388 else
3389 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether readlink signature is correct" >&5
3390 $as_echo_n "checking whether readlink signature is correct... " >&6; }
3391 -if test "${gl_cv_decl_readlink_works+set}" = set; then :
3392 +if ${gl_cv_decl_readlink_works+:} false; then :
3393 $as_echo_n "(cached) " >&6
3394 else
3395 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3396 @@ -26304,7 +26315,7 @@ fi
3397 $as_echo "$gl_cv_decl_readlink_works" >&6; }
3398 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether readlink handles trailing slash correctly" >&5
3399 $as_echo_n "checking whether readlink handles trailing slash correctly... " >&6; }
3400 -if test "${gl_cv_func_readlink_works+set}" = set; then :
3401 +if ${gl_cv_func_readlink_works+:} false; then :
3402 $as_echo_n "(cached) " >&6
3403 else
3404 # We have readlink, so assume ln -s works.
3405 @@ -26486,7 +26497,7 @@ else
3406 else
3407 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <sched.h>" >&5
3408 $as_echo_n "checking absolute name of <sched.h>... " >&6; }
3409 -if test "${gl_cv_next_sched_h+set}" = set; then :
3410 +if ${gl_cv_next_sched_h+:} false; then :
3411 $as_echo_n "(cached) " >&6
3412 else
3413
3414 @@ -26542,7 +26553,7 @@ $as_echo "$gl_cv_next_sched_h" >&6; }
3415
3416 ac_fn_c_check_type "$LINENO" "struct sched_param" "ac_cv_type_struct_sched_param" "#include <sched.h>
3417 "
3418 -if test "x$ac_cv_type_struct_sched_param" = x""yes; then :
3419 +if test "x$ac_cv_type_struct_sched_param" = xyes; then :
3420 HAVE_STRUCT_SCHED_PARAM=1
3421 else
3422 HAVE_STRUCT_SCHED_PARAM=0
3423 @@ -26577,7 +26588,7 @@ fi
3424
3425 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether select supports a 0 argument" >&5
3426 $as_echo_n "checking whether select supports a 0 argument... " >&6; }
3427 -if test "${gl_cv_func_select_supports0+set}" = set; then :
3428 +if ${gl_cv_func_select_supports0+:} false; then :
3429 $as_echo_n "(cached) " >&6
3430 else
3431
3432 @@ -26686,7 +26697,7 @@ $as_echo "#define GNULIB_TEST_SEND 1" >>confdefs.h
3433 gl_saved_libs="$LIBS"
3434 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing getservbyname" >&5
3435 $as_echo_n "checking for library containing getservbyname... " >&6; }
3436 -if test "${ac_cv_search_getservbyname+set}" = set; then :
3437 +if ${ac_cv_search_getservbyname+:} false; then :
3438 $as_echo_n "(cached) " >&6
3439 else
3440 ac_func_search_save_LIBS=$LIBS
3441 @@ -26720,11 +26731,11 @@ for ac_lib in '' socket network net; do
3442 fi
3443 rm -f core conftest.err conftest.$ac_objext \
3444 conftest$ac_exeext
3445 - if test "${ac_cv_search_getservbyname+set}" = set; then :
3446 + if ${ac_cv_search_getservbyname+:} false; then :
3447 break
3448 fi
3449 done
3450 -if test "${ac_cv_search_getservbyname+set}" = set; then :
3451 +if ${ac_cv_search_getservbyname+:} false; then :
3452
3453 else
3454 ac_cv_search_getservbyname=no
3455 @@ -26747,7 +26758,7 @@ fi
3456 for ac_func in getservbyname
3457 do :
3458 ac_fn_c_check_func "$LINENO" "getservbyname" "ac_cv_func_getservbyname"
3459 -if test "x$ac_cv_func_getservbyname" = x""yes; then :
3460 +if test "x$ac_cv_func_getservbyname" = xyes; then :
3461 cat >>confdefs.h <<_ACEOF
3462 #define HAVE_GETSERVBYNAME 1
3463 _ACEOF
3464 @@ -26756,7 +26767,7 @@ else
3465
3466 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for getservbyname in winsock2.h and -lws2_32" >&5
3467 $as_echo_n "checking for getservbyname in winsock2.h and -lws2_32... " >&6; }
3468 -if test "${gl_cv_w32_getservbyname+set}" = set; then :
3469 +if ${gl_cv_w32_getservbyname+:} false; then :
3470 $as_echo_n "(cached) " >&6
3471 else
3472 gl_cv_w32_getservbyname=no
3473 @@ -26838,7 +26849,7 @@ $as_echo "#define GNULIB_TEST_SETSOCKOPT 1" >>confdefs.h
3474 if test $ac_cv_func_sigaction = yes; then
3475 ac_fn_c_check_member "$LINENO" "struct sigaction" "sa_sigaction" "ac_cv_member_struct_sigaction_sa_sigaction" "#include <signal.h>
3476 "
3477 -if test "x$ac_cv_member_struct_sigaction_sa_sigaction" = x""yes; then :
3478 +if test "x$ac_cv_member_struct_sigaction_sa_sigaction" = xyes; then :
3479
3480 cat >>confdefs.h <<_ACEOF
3481 #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
3482 @@ -26884,7 +26895,7 @@ if test $HAVE_SIGACTION = 0; then
3483 #include <signal.h>
3484
3485 "
3486 -if test "x$ac_cv_type_siginfo_t" = x""yes; then :
3487 +if test "x$ac_cv_type_siginfo_t" = xyes; then :
3488
3489 cat >>confdefs.h <<_ACEOF
3490 #define HAVE_SIGINFO_T 1
3491 @@ -26929,7 +26940,7 @@ $as_echo "#define GNULIB_TEST_SIGACTION 1" >>confdefs.h
3492 else
3493 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <signal.h>" >&5
3494 $as_echo_n "checking absolute name of <signal.h>... " >&6; }
3495 -if test "${gl_cv_next_signal_h+set}" = set; then :
3496 +if ${gl_cv_next_signal_h+:} false; then :
3497 $as_echo_n "(cached) " >&6
3498 else
3499
3500 @@ -26976,7 +26987,7 @@ $as_echo "$gl_cv_next_signal_h" >&6; }
3501 #include <signal.h>
3502
3503 "
3504 -if test "x$ac_cv_type_volatile_sig_atomic_t" = x""yes; then :
3505 +if test "x$ac_cv_type_volatile_sig_atomic_t" = xyes; then :
3506
3507 else
3508 HAVE_TYPE_VOLATILE_SIG_ATOMIC_T=0
3509 @@ -26990,7 +27001,7 @@ fi
3510 #include <signal.h>
3511
3512 "
3513 -if test "x$ac_cv_type_sighandler_t" = x""yes; then :
3514 +if test "x$ac_cv_type_sighandler_t" = xyes; then :
3515
3516 else
3517 HAVE_SIGHANDLER_T=0
3518 @@ -27021,7 +27032,7 @@ GNULIB_UNISTD_H_SIGPIPE=1
3519
3520 if test $gl_cv_type_sigset_t = yes; then
3521 ac_fn_c_check_func "$LINENO" "sigprocmask" "ac_cv_func_sigprocmask"
3522 -if test "x$ac_cv_func_sigprocmask" = x""yes; then :
3523 +if test "x$ac_cv_func_sigprocmask" = xyes; then :
3524 gl_cv_func_sigprocmask=1
3525 fi
3526
3527 @@ -27062,7 +27073,7 @@ $as_echo "#define GNULIB_TEST_SIGPROCMASK 1" >>confdefs.h
3528 for ac_header in stdint.h
3529 do :
3530 ac_fn_c_check_header_mongrel "$LINENO" "stdint.h" "ac_cv_header_stdint_h" "$ac_includes_default"
3531 -if test "x$ac_cv_header_stdint_h" = x""yes; then :
3532 +if test "x$ac_cv_header_stdint_h" = xyes; then :
3533 cat >>confdefs.h <<_ACEOF
3534 #define HAVE_STDINT_H 1
3535 _ACEOF
3536 @@ -27073,7 +27084,7 @@ done
3537
3538 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SIZE_MAX" >&5
3539 $as_echo_n "checking for SIZE_MAX... " >&6; }
3540 - if test "${gl_cv_size_max+set}" = set; then :
3541 + if ${gl_cv_size_max+:} false; then :
3542 $as_echo_n "(cached) " >&6
3543 else
3544
3545 @@ -27157,7 +27168,7 @@ _ACEOF
3546
3547 ac_fn_c_check_decl "$LINENO" "sleep" "ac_cv_have_decl_sleep" "#include <unistd.h>
3548 "
3549 -if test "x$ac_cv_have_decl_sleep" = x""yes; then :
3550 +if test "x$ac_cv_have_decl_sleep" = xyes; then :
3551 ac_have_decl=1
3552 else
3553 ac_have_decl=0
3554 @@ -27179,7 +27190,7 @@ _ACEOF
3555 else
3556 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working sleep" >&5
3557 $as_echo_n "checking for working sleep... " >&6; }
3558 -if test "${gl_cv_func_sleep_works+set}" = set; then :
3559 +if ${gl_cv_func_sleep_works+:} false; then :
3560 $as_echo_n "(cached) " >&6
3561 else
3562 if test "$cross_compiling" = yes; then :
3563 @@ -27269,7 +27280,7 @@ $as_echo "#define GNULIB_TEST_SLEEP 1" >>confdefs.h
3564 for ac_func in snprintf
3565 do :
3566 ac_fn_c_check_func "$LINENO" "snprintf" "ac_cv_func_snprintf"
3567 -if test "x$ac_cv_func_snprintf" = x""yes; then :
3568 +if test "x$ac_cv_func_snprintf" = xyes; then :
3569 cat >>confdefs.h <<_ACEOF
3570 #define HAVE_SNPRINTF 1
3571 _ACEOF
3572 @@ -27282,7 +27293,7 @@ done
3573
3574 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether snprintf respects a size of 1" >&5
3575 $as_echo_n "checking whether snprintf respects a size of 1... " >&6; }
3576 -if test "${gl_cv_func_snprintf_size1+set}" = set; then :
3577 +if ${gl_cv_func_snprintf_size1+:} false; then :
3578 $as_echo_n "(cached) " >&6
3579 else
3580
3581 @@ -27323,7 +27334,7 @@ $as_echo "$gl_cv_func_snprintf_size1" >&6; }
3582
3583 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether printf supports POSIX/XSI format strings with positions" >&5
3584 $as_echo_n "checking whether printf supports POSIX/XSI format strings with positions... " >&6; }
3585 -if test "${gl_cv_func_printf_positions+set}" = set; then :
3586 +if ${gl_cv_func_printf_positions+:} false; then :
3587 $as_echo_n "(cached) " >&6
3588 else
3589
3590 @@ -27481,7 +27492,7 @@ $as_echo "#define GNULIB_TEST_SOCKET 1" >>confdefs.h
3591 for ac_header in winsock2.h
3592 do :
3593 ac_fn_c_check_header_mongrel "$LINENO" "winsock2.h" "ac_cv_header_winsock2_h" "$ac_includes_default"
3594 -if test "x$ac_cv_header_winsock2_h" = x""yes; then :
3595 +if test "x$ac_cv_header_winsock2_h" = xyes; then :
3596 cat >>confdefs.h <<_ACEOF
3597 #define HAVE_WINSOCK2_H 1
3598 _ACEOF
3599 @@ -27503,7 +27514,7 @@ done
3600 if test $HAVE_WINSOCK2_H = 1; then
3601 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we need to call WSAStartup in winsock2.h and -lws2_32" >&5
3602 $as_echo_n "checking if we need to call WSAStartup in winsock2.h and -lws2_32... " >&6; }
3603 -if test "${gl_cv_func_wsastartup+set}" = set; then :
3604 +if ${gl_cv_func_wsastartup+:} false; then :
3605 $as_echo_n "(cached) " >&6
3606 else
3607
3608 @@ -27548,7 +27559,7 @@ $as_echo "#define WINDOWS_SOCKETS 1" >>confdefs.h
3609 else
3610 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing setsockopt" >&5
3611 $as_echo_n "checking for library containing setsockopt... " >&6; }
3612 -if test "${gl_cv_lib_socket+set}" = set; then :
3613 +if ${gl_cv_lib_socket+:} false; then :
3614 $as_echo_n "(cached) " >&6
3615 else
3616
3617 @@ -27676,12 +27687,12 @@ $as_echo "$gl_cv_lib_socket" >&6; }
3618 #endif
3619
3620 "
3621 -if test "x$ac_cv_type_socklen_t" = x""yes; then :
3622 +if test "x$ac_cv_type_socklen_t" = xyes; then :
3623
3624 else
3625 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for socklen_t equivalent" >&5
3626 $as_echo_n "checking for socklen_t equivalent... " >&6; }
3627 - if test "${gl_cv_socklen_t_equiv+set}" = set; then :
3628 + if ${gl_cv_socklen_t_equiv+:} false; then :
3629 $as_echo_n "(cached) " >&6
3630 else
3631 # Systems have either "struct sockaddr *" or
3632 @@ -27730,7 +27741,7 @@ fi
3633
3634 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ssize_t" >&5
3635 $as_echo_n "checking for ssize_t... " >&6; }
3636 -if test "${gt_cv_ssize_t+set}" = set; then :
3637 +if ${gt_cv_ssize_t+:} false; then :
3638 $as_echo_n "(cached) " >&6
3639 else
3640 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3641 @@ -27771,7 +27782,7 @@ $as_echo "#define ssize_t int" >>confdefs.h
3642
3643 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stat handles trailing slashes on directories" >&5
3644 $as_echo_n "checking whether stat handles trailing slashes on directories... " >&6; }
3645 -if test "${gl_cv_func_stat_dir_slash+set}" = set; then :
3646 +if ${gl_cv_func_stat_dir_slash+:} false; then :
3647 $as_echo_n "(cached) " >&6
3648 else
3649 if test "$cross_compiling" = yes; then :
3650 @@ -27806,7 +27817,7 @@ fi
3651 $as_echo "$gl_cv_func_stat_dir_slash" >&6; }
3652 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stat handles trailing slashes on files" >&5
3653 $as_echo_n "checking whether stat handles trailing slashes on files... " >&6; }
3654 -if test "${gl_cv_func_stat_file_slash+set}" = set; then :
3655 +if ${gl_cv_func_stat_file_slash+:} false; then :
3656 $as_echo_n "(cached) " >&6
3657 else
3658 touch conftest.tmp
3659 @@ -27900,7 +27911,7 @@ $as_echo "#define GNULIB_TEST_STAT 1" >>confdefs.h
3660 NEXT_STDARG_H='<stdarg.h>'
3661 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for va_copy" >&5
3662 $as_echo_n "checking for va_copy... " >&6; }
3663 - if test "${gl_cv_func_va_copy+set}" = set; then :
3664 + if ${gl_cv_func_va_copy+:} false; then :
3665 $as_echo_n "(cached) " >&6
3666 else
3667
3668 @@ -27960,7 +27971,7 @@ rm -f conftest*
3669 else
3670 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <stdarg.h>" >&5
3671 $as_echo_n "checking absolute name of <stdarg.h>... " >&6; }
3672 -if test "${gl_cv_next_stdarg_h+set}" = set; then :
3673 +if ${gl_cv_next_stdarg_h+:} false; then :
3674 $as_echo_n "(cached) " >&6
3675 else
3676
3677 @@ -28008,7 +28019,7 @@ $as_echo "$gl_cv_next_stdarg_h" >&6; }
3678
3679 saved_as_echo_n="$as_echo_n"
3680 as_echo_n=':'
3681 - if test "${gl_cv_func___va_copy+set}" = set; then :
3682 + if ${gl_cv_func___va_copy+:} false; then :
3683 $as_echo_n "(cached) " >&6
3684 else
3685
3686 @@ -28097,7 +28108,7 @@ fi
3687 fi
3688 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NULL can be used in arbitrary expressions" >&5
3689 $as_echo_n "checking whether NULL can be used in arbitrary expressions... " >&6; }
3690 -if test "${gl_cv_decl_null_works+set}" = set; then :
3691 +if ${gl_cv_decl_null_works+:} false; then :
3692 $as_echo_n "(cached) " >&6
3693 else
3694 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3695 @@ -28149,7 +28160,7 @@ fi
3696 else
3697 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <stddef.h>" >&5
3698 $as_echo_n "checking absolute name of <stddef.h>... " >&6; }
3699 -if test "${gl_cv_next_stddef_h+set}" = set; then :
3700 +if ${gl_cv_next_stddef_h+:} false; then :
3701 $as_echo_n "(cached) " >&6
3702 else
3703
3704 @@ -28208,7 +28219,7 @@ $as_echo "$gl_cv_next_stddef_h" >&6; }
3705 else
3706 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <stdio.h>" >&5
3707 $as_echo_n "checking absolute name of <stdio.h>... " >&6; }
3708 -if test "${gl_cv_next_stdio_h+set}" = set; then :
3709 +if ${gl_cv_next_stdio_h+:} false; then :
3710 $as_echo_n "(cached) " >&6
3711 else
3712
3713 @@ -28340,7 +28351,7 @@ $as_echo "$gl_cv_next_stdio_h" >&6; }
3714 else
3715 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <stdlib.h>" >&5
3716 $as_echo_n "checking absolute name of <stdlib.h>... " >&6; }
3717 -if test "${gl_cv_next_stdlib_h+set}" = set; then :
3718 +if ${gl_cv_next_stdlib_h+:} false; then :
3719 $as_echo_n "(cached) " >&6
3720 else
3721
3722 @@ -28392,7 +28403,7 @@ $as_echo "$gl_cv_next_stdlib_h" >&6; }
3723 for ac_func in stpcpy
3724 do :
3725 ac_fn_c_check_func "$LINENO" "stpcpy" "ac_cv_func_stpcpy"
3726 -if test "x$ac_cv_func_stpcpy" = x""yes; then :
3727 +if test "x$ac_cv_func_stpcpy" = xyes; then :
3728 cat >>confdefs.h <<_ACEOF
3729 #define HAVE_STPCPY 1
3730 _ACEOF
3731 @@ -28441,7 +28452,7 @@ $as_echo "#define GNULIB_TEST_STPCPY 1" >>confdefs.h
3732 for ac_func in strchrnul
3733 do :
3734 ac_fn_c_check_func "$LINENO" "strchrnul" "ac_cv_func_strchrnul"
3735 -if test "x$ac_cv_func_strchrnul" = x""yes; then :
3736 +if test "x$ac_cv_func_strchrnul" = xyes; then :
3737 cat >>confdefs.h <<_ACEOF
3738 #define HAVE_STRCHRNUL 1
3739 _ACEOF
3740 @@ -28454,7 +28465,7 @@ done
3741 else
3742 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether strchrnul works" >&5
3743 $as_echo_n "checking whether strchrnul works... " >&6; }
3744 -if test "${gl_cv_func_strchrnul_works+set}" = set; then :
3745 +if ${gl_cv_func_strchrnul_works+:} false; then :
3746 $as_echo_n "(cached) " >&6
3747 else
3748 if test "$cross_compiling" = yes; then :
3749 @@ -28607,7 +28618,7 @@ $as_echo "#define GNULIB_TEST_STRDUP 1" >>confdefs.h
3750 if test "$ERRNO_H:$REPLACE_STRERROR_0" = :0; then
3751 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working strerror function" >&5
3752 $as_echo_n "checking for working strerror function... " >&6; }
3753 -if test "${gl_cv_func_working_strerror+set}" = set; then :
3754 +if ${gl_cv_func_working_strerror+:} false; then :
3755 $as_echo_n "(cached) " >&6
3756 else
3757 if test "$cross_compiling" = yes; then :
3758 @@ -28711,7 +28722,7 @@ if test -n "$ERRNO_H" || test $REPLACE_STRERROR_0 = 1; then
3759 for ac_header in winsock2.h
3760 do :
3761 ac_fn_c_check_header_mongrel "$LINENO" "winsock2.h" "ac_cv_header_winsock2_h" "$ac_includes_default"
3762 -if test "x$ac_cv_header_winsock2_h" = x""yes; then :
3763 +if test "x$ac_cv_header_winsock2_h" = xyes; then :
3764 cat >>confdefs.h <<_ACEOF
3765 #define HAVE_WINSOCK2_H 1
3766 _ACEOF
3767 @@ -28838,7 +28849,7 @@ $as_echo "#define GNULIB_TEST_STRERROR_R 1" >>confdefs.h
3768 # AIX 4.3.3, AIX 5.1 have a function that fails to add the terminating '\0'.
3769 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working strndup" >&5
3770 $as_echo_n "checking for working strndup... " >&6; }
3771 -if test "${gl_cv_func_strndup_works+set}" = set; then :
3772 +if ${gl_cv_func_strndup_works+:} false; then :
3773 $as_echo_n "(cached) " >&6
3774 else
3775 if test "$cross_compiling" = yes; then :
3776 @@ -28936,13 +28947,17 @@ $as_echo "#define GNULIB_TEST_STRNDUP 1" >>confdefs.h
3777 HAVE_DECL_STRNLEN=0
3778 else
3779
3780 - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working strnlen" >&5
3781 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working strnlen" >&5
3782 $as_echo_n "checking for working strnlen... " >&6; }
3783 -if test "${ac_cv_func_strnlen_working+set}" = set; then :
3784 +if ${ac_cv_func_strnlen_working+:} false; then :
3785 $as_echo_n "(cached) " >&6
3786 else
3787 if test "$cross_compiling" = yes; then :
3788 - ac_cv_func_strnlen_working=no
3789 + # Guess no on AIX systems, yes otherwise.
3790 + case "$host_os" in
3791 + aix*) ac_cv_func_strnlen_working=no;;
3792 + *) ac_cv_func_strnlen_working=yes;;
3793 + esac
3794 else
3795 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3796 /* end confdefs.h. */
3797 @@ -29072,7 +29087,7 @@ $as_echo "#define GNULIB_TEST_STRPTIME 1" >>confdefs.h
3798 for ac_func in strsep
3799 do :
3800 ac_fn_c_check_func "$LINENO" "strsep" "ac_cv_func_strsep"
3801 -if test "x$ac_cv_func_strsep" = x""yes; then :
3802 +if test "x$ac_cv_func_strsep" = xyes; then :
3803 cat >>confdefs.h <<_ACEOF
3804 #define HAVE_STRSEP 1
3805 _ACEOF
3806 @@ -29119,7 +29134,7 @@ $as_echo "#define GNULIB_TEST_STRSEP 1" >>confdefs.h
3807 for ac_func in strtok_r
3808 do :
3809 ac_fn_c_check_func "$LINENO" "strtok_r" "ac_cv_func_strtok_r"
3810 -if test "x$ac_cv_func_strtok_r" = x""yes; then :
3811 +if test "x$ac_cv_func_strtok_r" = xyes; then :
3812 cat >>confdefs.h <<_ACEOF
3813 #define HAVE_STRTOK_R 1
3814 _ACEOF
3815 @@ -29131,7 +29146,7 @@ done
3816 HAVE_STRTOK_R=1
3817 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether strtok_r works" >&5
3818 $as_echo_n "checking whether strtok_r works... " >&6; }
3819 -if test "${gl_cv_func_strtok_r_works+set}" = set; then :
3820 +if ${gl_cv_func_strtok_r_works+:} false; then :
3821 $as_echo_n "(cached) " >&6
3822 else
3823 if test "$cross_compiling" = yes; then :
3824 @@ -29245,7 +29260,7 @@ $as_echo "#define GNULIB_TEST_STRTOK_R 1" >>confdefs.h
3825 HAVE_SYS_IOCTL_H=1
3826 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether <sys/ioctl.h> declares ioctl" >&5
3827 $as_echo_n "checking whether <sys/ioctl.h> declares ioctl... " >&6; }
3828 -if test "${gl_cv_decl_ioctl_in_sys_ioctl_h+set}" = set; then :
3829 +if ${gl_cv_decl_ioctl_in_sys_ioctl_h+:} false; then :
3830 $as_echo_n "(cached) " >&6
3831 else
3832 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3833 @@ -29294,7 +29309,7 @@ $as_echo "$gl_cv_decl_ioctl_in_sys_ioctl_h" >&6; }
3834 else
3835 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <sys/ioctl.h>" >&5
3836 $as_echo_n "checking absolute name of <sys/ioctl.h>... " >&6; }
3837 -if test "${gl_cv_next_sys_ioctl_h+set}" = set; then :
3838 +if ${gl_cv_next_sys_ioctl_h+:} false; then :
3839 $as_echo_n "(cached) " >&6
3840 else
3841
3842 @@ -29349,7 +29364,7 @@ $as_echo "$gl_cv_next_sys_ioctl_h" >&6; }
3843
3844 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether <sys/select.h> is self-contained" >&5
3845 $as_echo_n "checking whether <sys/select.h> is self-contained... " >&6; }
3846 -if test "${gl_cv_header_sys_select_h_selfcontained+set}" = set; then :
3847 +if ${gl_cv_header_sys_select_h_selfcontained+:} false; then :
3848 $as_echo_n "(cached) " >&6
3849 else
3850
3851 @@ -29448,7 +29463,7 @@ $as_echo "$gl_cv_header_sys_select_h_selfcontained" >&6; }
3852 else
3853 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <sys/select.h>" >&5
3854 $as_echo_n "checking absolute name of <sys/select.h>... " >&6; }
3855 -if test "${gl_cv_next_sys_select_h+set}" = set; then :
3856 +if ${gl_cv_next_sys_select_h+:} false; then :
3857 $as_echo_n "(cached) " >&6
3858 else
3859
3860 @@ -29514,7 +29529,7 @@ $as_echo "$gl_cv_next_sys_select_h" >&6; }
3861 for ac_header in winsock2.h
3862 do :
3863 ac_fn_c_check_header_mongrel "$LINENO" "winsock2.h" "ac_cv_header_winsock2_h" "$ac_includes_default"
3864 -if test "x$ac_cv_header_winsock2_h" = x""yes; then :
3865 +if test "x$ac_cv_header_winsock2_h" = xyes; then :
3866 cat >>confdefs.h <<_ACEOF
3867 #define HAVE_WINSOCK2_H 1
3868 _ACEOF
3869 @@ -29552,7 +29567,7 @@ $as_echo "#define _POSIX_PII_SOCKET 1" >>confdefs.h
3870
3871 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether <sys/socket.h> is self-contained" >&5
3872 $as_echo_n "checking whether <sys/socket.h> is self-contained... " >&6; }
3873 -if test "${gl_cv_header_sys_socket_h_selfcontained+set}" = set; then :
3874 +if ${gl_cv_header_sys_socket_h_selfcontained+:} false; then :
3875 $as_echo_n "(cached) " >&6
3876 else
3877
3878 @@ -29581,7 +29596,7 @@ $as_echo "$gl_cv_header_sys_socket_h_selfcontained" >&6; }
3879 for ac_func in shutdown
3880 do :
3881 ac_fn_c_check_func "$LINENO" "shutdown" "ac_cv_func_shutdown"
3882 -if test "x$ac_cv_func_shutdown" = x""yes; then :
3883 +if test "x$ac_cv_func_shutdown" = xyes; then :
3884 cat >>confdefs.h <<_ACEOF
3885 #define HAVE_SHUTDOWN 1
3886 _ACEOF
3887 @@ -29592,7 +29607,7 @@ done
3888 if test $ac_cv_func_shutdown = yes; then
3889 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether <sys/socket.h> defines the SHUT_* macros" >&5
3890 $as_echo_n "checking whether <sys/socket.h> defines the SHUT_* macros... " >&6; }
3891 -if test "${gl_cv_header_sys_socket_h_shut+set}" = set; then :
3892 +if ${gl_cv_header_sys_socket_h_shut+:} false; then :
3893 $as_echo_n "(cached) " >&6
3894 else
3895
3896 @@ -29645,7 +29660,7 @@ $as_echo "$gl_cv_header_sys_socket_h_shut" >&6; }
3897 else
3898 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <sys/socket.h>" >&5
3899 $as_echo_n "checking absolute name of <sys/socket.h>... " >&6; }
3900 -if test "${gl_cv_next_sys_socket_h+set}" = set; then :
3901 +if ${gl_cv_next_sys_socket_h+:} false; then :
3902 $as_echo_n "(cached) " >&6
3903 else
3904
3905 @@ -29718,7 +29733,7 @@ $as_echo "$gl_cv_next_sys_socket_h" >&6; }
3906 #endif
3907
3908 "
3909 -if test "x$ac_cv_type_struct_sockaddr_storage" = x""yes; then :
3910 +if test "x$ac_cv_type_struct_sockaddr_storage" = xyes; then :
3911
3912 cat >>confdefs.h <<_ACEOF
3913 #define HAVE_STRUCT_SOCKADDR_STORAGE 1
3914 @@ -29739,7 +29754,7 @@ ac_fn_c_check_type "$LINENO" "sa_family_t" "ac_cv_type_sa_family_t" "
3915 #endif
3916
3917 "
3918 -if test "x$ac_cv_type_sa_family_t" = x""yes; then :
3919 +if test "x$ac_cv_type_sa_family_t" = xyes; then :
3920
3921 cat >>confdefs.h <<_ACEOF
3922 #define HAVE_SA_FAMILY_T 1
3923 @@ -29764,7 +29779,7 @@ fi
3924 #endif
3925
3926 "
3927 -if test "x$ac_cv_member_struct_sockaddr_storage_ss_family" = x""yes; then :
3928 +if test "x$ac_cv_member_struct_sockaddr_storage_ss_family" = xyes; then :
3929
3930 cat >>confdefs.h <<_ACEOF
3931 #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1
3932 @@ -29794,7 +29809,7 @@ fi
3933 for ac_header in winsock2.h
3934 do :
3935 ac_fn_c_check_header_mongrel "$LINENO" "winsock2.h" "ac_cv_header_winsock2_h" "$ac_includes_default"
3936 -if test "x$ac_cv_header_winsock2_h" = x""yes; then :
3937 +if test "x$ac_cv_header_winsock2_h" = xyes; then :
3938 cat >>confdefs.h <<_ACEOF
3939 #define HAVE_WINSOCK2_H 1
3940 _ACEOF
3941 @@ -29844,7 +29859,7 @@ done
3942 else
3943 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <sys/stat.h>" >&5
3944 $as_echo_n "checking absolute name of <sys/stat.h>... " >&6; }
3945 -if test "${gl_cv_next_sys_stat_h+set}" = set; then :
3946 +if ${gl_cv_next_sys_stat_h+:} false; then :
3947 $as_echo_n "(cached) " >&6
3948 else
3949
3950 @@ -29894,7 +29909,7 @@ $as_echo "$gl_cv_next_sys_stat_h" >&6; }
3951 ac_fn_c_check_type "$LINENO" "nlink_t" "ac_cv_type_nlink_t" "#include <sys/types.h>
3952 #include <sys/stat.h>
3953 "
3954 -if test "x$ac_cv_type_nlink_t" = x""yes; then :
3955 +if test "x$ac_cv_type_nlink_t" = xyes; then :
3956
3957 else
3958
3959 @@ -29932,7 +29947,7 @@ fi
3960 else
3961 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <sys/uio.h>" >&5
3962 $as_echo_n "checking absolute name of <sys/uio.h>... " >&6; }
3963 -if test "${gl_cv_next_sys_uio_h+set}" = set; then :
3964 +if ${gl_cv_next_sys_uio_h+:} false; then :
3965 $as_echo_n "(cached) " >&6
3966 else
3967
3968 @@ -30009,7 +30024,7 @@ $as_echo "$gl_cv_next_sys_uio_h" >&6; }
3969 else
3970 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <sys/utsname.h>" >&5
3971 $as_echo_n "checking absolute name of <sys/utsname.h>... " >&6; }
3972 -if test "${gl_cv_next_sys_utsname_h+set}" = set; then :
3973 +if ${gl_cv_next_sys_utsname_h+:} false; then :
3974 $as_echo_n "(cached) " >&6
3975 else
3976
3977 @@ -30064,7 +30079,7 @@ $as_echo "$gl_cv_next_sys_utsname_h" >&6; }
3978 #include <sys/utsname.h>
3979
3980 "
3981 -if test "x$ac_cv_type_struct_utsname" = x""yes; then :
3982 +if test "x$ac_cv_type_struct_utsname" = xyes; then :
3983
3984 cat >>confdefs.h <<_ACEOF
3985 #define HAVE_STRUCT_UTSNAME 1
3986 @@ -30104,7 +30119,7 @@ fi
3987 else
3988 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <sys/wait.h>" >&5
3989 $as_echo_n "checking absolute name of <sys/wait.h>... " >&6; }
3990 -if test "${gl_cv_next_sys_wait_h+set}" = set; then :
3991 +if ${gl_cv_next_sys_wait_h+:} false; then :
3992 $as_echo_n "(cached) " >&6
3993 else
3994
3995 @@ -30182,7 +30197,7 @@ $as_echo "$gl_cv_next_sys_wait_h" >&6; }
3996 else
3997 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <termios.h>" >&5
3998 $as_echo_n "checking absolute name of <termios.h>... " >&6; }
3999 -if test "${gl_cv_next_termios_h+set}" = set; then :
4000 +if ${gl_cv_next_termios_h+:} false; then :
4001 $as_echo_n "(cached) " >&6
4002 else
4003
4004 @@ -30269,7 +30284,7 @@ $as_echo "$gl_cv_next_termios_h" >&6; }
4005 HAVE_LOCALTIME_R=1
4006 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether localtime_r is compatible with its POSIX signature" >&5
4007 $as_echo_n "checking whether localtime_r is compatible with its POSIX signature... " >&6; }
4008 -if test "${gl_cv_time_r_posix+set}" = set; then :
4009 +if ${gl_cv_time_r_posix+:} false; then :
4010 $as_echo_n "(cached) " >&6
4011 else
4012 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4013 @@ -30395,7 +30410,7 @@ $as_echo "#define GNULIB_TEST_TIMEGM 1" >>confdefs.h
4014 for ac_func in uname
4015 do :
4016 ac_fn_c_check_func "$LINENO" "uname" "ac_cv_func_uname"
4017 -if test "x$ac_cv_func_uname" = x""yes; then :
4018 +if test "x$ac_cv_func_uname" = xyes; then :
4019 cat >>confdefs.h <<_ACEOF
4020 #define HAVE_UNAME 1
4021 _ACEOF
4022 @@ -30456,7 +30471,7 @@ fi
4023 else
4024 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <unistd.h>" >&5
4025 $as_echo_n "checking absolute name of <unistd.h>... " >&6; }
4026 -if test "${gl_cv_next_unistd_h+set}" = set; then :
4027 +if ${gl_cv_next_unistd_h+:} false; then :
4028 $as_echo_n "(cached) " >&6
4029 else
4030
4031 @@ -30522,7 +30537,7 @@ $as_echo "$gl_cv_next_unistd_h" >&6; }
4032
4033
4034 ac_fn_c_check_type "$LINENO" "useconds_t" "ac_cv_type_useconds_t" "$ac_includes_default"
4035 -if test "x$ac_cv_type_useconds_t" = x""yes; then :
4036 +if test "x$ac_cv_type_useconds_t" = xyes; then :
4037
4038 else
4039
4040 @@ -30535,7 +30550,7 @@ fi
4041 else
4042 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether usleep allows large arguments" >&5
4043 $as_echo_n "checking whether usleep allows large arguments... " >&6; }
4044 -if test "${gl_cv_func_usleep_works+set}" = set; then :
4045 +if ${gl_cv_func_usleep_works+:} false; then :
4046 $as_echo_n "(cached) " >&6
4047 else
4048 if test "$cross_compiling" = yes; then :
4049 @@ -30672,7 +30687,7 @@ $as_echo "#define REPLACE_VASNPRINTF 1" >>confdefs.h
4050
4051
4052 ac_fn_c_check_type "$LINENO" "ptrdiff_t" "ac_cv_type_ptrdiff_t" "$ac_includes_default"
4053 -if test "x$ac_cv_type_ptrdiff_t" = x""yes; then :
4054 +if test "x$ac_cv_type_ptrdiff_t" = xyes; then :
4055
4056 else
4057
4058 @@ -30693,7 +30708,7 @@ fi
4059 for ac_func in vasprintf
4060 do :
4061 ac_fn_c_check_func "$LINENO" "vasprintf" "ac_cv_func_vasprintf"
4062 -if test "x$ac_cv_func_vasprintf" = x""yes; then :
4063 +if test "x$ac_cv_func_vasprintf" = xyes; then :
4064 cat >>confdefs.h <<_ACEOF
4065 #define HAVE_VASPRINTF 1
4066 _ACEOF
4067 @@ -30768,7 +30783,7 @@ $as_echo "#define GNULIB_TEST_VASPRINTF 1" >>confdefs.h
4068 for ac_func in vsnprintf
4069 do :
4070 ac_fn_c_check_func "$LINENO" "vsnprintf" "ac_cv_func_vsnprintf"
4071 -if test "x$ac_cv_func_vsnprintf" = x""yes; then :
4072 +if test "x$ac_cv_func_vsnprintf" = xyes; then :
4073 cat >>confdefs.h <<_ACEOF
4074 #define HAVE_VSNPRINTF 1
4075 _ACEOF
4076 @@ -30781,7 +30796,7 @@ done
4077
4078 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether snprintf respects a size of 1" >&5
4079 $as_echo_n "checking whether snprintf respects a size of 1... " >&6; }
4080 -if test "${gl_cv_func_snprintf_size1+set}" = set; then :
4081 +if ${gl_cv_func_snprintf_size1+:} false; then :
4082 $as_echo_n "(cached) " >&6
4083 else
4084
4085 @@ -30822,7 +30837,7 @@ $as_echo "$gl_cv_func_snprintf_size1" >&6; }
4086
4087 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether printf supports POSIX/XSI format strings with positions" >&5
4088 $as_echo_n "checking whether printf supports POSIX/XSI format strings with positions... " >&6; }
4089 -if test "${gl_cv_func_printf_positions+set}" = set; then :
4090 +if ${gl_cv_func_printf_positions+:} false; then :
4091 $as_echo_n "(cached) " >&6
4092 else
4093
4094 @@ -30979,7 +30994,7 @@ $as_echo "#define GNULIB_TEST_WAITPID 1" >>confdefs.h
4095 else
4096 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <wchar.h>" >&5
4097 $as_echo_n "checking absolute name of <wchar.h>... " >&6; }
4098 -if test "${gl_cv_next_wchar_h+set}" = set; then :
4099 +if ${gl_cv_next_wchar_h+:} false; then :
4100 $as_echo_n "(cached) " >&6
4101 else
4102
4103 @@ -31092,7 +31107,7 @@ $as_echo "$gl_cv_next_wchar_h" >&6; }
4104 else
4105 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <wctype.h>" >&5
4106 $as_echo_n "checking absolute name of <wctype.h>... " >&6; }
4107 -if test "${gl_cv_next_wctype_h+set}" = set; then :
4108 +if ${gl_cv_next_wctype_h+:} false; then :
4109 $as_echo_n "(cached) " >&6
4110 else
4111
4112 @@ -31142,7 +31157,7 @@ $as_echo "$gl_cv_next_wctype_h" >&6; }
4113 if test $ac_cv_func_iswcntrl = yes; then
4114 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether iswcntrl works" >&5
4115 $as_echo_n "checking whether iswcntrl works... " >&6; }
4116 -if test "${gl_cv_func_iswcntrl_works+set}" = set; then :
4117 +if ${gl_cv_func_iswcntrl_works+:} false; then :
4118 $as_echo_n "(cached) " >&6
4119 else
4120
4121 @@ -31217,7 +31232,7 @@ $as_echo "$gl_cv_func_iswcntrl_works" >&6; }
4122
4123 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wctype_t" >&5
4124 $as_echo_n "checking for wctype_t... " >&6; }
4125 -if test "${gl_cv_type_wctype_t+set}" = set; then :
4126 +if ${gl_cv_type_wctype_t+:} false; then :
4127 $as_echo_n "(cached) " >&6
4128 else
4129 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4130 @@ -31259,7 +31274,7 @@ $as_echo "$gl_cv_type_wctype_t" >&6; }
4131
4132 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wctrans_t" >&5
4133 $as_echo_n "checking for wctrans_t... " >&6; }
4134 -if test "${gl_cv_type_wctrans_t+set}" = set; then :
4135 +if ${gl_cv_type_wctrans_t+:} false; then :
4136 $as_echo_n "(cached) " >&6
4137 else
4138 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4139 @@ -31305,7 +31320,7 @@ $as_echo "$gl_cv_type_wctrans_t" >&6; }
4140 for ac_header in stdint.h
4141 do :
4142 ac_fn_c_check_header_mongrel "$LINENO" "stdint.h" "ac_cv_header_stdint_h" "$ac_includes_default"
4143 -if test "x$ac_cv_header_stdint_h" = x""yes; then :
4144 +if test "x$ac_cv_header_stdint_h" = xyes; then :
4145 cat >>confdefs.h <<_ACEOF
4146 #define HAVE_STDINT_H 1
4147 _ACEOF
4148 @@ -31362,7 +31377,7 @@ done
4149
4150 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether btowc(0) is correct" >&5
4151 $as_echo_n "checking whether btowc(0) is correct... " >&6; }
4152 -if test "${gl_cv_func_btowc_nul+set}" = set; then :
4153 +if ${gl_cv_func_btowc_nul+:} false; then :
4154 $as_echo_n "(cached) " >&6
4155 else
4156
4157 @@ -31411,7 +31426,7 @@ $as_echo "$gl_cv_func_btowc_nul" >&6; }
4158
4159 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether btowc(EOF) is correct" >&5
4160 $as_echo_n "checking whether btowc(EOF) is correct... " >&6; }
4161 -if test "${gl_cv_func_btowc_eof+set}" = set; then :
4162 +if ${gl_cv_func_btowc_eof+:} false; then :
4163 $as_echo_n "(cached) " >&6
4164 else
4165
4166 @@ -31514,7 +31529,7 @@ $as_echo "#define GNULIB_TEST_BTOWC 1" >>confdefs.h
4167
4168 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a traditional french locale" >&5
4169 $as_echo_n "checking for a traditional french locale... " >&6; }
4170 -if test "${gt_cv_locale_fr+set}" = set; then :
4171 +if ${gt_cv_locale_fr+:} false; then :
4172 $as_echo_n "(cached) " >&6
4173 else
4174
4175 @@ -31646,7 +31661,7 @@ $as_echo "$gt_cv_locale_fr" >&6; }
4176
4177 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a french Unicode locale" >&5
4178 $as_echo_n "checking for a french Unicode locale... " >&6; }
4179 -if test "${gt_cv_locale_fr_utf8+set}" = set; then :
4180 +if ${gt_cv_locale_fr_utf8+:} false; then :
4181 $as_echo_n "(cached) " >&6
4182 else
4183
4184 @@ -31773,7 +31788,7 @@ $as_echo "$gt_cv_locale_fr_utf8" >&6; }
4185
4186 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a traditional french locale" >&5
4187 $as_echo_n "checking for a traditional french locale... " >&6; }
4188 -if test "${gt_cv_locale_fr+set}" = set; then :
4189 +if ${gt_cv_locale_fr+:} false; then :
4190 $as_echo_n "(cached) " >&6
4191 else
4192
4193 @@ -31906,7 +31921,7 @@ $as_echo "$gt_cv_locale_fr" >&6; }
4194
4195 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a turkish Unicode locale" >&5
4196 $as_echo_n "checking for a turkish Unicode locale... " >&6; }
4197 -if test "${gt_cv_locale_tr_utf8+set}" = set; then :
4198 +if ${gt_cv_locale_tr_utf8+:} false; then :
4199 $as_echo_n "(cached) " >&6
4200 else
4201
4202 @@ -32041,7 +32056,7 @@ $as_echo "$gt_cv_locale_tr_utf8" >&6; }
4203
4204 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for error_at_line" >&5
4205 $as_echo_n "checking for error_at_line... " >&6; }
4206 -if test "${ac_cv_lib_error_at_line+set}" = set; then :
4207 +if ${ac_cv_lib_error_at_line+:} false; then :
4208 $as_echo_n "(cached) " >&6
4209 else
4210 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4211 @@ -32124,7 +32139,7 @@ $as_echo "#define GETGROUPS_ZERO_BUG 1" >>confdefs.h
4212 else
4213 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether getgroups handles negative values" >&5
4214 $as_echo_n "checking whether getgroups handles negative values... " >&6; }
4215 -if test "${gl_cv_func_getgroups_works+set}" = set; then :
4216 +if ${gl_cv_func_getgroups_works+:} false; then :
4217 $as_echo_n "(cached) " >&6
4218 else
4219 if test "$cross_compiling" = yes; then :
4220 @@ -32200,7 +32215,7 @@ $as_echo "#define GNULIB_TEST_GETGROUPS 1" >>confdefs.h
4221 for ac_func in getpagesize
4222 do :
4223 ac_fn_c_check_func "$LINENO" "getpagesize" "ac_cv_func_getpagesize"
4224 -if test "x$ac_cv_func_getpagesize" = x""yes; then :
4225 +if test "x$ac_cv_func_getpagesize" = xyes; then :
4226 cat >>confdefs.h <<_ACEOF
4227 #define HAVE_GETPAGESIZE 1
4228 _ACEOF
4229 @@ -32213,7 +32228,7 @@ done
4230 for ac_header in OS.h
4231 do :
4232 ac_fn_c_check_header_mongrel "$LINENO" "OS.h" "ac_cv_header_OS_h" "$ac_includes_default"
4233 -if test "x$ac_cv_header_OS_h" = x""yes; then :
4234 +if test "x$ac_cv_header_OS_h" = xyes; then :
4235 cat >>confdefs.h <<_ACEOF
4236 #define HAVE_OS_H 1
4237 _ACEOF
4238 @@ -32228,7 +32243,7 @@ done
4239 for ac_header in sys/param.h
4240 do :
4241 ac_fn_c_check_header_mongrel "$LINENO" "sys/param.h" "ac_cv_header_sys_param_h" "$ac_includes_default"
4242 -if test "x$ac_cv_header_sys_param_h" = x""yes; then :
4243 +if test "x$ac_cv_header_sys_param_h" = xyes; then :
4244 cat >>confdefs.h <<_ACEOF
4245 #define HAVE_SYS_PARAM_H 1
4246 _ACEOF
4247 @@ -32247,7 +32262,7 @@ done
4248 ;;
4249 esac
4250 ac_fn_c_check_decl "$LINENO" "getpagesize" "ac_cv_have_decl_getpagesize" "$ac_includes_default"
4251 -if test "x$ac_cv_have_decl_getpagesize" = x""yes; then :
4252 +if test "x$ac_cv_have_decl_getpagesize" = xyes; then :
4253
4254 else
4255 HAVE_DECL_GETPAGESIZE=0
4256 @@ -32332,7 +32347,7 @@ $as_echo "#define GNULIB_TEST_GETSOCKOPT 1" >>confdefs.h
4257
4258 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5
4259 $as_echo_n "checking whether byte ordering is bigendian... " >&6; }
4260 -if test "${ac_cv_c_bigendian+set}" = set; then :
4261 +if ${ac_cv_c_bigendian+:} false; then :
4262 $as_echo_n "(cached) " >&6
4263 else
4264 ac_cv_c_bigendian=unknown
4265 @@ -32556,7 +32571,7 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
4266
4267 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5
4268 $as_echo_n "checking whether byte ordering is bigendian... " >&6; }
4269 -if test "${ac_cv_c_bigendian+set}" = set; then :
4270 +if ${ac_cv_c_bigendian+:} false; then :
4271 $as_echo_n "(cached) " >&6
4272 else
4273 ac_cv_c_bigendian=unknown
4274 @@ -32782,7 +32797,7 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
4275
4276 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler generally respects inline" >&5
4277 $as_echo_n "checking whether the compiler generally respects inline... " >&6; }
4278 -if test "${gl_cv_c_inline_effective+set}" = set; then :
4279 +if ${gl_cv_c_inline_effective+:} false; then :
4280 $as_echo_n "(cached) " >&6
4281 else
4282 if test $ac_cv_c_inline = no; then
4283 @@ -32859,7 +32874,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
4284
4285 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether INT32_MAX < INTMAX_MAX" >&5
4286 $as_echo_n "checking whether INT32_MAX < INTMAX_MAX... " >&6; }
4287 -if test "${gl_cv_test_INT32_MAX_LT_INTMAX_MAX+set}" = set; then :
4288 +if ${gl_cv_test_INT32_MAX_LT_INTMAX_MAX+:} false; then :
4289 $as_echo_n "(cached) " >&6
4290 else
4291 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4292 @@ -32911,7 +32926,7 @@ $as_echo "$gl_cv_test_INT32_MAX_LT_INTMAX_MAX" >&6; }
4293
4294 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether INT64_MAX == LONG_MAX" >&5
4295 $as_echo_n "checking whether INT64_MAX == LONG_MAX... " >&6; }
4296 -if test "${gl_cv_test_INT64_MAX_EQ_LONG_MAX+set}" = set; then :
4297 +if ${gl_cv_test_INT64_MAX_EQ_LONG_MAX+:} false; then :
4298 $as_echo_n "(cached) " >&6
4299 else
4300 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4301 @@ -32965,7 +32980,7 @@ $as_echo "$gl_cv_test_INT64_MAX_EQ_LONG_MAX" >&6; }
4302
4303 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether UINT32_MAX < UINTMAX_MAX" >&5
4304 $as_echo_n "checking whether UINT32_MAX < UINTMAX_MAX... " >&6; }
4305 -if test "${gl_cv_test_UINT32_MAX_LT_UINTMAX_MAX+set}" = set; then :
4306 +if ${gl_cv_test_UINT32_MAX_LT_UINTMAX_MAX+:} false; then :
4307 $as_echo_n "(cached) " >&6
4308 else
4309 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4310 @@ -33017,7 +33032,7 @@ $as_echo "$gl_cv_test_UINT32_MAX_LT_UINTMAX_MAX" >&6; }
4311
4312 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether UINT64_MAX == ULONG_MAX" >&5
4313 $as_echo_n "checking whether UINT64_MAX == ULONG_MAX... " >&6; }
4314 -if test "${gl_cv_test_UINT64_MAX_EQ_ULONG_MAX+set}" = set; then :
4315 +if ${gl_cv_test_UINT64_MAX_EQ_ULONG_MAX+:} false; then :
4316 $as_echo_n "(cached) " >&6
4317 else
4318 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4319 @@ -33080,7 +33095,7 @@ $as_echo "$gl_cv_test_UINT64_MAX_EQ_ULONG_MAX" >&6; }
4320
4321 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether locale.h conforms to POSIX:2001" >&5
4322 $as_echo_n "checking whether locale.h conforms to POSIX:2001... " >&6; }
4323 -if test "${gl_cv_header_locale_h_posix2001+set}" = set; then :
4324 +if ${gl_cv_header_locale_h_posix2001+:} false; then :
4325 $as_echo_n "(cached) " >&6
4326 else
4327 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4328 @@ -33116,7 +33131,7 @@ $as_echo "$gl_cv_header_locale_h_posix2001" >&6; }
4329 HAVE_XLOCALE_H=1
4330 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether locale.h defines locale_t" >&5
4331 $as_echo_n "checking whether locale.h defines locale_t... " >&6; }
4332 -if test "${gl_cv_header_locale_has_locale_t+set}" = set; then :
4333 +if ${gl_cv_header_locale_has_locale_t+:} false; then :
4334 $as_echo_n "(cached) " >&6
4335 else
4336 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4337 @@ -33165,7 +33180,7 @@ $as_echo "$gl_cv_header_locale_has_locale_t" >&6; }
4338 else
4339 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <locale.h>" >&5
4340 $as_echo_n "checking absolute name of <locale.h>... " >&6; }
4341 -if test "${gl_cv_next_locale_h+set}" = set; then :
4342 +if ${gl_cv_next_locale_h+:} false; then :
4343 $as_echo_n "(cached) " >&6
4344 else
4345
4346 @@ -33243,7 +33258,7 @@ done
4347
4348 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a traditional french locale" >&5
4349 $as_echo_n "checking for a traditional french locale... " >&6; }
4350 -if test "${gt_cv_locale_fr+set}" = set; then :
4351 +if ${gt_cv_locale_fr+:} false; then :
4352 $as_echo_n "(cached) " >&6
4353 else
4354
4355 @@ -33375,7 +33390,7 @@ $as_echo "$gt_cv_locale_fr" >&6; }
4356
4357 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a french Unicode locale" >&5
4358 $as_echo_n "checking for a french Unicode locale... " >&6; }
4359 -if test "${gt_cv_locale_fr_utf8+set}" = set; then :
4360 +if ${gt_cv_locale_fr_utf8+:} false; then :
4361 $as_echo_n "(cached) " >&6
4362 else
4363
4364 @@ -33502,7 +33517,7 @@ $as_echo "$gt_cv_locale_fr_utf8" >&6; }
4365
4366 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a traditional japanese locale" >&5
4367 $as_echo_n "checking for a traditional japanese locale... " >&6; }
4368 -if test "${gt_cv_locale_ja+set}" = set; then :
4369 +if ${gt_cv_locale_ja+:} false; then :
4370 $as_echo_n "(cached) " >&6
4371 else
4372
4373 @@ -33640,7 +33655,7 @@ $as_echo "$gt_cv_locale_ja" >&6; }
4374
4375 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a transitional chinese locale" >&5
4376 $as_echo_n "checking for a transitional chinese locale... " >&6; }
4377 -if test "${gt_cv_locale_zh_CN+set}" = set; then :
4378 +if ${gt_cv_locale_zh_CN+:} false; then :
4379 $as_echo_n "(cached) " >&6
4380 else
4381
4382 @@ -33772,7 +33787,7 @@ $as_echo "$gt_cv_locale_zh_CN" >&6; }
4383
4384 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a french Unicode locale" >&5
4385 $as_echo_n "checking for a french Unicode locale... " >&6; }
4386 -if test "${gt_cv_locale_fr_utf8+set}" = set; then :
4387 +if ${gt_cv_locale_fr_utf8+:} false; then :
4388 $as_echo_n "(cached) " >&6
4389 else
4390
4391 @@ -33899,7 +33914,7 @@ $as_echo "$gt_cv_locale_fr_utf8" >&6; }
4392
4393 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a traditional french locale" >&5
4394 $as_echo_n "checking for a traditional french locale... " >&6; }
4395 -if test "${gt_cv_locale_fr+set}" = set; then :
4396 +if ${gt_cv_locale_fr+:} false; then :
4397 $as_echo_n "(cached) " >&6
4398 else
4399
4400 @@ -34031,7 +34046,7 @@ $as_echo "$gt_cv_locale_fr" >&6; }
4401
4402 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a french Unicode locale" >&5
4403 $as_echo_n "checking for a french Unicode locale... " >&6; }
4404 -if test "${gt_cv_locale_fr_utf8+set}" = set; then :
4405 +if ${gt_cv_locale_fr_utf8+:} false; then :
4406 $as_echo_n "(cached) " >&6
4407 else
4408
4409 @@ -34158,7 +34173,7 @@ $as_echo "$gt_cv_locale_fr_utf8" >&6; }
4410
4411 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a traditional japanese locale" >&5
4412 $as_echo_n "checking for a traditional japanese locale... " >&6; }
4413 -if test "${gt_cv_locale_ja+set}" = set; then :
4414 +if ${gt_cv_locale_ja+:} false; then :
4415 $as_echo_n "(cached) " >&6
4416 else
4417
4418 @@ -34296,7 +34311,7 @@ $as_echo "$gt_cv_locale_ja" >&6; }
4419
4420 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a transitional chinese locale" >&5
4421 $as_echo_n "checking for a transitional chinese locale... " >&6; }
4422 -if test "${gt_cv_locale_zh_CN+set}" = set; then :
4423 +if ${gt_cv_locale_zh_CN+:} false; then :
4424 $as_echo_n "(cached) " >&6
4425 else
4426
4427 @@ -34474,7 +34489,7 @@ $as_echo "#define GNULIB_TEST_MBTOWC 1" >>confdefs.h
4428 # fails on HP-UX 11, because MAP_FIXED mappings do not work. But this is
4429 # irrelevant for anonymous mappings.
4430 ac_fn_c_check_func "$LINENO" "mmap" "ac_cv_func_mmap"
4431 -if test "x$ac_cv_func_mmap" = x""yes; then :
4432 +if test "x$ac_cv_func_mmap" = xyes; then :
4433 gl_have_mmap=yes
4434 else
4435 gl_have_mmap=no
4436 @@ -34929,7 +34944,7 @@ if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
4437 for ac_header in paths.h
4438 do :
4439 ac_fn_c_check_header_mongrel "$LINENO" "paths.h" "ac_cv_header_paths_h" "$ac_includes_default"
4440 -if test "x$ac_cv_header_paths_h" = x""yes; then :
4441 +if test "x$ac_cv_header_paths_h" = xyes; then :
4442 cat >>confdefs.h <<_ACEOF
4443 #define HAVE_PATHS_H 1
4444 _ACEOF
4445 @@ -34999,7 +35014,7 @@ fi
4446
4447 ac_fn_c_check_decl "$LINENO" "program_invocation_name" "ac_cv_have_decl_program_invocation_name" "#include <errno.h>
4448 "
4449 -if test "x$ac_cv_have_decl_program_invocation_name" = x""yes; then :
4450 +if test "x$ac_cv_have_decl_program_invocation_name" = xyes; then :
4451 ac_have_decl=1
4452 else
4453 ac_have_decl=0
4454 @@ -35011,7 +35026,7 @@ _ACEOF
4455
4456 ac_fn_c_check_decl "$LINENO" "program_invocation_short_name" "ac_cv_have_decl_program_invocation_short_name" "#include <errno.h>
4457 "
4458 -if test "x$ac_cv_have_decl_program_invocation_short_name" = x""yes; then :
4459 +if test "x$ac_cv_have_decl_program_invocation_short_name" = xyes; then :
4460 ac_have_decl=1
4461 else
4462 ac_have_decl=0
4463 @@ -35025,7 +35040,7 @@ _ACEOF
4464
4465 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for putenv compatible with GNU and SVID" >&5
4466 $as_echo_n "checking for putenv compatible with GNU and SVID... " >&6; }
4467 -if test "${gl_cv_func_svid_putenv+set}" = set; then :
4468 +if ${gl_cv_func_svid_putenv+:} false; then :
4469 $as_echo_n "(cached) " >&6
4470 else
4471 if test "$cross_compiling" = yes; then :
4472 @@ -35113,7 +35128,7 @@ $as_echo "#define GNULIB_TEST_PUTENV 1" >>confdefs.h
4473 # fails on HP-UX 11, because MAP_FIXED mappings do not work. But this is
4474 # irrelevant for anonymous mappings.
4475 ac_fn_c_check_func "$LINENO" "mmap" "ac_cv_func_mmap"
4476 -if test "x$ac_cv_func_mmap" = x""yes; then :
4477 +if test "x$ac_cv_func_mmap" = xyes; then :
4478 gl_have_mmap=yes
4479 else
4480 gl_have_mmap=no
4481 @@ -35232,7 +35247,7 @@ $as_echo "#define GNULIB_TEST_READ 1" >>confdefs.h
4482 for ac_header in stdlib.h
4483 do :
4484 ac_fn_c_check_header_mongrel "$LINENO" "stdlib.h" "ac_cv_header_stdlib_h" "$ac_includes_default"
4485 -if test "x$ac_cv_header_stdlib_h" = x""yes; then :
4486 +if test "x$ac_cv_header_stdlib_h" = xyes; then :
4487 cat >>confdefs.h <<_ACEOF
4488 #define HAVE_STDLIB_H 1
4489 _ACEOF
4490 @@ -35243,7 +35258,7 @@ done
4491
4492 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible realloc" >&5
4493 $as_echo_n "checking for GNU libc compatible realloc... " >&6; }
4494 -if test "${ac_cv_func_realloc_0_nonnull+set}" = set; then :
4495 +if ${ac_cv_func_realloc_0_nonnull+:} false; then :
4496 $as_echo_n "(cached) " >&6
4497 else
4498 if test "$cross_compiling" = yes; then :
4499 @@ -35322,7 +35337,7 @@ _ACEOF
4500 else
4501 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether setenv validates arguments" >&5
4502 $as_echo_n "checking whether setenv validates arguments... " >&6; }
4503 -if test "${gl_cv_func_setenv_works+set}" = set; then :
4504 +if ${gl_cv_func_setenv_works+:} false; then :
4505 $as_echo_n "(cached) " >&6
4506 else
4507 if test "$cross_compiling" = yes; then :
4508 @@ -35461,7 +35476,7 @@ $as_echo "#define GNULIB_TEST_SETLOCALE 1" >>confdefs.h
4509
4510 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a traditional french locale" >&5
4511 $as_echo_n "checking for a traditional french locale... " >&6; }
4512 -if test "${gt_cv_locale_fr+set}" = set; then :
4513 +if ${gt_cv_locale_fr+:} false; then :
4514 $as_echo_n "(cached) " >&6
4515 else
4516
4517 @@ -35593,7 +35608,7 @@ $as_echo "$gt_cv_locale_fr" >&6; }
4518
4519 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a french Unicode locale" >&5
4520 $as_echo_n "checking for a french Unicode locale... " >&6; }
4521 -if test "${gt_cv_locale_fr_utf8+set}" = set; then :
4522 +if ${gt_cv_locale_fr_utf8+:} false; then :
4523 $as_echo_n "(cached) " >&6
4524 else
4525
4526 @@ -35720,7 +35735,7 @@ $as_echo "$gt_cv_locale_fr_utf8" >&6; }
4527
4528 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a traditional japanese locale" >&5
4529 $as_echo_n "checking for a traditional japanese locale... " >&6; }
4530 -if test "${gt_cv_locale_ja+set}" = set; then :
4531 +if ${gt_cv_locale_ja+:} false; then :
4532 $as_echo_n "(cached) " >&6
4533 else
4534
4535 @@ -35858,7 +35873,7 @@ $as_echo "$gt_cv_locale_ja" >&6; }
4536
4537 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a transitional chinese locale" >&5
4538 $as_echo_n "checking for a transitional chinese locale... " >&6; }
4539 -if test "${gt_cv_locale_zh_CN+set}" = set; then :
4540 +if ${gt_cv_locale_zh_CN+:} false; then :
4541 $as_echo_n "(cached) " >&6
4542 else
4543
4544 @@ -36016,7 +36031,7 @@ $as_echo "$gt_cv_locale_zh_CN" >&6; }
4545 else
4546 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <spawn.h>" >&5
4547 $as_echo_n "checking absolute name of <spawn.h>... " >&6; }
4548 -if test "${gl_cv_next_spawn_h+set}" = set; then :
4549 +if ${gl_cv_next_spawn_h+:} false; then :
4550 $as_echo_n "(cached) " >&6
4551 else
4552
4553 @@ -36069,7 +36084,7 @@ $as_echo "$gl_cv_next_spawn_h" >&6; }
4554 #include <spawn.h>
4555
4556 "
4557 -if test "x$ac_cv_type_posix_spawnattr_t" = x""yes; then :
4558 +if test "x$ac_cv_type_posix_spawnattr_t" = xyes; then :
4559
4560 cat >>confdefs.h <<_ACEOF
4561 #define HAVE_POSIX_SPAWNATTR_T 1
4562 @@ -36084,7 +36099,7 @@ fi
4563 #include <spawn.h>
4564
4565 "
4566 -if test "x$ac_cv_type_posix_spawn_file_actions_t" = x""yes; then :
4567 +if test "x$ac_cv_type_posix_spawn_file_actions_t" = xyes; then :
4568
4569 cat >>confdefs.h <<_ACEOF
4570 #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1
4571 @@ -36122,7 +36137,7 @@ fi
4572 ac_fn_c_check_member "$LINENO" "struct stat" "st_atim.tv_nsec" "ac_cv_member_struct_stat_st_atim_tv_nsec" "#include <sys/types.h>
4573 #include <sys/stat.h>
4574 "
4575 -if test "x$ac_cv_member_struct_stat_st_atim_tv_nsec" = x""yes; then :
4576 +if test "x$ac_cv_member_struct_stat_st_atim_tv_nsec" = xyes; then :
4577
4578 cat >>confdefs.h <<_ACEOF
4579 #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
4580 @@ -36130,7 +36145,7 @@ _ACEOF
4581
4582 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether struct stat.st_atim is of type struct timespec" >&5
4583 $as_echo_n "checking whether struct stat.st_atim is of type struct timespec... " >&6; }
4584 -if test "${ac_cv_typeof_struct_stat_st_atim_is_struct_timespec+set}" = set; then :
4585 +if ${ac_cv_typeof_struct_stat_st_atim_is_struct_timespec+:} false; then :
4586 $as_echo_n "(cached) " >&6
4587 else
4588 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4589 @@ -36173,7 +36188,7 @@ else
4590 ac_fn_c_check_member "$LINENO" "struct stat" "st_atimespec.tv_nsec" "ac_cv_member_struct_stat_st_atimespec_tv_nsec" "#include <sys/types.h>
4591 #include <sys/stat.h>
4592 "
4593 -if test "x$ac_cv_member_struct_stat_st_atimespec_tv_nsec" = x""yes; then :
4594 +if test "x$ac_cv_member_struct_stat_st_atimespec_tv_nsec" = xyes; then :
4595
4596 cat >>confdefs.h <<_ACEOF
4597 #define HAVE_STRUCT_STAT_ST_ATIMESPEC_TV_NSEC 1
4598 @@ -36184,7 +36199,7 @@ else
4599 ac_fn_c_check_member "$LINENO" "struct stat" "st_atimensec" "ac_cv_member_struct_stat_st_atimensec" "#include <sys/types.h>
4600 #include <sys/stat.h>
4601 "
4602 -if test "x$ac_cv_member_struct_stat_st_atimensec" = x""yes; then :
4603 +if test "x$ac_cv_member_struct_stat_st_atimensec" = xyes; then :
4604
4605 cat >>confdefs.h <<_ACEOF
4606 #define HAVE_STRUCT_STAT_ST_ATIMENSEC 1
4607 @@ -36195,7 +36210,7 @@ else
4608 ac_fn_c_check_member "$LINENO" "struct stat" "st_atim.st__tim.tv_nsec" "ac_cv_member_struct_stat_st_atim_st__tim_tv_nsec" "#include <sys/types.h>
4609 #include <sys/stat.h>
4610 "
4611 -if test "x$ac_cv_member_struct_stat_st_atim_st__tim_tv_nsec" = x""yes; then :
4612 +if test "x$ac_cv_member_struct_stat_st_atim_st__tim_tv_nsec" = xyes; then :
4613
4614 cat >>confdefs.h <<_ACEOF
4615 #define HAVE_STRUCT_STAT_ST_ATIM_ST__TIM_TV_NSEC 1
4616 @@ -36224,7 +36239,7 @@ fi
4617 ac_fn_c_check_member "$LINENO" "struct stat" "st_birthtimespec.tv_nsec" "ac_cv_member_struct_stat_st_birthtimespec_tv_nsec" "#include <sys/types.h>
4618 #include <sys/stat.h>
4619 "
4620 -if test "x$ac_cv_member_struct_stat_st_birthtimespec_tv_nsec" = x""yes; then :
4621 +if test "x$ac_cv_member_struct_stat_st_birthtimespec_tv_nsec" = xyes; then :
4622
4623 cat >>confdefs.h <<_ACEOF
4624 #define HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC 1
4625 @@ -36235,7 +36250,7 @@ else
4626 ac_fn_c_check_member "$LINENO" "struct stat" "st_birthtimensec" "ac_cv_member_struct_stat_st_birthtimensec" "#include <sys/types.h>
4627 #include <sys/stat.h>
4628 "
4629 -if test "x$ac_cv_member_struct_stat_st_birthtimensec" = x""yes; then :
4630 +if test "x$ac_cv_member_struct_stat_st_birthtimensec" = xyes; then :
4631
4632 cat >>confdefs.h <<_ACEOF
4633 #define HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC 1
4634 @@ -36246,7 +36261,7 @@ else
4635 ac_fn_c_check_member "$LINENO" "struct stat" "st_birthtim.tv_nsec" "ac_cv_member_struct_stat_st_birthtim_tv_nsec" "#include <sys/types.h>
4636 #include <sys/stat.h>
4637 "
4638 -if test "x$ac_cv_member_struct_stat_st_birthtim_tv_nsec" = x""yes; then :
4639 +if test "x$ac_cv_member_struct_stat_st_birthtim_tv_nsec" = xyes; then :
4640
4641 cat >>confdefs.h <<_ACEOF
4642 #define HAVE_STRUCT_STAT_ST_BIRTHTIM_TV_NSEC 1
4643 @@ -36263,7 +36278,7 @@ fi
4644
4645 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wchar_t" >&5
4646 $as_echo_n "checking for wchar_t... " >&6; }
4647 -if test "${gt_cv_c_wchar_t+set}" = set; then :
4648 +if ${gt_cv_c_wchar_t+:} false; then :
4649 $as_echo_n "(cached) " >&6
4650 else
4651 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4652 @@ -36296,7 +36311,7 @@ $as_echo "#define HAVE_WCHAR_T 1" >>confdefs.h
4653
4654 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wint_t" >&5
4655 $as_echo_n "checking for wint_t... " >&6; }
4656 -if test "${gt_cv_c_wint_t+set}" = set; then :
4657 +if ${gt_cv_c_wint_t+:} false; then :
4658 $as_echo_n "(cached) " >&6
4659 else
4660 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4661 @@ -36341,7 +36356,7 @@ $as_echo "#define HAVE_WINT_T 1" >>confdefs.h
4662 # fails on HP-UX 11, because MAP_FIXED mappings do not work. But this is
4663 # irrelevant for anonymous mappings.
4664 ac_fn_c_check_func "$LINENO" "mmap" "ac_cv_func_mmap"
4665 -if test "x$ac_cv_func_mmap" = x""yes; then :
4666 +if test "x$ac_cv_func_mmap" = xyes; then :
4667 gl_have_mmap=yes
4668 else
4669 gl_have_mmap=no
4670 @@ -36425,7 +36440,7 @@ $as_echo "#define HAVE_MAP_ANONYMOUS 1" >>confdefs.h
4671 else
4672 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether symlink handles trailing slash correctly" >&5
4673 $as_echo_n "checking whether symlink handles trailing slash correctly... " >&6; }
4674 -if test "${gl_cv_func_symlink_works+set}" = set; then :
4675 +if ${gl_cv_func_symlink_works+:} false; then :
4676 $as_echo_n "(cached) " >&6
4677 else
4678 if test "$cross_compiling" = yes; then :
4679 @@ -36519,7 +36534,7 @@ $as_echo "#define GNULIB_TEST_SYMLINK 1" >>confdefs.h
4680 for ac_func in pthread_atfork
4681 do :
4682 ac_fn_c_check_func "$LINENO" "pthread_atfork" "ac_cv_func_pthread_atfork"
4683 -if test "x$ac_cv_func_pthread_atfork" = x""yes; then :
4684 +if test "x$ac_cv_func_pthread_atfork" = xyes; then :
4685 cat >>confdefs.h <<_ACEOF
4686 #define HAVE_PTHREAD_ATFORK 1
4687 _ACEOF
4688 @@ -36545,7 +36560,7 @@ done
4689 for ac_func in unsetenv
4690 do :
4691 ac_fn_c_check_func "$LINENO" "unsetenv" "ac_cv_func_unsetenv"
4692 -if test "x$ac_cv_func_unsetenv" = x""yes; then :
4693 +if test "x$ac_cv_func_unsetenv" = xyes; then :
4694 cat >>confdefs.h <<_ACEOF
4695 #define HAVE_UNSETENV 1
4696 _ACEOF
4697 @@ -36559,7 +36574,7 @@ done
4698 HAVE_UNSETENV=1
4699 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for unsetenv() return type" >&5
4700 $as_echo_n "checking for unsetenv() return type... " >&6; }
4701 -if test "${gt_cv_func_unsetenv_ret+set}" = set; then :
4702 +if ${gt_cv_func_unsetenv_ret+:} false; then :
4703 $as_echo_n "(cached) " >&6
4704 else
4705 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4706 @@ -36604,7 +36619,7 @@ $as_echo "#define VOID_UNSETENV 1" >>confdefs.h
4707
4708 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether unsetenv obeys POSIX" >&5
4709 $as_echo_n "checking whether unsetenv obeys POSIX... " >&6; }
4710 -if test "${gl_cv_func_unsetenv_works+set}" = set; then :
4711 +if ${gl_cv_func_unsetenv_works+:} false; then :
4712 $as_echo_n "(cached) " >&6
4713 else
4714 if test "$cross_compiling" = yes; then :
4715 @@ -36709,7 +36724,7 @@ abs_aux_dir=`cd "$ac_aux_dir"; pwd`
4716 for ac_func in waitid
4717 do :
4718 ac_fn_c_check_func "$LINENO" "waitid" "ac_cv_func_waitid"
4719 -if test "x$ac_cv_func_waitid" = x""yes; then :
4720 +if test "x$ac_cv_func_waitid" = xyes; then :
4721 cat >>confdefs.h <<_ACEOF
4722 #define HAVE_WAITID 1
4723 _ACEOF
4724 @@ -36746,7 +36761,7 @@ done
4725
4726 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether mbrtowc handles incomplete characters" >&5
4727 $as_echo_n "checking whether mbrtowc handles incomplete characters... " >&6; }
4728 -if test "${gl_cv_func_mbrtowc_incomplete_state+set}" = set; then :
4729 +if ${gl_cv_func_mbrtowc_incomplete_state+:} false; then :
4730 $as_echo_n "(cached) " >&6
4731 else
4732
4733 @@ -36809,7 +36824,7 @@ $as_echo "$gl_cv_func_mbrtowc_incomplete_state" >&6; }
4734
4735 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether mbrtowc works as well as mbtowc" >&5
4736 $as_echo_n "checking whether mbrtowc works as well as mbtowc... " >&6; }
4737 -if test "${gl_cv_func_mbrtowc_sanitycheck+set}" = set; then :
4738 +if ${gl_cv_func_mbrtowc_sanitycheck+:} false; then :
4739 $as_echo_n "(cached) " >&6
4740 else
4741
4742 @@ -36905,7 +36920,7 @@ $as_echo "$gl_cv_func_mbrtowc_sanitycheck" >&6; }
4743
4744 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether wcrtomb return value is correct" >&5
4745 $as_echo_n "checking whether wcrtomb return value is correct... " >&6; }
4746 -if test "${gl_cv_func_wcrtomb_retval+set}" = set; then :
4747 +if ${gl_cv_func_wcrtomb_retval+:} false; then :
4748 $as_echo_n "(cached) " >&6
4749 else
4750
4751 @@ -37020,7 +37035,7 @@ $as_echo "#define GNULIB_TEST_WCRTOMB 1" >>confdefs.h
4752
4753 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a traditional french locale" >&5
4754 $as_echo_n "checking for a traditional french locale... " >&6; }
4755 -if test "${gt_cv_locale_fr+set}" = set; then :
4756 +if ${gt_cv_locale_fr+:} false; then :
4757 $as_echo_n "(cached) " >&6
4758 else
4759
4760 @@ -37152,7 +37167,7 @@ $as_echo "$gt_cv_locale_fr" >&6; }
4761
4762 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a french Unicode locale" >&5
4763 $as_echo_n "checking for a french Unicode locale... " >&6; }
4764 -if test "${gt_cv_locale_fr_utf8+set}" = set; then :
4765 +if ${gt_cv_locale_fr_utf8+:} false; then :
4766 $as_echo_n "(cached) " >&6
4767 else
4768
4769 @@ -37279,7 +37294,7 @@ $as_echo "$gt_cv_locale_fr_utf8" >&6; }
4770
4771 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a traditional japanese locale" >&5
4772 $as_echo_n "checking for a traditional japanese locale... " >&6; }
4773 -if test "${gt_cv_locale_ja+set}" = set; then :
4774 +if ${gt_cv_locale_ja+:} false; then :
4775 $as_echo_n "(cached) " >&6
4776 else
4777
4778 @@ -37417,7 +37432,7 @@ $as_echo "$gt_cv_locale_ja" >&6; }
4779
4780 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a transitional chinese locale" >&5
4781 $as_echo_n "checking for a transitional chinese locale... " >&6; }
4782 -if test "${gt_cv_locale_zh_CN+set}" = set; then :
4783 +if ${gt_cv_locale_zh_CN+:} false; then :
4784 $as_echo_n "(cached) " >&6
4785 else
4786
4787 @@ -37565,7 +37580,7 @@ $as_echo "$gt_cv_locale_zh_CN" >&6; }
4788
4789 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether wctob works" >&5
4790 $as_echo_n "checking whether wctob works... " >&6; }
4791 -if test "${gl_cv_func_wctob_works+set}" = set; then :
4792 +if ${gl_cv_func_wctob_works+:} false; then :
4793 $as_echo_n "(cached) " >&6
4794 else
4795
4796 @@ -37680,7 +37695,7 @@ $as_echo "$gl_cv_func_wctob_works" >&6; }
4797 #include <wchar.h>
4798
4799 "
4800 -if test "x$ac_cv_have_decl_wctob" = x""yes; then :
4801 +if test "x$ac_cv_have_decl_wctob" = xyes; then :
4802 ac_have_decl=1
4803 else
4804 ac_have_decl=0
4805 @@ -37842,7 +37857,7 @@ $as_echo "#define GNULIB_TEST_WRITE 1" >>confdefs.h
4806 if test $gl_threads_api = posix; then
4807 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sched_yield in -lrt" >&5
4808 $as_echo_n "checking for sched_yield in -lrt... " >&6; }
4809 -if test "${ac_cv_lib_rt_sched_yield+set}" = set; then :
4810 +if ${ac_cv_lib_rt_sched_yield+:} false; then :
4811 $as_echo_n "(cached) " >&6
4812 else
4813 ac_check_lib_save_LIBS=$LIBS
4814 @@ -37876,12 +37891,12 @@ LIBS=$ac_check_lib_save_LIBS
4815 fi
4816 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_sched_yield" >&5
4817 $as_echo "$ac_cv_lib_rt_sched_yield" >&6; }
4818 -if test "x$ac_cv_lib_rt_sched_yield" = x""yes; then :
4819 +if test "x$ac_cv_lib_rt_sched_yield" = xyes; then :
4820 YIELD_LIB=-lrt
4821 else
4822 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sched_yield in -lposix4" >&5
4823 $as_echo_n "checking for sched_yield in -lposix4... " >&6; }
4824 -if test "${ac_cv_lib_posix4_sched_yield+set}" = set; then :
4825 +if ${ac_cv_lib_posix4_sched_yield+:} false; then :
4826 $as_echo_n "(cached) " >&6
4827 else
4828 ac_check_lib_save_LIBS=$LIBS
4829 @@ -37915,7 +37930,7 @@ LIBS=$ac_check_lib_save_LIBS
4830 fi
4831 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix4_sched_yield" >&5
4832 $as_echo "$ac_cv_lib_posix4_sched_yield" >&6; }
4833 -if test "x$ac_cv_lib_posix4_sched_yield" = x""yes; then :
4834 +if test "x$ac_cv_lib_posix4_sched_yield" = xyes; then :
4835 YIELD_LIB=-lposix4
4836 fi
4837
4838 @@ -37940,7 +37955,7 @@ fi
4839
4840 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uid_t in sys/types.h" >&5
4841 $as_echo_n "checking for uid_t in sys/types.h... " >&6; }
4842 -if test "${ac_cv_type_uid_t+set}" = set; then :
4843 +if ${ac_cv_type_uid_t+:} false; then :
4844 $as_echo_n "(cached) " >&6
4845 else
4846 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4847 @@ -37996,7 +38011,7 @@ fi
4848 for ac_header in string.h
4849 do :
4850 ac_fn_c_check_header_mongrel "$LINENO" "string.h" "ac_cv_header_string_h" "$ac_includes_default"
4851 -if test "x$ac_cv_header_string_h" = x""yes; then :
4852 +if test "x$ac_cv_header_string_h" = xyes; then :
4853 cat >>confdefs.h <<_ACEOF
4854 #define HAVE_STRING_H 1
4855 _ACEOF
4856 @@ -38017,7 +38032,7 @@ case $host in
4857 set dummy ${ac_tool_prefix}as; ac_word=$2
4858 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4859 $as_echo_n "checking for $ac_word... " >&6; }
4860 -if test "${ac_cv_prog_AS+set}" = set; then :
4861 +if ${ac_cv_prog_AS+:} false; then :
4862 $as_echo_n "(cached) " >&6
4863 else
4864 if test -n "$AS"; then
4865 @@ -38057,7 +38072,7 @@ if test -z "$ac_cv_prog_AS"; then
4866 set dummy as; ac_word=$2
4867 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4868 $as_echo_n "checking for $ac_word... " >&6; }
4869 -if test "${ac_cv_prog_ac_ct_AS+set}" = set; then :
4870 +if ${ac_cv_prog_ac_ct_AS+:} false; then :
4871 $as_echo_n "(cached) " >&6
4872 else
4873 if test -n "$ac_ct_AS"; then
4874 @@ -38109,7 +38124,7 @@ fi
4875 set dummy ${ac_tool_prefix}dlltool; ac_word=$2
4876 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4877 $as_echo_n "checking for $ac_word... " >&6; }
4878 -if test "${ac_cv_prog_DLLTOOL+set}" = set; then :
4879 +if ${ac_cv_prog_DLLTOOL+:} false; then :
4880 $as_echo_n "(cached) " >&6
4881 else
4882 if test -n "$DLLTOOL"; then
4883 @@ -38149,7 +38164,7 @@ if test -z "$ac_cv_prog_DLLTOOL"; then
4884 set dummy dlltool; ac_word=$2
4885 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4886 $as_echo_n "checking for $ac_word... " >&6; }
4887 -if test "${ac_cv_prog_ac_ct_DLLTOOL+set}" = set; then :
4888 +if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then :
4889 $as_echo_n "(cached) " >&6
4890 else
4891 if test -n "$ac_ct_DLLTOOL"; then
4892 @@ -38201,7 +38216,7 @@ fi
4893 set dummy ${ac_tool_prefix}objdump; ac_word=$2
4894 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4895 $as_echo_n "checking for $ac_word... " >&6; }
4896 -if test "${ac_cv_prog_OBJDUMP+set}" = set; then :
4897 +if ${ac_cv_prog_OBJDUMP+:} false; then :
4898 $as_echo_n "(cached) " >&6
4899 else
4900 if test -n "$OBJDUMP"; then
4901 @@ -38241,7 +38256,7 @@ if test -z "$ac_cv_prog_OBJDUMP"; then
4902 set dummy objdump; ac_word=$2
4903 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4904 $as_echo_n "checking for $ac_word... " >&6; }
4905 -if test "${ac_cv_prog_ac_ct_OBJDUMP+set}" = set; then :
4906 +if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then :
4907 $as_echo_n "(cached) " >&6
4908 else
4909 if test -n "$ac_ct_OBJDUMP"; then
4910 @@ -38408,7 +38423,7 @@ esac
4911
4912 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5
4913 $as_echo_n "checking for a sed that does not truncate output... " >&6; }
4914 -if test "${ac_cv_path_SED+set}" = set; then :
4915 +if ${ac_cv_path_SED+:} false; then :
4916 $as_echo_n "(cached) " >&6
4917 else
4918 ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/
4919 @@ -38490,7 +38505,7 @@ Xsed="$SED -e 1s/^X//"
4920
4921 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5
4922 $as_echo_n "checking for fgrep... " >&6; }
4923 -if test "${ac_cv_path_FGREP+set}" = set; then :
4924 +if ${ac_cv_path_FGREP+:} false; then :
4925 $as_echo_n "(cached) " >&6
4926 else
4927 if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1
4928 @@ -38621,7 +38636,7 @@ else
4929 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5
4930 $as_echo_n "checking for non-GNU ld... " >&6; }
4931 fi
4932 -if test "${lt_cv_path_LD+set}" = set; then :
4933 +if ${lt_cv_path_LD+:} false; then :
4934 $as_echo_n "(cached) " >&6
4935 else
4936 if test -z "$LD"; then
4937 @@ -38661,7 +38676,7 @@ fi
4938 test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
4939 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
4940 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
4941 -if test "${lt_cv_prog_gnu_ld+set}" = set; then :
4942 +if ${lt_cv_prog_gnu_ld+:} false; then :
4943 $as_echo_n "(cached) " >&6
4944 else
4945 # I'd rather use --version here, but apparently some GNU lds only accept -v.
4946 @@ -38688,7 +38703,7 @@ with_gnu_ld=$lt_cv_prog_gnu_ld
4947
4948 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5
4949 $as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; }
4950 -if test "${lt_cv_path_NM+set}" = set; then :
4951 +if ${lt_cv_path_NM+:} false; then :
4952 $as_echo_n "(cached) " >&6
4953 else
4954 if test -n "$NM"; then
4955 @@ -38751,7 +38766,7 @@ else
4956 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
4957 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4958 $as_echo_n "checking for $ac_word... " >&6; }
4959 -if test "${ac_cv_prog_DUMPBIN+set}" = set; then :
4960 +if ${ac_cv_prog_DUMPBIN+:} false; then :
4961 $as_echo_n "(cached) " >&6
4962 else
4963 if test -n "$DUMPBIN"; then
4964 @@ -38795,7 +38810,7 @@ do
4965 set dummy $ac_prog; ac_word=$2
4966 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4967 $as_echo_n "checking for $ac_word... " >&6; }
4968 -if test "${ac_cv_prog_ac_ct_DUMPBIN+set}" = set; then :
4969 +if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then :
4970 $as_echo_n "(cached) " >&6
4971 else
4972 if test -n "$ac_ct_DUMPBIN"; then
4973 @@ -38867,7 +38882,7 @@ test -z "$NM" && NM=nm
4974
4975 { $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5
4976 $as_echo_n "checking the name lister ($NM) interface... " >&6; }
4977 -if test "${lt_cv_nm_interface+set}" = set; then :
4978 +if ${lt_cv_nm_interface+:} false; then :
4979 $as_echo_n "(cached) " >&6
4980 else
4981 lt_cv_nm_interface="BSD nm"
4982 @@ -38902,7 +38917,7 @@ fi
4983 # find the maximum length of command line arguments
4984 { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5
4985 $as_echo_n "checking the maximum length of command line arguments... " >&6; }
4986 -if test "${lt_cv_sys_max_cmd_len+set}" = set; then :
4987 +if ${lt_cv_sys_max_cmd_len+:} false; then :
4988 $as_echo_n "(cached) " >&6
4989 else
4990 i=0
4991 @@ -39099,7 +39114,7 @@ esac
4992
4993 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5
4994 $as_echo_n "checking for $LD option to reload object files... " >&6; }
4995 -if test "${lt_cv_ld_reload_flag+set}" = set; then :
4996 +if ${lt_cv_ld_reload_flag+:} false; then :
4997 $as_echo_n "(cached) " >&6
4998 else
4999 lt_cv_ld_reload_flag='-r'
5000 @@ -39135,7 +39150,7 @@ if test -n "$ac_tool_prefix"; then
5001 set dummy ${ac_tool_prefix}objdump; ac_word=$2
5002 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5003 $as_echo_n "checking for $ac_word... " >&6; }
5004 -if test "${ac_cv_prog_OBJDUMP+set}" = set; then :
5005 +if ${ac_cv_prog_OBJDUMP+:} false; then :
5006 $as_echo_n "(cached) " >&6
5007 else
5008 if test -n "$OBJDUMP"; then
5009 @@ -39175,7 +39190,7 @@ if test -z "$ac_cv_prog_OBJDUMP"; then
5010 set dummy objdump; ac_word=$2
5011 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5012 $as_echo_n "checking for $ac_word... " >&6; }
5013 -if test "${ac_cv_prog_ac_ct_OBJDUMP+set}" = set; then :
5014 +if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then :
5015 $as_echo_n "(cached) " >&6
5016 else
5017 if test -n "$ac_ct_OBJDUMP"; then
5018 @@ -39231,7 +39246,7 @@ test -z "$OBJDUMP" && OBJDUMP=objdump
5019
5020 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5
5021 $as_echo_n "checking how to recognize dependent libraries... " >&6; }
5022 -if test "${lt_cv_deplibs_check_method+set}" = set; then :
5023 +if ${lt_cv_deplibs_check_method+:} false; then :
5024 $as_echo_n "(cached) " >&6
5025 else
5026 lt_cv_file_magic_cmd='$MAGIC_CMD'
5027 @@ -39453,7 +39468,7 @@ if test -n "$ac_tool_prefix"; then
5028 set dummy ${ac_tool_prefix}ar; ac_word=$2
5029 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5030 $as_echo_n "checking for $ac_word... " >&6; }
5031 -if test "${ac_cv_prog_AR+set}" = set; then :
5032 +if ${ac_cv_prog_AR+:} false; then :
5033 $as_echo_n "(cached) " >&6
5034 else
5035 if test -n "$AR"; then
5036 @@ -39493,7 +39508,7 @@ if test -z "$ac_cv_prog_AR"; then
5037 set dummy ar; ac_word=$2
5038 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5039 $as_echo_n "checking for $ac_word... " >&6; }
5040 -if test "${ac_cv_prog_ac_ct_AR+set}" = set; then :
5041 +if ${ac_cv_prog_ac_ct_AR+:} false; then :
5042 $as_echo_n "(cached) " >&6
5043 else
5044 if test -n "$ac_ct_AR"; then
5045 @@ -39558,7 +39573,7 @@ if test -n "$ac_tool_prefix"; then
5046 set dummy ${ac_tool_prefix}strip; ac_word=$2
5047 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5048 $as_echo_n "checking for $ac_word... " >&6; }
5049 -if test "${ac_cv_prog_STRIP+set}" = set; then :
5050 +if ${ac_cv_prog_STRIP+:} false; then :
5051 $as_echo_n "(cached) " >&6
5052 else
5053 if test -n "$STRIP"; then
5054 @@ -39598,7 +39613,7 @@ if test -z "$ac_cv_prog_STRIP"; then
5055 set dummy strip; ac_word=$2
5056 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5057 $as_echo_n "checking for $ac_word... " >&6; }
5058 -if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then :
5059 +if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
5060 $as_echo_n "(cached) " >&6
5061 else
5062 if test -n "$ac_ct_STRIP"; then
5063 @@ -39657,7 +39672,7 @@ if test -n "$ac_tool_prefix"; then
5064 set dummy ${ac_tool_prefix}ranlib; ac_word=$2
5065 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5066 $as_echo_n "checking for $ac_word... " >&6; }
5067 -if test "${ac_cv_prog_RANLIB+set}" = set; then :
5068 +if ${ac_cv_prog_RANLIB+:} false; then :
5069 $as_echo_n "(cached) " >&6
5070 else
5071 if test -n "$RANLIB"; then
5072 @@ -39697,7 +39712,7 @@ if test -z "$ac_cv_prog_RANLIB"; then
5073 set dummy ranlib; ac_word=$2
5074 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5075 $as_echo_n "checking for $ac_word... " >&6; }
5076 -if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then :
5077 +if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
5078 $as_echo_n "(cached) " >&6
5079 else
5080 if test -n "$ac_ct_RANLIB"; then
5081 @@ -39826,7 +39841,7 @@ compiler=$CC
5082 # Check for command to grab the raw symbol name followed by C symbol from nm.
5083 { $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5
5084 $as_echo_n "checking command to parse $NM output from $compiler object... " >&6; }
5085 -if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then :
5086 +if ${lt_cv_sys_global_symbol_pipe+:} false; then :
5087 $as_echo_n "(cached) " >&6
5088 else
5089
5090 @@ -40197,7 +40212,7 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
5091 CFLAGS="$CFLAGS -belf"
5092 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5
5093 $as_echo_n "checking whether the C compiler needs -belf... " >&6; }
5094 -if test "${lt_cv_cc_needs_belf+set}" = set; then :
5095 +if ${lt_cv_cc_needs_belf+:} false; then :
5096 $as_echo_n "(cached) " >&6
5097 else
5098 ac_ext=c
5099 @@ -40273,7 +40288,7 @@ need_locks="$enable_libtool_lock"
5100 set dummy ${ac_tool_prefix}dsymutil; ac_word=$2
5101 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5102 $as_echo_n "checking for $ac_word... " >&6; }
5103 -if test "${ac_cv_prog_DSYMUTIL+set}" = set; then :
5104 +if ${ac_cv_prog_DSYMUTIL+:} false; then :
5105 $as_echo_n "(cached) " >&6
5106 else
5107 if test -n "$DSYMUTIL"; then
5108 @@ -40313,7 +40328,7 @@ if test -z "$ac_cv_prog_DSYMUTIL"; then
5109 set dummy dsymutil; ac_word=$2
5110 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5111 $as_echo_n "checking for $ac_word... " >&6; }
5112 -if test "${ac_cv_prog_ac_ct_DSYMUTIL+set}" = set; then :
5113 +if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then :
5114 $as_echo_n "(cached) " >&6
5115 else
5116 if test -n "$ac_ct_DSYMUTIL"; then
5117 @@ -40365,7 +40380,7 @@ fi
5118 set dummy ${ac_tool_prefix}nmedit; ac_word=$2
5119 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5120 $as_echo_n "checking for $ac_word... " >&6; }
5121 -if test "${ac_cv_prog_NMEDIT+set}" = set; then :
5122 +if ${ac_cv_prog_NMEDIT+:} false; then :
5123 $as_echo_n "(cached) " >&6
5124 else
5125 if test -n "$NMEDIT"; then
5126 @@ -40405,7 +40420,7 @@ if test -z "$ac_cv_prog_NMEDIT"; then
5127 set dummy nmedit; ac_word=$2
5128 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5129 $as_echo_n "checking for $ac_word... " >&6; }
5130 -if test "${ac_cv_prog_ac_ct_NMEDIT+set}" = set; then :
5131 +if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then :
5132 $as_echo_n "(cached) " >&6
5133 else
5134 if test -n "$ac_ct_NMEDIT"; then
5135 @@ -40457,7 +40472,7 @@ fi
5136 set dummy ${ac_tool_prefix}lipo; ac_word=$2
5137 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5138 $as_echo_n "checking for $ac_word... " >&6; }
5139 -if test "${ac_cv_prog_LIPO+set}" = set; then :
5140 +if ${ac_cv_prog_LIPO+:} false; then :
5141 $as_echo_n "(cached) " >&6
5142 else
5143 if test -n "$LIPO"; then
5144 @@ -40497,7 +40512,7 @@ if test -z "$ac_cv_prog_LIPO"; then
5145 set dummy lipo; ac_word=$2
5146 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5147 $as_echo_n "checking for $ac_word... " >&6; }
5148 -if test "${ac_cv_prog_ac_ct_LIPO+set}" = set; then :
5149 +if ${ac_cv_prog_ac_ct_LIPO+:} false; then :
5150 $as_echo_n "(cached) " >&6
5151 else
5152 if test -n "$ac_ct_LIPO"; then
5153 @@ -40549,7 +40564,7 @@ fi
5154 set dummy ${ac_tool_prefix}otool; ac_word=$2
5155 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5156 $as_echo_n "checking for $ac_word... " >&6; }
5157 -if test "${ac_cv_prog_OTOOL+set}" = set; then :
5158 +if ${ac_cv_prog_OTOOL+:} false; then :
5159 $as_echo_n "(cached) " >&6
5160 else
5161 if test -n "$OTOOL"; then
5162 @@ -40589,7 +40604,7 @@ if test -z "$ac_cv_prog_OTOOL"; then
5163 set dummy otool; ac_word=$2
5164 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5165 $as_echo_n "checking for $ac_word... " >&6; }
5166 -if test "${ac_cv_prog_ac_ct_OTOOL+set}" = set; then :
5167 +if ${ac_cv_prog_ac_ct_OTOOL+:} false; then :
5168 $as_echo_n "(cached) " >&6
5169 else
5170 if test -n "$ac_ct_OTOOL"; then
5171 @@ -40641,7 +40656,7 @@ fi
5172 set dummy ${ac_tool_prefix}otool64; ac_word=$2
5173 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5174 $as_echo_n "checking for $ac_word... " >&6; }
5175 -if test "${ac_cv_prog_OTOOL64+set}" = set; then :
5176 +if ${ac_cv_prog_OTOOL64+:} false; then :
5177 $as_echo_n "(cached) " >&6
5178 else
5179 if test -n "$OTOOL64"; then
5180 @@ -40681,7 +40696,7 @@ if test -z "$ac_cv_prog_OTOOL64"; then
5181 set dummy otool64; ac_word=$2
5182 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5183 $as_echo_n "checking for $ac_word... " >&6; }
5184 -if test "${ac_cv_prog_ac_ct_OTOOL64+set}" = set; then :
5185 +if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then :
5186 $as_echo_n "(cached) " >&6
5187 else
5188 if test -n "$ac_ct_OTOOL64"; then
5189 @@ -40756,7 +40771,7 @@ fi
5190
5191 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5
5192 $as_echo_n "checking for -single_module linker flag... " >&6; }
5193 -if test "${lt_cv_apple_cc_single_mod+set}" = set; then :
5194 +if ${lt_cv_apple_cc_single_mod+:} false; then :
5195 $as_echo_n "(cached) " >&6
5196 else
5197 lt_cv_apple_cc_single_mod=no
5198 @@ -40785,7 +40800,7 @@ fi
5199 $as_echo "$lt_cv_apple_cc_single_mod" >&6; }
5200 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5
5201 $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; }
5202 -if test "${lt_cv_ld_exported_symbols_list+set}" = set; then :
5203 +if ${lt_cv_ld_exported_symbols_list+:} false; then :
5204 $as_echo_n "(cached) " >&6
5205 else
5206 lt_cv_ld_exported_symbols_list=no
5207 @@ -40817,7 +40832,7 @@ fi
5208 $as_echo "$lt_cv_ld_exported_symbols_list" >&6; }
5209 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5
5210 $as_echo_n "checking for -force_load linker flag... " >&6; }
5211 -if test "${lt_cv_ld_force_load+set}" = set; then :
5212 +if ${lt_cv_ld_force_load+:} false; then :
5213 $as_echo_n "(cached) " >&6
5214 else
5215 lt_cv_ld_force_load=no
5216 @@ -40886,7 +40901,7 @@ for ac_header in dlfcn.h
5217 do :
5218 ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default
5219 "
5220 -if test "x$ac_cv_header_dlfcn_h" = x""yes; then :
5221 +if test "x$ac_cv_header_dlfcn_h" = xyes; then :
5222 cat >>confdefs.h <<_ACEOF
5223 #define HAVE_DLFCN_H 1
5224 _ACEOF
5225 @@ -41071,7 +41086,7 @@ fi
5226
5227 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5
5228 $as_echo_n "checking for objdir... " >&6; }
5229 -if test "${lt_cv_objdir+set}" = set; then :
5230 +if ${lt_cv_objdir+:} false; then :
5231 $as_echo_n "(cached) " >&6
5232 else
5233 rm -f .libs 2>/dev/null
5234 @@ -41149,7 +41164,7 @@ file_magic*)
5235 if test "$file_magic_cmd" = '$MAGIC_CMD'; then
5236 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5
5237 $as_echo_n "checking for ${ac_tool_prefix}file... " >&6; }
5238 -if test "${lt_cv_path_MAGIC_CMD+set}" = set; then :
5239 +if ${lt_cv_path_MAGIC_CMD+:} false; then :
5240 $as_echo_n "(cached) " >&6
5241 else
5242 case $MAGIC_CMD in
5243 @@ -41215,7 +41230,7 @@ if test -z "$lt_cv_path_MAGIC_CMD"; then
5244 if test -n "$ac_tool_prefix"; then
5245 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5
5246 $as_echo_n "checking for file... " >&6; }
5247 -if test "${lt_cv_path_MAGIC_CMD+set}" = set; then :
5248 +if ${lt_cv_path_MAGIC_CMD+:} false; then :
5249 $as_echo_n "(cached) " >&6
5250 else
5251 case $MAGIC_CMD in
5252 @@ -41357,7 +41372,7 @@ if test "$GCC" = yes; then
5253
5254 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5
5255 $as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; }
5256 -if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then :
5257 +if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then :
5258 $as_echo_n "(cached) " >&6
5259 else
5260 lt_cv_prog_compiler_rtti_exceptions=no
5261 @@ -41709,7 +41724,7 @@ $as_echo "$lt_prog_compiler_pic" >&6; }
5262 if test -n "$lt_prog_compiler_pic"; then
5263 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5
5264 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; }
5265 -if test "${lt_cv_prog_compiler_pic_works+set}" = set; then :
5266 +if ${lt_cv_prog_compiler_pic_works+:} false; then :
5267 $as_echo_n "(cached) " >&6
5268 else
5269 lt_cv_prog_compiler_pic_works=no
5270 @@ -41768,7 +41783,7 @@ fi
5271 wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\"
5272 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5
5273 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }
5274 -if test "${lt_cv_prog_compiler_static_works+set}" = set; then :
5275 +if ${lt_cv_prog_compiler_static_works+:} false; then :
5276 $as_echo_n "(cached) " >&6
5277 else
5278 lt_cv_prog_compiler_static_works=no
5279 @@ -41811,7 +41826,7 @@ fi
5280
5281 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
5282 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
5283 -if test "${lt_cv_prog_compiler_c_o+set}" = set; then :
5284 +if ${lt_cv_prog_compiler_c_o+:} false; then :
5285 $as_echo_n "(cached) " >&6
5286 else
5287 lt_cv_prog_compiler_c_o=no
5288 @@ -41866,7 +41881,7 @@ $as_echo "$lt_cv_prog_compiler_c_o" >&6; }
5289
5290 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
5291 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
5292 -if test "${lt_cv_prog_compiler_c_o+set}" = set; then :
5293 +if ${lt_cv_prog_compiler_c_o+:} false; then :
5294 $as_echo_n "(cached) " >&6
5295 else
5296 lt_cv_prog_compiler_c_o=no
5297 @@ -42686,7 +42701,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
5298 # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)
5299 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5
5300 $as_echo_n "checking if $CC understands -b... " >&6; }
5301 -if test "${lt_cv_prog_compiler__b+set}" = set; then :
5302 +if ${lt_cv_prog_compiler__b+:} false; then :
5303 $as_echo_n "(cached) " >&6
5304 else
5305 lt_cv_prog_compiler__b=no
5306 @@ -43058,7 +43073,7 @@ x|xyes)
5307 # to ld, don't add -lc before -lgcc.
5308 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5
5309 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }
5310 -if test "${lt_cv_archive_cmds_need_lc+set}" = set; then :
5311 +if ${lt_cv_archive_cmds_need_lc+:} false; then :
5312 $as_echo_n "(cached) " >&6
5313 else
5314 $RM conftest*
5315 @@ -43700,7 +43715,7 @@ linux* | k*bsd*-gnu | kopensolaris*-gnu)
5316 shlibpath_overrides_runpath=no
5317
5318 # Some binutils ld are patched to set DT_RUNPATH
5319 - if test "${lt_cv_shlibpath_overrides_runpath+set}" = set; then :
5320 + if ${lt_cv_shlibpath_overrides_runpath+:} false; then :
5321 $as_echo_n "(cached) " >&6
5322 else
5323 lt_cv_shlibpath_overrides_runpath=no
5324 @@ -44124,7 +44139,7 @@ else
5325 # if libdl is installed we need to link against it
5326 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
5327 $as_echo_n "checking for dlopen in -ldl... " >&6; }
5328 -if test "${ac_cv_lib_dl_dlopen+set}" = set; then :
5329 +if ${ac_cv_lib_dl_dlopen+:} false; then :
5330 $as_echo_n "(cached) " >&6
5331 else
5332 ac_check_lib_save_LIBS=$LIBS
5333 @@ -44158,7 +44173,7 @@ LIBS=$ac_check_lib_save_LIBS
5334 fi
5335 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
5336 $as_echo "$ac_cv_lib_dl_dlopen" >&6; }
5337 -if test "x$ac_cv_lib_dl_dlopen" = x""yes; then :
5338 +if test "x$ac_cv_lib_dl_dlopen" = xyes; then :
5339 lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
5340 else
5341
5342 @@ -44172,12 +44187,12 @@ fi
5343
5344 *)
5345 ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load"
5346 -if test "x$ac_cv_func_shl_load" = x""yes; then :
5347 +if test "x$ac_cv_func_shl_load" = xyes; then :
5348 lt_cv_dlopen="shl_load"
5349 else
5350 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5
5351 $as_echo_n "checking for shl_load in -ldld... " >&6; }
5352 -if test "${ac_cv_lib_dld_shl_load+set}" = set; then :
5353 +if ${ac_cv_lib_dld_shl_load+:} false; then :
5354 $as_echo_n "(cached) " >&6
5355 else
5356 ac_check_lib_save_LIBS=$LIBS
5357 @@ -44211,16 +44226,16 @@ LIBS=$ac_check_lib_save_LIBS
5358 fi
5359 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5
5360 $as_echo "$ac_cv_lib_dld_shl_load" >&6; }
5361 -if test "x$ac_cv_lib_dld_shl_load" = x""yes; then :
5362 +if test "x$ac_cv_lib_dld_shl_load" = xyes; then :
5363 lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"
5364 else
5365 ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen"
5366 -if test "x$ac_cv_func_dlopen" = x""yes; then :
5367 +if test "x$ac_cv_func_dlopen" = xyes; then :
5368 lt_cv_dlopen="dlopen"
5369 else
5370 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
5371 $as_echo_n "checking for dlopen in -ldl... " >&6; }
5372 -if test "${ac_cv_lib_dl_dlopen+set}" = set; then :
5373 +if ${ac_cv_lib_dl_dlopen+:} false; then :
5374 $as_echo_n "(cached) " >&6
5375 else
5376 ac_check_lib_save_LIBS=$LIBS
5377 @@ -44254,12 +44269,12 @@ LIBS=$ac_check_lib_save_LIBS
5378 fi
5379 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
5380 $as_echo "$ac_cv_lib_dl_dlopen" >&6; }
5381 -if test "x$ac_cv_lib_dl_dlopen" = x""yes; then :
5382 +if test "x$ac_cv_lib_dl_dlopen" = xyes; then :
5383 lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
5384 else
5385 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5
5386 $as_echo_n "checking for dlopen in -lsvld... " >&6; }
5387 -if test "${ac_cv_lib_svld_dlopen+set}" = set; then :
5388 +if ${ac_cv_lib_svld_dlopen+:} false; then :
5389 $as_echo_n "(cached) " >&6
5390 else
5391 ac_check_lib_save_LIBS=$LIBS
5392 @@ -44293,12 +44308,12 @@ LIBS=$ac_check_lib_save_LIBS
5393 fi
5394 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5
5395 $as_echo "$ac_cv_lib_svld_dlopen" >&6; }
5396 -if test "x$ac_cv_lib_svld_dlopen" = x""yes; then :
5397 +if test "x$ac_cv_lib_svld_dlopen" = xyes; then :
5398 lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"
5399 else
5400 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5
5401 $as_echo_n "checking for dld_link in -ldld... " >&6; }
5402 -if test "${ac_cv_lib_dld_dld_link+set}" = set; then :
5403 +if ${ac_cv_lib_dld_dld_link+:} false; then :
5404 $as_echo_n "(cached) " >&6
5405 else
5406 ac_check_lib_save_LIBS=$LIBS
5407 @@ -44332,7 +44347,7 @@ LIBS=$ac_check_lib_save_LIBS
5408 fi
5409 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5
5410 $as_echo "$ac_cv_lib_dld_dld_link" >&6; }
5411 -if test "x$ac_cv_lib_dld_dld_link" = x""yes; then :
5412 +if test "x$ac_cv_lib_dld_dld_link" = xyes; then :
5413 lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"
5414 fi
5415
5416 @@ -44373,7 +44388,7 @@ fi
5417
5418 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5
5419 $as_echo_n "checking whether a program can dlopen itself... " >&6; }
5420 -if test "${lt_cv_dlopen_self+set}" = set; then :
5421 +if ${lt_cv_dlopen_self+:} false; then :
5422 $as_echo_n "(cached) " >&6
5423 else
5424 if test "$cross_compiling" = yes; then :
5425 @@ -44479,7 +44494,7 @@ $as_echo "$lt_cv_dlopen_self" >&6; }
5426 wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
5427 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5
5428 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; }
5429 -if test "${lt_cv_dlopen_self_static+set}" = set; then :
5430 +if ${lt_cv_dlopen_self_static+:} false; then :
5431 $as_echo_n "(cached) " >&6
5432 else
5433 if test "$cross_compiling" = yes; then :
5434 @@ -44788,7 +44803,7 @@ else
5435 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5
5436 $as_echo_n "checking for non-GNU ld... " >&6; }
5437 fi
5438 -if test "${lt_cv_path_LD+set}" = set; then :
5439 +if ${lt_cv_path_LD+:} false; then :
5440 $as_echo_n "(cached) " >&6
5441 else
5442 if test -z "$LD"; then
5443 @@ -44828,7 +44843,7 @@ fi
5444 test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
5445 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
5446 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
5447 -if test "${lt_cv_prog_gnu_ld+set}" = set; then :
5448 +if ${lt_cv_prog_gnu_ld+:} false; then :
5449 $as_echo_n "(cached) " >&6
5450 else
5451 # I'd rather use --version here, but apparently some GNU lds only accept -v.
5452 @@ -44927,7 +44942,7 @@ fi
5453
5454 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -Wno-missing-field-initializers is supported" >&5
5455 $as_echo_n "checking whether -Wno-missing-field-initializers is supported... " >&6; }
5456 - if test "${gl_cv_cc_nomfi_supported+set}" = set; then :
5457 + if ${gl_cv_cc_nomfi_supported+:} false; then :
5458 $as_echo_n "(cached) " >&6
5459 else
5460
5461 @@ -44959,7 +44974,7 @@ $as_echo "$gl_cv_cc_nomfi_supported" >&6; }
5462 if test "$gl_cv_cc_nomfi_supported" = yes; then
5463 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -Wno-missing-field-initializers is needed" >&5
5464 $as_echo_n "checking whether -Wno-missing-field-initializers is needed... " >&6; }
5465 - if test "${gl_cv_cc_nomfi_needed+set}" = set; then :
5466 + if ${gl_cv_cc_nomfi_needed+:} false; then :
5467 $as_echo_n "(cached) " >&6
5468 else
5469
5470 @@ -45096,7 +45111,7 @@ $as_echo "$gl_cv_cc_nomfi_needed" >&6; }
5471 as_gl_Warn=`$as_echo "gl_cv_warn_$w" | $as_tr_sh`
5472 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles $w" >&5
5473 $as_echo_n "checking whether compiler handles $w... " >&6; }
5474 -if eval "test \"\${$as_gl_Warn+set}\"" = set; then :
5475 +if eval \${$as_gl_Warn+:} false; then :
5476 $as_echo_n "(cached) " >&6
5477 else
5478
5479 @@ -45118,7 +45133,7 @@ if ac_fn_c_try_cpp "$LINENO"; then :
5480 else
5481 eval "$as_gl_Warn=no"
5482 fi
5483 -rm -f conftest.err conftest.$ac_ext
5484 +rm -f conftest.err conftest.i conftest.$ac_ext
5485 CPPFLAGS="$gl_save_CPPFLAGS"
5486
5487 fi
5488 @@ -45137,7 +45152,7 @@ fi
5489 # So we have -W enabled, and then have to explicitly turn off...
5490 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -Wno-sign-compare" >&5
5491 $as_echo_n "checking whether compiler handles -Wno-sign-compare... " >&6; }
5492 -if test "${gl_cv_warn__Wno_sign_compare+set}" = set; then :
5493 +if ${gl_cv_warn__Wno_sign_compare+:} false; then :
5494 $as_echo_n "(cached) " >&6
5495 else
5496
5497 @@ -45159,13 +45174,13 @@ if ac_fn_c_try_cpp "$LINENO"; then :
5498 else
5499 gl_cv_warn__Wno_sign_compare=no
5500 fi
5501 -rm -f conftest.err conftest.$ac_ext
5502 +rm -f conftest.err conftest.i conftest.$ac_ext
5503 CPPFLAGS="$gl_save_CPPFLAGS"
5504
5505 fi
5506 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__Wno_sign_compare" >&5
5507 $as_echo "$gl_cv_warn__Wno_sign_compare" >&6; }
5508 -if test "x$gl_cv_warn__Wno_sign_compare" = x""yes; then :
5509 +if test "x$gl_cv_warn__Wno_sign_compare" = xyes; then :
5510 as_fn_append WARN_CFLAGS " -Wno-sign-compare"
5511 fi
5512
5513 @@ -45174,7 +45189,7 @@ fi
5514 # that one off, so we need to manually enable this again
5515 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -Wjump-misses-init" >&5
5516 $as_echo_n "checking whether compiler handles -Wjump-misses-init... " >&6; }
5517 -if test "${gl_cv_warn__Wjump_misses_init+set}" = set; then :
5518 +if ${gl_cv_warn__Wjump_misses_init+:} false; then :
5519 $as_echo_n "(cached) " >&6
5520 else
5521
5522 @@ -45196,13 +45211,13 @@ if ac_fn_c_try_cpp "$LINENO"; then :
5523 else
5524 gl_cv_warn__Wjump_misses_init=no
5525 fi
5526 -rm -f conftest.err conftest.$ac_ext
5527 +rm -f conftest.err conftest.i conftest.$ac_ext
5528 CPPFLAGS="$gl_save_CPPFLAGS"
5529
5530 fi
5531 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__Wjump_misses_init" >&5
5532 $as_echo "$gl_cv_warn__Wjump_misses_init" >&6; }
5533 -if test "x$gl_cv_warn__Wjump_misses_init" = x""yes; then :
5534 +if test "x$gl_cv_warn__Wjump_misses_init" = xyes; then :
5535 as_fn_append WARN_CFLAGS " -Wjump-misses-init"
5536 fi
5537
5538 @@ -45213,7 +45228,7 @@ fi
5539 as_gl_Warn=`$as_echo "gl_cv_warn_-Wframe-larger-than=4096" | $as_tr_sh`
5540 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -Wframe-larger-than=4096" >&5
5541 $as_echo_n "checking whether compiler handles -Wframe-larger-than=4096... " >&6; }
5542 -if eval "test \"\${$as_gl_Warn+set}\"" = set; then :
5543 +if eval \${$as_gl_Warn+:} false; then :
5544 $as_echo_n "(cached) " >&6
5545 else
5546
5547 @@ -45235,7 +45250,7 @@ if ac_fn_c_try_cpp "$LINENO"; then :
5548 else
5549 eval "$as_gl_Warn=no"
5550 fi
5551 -rm -f conftest.err conftest.$ac_ext
5552 +rm -f conftest.err conftest.i conftest.$ac_ext
5553 CPPFLAGS="$gl_save_CPPFLAGS"
5554
5555 fi
5556 @@ -45251,7 +45266,7 @@ fi
5557 as_gl_Warn=`$as_echo "gl_cv_warn_-Wp,-D_FORTIFY_SOURCE=2" | $as_tr_sh`
5558 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -Wp,-D_FORTIFY_SOURCE=2" >&5
5559 $as_echo_n "checking whether compiler handles -Wp,-D_FORTIFY_SOURCE=2... " >&6; }
5560 -if eval "test \"\${$as_gl_Warn+set}\"" = set; then :
5561 +if eval \${$as_gl_Warn+:} false; then :
5562 $as_echo_n "(cached) " >&6
5563 else
5564
5565 @@ -45273,7 +45288,7 @@ if ac_fn_c_try_cpp "$LINENO"; then :
5566 else
5567 eval "$as_gl_Warn=no"
5568 fi
5569 -rm -f conftest.err conftest.$ac_ext
5570 +rm -f conftest.err conftest.i conftest.$ac_ext
5571 CPPFLAGS="$gl_save_CPPFLAGS"
5572
5573 fi
5574 @@ -45288,7 +45303,7 @@ fi
5575 *-*-linux*)
5576 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -fstack-protector-all" >&5
5577 $as_echo_n "checking whether compiler handles -fstack-protector-all... " >&6; }
5578 -if test "${gl_cv_warn__fstack_protector_all+set}" = set; then :
5579 +if ${gl_cv_warn__fstack_protector_all+:} false; then :
5580 $as_echo_n "(cached) " >&6
5581 else
5582
5583 @@ -45310,20 +45325,20 @@ if ac_fn_c_try_cpp "$LINENO"; then :
5584 else
5585 gl_cv_warn__fstack_protector_all=no
5586 fi
5587 -rm -f conftest.err conftest.$ac_ext
5588 +rm -f conftest.err conftest.i conftest.$ac_ext
5589 CPPFLAGS="$gl_save_CPPFLAGS"
5590
5591 fi
5592 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__fstack_protector_all" >&5
5593 $as_echo "$gl_cv_warn__fstack_protector_all" >&6; }
5594 -if test "x$gl_cv_warn__fstack_protector_all" = x""yes; then :
5595 +if test "x$gl_cv_warn__fstack_protector_all" = xyes; then :
5596 as_fn_append WARN_CFLAGS " -fstack-protector-all"
5597 fi
5598
5599 as_gl_Warn=`$as_echo "gl_cv_warn_--param=ssp-buffer-size=4" | $as_tr_sh`
5600 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles --param=ssp-buffer-size=4" >&5
5601 $as_echo_n "checking whether compiler handles --param=ssp-buffer-size=4... " >&6; }
5602 -if eval "test \"\${$as_gl_Warn+set}\"" = set; then :
5603 +if eval \${$as_gl_Warn+:} false; then :
5604 $as_echo_n "(cached) " >&6
5605 else
5606
5607 @@ -45345,7 +45360,7 @@ if ac_fn_c_try_cpp "$LINENO"; then :
5608 else
5609 eval "$as_gl_Warn=no"
5610 fi
5611 -rm -f conftest.err conftest.$ac_ext
5612 +rm -f conftest.err conftest.i conftest.$ac_ext
5613 CPPFLAGS="$gl_save_CPPFLAGS"
5614
5615 fi
5616 @@ -45360,7 +45375,7 @@ fi
5617 esac
5618 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -fexceptions" >&5
5619 $as_echo_n "checking whether compiler handles -fexceptions... " >&6; }
5620 -if test "${gl_cv_warn__fexceptions+set}" = set; then :
5621 +if ${gl_cv_warn__fexceptions+:} false; then :
5622 $as_echo_n "(cached) " >&6
5623 else
5624
5625 @@ -45382,19 +45397,19 @@ if ac_fn_c_try_cpp "$LINENO"; then :
5626 else
5627 gl_cv_warn__fexceptions=no
5628 fi
5629 -rm -f conftest.err conftest.$ac_ext
5630 +rm -f conftest.err conftest.i conftest.$ac_ext
5631 CPPFLAGS="$gl_save_CPPFLAGS"
5632
5633 fi
5634 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__fexceptions" >&5
5635 $as_echo "$gl_cv_warn__fexceptions" >&6; }
5636 -if test "x$gl_cv_warn__fexceptions" = x""yes; then :
5637 +if test "x$gl_cv_warn__fexceptions" = xyes; then :
5638 as_fn_append WARN_CFLAGS " -fexceptions"
5639 fi
5640
5641 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -fasynchronous-unwind-tables" >&5
5642 $as_echo_n "checking whether compiler handles -fasynchronous-unwind-tables... " >&6; }
5643 -if test "${gl_cv_warn__fasynchronous_unwind_tables+set}" = set; then :
5644 +if ${gl_cv_warn__fasynchronous_unwind_tables+:} false; then :
5645 $as_echo_n "(cached) " >&6
5646 else
5647
5648 @@ -45416,19 +45431,19 @@ if ac_fn_c_try_cpp "$LINENO"; then :
5649 else
5650 gl_cv_warn__fasynchronous_unwind_tables=no
5651 fi
5652 -rm -f conftest.err conftest.$ac_ext
5653 +rm -f conftest.err conftest.i conftest.$ac_ext
5654 CPPFLAGS="$gl_save_CPPFLAGS"
5655
5656 fi
5657 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__fasynchronous_unwind_tables" >&5
5658 $as_echo "$gl_cv_warn__fasynchronous_unwind_tables" >&6; }
5659 -if test "x$gl_cv_warn__fasynchronous_unwind_tables" = x""yes; then :
5660 +if test "x$gl_cv_warn__fasynchronous_unwind_tables" = xyes; then :
5661 as_fn_append WARN_CFLAGS " -fasynchronous-unwind-tables"
5662 fi
5663
5664 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -fdiagnostics-show-option" >&5
5665 $as_echo_n "checking whether compiler handles -fdiagnostics-show-option... " >&6; }
5666 -if test "${gl_cv_warn__fdiagnostics_show_option+set}" = set; then :
5667 +if ${gl_cv_warn__fdiagnostics_show_option+:} false; then :
5668 $as_echo_n "(cached) " >&6
5669 else
5670
5671 @@ -45450,19 +45465,19 @@ if ac_fn_c_try_cpp "$LINENO"; then :
5672 else
5673 gl_cv_warn__fdiagnostics_show_option=no
5674 fi
5675 -rm -f conftest.err conftest.$ac_ext
5676 +rm -f conftest.err conftest.i conftest.$ac_ext
5677 CPPFLAGS="$gl_save_CPPFLAGS"
5678
5679 fi
5680 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__fdiagnostics_show_option" >&5
5681 $as_echo "$gl_cv_warn__fdiagnostics_show_option" >&6; }
5682 -if test "x$gl_cv_warn__fdiagnostics_show_option" = x""yes; then :
5683 +if test "x$gl_cv_warn__fdiagnostics_show_option" = xyes; then :
5684 as_fn_append WARN_CFLAGS " -fdiagnostics-show-option"
5685 fi
5686
5687 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -funit-at-a-time" >&5
5688 $as_echo_n "checking whether compiler handles -funit-at-a-time... " >&6; }
5689 -if test "${gl_cv_warn__funit_at_a_time+set}" = set; then :
5690 +if ${gl_cv_warn__funit_at_a_time+:} false; then :
5691 $as_echo_n "(cached) " >&6
5692 else
5693
5694 @@ -45484,13 +45499,13 @@ if ac_fn_c_try_cpp "$LINENO"; then :
5695 else
5696 gl_cv_warn__funit_at_a_time=no
5697 fi
5698 -rm -f conftest.err conftest.$ac_ext
5699 +rm -f conftest.err conftest.i conftest.$ac_ext
5700 CPPFLAGS="$gl_save_CPPFLAGS"
5701
5702 fi
5703 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__funit_at_a_time" >&5
5704 $as_echo "$gl_cv_warn__funit_at_a_time" >&6; }
5705 -if test "x$gl_cv_warn__funit_at_a_time" = x""yes; then :
5706 +if test "x$gl_cv_warn__funit_at_a_time" = xyes; then :
5707 as_fn_append WARN_CFLAGS " -funit-at-a-time"
5708 fi
5709
5710 @@ -45499,7 +45514,7 @@ fi
5711 then
5712 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -Werror" >&5
5713 $as_echo_n "checking whether compiler handles -Werror... " >&6; }
5714 -if test "${gl_cv_warn__Werror+set}" = set; then :
5715 +if ${gl_cv_warn__Werror+:} false; then :
5716 $as_echo_n "(cached) " >&6
5717 else
5718
5719 @@ -45521,13 +45536,13 @@ if ac_fn_c_try_cpp "$LINENO"; then :
5720 else
5721 gl_cv_warn__Werror=no
5722 fi
5723 -rm -f conftest.err conftest.$ac_ext
5724 +rm -f conftest.err conftest.i conftest.$ac_ext
5725 CPPFLAGS="$gl_save_CPPFLAGS"
5726
5727 fi
5728 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__Werror" >&5
5729 $as_echo "$gl_cv_warn__Werror" >&6; }
5730 -if test "x$gl_cv_warn__Werror" = x""yes; then :
5731 +if test "x$gl_cv_warn__Werror" = xyes; then :
5732 as_fn_append WARN_CFLAGS " -Werror"
5733 fi
5734
5735 @@ -45546,7 +45561,7 @@ fi
5736 WARN_CFLAGS=
5737 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -Wno-redundant-decls" >&5
5738 $as_echo_n "checking whether compiler handles -Wno-redundant-decls... " >&6; }
5739 -if test "${gl_cv_warn__Wno_redundant_decls+set}" = set; then :
5740 +if ${gl_cv_warn__Wno_redundant_decls+:} false; then :
5741 $as_echo_n "(cached) " >&6
5742 else
5743
5744 @@ -45568,13 +45583,13 @@ if ac_fn_c_try_cpp "$LINENO"; then :
5745 else
5746 gl_cv_warn__Wno_redundant_decls=no
5747 fi
5748 -rm -f conftest.err conftest.$ac_ext
5749 +rm -f conftest.err conftest.i conftest.$ac_ext
5750 CPPFLAGS="$gl_save_CPPFLAGS"
5751
5752 fi
5753 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__Wno_redundant_decls" >&5
5754 $as_echo "$gl_cv_warn__Wno_redundant_decls" >&6; }
5755 -if test "x$gl_cv_warn__Wno_redundant_decls" = x""yes; then :
5756 +if test "x$gl_cv_warn__Wno_redundant_decls" = xyes; then :
5757 as_fn_append WARN_CFLAGS " -Wno-redundant-decls"
5758 fi
5759
5760 @@ -45626,7 +45641,7 @@ $as_echo "$have_cpuid" >&6; }
5761 # This bug is HP SR number 8606223364.
5762 { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long" >&5
5763 $as_echo_n "checking size of long... " >&6; }
5764 -if test "${ac_cv_sizeof_long+set}" = set; then :
5765 +if ${ac_cv_sizeof_long+:} false; then :
5766 $as_echo_n "(cached) " >&6
5767 else
5768 if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long))" "ac_cv_sizeof_long" "$ac_includes_default"; then :
5769 @@ -45654,6 +45669,205 @@ _ACEOF
5770
5771
5772
5773 +# Check whether --enable-largefile was given.
5774 +if test "${enable_largefile+set}" = set; then :
5775 + enableval=$enable_largefile;
5776 +fi
5777 +
5778 +if test "$enable_largefile" != no; then
5779 +
5780 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5
5781 +$as_echo_n "checking for special C compiler options needed for large files... " >&6; }
5782 +if ${ac_cv_sys_largefile_CC+:} false; then :
5783 + $as_echo_n "(cached) " >&6
5784 +else
5785 + ac_cv_sys_largefile_CC=no
5786 + if test "$GCC" != yes; then
5787 + ac_save_CC=$CC
5788 + while :; do
5789 + # IRIX 6.2 and later do not support large files by default,
5790 + # so use the C compiler's -n32 option if that helps.
5791 + cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5792 +/* end confdefs.h. */
5793 +#include <sys/types.h>
5794 + /* Check that off_t can represent 2**63 - 1 correctly.
5795 + We can't simply define LARGE_OFF_T to be 9223372036854775807,
5796 + since some C++ compilers masquerading as C compilers
5797 + incorrectly reject 9223372036854775807. */
5798 +#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
5799 + int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
5800 + && LARGE_OFF_T % 2147483647 == 1)
5801 + ? 1 : -1];
5802 +int
5803 +main ()
5804 +{
5805 +
5806 + ;
5807 + return 0;
5808 +}
5809 +_ACEOF
5810 + if ac_fn_c_try_compile "$LINENO"; then :
5811 + break
5812 +fi
5813 +rm -f core conftest.err conftest.$ac_objext
5814 + CC="$CC -n32"
5815 + if ac_fn_c_try_compile "$LINENO"; then :
5816 + ac_cv_sys_largefile_CC=' -n32'; break
5817 +fi
5818 +rm -f core conftest.err conftest.$ac_objext
5819 + break
5820 + done
5821 + CC=$ac_save_CC
5822 + rm -f conftest.$ac_ext
5823 + fi
5824 +fi
5825 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_CC" >&5
5826 +$as_echo "$ac_cv_sys_largefile_CC" >&6; }
5827 + if test "$ac_cv_sys_largefile_CC" != no; then
5828 + CC=$CC$ac_cv_sys_largefile_CC
5829 + fi
5830 +
5831 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5
5832 +$as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; }
5833 +if ${ac_cv_sys_file_offset_bits+:} false; then :
5834 + $as_echo_n "(cached) " >&6
5835 +else
5836 + while :; do
5837 + cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5838 +/* end confdefs.h. */
5839 +#include <sys/types.h>
5840 + /* Check that off_t can represent 2**63 - 1 correctly.
5841 + We can't simply define LARGE_OFF_T to be 9223372036854775807,
5842 + since some C++ compilers masquerading as C compilers
5843 + incorrectly reject 9223372036854775807. */
5844 +#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
5845 + int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
5846 + && LARGE_OFF_T % 2147483647 == 1)
5847 + ? 1 : -1];
5848 +int
5849 +main ()
5850 +{
5851 +
5852 + ;
5853 + return 0;
5854 +}
5855 +_ACEOF
5856 +if ac_fn_c_try_compile "$LINENO"; then :
5857 + ac_cv_sys_file_offset_bits=no; break
5858 +fi
5859 +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5860 + cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5861 +/* end confdefs.h. */
5862 +#define _FILE_OFFSET_BITS 64
5863 +#include <sys/types.h>
5864 + /* Check that off_t can represent 2**63 - 1 correctly.
5865 + We can't simply define LARGE_OFF_T to be 9223372036854775807,
5866 + since some C++ compilers masquerading as C compilers
5867 + incorrectly reject 9223372036854775807. */
5868 +#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
5869 + int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
5870 + && LARGE_OFF_T % 2147483647 == 1)
5871 + ? 1 : -1];
5872 +int
5873 +main ()
5874 +{
5875 +
5876 + ;
5877 + return 0;
5878 +}
5879 +_ACEOF
5880 +if ac_fn_c_try_compile "$LINENO"; then :
5881 + ac_cv_sys_file_offset_bits=64; break
5882 +fi
5883 +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5884 + ac_cv_sys_file_offset_bits=unknown
5885 + break
5886 +done
5887 +fi
5888 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_file_offset_bits" >&5
5889 +$as_echo "$ac_cv_sys_file_offset_bits" >&6; }
5890 +case $ac_cv_sys_file_offset_bits in #(
5891 + no | unknown) ;;
5892 + *)
5893 +cat >>confdefs.h <<_ACEOF
5894 +#define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits
5895 +_ACEOF
5896 +;;
5897 +esac
5898 +rm -rf conftest*
5899 + if test $ac_cv_sys_file_offset_bits = unknown; then
5900 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5
5901 +$as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; }
5902 +if ${ac_cv_sys_large_files+:} false; then :
5903 + $as_echo_n "(cached) " >&6
5904 +else
5905 + while :; do
5906 + cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5907 +/* end confdefs.h. */
5908 +#include <sys/types.h>
5909 + /* Check that off_t can represent 2**63 - 1 correctly.
5910 + We can't simply define LARGE_OFF_T to be 9223372036854775807,
5911 + since some C++ compilers masquerading as C compilers
5912 + incorrectly reject 9223372036854775807. */
5913 +#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
5914 + int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
5915 + && LARGE_OFF_T % 2147483647 == 1)
5916 + ? 1 : -1];
5917 +int
5918 +main ()
5919 +{
5920 +
5921 + ;
5922 + return 0;
5923 +}
5924 +_ACEOF
5925 +if ac_fn_c_try_compile "$LINENO"; then :
5926 + ac_cv_sys_large_files=no; break
5927 +fi
5928 +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5929 + cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5930 +/* end confdefs.h. */
5931 +#define _LARGE_FILES 1
5932 +#include <sys/types.h>
5933 + /* Check that off_t can represent 2**63 - 1 correctly.
5934 + We can't simply define LARGE_OFF_T to be 9223372036854775807,
5935 + since some C++ compilers masquerading as C compilers
5936 + incorrectly reject 9223372036854775807. */
5937 +#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
5938 + int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
5939 + && LARGE_OFF_T % 2147483647 == 1)
5940 + ? 1 : -1];
5941 +int
5942 +main ()
5943 +{
5944 +
5945 + ;
5946 + return 0;
5947 +}
5948 +_ACEOF
5949 +if ac_fn_c_try_compile "$LINENO"; then :
5950 + ac_cv_sys_large_files=1; break
5951 +fi
5952 +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5953 + ac_cv_sys_large_files=unknown
5954 + break
5955 +done
5956 +fi
5957 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_large_files" >&5
5958 +$as_echo "$ac_cv_sys_large_files" >&6; }
5959 +case $ac_cv_sys_large_files in #(
5960 + no | unknown) ;;
5961 + *)
5962 +cat >>confdefs.h <<_ACEOF
5963 +#define _LARGE_FILES $ac_cv_sys_large_files
5964 +_ACEOF
5965 +;;
5966 +esac
5967 +rm -rf conftest*
5968 + fi
5969 +fi
5970 +
5971 +
5972
5973
5974
5975 @@ -45776,7 +45990,7 @@ LIBS="$LIBS $LIB_PTHREAD"
5976 for ac_func in pthread_mutexattr_init
5977 do :
5978 ac_fn_c_check_func "$LINENO" "pthread_mutexattr_init" "ac_cv_func_pthread_mutexattr_init"
5979 -if test "x$ac_cv_func_pthread_mutexattr_init" = x""yes; then :
5980 +if test "x$ac_cv_func_pthread_mutexattr_init" = xyes; then :
5981 cat >>confdefs.h <<_ACEOF
5982 #define HAVE_PTHREAD_MUTEXATTR_INIT 1
5983 _ACEOF
5984 @@ -45813,7 +46027,7 @@ fi
5985
5986 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gettext in -lintl" >&5
5987 $as_echo_n "checking for gettext in -lintl... " >&6; }
5988 -if test "${ac_cv_lib_intl_gettext+set}" = set; then :
5989 +if ${ac_cv_lib_intl_gettext+:} false; then :
5990 $as_echo_n "(cached) " >&6
5991 else
5992 ac_check_lib_save_LIBS=$LIBS
5993 @@ -45847,7 +46061,7 @@ LIBS=$ac_check_lib_save_LIBS
5994 fi
5995 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_gettext" >&5
5996 $as_echo "$ac_cv_lib_intl_gettext" >&6; }
5997 -if test "x$ac_cv_lib_intl_gettext" = x""yes; then :
5998 +if test "x$ac_cv_lib_intl_gettext" = xyes; then :
5999 cat >>confdefs.h <<_ACEOF
6000 #define HAVE_LIBINTL 1
6001 _ACEOF
6002 @@ -45861,7 +46075,7 @@ fi
6003 set dummy rpcgen; ac_word=$2
6004 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6005 $as_echo_n "checking for $ac_word... " >&6; }
6006 -if test "${ac_cv_path_RPCGEN+set}" = set; then :
6007 +if ${ac_cv_path_RPCGEN+:} false; then :
6008 $as_echo_n "(cached) " >&6
6009 else
6010 case $RPCGEN in
6011 @@ -45920,7 +46134,7 @@ fi
6012 set dummy xmllint; ac_word=$2
6013 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6014 $as_echo_n "checking for $ac_word... " >&6; }
6015 -if test "${ac_cv_path_XMLLINT+set}" = set; then :
6016 +if ${ac_cv_path_XMLLINT+:} false; then :
6017 $as_echo_n "(cached) " >&6
6018 else
6019 case $XMLLINT in
6020 @@ -45961,7 +46175,7 @@ fi
6021 set dummy xmlcatalog; ac_word=$2
6022 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6023 $as_echo_n "checking for $ac_word... " >&6; }
6024 -if test "${ac_cv_path_XMLCATALOG+set}" = set; then :
6025 +if ${ac_cv_path_XMLCATALOG+:} false; then :
6026 $as_echo_n "(cached) " >&6
6027 else
6028 case $XMLCATALOG in
6029 @@ -46002,7 +46216,7 @@ fi
6030 set dummy xsltproc; ac_word=$2
6031 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6032 $as_echo_n "checking for $ac_word... " >&6; }
6033 -if test "${ac_cv_path_XSLTPROC+set}" = set; then :
6034 +if ${ac_cv_path_XSLTPROC+:} false; then :
6035 $as_echo_n "(cached) " >&6
6036 else
6037 case $XSLTPROC in
6038 @@ -46043,7 +46257,7 @@ fi
6039 set dummy augparse; ac_word=$2
6040 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6041 $as_echo_n "checking for $ac_word... " >&6; }
6042 -if test "${ac_cv_path_AUGPARSE+set}" = set; then :
6043 +if ${ac_cv_path_AUGPARSE+:} false; then :
6044 $as_echo_n "(cached) " >&6
6045 else
6046 case $AUGPARSE in
6047 @@ -46086,7 +46300,7 @@ fi
6048 set dummy dnsmasq; ac_word=$2
6049 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6050 $as_echo_n "checking for $ac_word... " >&6; }
6051 -if test "${ac_cv_path_DNSMASQ+set}" = set; then :
6052 +if ${ac_cv_path_DNSMASQ+:} false; then :
6053 $as_echo_n "(cached) " >&6
6054 else
6055 case $DNSMASQ in
6056 @@ -46128,7 +46342,7 @@ fi
6057 set dummy radvd; ac_word=$2
6058 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6059 $as_echo_n "checking for $ac_word... " >&6; }
6060 -if test "${ac_cv_path_RADVD+set}" = set; then :
6061 +if ${ac_cv_path_RADVD+:} false; then :
6062 $as_echo_n "(cached) " >&6
6063 else
6064 case $RADVD in
6065 @@ -46170,7 +46384,7 @@ fi
6066 set dummy brctl; ac_word=$2
6067 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6068 $as_echo_n "checking for $ac_word... " >&6; }
6069 -if test "${ac_cv_path_BRCTL+set}" = set; then :
6070 +if ${ac_cv_path_BRCTL+:} false; then :
6071 $as_echo_n "(cached) " >&6
6072 else
6073 case $BRCTL in
6074 @@ -46212,7 +46426,7 @@ fi
6075 set dummy tc; ac_word=$2
6076 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6077 $as_echo_n "checking for $ac_word... " >&6; }
6078 -if test "${ac_cv_path_TC+set}" = set; then :
6079 +if ${ac_cv_path_TC+:} false; then :
6080 $as_echo_n "(cached) " >&6
6081 else
6082 case $TC in
6083 @@ -46254,7 +46468,7 @@ fi
6084 set dummy udevadm; ac_word=$2
6085 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6086 $as_echo_n "checking for $ac_word... " >&6; }
6087 -if test "${ac_cv_path_UDEVADM+set}" = set; then :
6088 +if ${ac_cv_path_UDEVADM+:} false; then :
6089 $as_echo_n "(cached) " >&6
6090 else
6091 case $UDEVADM in
6092 @@ -46295,7 +46509,7 @@ fi
6093 set dummy udevsettle; ac_word=$2
6094 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6095 $as_echo_n "checking for $ac_word... " >&6; }
6096 -if test "${ac_cv_path_UDEVSETTLE+set}" = set; then :
6097 +if ${ac_cv_path_UDEVSETTLE+:} false; then :
6098 $as_echo_n "(cached) " >&6
6099 else
6100 case $UDEVSETTLE in
6101 @@ -46336,7 +46550,7 @@ fi
6102 set dummy modprobe; ac_word=$2
6103 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6104 $as_echo_n "checking for $ac_word... " >&6; }
6105 -if test "${ac_cv_path_MODPROBE+set}" = set; then :
6106 +if ${ac_cv_path_MODPROBE+:} false; then :
6107 $as_echo_n "(cached) " >&6
6108 else
6109 case $MODPROBE in
6110 @@ -46677,7 +46891,7 @@ fi
6111 set dummy ip; ac_word=$2
6112 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6113 $as_echo_n "checking for $ac_word... " >&6; }
6114 -if test "${ac_cv_path_IP_PATH+set}" = set; then :
6115 +if ${ac_cv_path_IP_PATH+:} false; then :
6116 $as_echo_n "(cached) " >&6
6117 else
6118 case $IP_PATH in
6119 @@ -46725,7 +46939,7 @@ _ACEOF
6120 set dummy iptables; ac_word=$2
6121 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6122 $as_echo_n "checking for $ac_word... " >&6; }
6123 -if test "${ac_cv_path_IPTABLES_PATH+set}" = set; then :
6124 +if ${ac_cv_path_IPTABLES_PATH+:} false; then :
6125 $as_echo_n "(cached) " >&6
6126 else
6127 case $IPTABLES_PATH in
6128 @@ -46773,7 +46987,7 @@ _ACEOF
6129 set dummy ip6tables; ac_word=$2
6130 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6131 $as_echo_n "checking for $ac_word... " >&6; }
6132 -if test "${ac_cv_path_IP6TABLES_PATH+set}" = set; then :
6133 +if ${ac_cv_path_IP6TABLES_PATH+:} false; then :
6134 $as_echo_n "(cached) " >&6
6135 else
6136 case $IP6TABLES_PATH in
6137 @@ -46821,7 +47035,7 @@ _ACEOF
6138 set dummy ebtables; ac_word=$2
6139 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6140 $as_echo_n "checking for $ac_word... " >&6; }
6141 -if test "${ac_cv_path_EBTABLES_PATH+set}" = set; then :
6142 +if ${ac_cv_path_EBTABLES_PATH+:} false; then :
6143 $as_echo_n "(cached) " >&6
6144 else
6145 case $EBTABLES_PATH in
6146 @@ -46914,7 +47128,7 @@ fi
6147 if test x"$with_remote" = x"yes" || test x"$with_libvirtd" = x"yes"; then
6148 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xdrmem_create in -lportablexdr" >&5
6149 $as_echo_n "checking for xdrmem_create in -lportablexdr... " >&6; }
6150 -if test "${ac_cv_lib_portablexdr_xdrmem_create+set}" = set; then :
6151 +if ${ac_cv_lib_portablexdr_xdrmem_create+:} false; then :
6152 $as_echo_n "(cached) " >&6
6153 else
6154 ac_check_lib_save_LIBS=$LIBS
6155 @@ -46948,7 +47162,7 @@ LIBS=$ac_check_lib_save_LIBS
6156 fi
6157 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_portablexdr_xdrmem_create" >&5
6158 $as_echo "$ac_cv_lib_portablexdr_xdrmem_create" >&6; }
6159 -if test "x$ac_cv_lib_portablexdr_xdrmem_create" = x""yes; then :
6160 +if test "x$ac_cv_lib_portablexdr_xdrmem_create" = xyes; then :
6161 cat >>confdefs.h <<_ACEOF
6162 #define HAVE_LIBPORTABLEXDR 1
6163 _ACEOF
6164 @@ -46959,7 +47173,7 @@ else
6165
6166 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing xdrmem_create" >&5
6167 $as_echo_n "checking for library containing xdrmem_create... " >&6; }
6168 -if test "${ac_cv_search_xdrmem_create+set}" = set; then :
6169 +if ${ac_cv_search_xdrmem_create+:} false; then :
6170 $as_echo_n "(cached) " >&6
6171 else
6172 ac_func_search_save_LIBS=$LIBS
6173 @@ -46993,11 +47207,11 @@ for ac_lib in '' rpc xdr nsl tirpc; do
6174 fi
6175 rm -f core conftest.err conftest.$ac_objext \
6176 conftest$ac_exeext
6177 - if test "${ac_cv_search_xdrmem_create+set}" = set; then :
6178 + if ${ac_cv_search_xdrmem_create+:} false; then :
6179 break
6180 fi
6181 done
6182 -if test "${ac_cv_search_xdrmem_create+set}" = set; then :
6183 +if ${ac_cv_search_xdrmem_create+:} false; then :
6184
6185 else
6186 ac_cv_search_xdrmem_create=no
6187 @@ -47022,7 +47236,7 @@ fi
6188 for ac_func in xdr_u_int64_t
6189 do :
6190 ac_fn_c_check_func "$LINENO" "xdr_u_int64_t" "ac_cv_func_xdr_u_int64_t"
6191 -if test "x$ac_cv_func_xdr_u_int64_t" = x""yes; then :
6192 +if test "x$ac_cv_func_xdr_u_int64_t" = xyes; then :
6193 cat >>confdefs.h <<_ACEOF
6194 #define HAVE_XDR_U_INT64_T 1
6195 _ACEOF
6196 @@ -47034,7 +47248,7 @@ done
6197 old_CFLAGS=$CFLAGS
6198 { $as_echo "$as_me:${as_lineno-$LINENO}: checking where to find <rpc/rpc.h>" >&5
6199 $as_echo_n "checking where to find <rpc/rpc.h>... " >&6; }
6200 -if test "${lv_cv_xdr_cflags+set}" = set; then :
6201 +if ${lv_cv_xdr_cflags+:} false; then :
6202 $as_echo_n "(cached) " >&6
6203 else
6204
6205 @@ -47079,7 +47293,7 @@ dlfcn_found=yes
6206 dlopen_found=yes
6207
6208 ac_fn_c_check_header_mongrel "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default"
6209 -if test "x$ac_cv_header_dlfcn_h" = x""yes; then :
6210 +if test "x$ac_cv_header_dlfcn_h" = xyes; then :
6211
6212 else
6213 dlfcn_found=no
6214 @@ -47088,7 +47302,7 @@ fi
6215
6216 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing dlopen" >&5
6217 $as_echo_n "checking for library containing dlopen... " >&6; }
6218 -if test "${ac_cv_search_dlopen+set}" = set; then :
6219 +if ${ac_cv_search_dlopen+:} false; then :
6220 $as_echo_n "(cached) " >&6
6221 else
6222 ac_func_search_save_LIBS=$LIBS
6223 @@ -47122,11 +47336,11 @@ for ac_lib in '' dl; do
6224 fi
6225 rm -f core conftest.err conftest.$ac_objext \
6226 conftest$ac_exeext
6227 - if test "${ac_cv_search_dlopen+set}" = set; then :
6228 + if ${ac_cv_search_dlopen+:} false; then :
6229 break
6230 fi
6231 done
6232 -if test "${ac_cv_search_dlopen+set}" = set; then :
6233 +if ${ac_cv_search_dlopen+:} false; then :
6234
6235 else
6236 ac_cv_search_dlopen=no
6237 @@ -47276,7 +47490,7 @@ if test "$with_xenapi" != "no" ; then
6238 LIBS="$LIBS $LIBXENSERVER_LIBS"
6239 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xen_vm_start in -lxenserver" >&5
6240 $as_echo_n "checking for xen_vm_start in -lxenserver... " >&6; }
6241 -if test "${ac_cv_lib_xenserver_xen_vm_start+set}" = set; then :
6242 +if ${ac_cv_lib_xenserver_xen_vm_start+:} false; then :
6243 $as_echo_n "(cached) " >&6
6244 else
6245 ac_check_lib_save_LIBS=$LIBS
6246 @@ -47310,7 +47524,7 @@ LIBS=$ac_check_lib_save_LIBS
6247 fi
6248 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xenserver_xen_vm_start" >&5
6249 $as_echo "$ac_cv_lib_xenserver_xen_vm_start" >&6; }
6250 -if test "x$ac_cv_lib_xenserver_xen_vm_start" = x""yes; then :
6251 +if test "x$ac_cv_lib_xenserver_xen_vm_start" = xyes; then :
6252
6253 with_xenapi=yes
6254 LIBXENSERVER_LIBS="$LIBXENSERVER_LIBS -lxenserver"
6255 @@ -47358,7 +47572,7 @@ if test "$with_libxl" != "no" ; then
6256 LIBS="$LIBS $LIBXL_LIBS"
6257 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libxl_domain_create_new in -lxenlight" >&5
6258 $as_echo_n "checking for libxl_domain_create_new in -lxenlight... " >&6; }
6259 -if test "${ac_cv_lib_xenlight_libxl_domain_create_new+set}" = set; then :
6260 +if ${ac_cv_lib_xenlight_libxl_domain_create_new+:} false; then :
6261 $as_echo_n "(cached) " >&6
6262 else
6263 ac_check_lib_save_LIBS=$LIBS
6264 @@ -47394,7 +47608,7 @@ LIBS=$ac_check_lib_save_LIBS
6265 fi
6266 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xenlight_libxl_domain_create_new" >&5
6267 $as_echo "$ac_cv_lib_xenlight_libxl_domain_create_new" >&6; }
6268 -if test "x$ac_cv_lib_xenlight_libxl_domain_create_new" = x""yes; then :
6269 +if test "x$ac_cv_lib_xenlight_libxl_domain_create_new" = xyes; then :
6270
6271 with_libxl=yes
6272 LIBXL_LIBS="$LIBXL_LIBS -lxenlight -lxenstore -lxenctrl -lxenguest -luuid -lutil -lblktapctl"
6273 @@ -47450,7 +47664,7 @@ if test "$with_xen" != "no" ; then
6274 LIBS="$LIBS $XEN_LIBS"
6275 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xs_read in -lxenstore" >&5
6276 $as_echo_n "checking for xs_read in -lxenstore... " >&6; }
6277 -if test "${ac_cv_lib_xenstore_xs_read+set}" = set; then :
6278 +if ${ac_cv_lib_xenstore_xs_read+:} false; then :
6279 $as_echo_n "(cached) " >&6
6280 else
6281 ac_check_lib_save_LIBS=$LIBS
6282 @@ -47484,7 +47698,7 @@ LIBS=$ac_check_lib_save_LIBS
6283 fi
6284 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xenstore_xs_read" >&5
6285 $as_echo "$ac_cv_lib_xenstore_xs_read" >&6; }
6286 -if test "x$ac_cv_lib_xenstore_xs_read" = x""yes; then :
6287 +if test "x$ac_cv_lib_xenstore_xs_read" = xyes; then :
6288
6289 with_xen=yes
6290 XEN_LIBS="$XEN_LIBS -lxenstore"
6291 @@ -47593,7 +47807,7 @@ if test "$with_xen" != "yes"; then
6292 fi
6293 if test "$with_xen_inotify" != "no"; then
6294 ac_fn_c_check_header_mongrel "$LINENO" "sys/inotify.h" "ac_cv_header_sys_inotify_h" "$ac_includes_default"
6295 -if test "x$ac_cv_header_sys_inotify_h" = x""yes; then :
6296 +if test "x$ac_cv_header_sys_inotify_h" = xyes; then :
6297
6298 with_xen_inotify=yes
6299
6300 @@ -47630,7 +47844,7 @@ fi
6301 for ac_header in linux/kvm.h
6302 do :
6303 ac_fn_c_check_header_mongrel "$LINENO" "linux/kvm.h" "ac_cv_header_linux_kvm_h" "$ac_includes_default"
6304 -if test "x$ac_cv_header_linux_kvm_h" = x""yes; then :
6305 +if test "x$ac_cv_header_linux_kvm_h" = xyes; then :
6306 cat >>confdefs.h <<_ACEOF
6307 #define HAVE_LINUX_KVM_H 1
6308 _ACEOF
6309 @@ -47697,7 +47911,7 @@ if test "$with_qemu" = yes; then
6310 lv_wrapper_shell=
6311 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shell that supports <> redirection" >&5
6312 $as_echo_n "checking for shell that supports <> redirection... " >&6; }
6313 -if test "${lv_cv_wrapper_shell+set}" = set; then :
6314 +if ${lv_cv_wrapper_shell+:} false; then :
6315 $as_echo_n "(cached) " >&6
6316 else
6317
6318 @@ -47770,13 +47984,14 @@ fi
6319
6320
6321
6322 +
6323 if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
6324 if test -n "$ac_tool_prefix"; then
6325 # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
6326 set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
6327 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6328 $as_echo_n "checking for $ac_word... " >&6; }
6329 -if test "${ac_cv_path_PKG_CONFIG+set}" = set; then :
6330 +if ${ac_cv_path_PKG_CONFIG+:} false; then :
6331 $as_echo_n "(cached) " >&6
6332 else
6333 case $PKG_CONFIG in
6334 @@ -47819,7 +48034,7 @@ if test -z "$ac_cv_path_PKG_CONFIG"; then
6335 set dummy pkg-config; ac_word=$2
6336 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6337 $as_echo_n "checking for $ac_word... " >&6; }
6338 -if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then :
6339 +if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
6340 $as_echo_n "(cached) " >&6
6341 else
6342 case $ac_pt_PKG_CONFIG in
6343 @@ -47916,6 +48131,7 @@ if test -n "$LIBXML_CFLAGS"; then
6344 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
6345 test $ac_status = 0; }; then
6346 pkg_cv_LIBXML_CFLAGS=`$PKG_CONFIG --cflags "libxml-2.0 >= $LIBXML_REQUIRED" 2>/dev/null`
6347 + test "x$?" != "x0" && pkg_failed=yes
6348 else
6349 pkg_failed=yes
6350 fi
6351 @@ -47932,6 +48148,7 @@ if test -n "$LIBXML_LIBS"; then
6352 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
6353 test $ac_status = 0; }; then
6354 pkg_cv_LIBXML_LIBS=`$PKG_CONFIG --libs "libxml-2.0 >= $LIBXML_REQUIRED" 2>/dev/null`
6355 + test "x$?" != "x0" && pkg_failed=yes
6356 else
6357 pkg_failed=yes
6358 fi
6359 @@ -47951,9 +48168,9 @@ else
6360 _pkg_short_errors_supported=no
6361 fi
6362 if test $_pkg_short_errors_supported = yes; then
6363 - LIBXML_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "libxml-2.0 >= $LIBXML_REQUIRED" 2>&1`
6364 + LIBXML_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libxml-2.0 >= $LIBXML_REQUIRED" 2>&1`
6365 else
6366 - LIBXML_PKG_ERRORS=`$PKG_CONFIG --print-errors "libxml-2.0 >= $LIBXML_REQUIRED" 2>&1`
6367 + LIBXML_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libxml-2.0 >= $LIBXML_REQUIRED" 2>&1`
6368 fi
6369 # Put the nasty error message in config.log where it belongs
6370 echo "$LIBXML_PKG_ERRORS" >&5
6371 @@ -48002,7 +48219,7 @@ CFLAGS="$CFLAGS $LIBXML_CFLAGS"
6372 LIBS="$LIBS $LIBXML_LIBS"
6373 ac_fn_c_check_member "$LINENO" "struct _xmlURI" "query_raw" "ac_cv_member_struct__xmlURI_query_raw" "#include <libxml/uri.h>
6374 "
6375 -if test "x$ac_cv_member_struct__xmlURI_query_raw" = x""yes; then :
6376 +if test "x$ac_cv_member_struct__xmlURI_query_raw" = xyes; then :
6377
6378 $as_echo "#define HAVE_XMLURI_QUERY_RAW /**/" >>confdefs.h
6379
6380 @@ -48030,6 +48247,7 @@ if test -n "$GNUTLS_CFLAGS"; then
6381 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
6382 test $ac_status = 0; }; then
6383 pkg_cv_GNUTLS_CFLAGS=`$PKG_CONFIG --cflags "gnutls >= $GNUTLS_REQUIRED" 2>/dev/null`
6384 + test "x$?" != "x0" && pkg_failed=yes
6385 else
6386 pkg_failed=yes
6387 fi
6388 @@ -48046,6 +48264,7 @@ if test -n "$GNUTLS_LIBS"; then
6389 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
6390 test $ac_status = 0; }; then
6391 pkg_cv_GNUTLS_LIBS=`$PKG_CONFIG --libs "gnutls >= $GNUTLS_REQUIRED" 2>/dev/null`
6392 + test "x$?" != "x0" && pkg_failed=yes
6393 else
6394 pkg_failed=yes
6395 fi
6396 @@ -48065,9 +48284,9 @@ else
6397 _pkg_short_errors_supported=no
6398 fi
6399 if test $_pkg_short_errors_supported = yes; then
6400 - GNUTLS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "gnutls >= $GNUTLS_REQUIRED" 2>&1`
6401 + GNUTLS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gnutls >= $GNUTLS_REQUIRED" 2>&1`
6402 else
6403 - GNUTLS_PKG_ERRORS=`$PKG_CONFIG --print-errors "gnutls >= $GNUTLS_REQUIRED" 2>&1`
6404 + GNUTLS_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gnutls >= $GNUTLS_REQUIRED" 2>&1`
6405 fi
6406 # Put the nasty error message in config.log where it belongs
6407 echo "$GNUTLS_PKG_ERRORS" >&5
6408 @@ -48089,7 +48308,7 @@ if test "$GNUTLS_FOUND" = "no"; then
6409 fail=0
6410 old_libs="$LIBS"
6411 ac_fn_c_check_header_mongrel "$LINENO" "gnutls/gnutls.h" "ac_cv_header_gnutls_gnutls_h" "$ac_includes_default"
6412 -if test "x$ac_cv_header_gnutls_gnutls_h" = x""yes; then :
6413 +if test "x$ac_cv_header_gnutls_gnutls_h" = xyes; then :
6414
6415 else
6416 fail=1
6417 @@ -48098,7 +48317,7 @@ fi
6418
6419 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gnutls_handshake in -lgnutls" >&5
6420 $as_echo_n "checking for gnutls_handshake in -lgnutls... " >&6; }
6421 -if test "${ac_cv_lib_gnutls_gnutls_handshake+set}" = set; then :
6422 +if ${ac_cv_lib_gnutls_gnutls_handshake+:} false; then :
6423 $as_echo_n "(cached) " >&6
6424 else
6425 ac_check_lib_save_LIBS=$LIBS
6426 @@ -48132,7 +48351,7 @@ LIBS=$ac_check_lib_save_LIBS
6427 fi
6428 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gnutls_gnutls_handshake" >&5
6429 $as_echo "$ac_cv_lib_gnutls_gnutls_handshake" >&6; }
6430 -if test "x$ac_cv_lib_gnutls_gnutls_handshake" = x""yes; then :
6431 +if test "x$ac_cv_lib_gnutls_gnutls_handshake" = xyes; then :
6432 cat >>confdefs.h <<_ACEOF
6433 #define HAVE_LIBGNUTLS 1
6434 _ACEOF
6435 @@ -48162,7 +48381,7 @@ CFLAGS="$CFLAGS $GNUTLS_CFLAGS"
6436 LIBS="$LIBS $GNUTLS_LIBS"
6437 ac_fn_c_check_type "$LINENO" "gnutls_session" "ac_cv_type_gnutls_session" "#include <gnutls/gnutls.h>
6438 "
6439 -if test "x$ac_cv_type_gnutls_session" = x""yes; then :
6440 +if test "x$ac_cv_type_gnutls_session" = xyes; then :
6441
6442 $as_echo "#define GNUTLS_1_0_COMPAT /**/" >>confdefs.h
6443
6444 @@ -48194,7 +48413,7 @@ if test "x$with_sasl" != "xno"; then
6445 CFLAGS="$CFLAGS $SASL_CFLAGS"
6446 LIBS="$LIBS $SASL_LIBS"
6447 ac_fn_c_check_header_mongrel "$LINENO" "sasl/sasl.h" "ac_cv_header_sasl_sasl_h" "$ac_includes_default"
6448 -if test "x$ac_cv_header_sasl_sasl_h" = x""yes; then :
6449 +if test "x$ac_cv_header_sasl_sasl_h" = xyes; then :
6450
6451 else
6452
6453 @@ -48209,7 +48428,7 @@ fi
6454 if test "x$with_sasl" != "xno" ; then
6455 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sasl_client_init in -lsasl2" >&5
6456 $as_echo_n "checking for sasl_client_init in -lsasl2... " >&6; }
6457 -if test "${ac_cv_lib_sasl2_sasl_client_init+set}" = set; then :
6458 +if ${ac_cv_lib_sasl2_sasl_client_init+:} false; then :
6459 $as_echo_n "(cached) " >&6
6460 else
6461 ac_check_lib_save_LIBS=$LIBS
6462 @@ -48243,7 +48462,7 @@ LIBS=$ac_check_lib_save_LIBS
6463 fi
6464 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sasl2_sasl_client_init" >&5
6465 $as_echo "$ac_cv_lib_sasl2_sasl_client_init" >&6; }
6466 -if test "x$ac_cv_lib_sasl2_sasl_client_init" = x""yes; then :
6467 +if test "x$ac_cv_lib_sasl2_sasl_client_init" = xyes; then :
6468
6469 SASL_LIBS="$SASL_LIBS -lsasl2"
6470 with_sasl=yes
6471 @@ -48252,7 +48471,7 @@ else
6472
6473 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sasl_client_init in -lsasl" >&5
6474 $as_echo_n "checking for sasl_client_init in -lsasl... " >&6; }
6475 -if test "${ac_cv_lib_sasl_sasl_client_init+set}" = set; then :
6476 +if ${ac_cv_lib_sasl_sasl_client_init+:} false; then :
6477 $as_echo_n "(cached) " >&6
6478 else
6479 ac_check_lib_save_LIBS=$LIBS
6480 @@ -48286,7 +48505,7 @@ LIBS=$ac_check_lib_save_LIBS
6481 fi
6482 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sasl_sasl_client_init" >&5
6483 $as_echo "$ac_cv_lib_sasl_sasl_client_init" >&6; }
6484 -if test "x$ac_cv_lib_sasl_sasl_client_init" = x""yes; then :
6485 +if test "x$ac_cv_lib_sasl_sasl_client_init" = xyes; then :
6486
6487 SASL_LIBS="$SASL_LIBS -lsasl"
6488 with_sasl=yes
6489 @@ -48352,7 +48571,7 @@ if test "x$with_yajl" != "xno"; then
6490 CPPFLAGS="$CPPFLAGS $YAJL_CFLAGS"
6491 LIBS="$LIBS $YAJL_LIBS"
6492 ac_fn_c_check_header_mongrel "$LINENO" "yajl/yajl_common.h" "ac_cv_header_yajl_yajl_common_h" "$ac_includes_default"
6493 -if test "x$ac_cv_header_yajl_yajl_common_h" = x""yes; then :
6494 +if test "x$ac_cv_header_yajl_yajl_common_h" = xyes; then :
6495
6496 else
6497
6498 @@ -48367,7 +48586,7 @@ fi
6499 if test "x$with_yajl" != "xno" ; then
6500 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for yajl_parse in -lyajl" >&5
6501 $as_echo_n "checking for yajl_parse in -lyajl... " >&6; }
6502 -if test "${ac_cv_lib_yajl_yajl_parse+set}" = set; then :
6503 +if ${ac_cv_lib_yajl_yajl_parse+:} false; then :
6504 $as_echo_n "(cached) " >&6
6505 else
6506 ac_check_lib_save_LIBS=$LIBS
6507 @@ -48401,13 +48620,13 @@ LIBS=$ac_check_lib_save_LIBS
6508 fi
6509 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_yajl_yajl_parse" >&5
6510 $as_echo "$ac_cv_lib_yajl_yajl_parse" >&6; }
6511 -if test "x$ac_cv_lib_yajl_yajl_parse" = x""yes; then :
6512 +if test "x$ac_cv_lib_yajl_yajl_parse" = xyes; then :
6513
6514 YAJL_LIBS="$YAJL_LIBS -lyajl"
6515 with_yajl=yes
6516 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for yajl_tree_parse in -lyajl" >&5
6517 $as_echo_n "checking for yajl_tree_parse in -lyajl... " >&6; }
6518 -if test "${ac_cv_lib_yajl_yajl_tree_parse+set}" = set; then :
6519 +if ${ac_cv_lib_yajl_yajl_tree_parse+:} false; then :
6520 $as_echo_n "(cached) " >&6
6521 else
6522 ac_check_lib_save_LIBS=$LIBS
6523 @@ -48441,7 +48660,7 @@ LIBS=$ac_check_lib_save_LIBS
6524 fi
6525 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_yajl_yajl_tree_parse" >&5
6526 $as_echo "$ac_cv_lib_yajl_yajl_tree_parse" >&6; }
6527 -if test "x$ac_cv_lib_yajl_yajl_tree_parse" = x""yes; then :
6528 +if test "x$ac_cv_lib_yajl_yajl_tree_parse" = xyes; then :
6529
6530 with_yajl2=yes
6531
6532 @@ -48512,7 +48731,7 @@ if test "x$with_sanlock" != "xno"; then
6533 CPPFLAGS="$CPPFLAGS $SANLOCK_CFLAGS"
6534 LIBS="$LIBS $SANLOCK_LIBS"
6535 ac_fn_c_check_header_mongrel "$LINENO" "sanlock.h" "ac_cv_header_sanlock_h" "$ac_includes_default"
6536 -if test "x$ac_cv_header_sanlock_h" = x""yes; then :
6537 +if test "x$ac_cv_header_sanlock_h" = xyes; then :
6538
6539 else
6540
6541 @@ -48527,7 +48746,7 @@ fi
6542 if test "x$with_sanlock" != "xno" ; then
6543 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sanlock_restrict in -lsanlock" >&5
6544 $as_echo_n "checking for sanlock_restrict in -lsanlock... " >&6; }
6545 -if test "${ac_cv_lib_sanlock_sanlock_restrict+set}" = set; then :
6546 +if ${ac_cv_lib_sanlock_sanlock_restrict+:} false; then :
6547 $as_echo_n "(cached) " >&6
6548 else
6549 ac_check_lib_save_LIBS=$LIBS
6550 @@ -48561,7 +48780,7 @@ LIBS=$ac_check_lib_save_LIBS
6551 fi
6552 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sanlock_sanlock_restrict" >&5
6553 $as_echo "$ac_cv_lib_sanlock_sanlock_restrict" >&6; }
6554 -if test "x$ac_cv_lib_sanlock_sanlock_restrict" = x""yes; then :
6555 +if test "x$ac_cv_lib_sanlock_sanlock_restrict" = xyes; then :
6556
6557 SANLOCK_LIBS="$SANLOCK_LIBS -lsanlock"
6558 with_sanlock=yes
6559 @@ -48621,7 +48840,7 @@ if test "x$with_polkit" = "xyes" || test "x$with_polkit" = "xcheck"; then
6560 set dummy pkcheck; ac_word=$2
6561 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6562 $as_echo_n "checking for $ac_word... " >&6; }
6563 -if test "${ac_cv_path_PKCHECK_PATH+set}" = set; then :
6564 +if ${ac_cv_path_PKCHECK_PATH+:} false; then :
6565 $as_echo_n "(cached) " >&6
6566 else
6567 case $PKCHECK_PATH in
6568 @@ -48692,6 +48911,7 @@ if test -n "$POLKIT_CFLAGS"; then
6569 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
6570 test $ac_status = 0; }; then
6571 pkg_cv_POLKIT_CFLAGS=`$PKG_CONFIG --cflags "polkit-dbus >= $POLKIT_REQUIRED" 2>/dev/null`
6572 + test "x$?" != "x0" && pkg_failed=yes
6573 else
6574 pkg_failed=yes
6575 fi
6576 @@ -48708,6 +48928,7 @@ if test -n "$POLKIT_LIBS"; then
6577 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
6578 test $ac_status = 0; }; then
6579 pkg_cv_POLKIT_LIBS=`$PKG_CONFIG --libs "polkit-dbus >= $POLKIT_REQUIRED" 2>/dev/null`
6580 + test "x$?" != "x0" && pkg_failed=yes
6581 else
6582 pkg_failed=yes
6583 fi
6584 @@ -48727,9 +48948,9 @@ else
6585 _pkg_short_errors_supported=no
6586 fi
6587 if test $_pkg_short_errors_supported = yes; then
6588 - POLKIT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "polkit-dbus >= $POLKIT_REQUIRED" 2>&1`
6589 + POLKIT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "polkit-dbus >= $POLKIT_REQUIRED" 2>&1`
6590 else
6591 - POLKIT_PKG_ERRORS=`$PKG_CONFIG --print-errors "polkit-dbus >= $POLKIT_REQUIRED" 2>&1`
6592 + POLKIT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "polkit-dbus >= $POLKIT_REQUIRED" 2>&1`
6593 fi
6594 # Put the nasty error message in config.log where it belongs
6595 echo "$POLKIT_PKG_ERRORS" >&5
6596 @@ -48782,7 +49003,7 @@ _ACEOF
6597 for ac_func in polkit_context_is_caller_authorized
6598 do :
6599 ac_fn_c_check_func "$LINENO" "polkit_context_is_caller_authorized" "ac_cv_func_polkit_context_is_caller_authorized"
6600 -if test "x$ac_cv_func_polkit_context_is_caller_authorized" = x""yes; then :
6601 +if test "x$ac_cv_func_polkit_context_is_caller_authorized" = xyes; then :
6602 cat >>confdefs.h <<_ACEOF
6603 #define HAVE_POLKIT_CONTEXT_IS_CALLER_AUTHORIZED 1
6604 _ACEOF
6605 @@ -48797,7 +49018,7 @@ done
6606 set dummy polkit-auth; ac_word=$2
6607 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6608 $as_echo_n "checking for $ac_word... " >&6; }
6609 -if test "${ac_cv_path_POLKIT_AUTH+set}" = set; then :
6610 +if ${ac_cv_path_POLKIT_AUTH+:} false; then :
6611 $as_echo_n "(cached) " >&6
6612 else
6613 case $POLKIT_AUTH in
6614 @@ -48907,6 +49128,7 @@ if test -n "$AVAHI_CFLAGS"; then
6615 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
6616 test $ac_status = 0; }; then
6617 pkg_cv_AVAHI_CFLAGS=`$PKG_CONFIG --cflags "avahi-client >= $AVAHI_REQUIRED" 2>/dev/null`
6618 + test "x$?" != "x0" && pkg_failed=yes
6619 else
6620 pkg_failed=yes
6621 fi
6622 @@ -48923,6 +49145,7 @@ if test -n "$AVAHI_LIBS"; then
6623 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
6624 test $ac_status = 0; }; then
6625 pkg_cv_AVAHI_LIBS=`$PKG_CONFIG --libs "avahi-client >= $AVAHI_REQUIRED" 2>/dev/null`
6626 + test "x$?" != "x0" && pkg_failed=yes
6627 else
6628 pkg_failed=yes
6629 fi
6630 @@ -48942,9 +49165,9 @@ else
6631 _pkg_short_errors_supported=no
6632 fi
6633 if test $_pkg_short_errors_supported = yes; then
6634 - AVAHI_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "avahi-client >= $AVAHI_REQUIRED" 2>&1`
6635 + AVAHI_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "avahi-client >= $AVAHI_REQUIRED" 2>&1`
6636 else
6637 - AVAHI_PKG_ERRORS=`$PKG_CONFIG --print-errors "avahi-client >= $AVAHI_REQUIRED" 2>&1`
6638 + AVAHI_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "avahi-client >= $AVAHI_REQUIRED" 2>&1`
6639 fi
6640 # Put the nasty error message in config.log where it belongs
6641 echo "$AVAHI_PKG_ERRORS" >&5
6642 @@ -49014,7 +49237,7 @@ if test "$with_audit" != "no" ; then
6643 LIBS="$LIBS $AUDIT_LIBS"
6644 fail=0
6645 ac_fn_c_check_header_mongrel "$LINENO" "libaudit.h" "ac_cv_header_libaudit_h" "$ac_includes_default"
6646 -if test "x$ac_cv_header_libaudit_h" = x""yes; then :
6647 +if test "x$ac_cv_header_libaudit_h" = xyes; then :
6648
6649 else
6650 fail=1
6651 @@ -49023,7 +49246,7 @@ fi
6652
6653 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for audit_encode_nv_string in -laudit" >&5
6654 $as_echo_n "checking for audit_encode_nv_string in -laudit... " >&6; }
6655 -if test "${ac_cv_lib_audit_audit_encode_nv_string+set}" = set; then :
6656 +if ${ac_cv_lib_audit_audit_encode_nv_string+:} false; then :
6657 $as_echo_n "(cached) " >&6
6658 else
6659 ac_check_lib_save_LIBS=$LIBS
6660 @@ -49057,7 +49280,7 @@ LIBS=$ac_check_lib_save_LIBS
6661 fi
6662 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_audit_audit_encode_nv_string" >&5
6663 $as_echo "$ac_cv_lib_audit_audit_encode_nv_string" >&6; }
6664 -if test "x$ac_cv_lib_audit_audit_encode_nv_string" = x""yes; then :
6665 +if test "x$ac_cv_lib_audit_audit_encode_nv_string" = xyes; then :
6666 cat >>confdefs.h <<_ACEOF
6667 #define HAVE_LIBAUDIT 1
6668 _ACEOF
6669 @@ -49121,7 +49344,7 @@ if test "$with_selinux" != "no"; then
6670 old_libs="$LIBS"
6671 if test "$with_selinux" = "check"; then
6672 ac_fn_c_check_header_mongrel "$LINENO" "selinux/selinux.h" "ac_cv_header_selinux_selinux_h" "$ac_includes_default"
6673 -if test "x$ac_cv_header_selinux_selinux_h" = x""yes; then :
6674 +if test "x$ac_cv_header_selinux_selinux_h" = xyes; then :
6675
6676 else
6677 with_selinux=no
6678 @@ -49130,7 +49353,7 @@ fi
6679
6680 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgetfilecon in -lselinux" >&5
6681 $as_echo_n "checking for fgetfilecon in -lselinux... " >&6; }
6682 -if test "${ac_cv_lib_selinux_fgetfilecon+set}" = set; then :
6683 +if ${ac_cv_lib_selinux_fgetfilecon+:} false; then :
6684 $as_echo_n "(cached) " >&6
6685 else
6686 ac_check_lib_save_LIBS=$LIBS
6687 @@ -49164,7 +49387,7 @@ LIBS=$ac_check_lib_save_LIBS
6688 fi
6689 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_selinux_fgetfilecon" >&5
6690 $as_echo "$ac_cv_lib_selinux_fgetfilecon" >&6; }
6691 -if test "x$ac_cv_lib_selinux_fgetfilecon" = x""yes; then :
6692 +if test "x$ac_cv_lib_selinux_fgetfilecon" = xyes; then :
6693 cat >>confdefs.h <<_ACEOF
6694 #define HAVE_LIBSELINUX 1
6695 _ACEOF
6696 @@ -49181,7 +49404,7 @@ fi
6697 else
6698 fail=0
6699 ac_fn_c_check_header_mongrel "$LINENO" "selinux/selinux.h" "ac_cv_header_selinux_selinux_h" "$ac_includes_default"
6700 -if test "x$ac_cv_header_selinux_selinux_h" = x""yes; then :
6701 +if test "x$ac_cv_header_selinux_selinux_h" = xyes; then :
6702
6703 else
6704 fail=1
6705 @@ -49190,7 +49413,7 @@ fi
6706
6707 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgetfilecon in -lselinux" >&5
6708 $as_echo_n "checking for fgetfilecon in -lselinux... " >&6; }
6709 -if test "${ac_cv_lib_selinux_fgetfilecon+set}" = set; then :
6710 +if ${ac_cv_lib_selinux_fgetfilecon+:} false; then :
6711 $as_echo_n "(cached) " >&6
6712 else
6713 ac_check_lib_save_LIBS=$LIBS
6714 @@ -49224,7 +49447,7 @@ LIBS=$ac_check_lib_save_LIBS
6715 fi
6716 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_selinux_fgetfilecon" >&5
6717 $as_echo "$ac_cv_lib_selinux_fgetfilecon" >&6; }
6718 -if test "x$ac_cv_lib_selinux_fgetfilecon" = x""yes; then :
6719 +if test "x$ac_cv_lib_selinux_fgetfilecon" = xyes; then :
6720 cat >>confdefs.h <<_ACEOF
6721 #define HAVE_LIBSELINUX 1
6722 _ACEOF
6723 @@ -49251,7 +49474,7 @@ _ACEOF
6724 for ac_header in selinux/label.h
6725 do :
6726 ac_fn_c_check_header_mongrel "$LINENO" "selinux/label.h" "ac_cv_header_selinux_label_h" "$ac_includes_default"
6727 -if test "x$ac_cv_header_selinux_label_h" = x""yes; then :
6728 +if test "x$ac_cv_header_selinux_label_h" = xyes; then :
6729 cat >>confdefs.h <<_ACEOF
6730 #define HAVE_SELINUX_LABEL_H 1
6731 _ACEOF
6732 @@ -49296,14 +49519,14 @@ else
6733
6734 fail=0
6735 ac_fn_c_check_func "$LINENO" "selinux_virtual_domain_context_path" "ac_cv_func_selinux_virtual_domain_context_path"
6736 -if test "x$ac_cv_func_selinux_virtual_domain_context_path" = x""yes; then :
6737 +if test "x$ac_cv_func_selinux_virtual_domain_context_path" = xyes; then :
6738
6739 else
6740 fail=1
6741 fi
6742
6743 ac_fn_c_check_func "$LINENO" "selinux_virtual_image_context_path" "ac_cv_func_selinux_virtual_image_context_path"
6744 -if test "x$ac_cv_func_selinux_virtual_image_context_path" = x""yes; then :
6745 +if test "x$ac_cv_func_selinux_virtual_image_context_path" = xyes; then :
6746
6747 else
6748 fail=1
6749 @@ -49353,7 +49576,7 @@ if test "$with_apparmor" != "no"; then
6750 old_libs="$LIBS"
6751 if test "$with_apparmor" = "check"; then
6752 ac_fn_c_check_header_mongrel "$LINENO" "sys/apparmor.h" "ac_cv_header_sys_apparmor_h" "$ac_includes_default"
6753 -if test "x$ac_cv_header_sys_apparmor_h" = x""yes; then :
6754 +if test "x$ac_cv_header_sys_apparmor_h" = xyes; then :
6755
6756 else
6757 with_apparmor=no
6758 @@ -49362,7 +49585,7 @@ fi
6759
6760 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for aa_change_profile in -lapparmor" >&5
6761 $as_echo_n "checking for aa_change_profile in -lapparmor... " >&6; }
6762 -if test "${ac_cv_lib_apparmor_aa_change_profile+set}" = set; then :
6763 +if ${ac_cv_lib_apparmor_aa_change_profile+:} false; then :
6764 $as_echo_n "(cached) " >&6
6765 else
6766 ac_check_lib_save_LIBS=$LIBS
6767 @@ -49396,7 +49619,7 @@ LIBS=$ac_check_lib_save_LIBS
6768 fi
6769 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_apparmor_aa_change_profile" >&5
6770 $as_echo "$ac_cv_lib_apparmor_aa_change_profile" >&6; }
6771 -if test "x$ac_cv_lib_apparmor_aa_change_profile" = x""yes; then :
6772 +if test "x$ac_cv_lib_apparmor_aa_change_profile" = xyes; then :
6773 cat >>confdefs.h <<_ACEOF
6774 #define HAVE_LIBAPPARMOR 1
6775 _ACEOF
6776 @@ -49409,7 +49632,7 @@ fi
6777
6778 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for aa_change_hat in -lapparmor" >&5
6779 $as_echo_n "checking for aa_change_hat in -lapparmor... " >&6; }
6780 -if test "${ac_cv_lib_apparmor_aa_change_hat+set}" = set; then :
6781 +if ${ac_cv_lib_apparmor_aa_change_hat+:} false; then :
6782 $as_echo_n "(cached) " >&6
6783 else
6784 ac_check_lib_save_LIBS=$LIBS
6785 @@ -49443,7 +49666,7 @@ LIBS=$ac_check_lib_save_LIBS
6786 fi
6787 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_apparmor_aa_change_hat" >&5
6788 $as_echo "$ac_cv_lib_apparmor_aa_change_hat" >&6; }
6789 -if test "x$ac_cv_lib_apparmor_aa_change_hat" = x""yes; then :
6790 +if test "x$ac_cv_lib_apparmor_aa_change_hat" = xyes; then :
6791 cat >>confdefs.h <<_ACEOF
6792 #define HAVE_LIBAPPARMOR 1
6793 _ACEOF
6794 @@ -49460,7 +49683,7 @@ fi
6795 else
6796 fail=0
6797 ac_fn_c_check_header_mongrel "$LINENO" "sys/apparmor.h" "ac_cv_header_sys_apparmor_h" "$ac_includes_default"
6798 -if test "x$ac_cv_header_sys_apparmor_h" = x""yes; then :
6799 +if test "x$ac_cv_header_sys_apparmor_h" = xyes; then :
6800
6801 else
6802 fail=1
6803 @@ -49469,7 +49692,7 @@ fi
6804
6805 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for aa_change_profile in -lapparmor" >&5
6806 $as_echo_n "checking for aa_change_profile in -lapparmor... " >&6; }
6807 -if test "${ac_cv_lib_apparmor_aa_change_profile+set}" = set; then :
6808 +if ${ac_cv_lib_apparmor_aa_change_profile+:} false; then :
6809 $as_echo_n "(cached) " >&6
6810 else
6811 ac_check_lib_save_LIBS=$LIBS
6812 @@ -49503,7 +49726,7 @@ LIBS=$ac_check_lib_save_LIBS
6813 fi
6814 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_apparmor_aa_change_profile" >&5
6815 $as_echo "$ac_cv_lib_apparmor_aa_change_profile" >&6; }
6816 -if test "x$ac_cv_lib_apparmor_aa_change_profile" = x""yes; then :
6817 +if test "x$ac_cv_lib_apparmor_aa_change_profile" = xyes; then :
6818 cat >>confdefs.h <<_ACEOF
6819 #define HAVE_LIBAPPARMOR 1
6820 _ACEOF
6821 @@ -49516,7 +49739,7 @@ fi
6822
6823 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for aa_change_hat in -lapparmor" >&5
6824 $as_echo_n "checking for aa_change_hat in -lapparmor... " >&6; }
6825 -if test "${ac_cv_lib_apparmor_aa_change_hat+set}" = set; then :
6826 +if ${ac_cv_lib_apparmor_aa_change_hat+:} false; then :
6827 $as_echo_n "(cached) " >&6
6828 else
6829 ac_check_lib_save_LIBS=$LIBS
6830 @@ -49550,7 +49773,7 @@ LIBS=$ac_check_lib_save_LIBS
6831 fi
6832 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_apparmor_aa_change_hat" >&5
6833 $as_echo "$ac_cv_lib_apparmor_aa_change_hat" >&6; }
6834 -if test "x$ac_cv_lib_apparmor_aa_change_hat" = x""yes; then :
6835 +if test "x$ac_cv_lib_apparmor_aa_change_hat" = xyes; then :
6836 cat >>confdefs.h <<_ACEOF
6837 #define HAVE_LIBAPPARMOR 1
6838 _ACEOF
6839 @@ -49620,14 +49843,14 @@ else
6840
6841 fail=0
6842 ac_fn_c_check_func "$LINENO" "change_hat" "ac_cv_func_change_hat"
6843 -if test "x$ac_cv_func_change_hat" = x""yes; then :
6844 +if test "x$ac_cv_func_change_hat" = xyes; then :
6845
6846 else
6847 fail=1
6848 fi
6849
6850 ac_fn_c_check_func "$LINENO" "aa_change_profile" "ac_cv_func_aa_change_profile"
6851 -if test "x$ac_cv_func_aa_change_profile" = x""yes; then :
6852 +if test "x$ac_cv_func_aa_change_profile" = xyes; then :
6853
6854 else
6855 fail=1
6856 @@ -49675,7 +49898,7 @@ if test "$with_dtrace" != "no" ; then
6857 set dummy dtrace; ac_word=$2
6858 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6859 $as_echo_n "checking for $ac_word... " >&6; }
6860 -if test "${ac_cv_path_DTRACE+set}" = set; then :
6861 +if ${ac_cv_path_DTRACE+:} false; then :
6862 $as_echo_n "(cached) " >&6
6863 else
6864 case $DTRACE in
6865 @@ -49755,7 +49978,7 @@ if test "$with_qemu" = "yes" && test "$with_numactl" != "no"; then
6866 old_libs="$LIBS"
6867 if test "$with_numactl" = "check"; then
6868 ac_fn_c_check_header_mongrel "$LINENO" "numa.h" "ac_cv_header_numa_h" "$ac_includes_default"
6869 -if test "x$ac_cv_header_numa_h" = x""yes; then :
6870 +if test "x$ac_cv_header_numa_h" = xyes; then :
6871
6872 else
6873 with_numactl=no
6874 @@ -49764,7 +49987,7 @@ fi
6875
6876 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for numa_available in -lnuma" >&5
6877 $as_echo_n "checking for numa_available in -lnuma... " >&6; }
6878 -if test "${ac_cv_lib_numa_numa_available+set}" = set; then :
6879 +if ${ac_cv_lib_numa_numa_available+:} false; then :
6880 $as_echo_n "(cached) " >&6
6881 else
6882 ac_check_lib_save_LIBS=$LIBS
6883 @@ -49798,7 +50021,7 @@ LIBS=$ac_check_lib_save_LIBS
6884 fi
6885 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_numa_numa_available" >&5
6886 $as_echo "$ac_cv_lib_numa_numa_available" >&6; }
6887 -if test "x$ac_cv_lib_numa_numa_available" = x""yes; then :
6888 +if test "x$ac_cv_lib_numa_numa_available" = xyes; then :
6889 cat >>confdefs.h <<_ACEOF
6890 #define HAVE_LIBNUMA 1
6891 _ACEOF
6892 @@ -49815,7 +50038,7 @@ fi
6893 else
6894 fail=0
6895 ac_fn_c_check_header_mongrel "$LINENO" "numa.h" "ac_cv_header_numa_h" "$ac_includes_default"
6896 -if test "x$ac_cv_header_numa_h" = x""yes; then :
6897 +if test "x$ac_cv_header_numa_h" = xyes; then :
6898
6899 else
6900 fail=1
6901 @@ -49824,7 +50047,7 @@ fi
6902
6903 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for numa_available in -lnuma" >&5
6904 $as_echo_n "checking for numa_available in -lnuma... " >&6; }
6905 -if test "${ac_cv_lib_numa_numa_available+set}" = set; then :
6906 +if ${ac_cv_lib_numa_numa_available+:} false; then :
6907 $as_echo_n "(cached) " >&6
6908 else
6909 ac_check_lib_save_LIBS=$LIBS
6910 @@ -49858,7 +50081,7 @@ LIBS=$ac_check_lib_save_LIBS
6911 fi
6912 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_numa_numa_available" >&5
6913 $as_echo "$ac_cv_lib_numa_numa_available" >&6; }
6914 -if test "x$ac_cv_lib_numa_numa_available" = x""yes; then :
6915 +if test "x$ac_cv_lib_numa_numa_available" = xyes; then :
6916 cat >>confdefs.h <<_ACEOF
6917 #define HAVE_LIBNUMA 1
6918 _ACEOF
6919 @@ -49949,7 +50172,7 @@ if test "$with_libvirtd" = "no" ; then
6920 fi
6921 if test "$with_uml" = "yes" || test "$with_uml" = "check"; then
6922 ac_fn_c_check_header_mongrel "$LINENO" "sys/inotify.h" "ac_cv_header_sys_inotify_h" "$ac_includes_default"
6923 -if test "x$ac_cv_header_sys_inotify_h" = x""yes; then :
6924 +if test "x$ac_cv_header_sys_inotify_h" = xyes; then :
6925
6926 with_uml=yes
6927
6928 @@ -50005,6 +50228,7 @@ if test -n "$LIBSSH2_CFLAGS"; then
6929 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
6930 test $ac_status = 0; }; then
6931 pkg_cv_LIBSSH2_CFLAGS=`$PKG_CONFIG --cflags "libssh2 >= $LIBSSH2_REQUIRED" 2>/dev/null`
6932 + test "x$?" != "x0" && pkg_failed=yes
6933 else
6934 pkg_failed=yes
6935 fi
6936 @@ -50021,6 +50245,7 @@ if test -n "$LIBSSH2_LIBS"; then
6937 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
6938 test $ac_status = 0; }; then
6939 pkg_cv_LIBSSH2_LIBS=`$PKG_CONFIG --libs "libssh2 >= $LIBSSH2_REQUIRED" 2>/dev/null`
6940 + test "x$?" != "x0" && pkg_failed=yes
6941 else
6942 pkg_failed=yes
6943 fi
6944 @@ -50040,9 +50265,9 @@ else
6945 _pkg_short_errors_supported=no
6946 fi
6947 if test $_pkg_short_errors_supported = yes; then
6948 - LIBSSH2_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "libssh2 >= $LIBSSH2_REQUIRED" 2>&1`
6949 + LIBSSH2_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libssh2 >= $LIBSSH2_REQUIRED" 2>&1`
6950 else
6951 - LIBSSH2_PKG_ERRORS=`$PKG_CONFIG --print-errors "libssh2 >= $LIBSSH2_REQUIRED" 2>&1`
6952 + LIBSSH2_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libssh2 >= $LIBSSH2_REQUIRED" 2>&1`
6953 fi
6954 # Put the nasty error message in config.log where it belongs
6955 echo "$LIBSSH2_PKG_ERRORS" >&5
6956 @@ -50114,7 +50339,7 @@ if test "$with_qemu" = "yes" && test "$with_capng" != "no"; then
6957 old_libs="$LIBS"
6958 if test "$with_capng" = "check"; then
6959 ac_fn_c_check_header_mongrel "$LINENO" "cap-ng.h" "ac_cv_header_cap_ng_h" "$ac_includes_default"
6960 -if test "x$ac_cv_header_cap_ng_h" = x""yes; then :
6961 +if test "x$ac_cv_header_cap_ng_h" = xyes; then :
6962
6963 else
6964 with_capng=no
6965 @@ -50123,7 +50348,7 @@ fi
6966
6967 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for capng_updatev in -lcap-ng" >&5
6968 $as_echo_n "checking for capng_updatev in -lcap-ng... " >&6; }
6969 -if test "${ac_cv_lib_cap_ng_capng_updatev+set}" = set; then :
6970 +if ${ac_cv_lib_cap_ng_capng_updatev+:} false; then :
6971 $as_echo_n "(cached) " >&6
6972 else
6973 ac_check_lib_save_LIBS=$LIBS
6974 @@ -50157,7 +50382,7 @@ LIBS=$ac_check_lib_save_LIBS
6975 fi
6976 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_cap_ng_capng_updatev" >&5
6977 $as_echo "$ac_cv_lib_cap_ng_capng_updatev" >&6; }
6978 -if test "x$ac_cv_lib_cap_ng_capng_updatev" = x""yes; then :
6979 +if test "x$ac_cv_lib_cap_ng_capng_updatev" = xyes; then :
6980 cat >>confdefs.h <<_ACEOF
6981 #define HAVE_LIBCAP_NG 1
6982 _ACEOF
6983 @@ -50174,7 +50399,7 @@ fi
6984 else
6985 fail=0
6986 ac_fn_c_check_header_mongrel "$LINENO" "cap-ng.h" "ac_cv_header_cap_ng_h" "$ac_includes_default"
6987 -if test "x$ac_cv_header_cap_ng_h" = x""yes; then :
6988 +if test "x$ac_cv_header_cap_ng_h" = xyes; then :
6989
6990 else
6991 fail=1
6992 @@ -50183,7 +50408,7 @@ fi
6993
6994 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for capng_updatev in -lcap-ng" >&5
6995 $as_echo_n "checking for capng_updatev in -lcap-ng... " >&6; }
6996 -if test "${ac_cv_lib_cap_ng_capng_updatev+set}" = set; then :
6997 +if ${ac_cv_lib_cap_ng_capng_updatev+:} false; then :
6998 $as_echo_n "(cached) " >&6
6999 else
7000 ac_check_lib_save_LIBS=$LIBS
7001 @@ -50217,7 +50442,7 @@ LIBS=$ac_check_lib_save_LIBS
7002 fi
7003 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_cap_ng_capng_updatev" >&5
7004 $as_echo "$ac_cv_lib_cap_ng_capng_updatev" >&6; }
7005 -if test "x$ac_cv_lib_cap_ng_capng_updatev" = x""yes; then :
7006 +if test "x$ac_cv_lib_cap_ng_capng_updatev" = xyes; then :
7007 cat >>confdefs.h <<_ACEOF
7008 #define HAVE_LIBCAP_NG 1
7009 _ACEOF
7010 @@ -50258,7 +50483,7 @@ fi
7011 for ac_header in readline/readline.h
7012 do :
7013 ac_fn_c_check_header_mongrel "$LINENO" "readline/readline.h" "ac_cv_header_readline_readline_h" "$ac_includes_default"
7014 -if test "x$ac_cv_header_readline_readline_h" = x""yes; then :
7015 +if test "x$ac_cv_header_readline_readline_h" = xyes; then :
7016 cat >>confdefs.h <<_ACEOF
7017 #define HAVE_READLINE_READLINE_H 1
7018 _ACEOF
7019 @@ -50271,7 +50496,7 @@ done
7020 # Check for readline.
7021 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for readline in -lreadline" >&5
7022 $as_echo_n "checking for readline in -lreadline... " >&6; }
7023 -if test "${ac_cv_lib_readline_readline+set}" = set; then :
7024 +if ${ac_cv_lib_readline_readline+:} false; then :
7025 $as_echo_n "(cached) " >&6
7026 else
7027 ac_check_lib_save_LIBS=$LIBS
7028 @@ -50305,7 +50530,7 @@ LIBS=$ac_check_lib_save_LIBS
7029 fi
7030 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_readline" >&5
7031 $as_echo "$ac_cv_lib_readline_readline" >&6; }
7032 -if test "x$ac_cv_lib_readline_readline" = x""yes; then :
7033 +if test "x$ac_cv_lib_readline_readline" = xyes; then :
7034 lv_use_readline=yes; VIRSH_LIBS="$VIRSH_LIBS -lreadline"
7035 else
7036 lv_use_readline=no
7037 @@ -50320,7 +50545,7 @@ if test $lv_use_readline = no; then
7038 LIBS=
7039 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing tgetent" >&5
7040 $as_echo_n "checking for library containing tgetent... " >&6; }
7041 -if test "${ac_cv_search_tgetent+set}" = set; then :
7042 +if ${ac_cv_search_tgetent+:} false; then :
7043 $as_echo_n "(cached) " >&6
7044 else
7045 ac_func_search_save_LIBS=$LIBS
7046 @@ -50354,11 +50579,11 @@ for ac_lib in '' ncurses curses termcap termlib; do
7047 fi
7048 rm -f core conftest.err conftest.$ac_objext \
7049 conftest$ac_exeext
7050 - if test "${ac_cv_search_tgetent+set}" = set; then :
7051 + if ${ac_cv_search_tgetent+:} false; then :
7052 break
7053 fi
7054 done
7055 -if test "${ac_cv_search_tgetent+set}" = set; then :
7056 +if ${ac_cv_search_tgetent+:} false; then :
7057
7058 else
7059 ac_cv_search_tgetent=no
7060 @@ -50382,7 +50607,7 @@ fi
7061 # we don't get a cached "no" result.
7062 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for rl_initialize in -lreadline" >&5
7063 $as_echo_n "checking for rl_initialize in -lreadline... " >&6; }
7064 -if test "${ac_cv_lib_readline_rl_initialize+set}" = set; then :
7065 +if ${ac_cv_lib_readline_rl_initialize+:} false; then :
7066 $as_echo_n "(cached) " >&6
7067 else
7068 ac_check_lib_save_LIBS=$LIBS
7069 @@ -50416,7 +50641,7 @@ LIBS=$ac_check_lib_save_LIBS
7070 fi
7071 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_rl_initialize" >&5
7072 $as_echo "$ac_cv_lib_readline_rl_initialize" >&6; }
7073 -if test "x$ac_cv_lib_readline_rl_initialize" = x""yes; then :
7074 +if test "x$ac_cv_lib_readline_rl_initialize" = xyes; then :
7075 lv_use_readline=yes
7076 VIRSH_LIBS="$VIRSH_LIBS -lreadline $LIBS"
7077 fi
7078 @@ -50518,6 +50743,7 @@ if test -n "$NETCF_CFLAGS"; then
7079 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
7080 test $ac_status = 0; }; then
7081 pkg_cv_NETCF_CFLAGS=`$PKG_CONFIG --cflags "netcf >= $NETCF_REQUIRED" 2>/dev/null`
7082 + test "x$?" != "x0" && pkg_failed=yes
7083 else
7084 pkg_failed=yes
7085 fi
7086 @@ -50534,6 +50760,7 @@ if test -n "$NETCF_LIBS"; then
7087 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
7088 test $ac_status = 0; }; then
7089 pkg_cv_NETCF_LIBS=`$PKG_CONFIG --libs "netcf >= $NETCF_REQUIRED" 2>/dev/null`
7090 + test "x$?" != "x0" && pkg_failed=yes
7091 else
7092 pkg_failed=yes
7093 fi
7094 @@ -50553,9 +50780,9 @@ else
7095 _pkg_short_errors_supported=no
7096 fi
7097 if test $_pkg_short_errors_supported = yes; then
7098 - NETCF_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "netcf >= $NETCF_REQUIRED" 2>&1`
7099 + NETCF_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "netcf >= $NETCF_REQUIRED" 2>&1`
7100 else
7101 - NETCF_PKG_ERRORS=`$PKG_CONFIG --print-errors "netcf >= $NETCF_REQUIRED" 2>&1`
7102 + NETCF_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "netcf >= $NETCF_REQUIRED" 2>&1`
7103 fi
7104 # Put the nasty error message in config.log where it belongs
7105 echo "$NETCF_PKG_ERRORS" >&5
7106 @@ -50592,7 +50819,7 @@ _ACEOF
7107
7108 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ncf_change_begin in -lnetcf" >&5
7109 $as_echo_n "checking for ncf_change_begin in -lnetcf... " >&6; }
7110 -if test "${ac_cv_lib_netcf_ncf_change_begin+set}" = set; then :
7111 +if ${ac_cv_lib_netcf_ncf_change_begin+:} false; then :
7112 $as_echo_n "(cached) " >&6
7113 else
7114 ac_check_lib_save_LIBS=$LIBS
7115 @@ -50626,7 +50853,7 @@ LIBS=$ac_check_lib_save_LIBS
7116 fi
7117 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_netcf_ncf_change_begin" >&5
7118 $as_echo "$ac_cv_lib_netcf_ncf_change_begin" >&6; }
7119 -if test "x$ac_cv_lib_netcf_ncf_change_begin" = x""yes; then :
7120 +if test "x$ac_cv_lib_netcf_ncf_change_begin" = xyes; then :
7121 netcf_transactions=1
7122 else
7123 netcf_transactions=0
7124 @@ -50771,7 +50998,7 @@ fi
7125
7126 if test "$with_storage_fs" = "yes" || test "$with_storage_fs" = "check"; then
7127 ac_fn_c_check_header_mongrel "$LINENO" "mntent.h" "ac_cv_header_mntent_h" "$ac_includes_default"
7128 -if test "x$ac_cv_header_mntent_h" = x""yes; then :
7129 +if test "x$ac_cv_header_mntent_h" = xyes; then :
7130
7131 else
7132
7133 @@ -50793,7 +51020,7 @@ if test "$with_storage_fs" = "yes" || test "$with_storage_fs" = "check"; then
7134 set dummy mount; ac_word=$2
7135 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7136 $as_echo_n "checking for $ac_word... " >&6; }
7137 -if test "${ac_cv_path_MOUNT+set}" = set; then :
7138 +if ${ac_cv_path_MOUNT+:} false; then :
7139 $as_echo_n "(cached) " >&6
7140 else
7141 case $MOUNT in
7142 @@ -50834,7 +51061,7 @@ fi
7143 set dummy umount; ac_word=$2
7144 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7145 $as_echo_n "checking for $ac_word... " >&6; }
7146 -if test "${ac_cv_path_UMOUNT+set}" = set; then :
7147 +if ${ac_cv_path_UMOUNT+:} false; then :
7148 $as_echo_n "(cached) " >&6
7149 else
7150 case $UMOUNT in
7151 @@ -50912,7 +51139,7 @@ if test "$with_storage_fs" = "yes"; then
7152 set dummy showmount; ac_word=$2
7153 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7154 $as_echo_n "checking for $ac_word... " >&6; }
7155 -if test "${ac_cv_path_SHOWMOUNT+set}" = set; then :
7156 +if ${ac_cv_path_SHOWMOUNT+:} false; then :
7157 $as_echo_n "(cached) " >&6
7158 else
7159 case $SHOWMOUNT in
7160 @@ -50961,7 +51188,7 @@ if test "$with_storage_lvm" = "yes" || test "$with_storage_lvm" = "check"; then
7161 set dummy pvcreate; ac_word=$2
7162 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7163 $as_echo_n "checking for $ac_word... " >&6; }
7164 -if test "${ac_cv_path_PVCREATE+set}" = set; then :
7165 +if ${ac_cv_path_PVCREATE+:} false; then :
7166 $as_echo_n "(cached) " >&6
7167 else
7168 case $PVCREATE in
7169 @@ -51002,7 +51229,7 @@ fi
7170 set dummy vgcreate; ac_word=$2
7171 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7172 $as_echo_n "checking for $ac_word... " >&6; }
7173 -if test "${ac_cv_path_VGCREATE+set}" = set; then :
7174 +if ${ac_cv_path_VGCREATE+:} false; then :
7175 $as_echo_n "(cached) " >&6
7176 else
7177 case $VGCREATE in
7178 @@ -51043,7 +51270,7 @@ fi
7179 set dummy lvcreate; ac_word=$2
7180 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7181 $as_echo_n "checking for $ac_word... " >&6; }
7182 -if test "${ac_cv_path_LVCREATE+set}" = set; then :
7183 +if ${ac_cv_path_LVCREATE+:} false; then :
7184 $as_echo_n "(cached) " >&6
7185 else
7186 case $LVCREATE in
7187 @@ -51084,7 +51311,7 @@ fi
7188 set dummy pvremove; ac_word=$2
7189 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7190 $as_echo_n "checking for $ac_word... " >&6; }
7191 -if test "${ac_cv_path_PVREMOVE+set}" = set; then :
7192 +if ${ac_cv_path_PVREMOVE+:} false; then :
7193 $as_echo_n "(cached) " >&6
7194 else
7195 case $PVREMOVE in
7196 @@ -51125,7 +51352,7 @@ fi
7197 set dummy vgremove; ac_word=$2
7198 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7199 $as_echo_n "checking for $ac_word... " >&6; }
7200 -if test "${ac_cv_path_VGREMOVE+set}" = set; then :
7201 +if ${ac_cv_path_VGREMOVE+:} false; then :
7202 $as_echo_n "(cached) " >&6
7203 else
7204 case $VGREMOVE in
7205 @@ -51166,7 +51393,7 @@ fi
7206 set dummy lvremove; ac_word=$2
7207 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7208 $as_echo_n "checking for $ac_word... " >&6; }
7209 -if test "${ac_cv_path_LVREMOVE+set}" = set; then :
7210 +if ${ac_cv_path_LVREMOVE+:} false; then :
7211 $as_echo_n "(cached) " >&6
7212 else
7213 case $LVREMOVE in
7214 @@ -51207,7 +51434,7 @@ fi
7215 set dummy vgchange; ac_word=$2
7216 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7217 $as_echo_n "checking for $ac_word... " >&6; }
7218 -if test "${ac_cv_path_VGCHANGE+set}" = set; then :
7219 +if ${ac_cv_path_VGCHANGE+:} false; then :
7220 $as_echo_n "(cached) " >&6
7221 else
7222 case $VGCHANGE in
7223 @@ -51248,7 +51475,7 @@ fi
7224 set dummy vgscan; ac_word=$2
7225 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7226 $as_echo_n "checking for $ac_word... " >&6; }
7227 -if test "${ac_cv_path_VGSCAN+set}" = set; then :
7228 +if ${ac_cv_path_VGSCAN+:} false; then :
7229 $as_echo_n "(cached) " >&6
7230 else
7231 case $VGSCAN in
7232 @@ -51289,7 +51516,7 @@ fi
7233 set dummy pvs; ac_word=$2
7234 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7235 $as_echo_n "checking for $ac_word... " >&6; }
7236 -if test "${ac_cv_path_PVS+set}" = set; then :
7237 +if ${ac_cv_path_PVS+:} false; then :
7238 $as_echo_n "(cached) " >&6
7239 else
7240 case $PVS in
7241 @@ -51330,7 +51557,7 @@ fi
7242 set dummy vgs; ac_word=$2
7243 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7244 $as_echo_n "checking for $ac_word... " >&6; }
7245 -if test "${ac_cv_path_VGS+set}" = set; then :
7246 +if ${ac_cv_path_VGS+:} false; then :
7247 $as_echo_n "(cached) " >&6
7248 else
7249 case $VGS in
7250 @@ -51371,7 +51598,7 @@ fi
7251 set dummy lvs; ac_word=$2
7252 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7253 $as_echo_n "checking for $ac_word... " >&6; }
7254 -if test "${ac_cv_path_LVS+set}" = set; then :
7255 +if ${ac_cv_path_LVS+:} false; then :
7256 $as_echo_n "(cached) " >&6
7257 else
7258 case $LVS in
7259 @@ -51516,7 +51743,7 @@ if test "$with_storage_iscsi" = "yes" || test "$with_storage_iscsi" = "check"; t
7260 set dummy iscsiadm; ac_word=$2
7261 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7262 $as_echo_n "checking for $ac_word... " >&6; }
7263 -if test "${ac_cv_path_ISCSIADM+set}" = set; then :
7264 +if ${ac_cv_path_ISCSIADM+:} false; then :
7265 $as_echo_n "(cached) " >&6
7266 else
7267 case $ISCSIADM in
7268 @@ -51631,7 +51858,7 @@ if test "$with_storage_disk" = "yes" ||
7269 set dummy parted; ac_word=$2
7270 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7271 $as_echo_n "checking for $ac_word... " >&6; }
7272 -if test "${ac_cv_path_PARTED+set}" = set; then :
7273 +if ${ac_cv_path_PARTED+:} false; then :
7274 $as_echo_n "(cached) " >&6
7275 else
7276 case $PARTED in
7277 @@ -51672,7 +51899,7 @@ fi
7278 set dummy dmsetup; ac_word=$2
7279 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7280 $as_echo_n "checking for $ac_word... " >&6; }
7281 -if test "${ac_cv_path_DMSETUP+set}" = set; then :
7282 +if ${ac_cv_path_DMSETUP+:} false; then :
7283 $as_echo_n "(cached) " >&6
7284 else
7285 case $DMSETUP in
7286 @@ -51737,6 +51964,7 @@ if test -n "$LIBPARTED_CFLAGS"; then
7287 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
7288 test $ac_status = 0; }; then
7289 pkg_cv_LIBPARTED_CFLAGS=`$PKG_CONFIG --cflags "libparted >= $PARTED_REQUIRED" 2>/dev/null`
7290 + test "x$?" != "x0" && pkg_failed=yes
7291 else
7292 pkg_failed=yes
7293 fi
7294 @@ -51753,6 +51981,7 @@ if test -n "$LIBPARTED_LIBS"; then
7295 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
7296 test $ac_status = 0; }; then
7297 pkg_cv_LIBPARTED_LIBS=`$PKG_CONFIG --libs "libparted >= $PARTED_REQUIRED" 2>/dev/null`
7298 + test "x$?" != "x0" && pkg_failed=yes
7299 else
7300 pkg_failed=yes
7301 fi
7302 @@ -51772,9 +52001,9 @@ else
7303 _pkg_short_errors_supported=no
7304 fi
7305 if test $_pkg_short_errors_supported = yes; then
7306 - LIBPARTED_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "libparted >= $PARTED_REQUIRED" 2>&1`
7307 + LIBPARTED_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libparted >= $PARTED_REQUIRED" 2>&1`
7308 else
7309 - LIBPARTED_PKG_ERRORS=`$PKG_CONFIG --print-errors "libparted >= $PARTED_REQUIRED" 2>&1`
7310 + LIBPARTED_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libparted >= $PARTED_REQUIRED" 2>&1`
7311 fi
7312 # Put the nasty error message in config.log where it belongs
7313 echo "$LIBPARTED_PKG_ERRORS" >&5
7314 @@ -51798,7 +52027,7 @@ fi
7315 save_CFLAGS="$CFLAGS"
7316 PARTED_FOUND=yes
7317 ac_fn_c_check_header_mongrel "$LINENO" "parted/parted.h" "ac_cv_header_parted_parted_h" "$ac_includes_default"
7318 -if test "x$ac_cv_header_parted_parted_h" = x""yes; then :
7319 +if test "x$ac_cv_header_parted_parted_h" = xyes; then :
7320
7321 else
7322 PARTED_FOUND=no
7323 @@ -51807,7 +52036,7 @@ fi
7324
7325 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uuid_generate in -luuid" >&5
7326 $as_echo_n "checking for uuid_generate in -luuid... " >&6; }
7327 -if test "${ac_cv_lib_uuid_uuid_generate+set}" = set; then :
7328 +if ${ac_cv_lib_uuid_uuid_generate+:} false; then :
7329 $as_echo_n "(cached) " >&6
7330 else
7331 ac_check_lib_save_LIBS=$LIBS
7332 @@ -51841,7 +52070,7 @@ LIBS=$ac_check_lib_save_LIBS
7333 fi
7334 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_uuid_uuid_generate" >&5
7335 $as_echo "$ac_cv_lib_uuid_uuid_generate" >&6; }
7336 -if test "x$ac_cv_lib_uuid_uuid_generate" = x""yes; then :
7337 +if test "x$ac_cv_lib_uuid_uuid_generate" = xyes; then :
7338 cat >>confdefs.h <<_ACEOF
7339 #define HAVE_LIBUUID 1
7340 _ACEOF
7341 @@ -51854,7 +52083,7 @@ fi
7342
7343 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ped_device_read in -lparted" >&5
7344 $as_echo_n "checking for ped_device_read in -lparted... " >&6; }
7345 -if test "${ac_cv_lib_parted_ped_device_read+set}" = set; then :
7346 +if ${ac_cv_lib_parted_ped_device_read+:} false; then :
7347 $as_echo_n "(cached) " >&6
7348 else
7349 ac_check_lib_save_LIBS=$LIBS
7350 @@ -51888,7 +52117,7 @@ LIBS=$ac_check_lib_save_LIBS
7351 fi
7352 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_parted_ped_device_read" >&5
7353 $as_echo "$ac_cv_lib_parted_ped_device_read" >&6; }
7354 -if test "x$ac_cv_lib_parted_ped_device_read" = x""yes; then :
7355 +if test "x$ac_cv_lib_parted_ped_device_read" = xyes; then :
7356 cat >>confdefs.h <<_ACEOF
7357 #define HAVE_LIBPARTED 1
7358 _ACEOF
7359 @@ -51965,6 +52194,7 @@ if test -n "$DEVMAPPER_CFLAGS"; then
7360 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
7361 test $ac_status = 0; }; then
7362 pkg_cv_DEVMAPPER_CFLAGS=`$PKG_CONFIG --cflags "devmapper >= $DEVMAPPER_REQUIRED" 2>/dev/null`
7363 + test "x$?" != "x0" && pkg_failed=yes
7364 else
7365 pkg_failed=yes
7366 fi
7367 @@ -51981,6 +52211,7 @@ if test -n "$DEVMAPPER_LIBS"; then
7368 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
7369 test $ac_status = 0; }; then
7370 pkg_cv_DEVMAPPER_LIBS=`$PKG_CONFIG --libs "devmapper >= $DEVMAPPER_REQUIRED" 2>/dev/null`
7371 + test "x$?" != "x0" && pkg_failed=yes
7372 else
7373 pkg_failed=yes
7374 fi
7375 @@ -52000,9 +52231,9 @@ else
7376 _pkg_short_errors_supported=no
7377 fi
7378 if test $_pkg_short_errors_supported = yes; then
7379 - DEVMAPPER_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "devmapper >= $DEVMAPPER_REQUIRED" 2>&1`
7380 + DEVMAPPER_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "devmapper >= $DEVMAPPER_REQUIRED" 2>&1`
7381 else
7382 - DEVMAPPER_PKG_ERRORS=`$PKG_CONFIG --print-errors "devmapper >= $DEVMAPPER_REQUIRED" 2>&1`
7383 + DEVMAPPER_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "devmapper >= $DEVMAPPER_REQUIRED" 2>&1`
7384 fi
7385 # Put the nasty error message in config.log where it belongs
7386 echo "$DEVMAPPER_PKG_ERRORS" >&5
7387 @@ -52026,7 +52257,7 @@ fi
7388 DEVMAPPER_FOUND=yes
7389 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dm_task_run in -ldevmapper" >&5
7390 $as_echo_n "checking for dm_task_run in -ldevmapper... " >&6; }
7391 -if test "${ac_cv_lib_devmapper_dm_task_run+set}" = set; then :
7392 +if ${ac_cv_lib_devmapper_dm_task_run+:} false; then :
7393 $as_echo_n "(cached) " >&6
7394 else
7395 ac_check_lib_save_LIBS=$LIBS
7396 @@ -52060,7 +52291,7 @@ LIBS=$ac_check_lib_save_LIBS
7397 fi
7398 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_devmapper_dm_task_run" >&5
7399 $as_echo "$ac_cv_lib_devmapper_dm_task_run" >&6; }
7400 -if test "x$ac_cv_lib_devmapper_dm_task_run" = x""yes; then :
7401 +if test "x$ac_cv_lib_devmapper_dm_task_run" = xyes; then :
7402 cat >>confdefs.h <<_ACEOF
7403 #define HAVE_LIBDEVMAPPER 1
7404 _ACEOF
7405 @@ -52078,7 +52309,7 @@ fi
7406 for ac_header in libdevmapper.h
7407 do :
7408 ac_fn_c_check_header_mongrel "$LINENO" "libdevmapper.h" "ac_cv_header_libdevmapper_h" "$ac_includes_default"
7409 -if test "x$ac_cv_header_libdevmapper_h" = x""yes; then :
7410 +if test "x$ac_cv_header_libdevmapper_h" = xyes; then :
7411 cat >>confdefs.h <<_ACEOF
7412 #define HAVE_LIBDEVMAPPER_H 1
7413 _ACEOF
7414 @@ -52117,6 +52348,7 @@ if test -n "$LIBCURL_CFLAGS"; then
7415 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
7416 test $ac_status = 0; }; then
7417 pkg_cv_LIBCURL_CFLAGS=`$PKG_CONFIG --cflags "libcurl >= $LIBCURL_REQUIRED" 2>/dev/null`
7418 + test "x$?" != "x0" && pkg_failed=yes
7419 else
7420 pkg_failed=yes
7421 fi
7422 @@ -52133,6 +52365,7 @@ if test -n "$LIBCURL_LIBS"; then
7423 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
7424 test $ac_status = 0; }; then
7425 pkg_cv_LIBCURL_LIBS=`$PKG_CONFIG --libs "libcurl >= $LIBCURL_REQUIRED" 2>/dev/null`
7426 + test "x$?" != "x0" && pkg_failed=yes
7427 else
7428 pkg_failed=yes
7429 fi
7430 @@ -52152,9 +52385,9 @@ else
7431 _pkg_short_errors_supported=no
7432 fi
7433 if test $_pkg_short_errors_supported = yes; then
7434 - LIBCURL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "libcurl >= $LIBCURL_REQUIRED" 2>&1`
7435 + LIBCURL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libcurl >= $LIBCURL_REQUIRED" 2>&1`
7436 else
7437 - LIBCURL_PKG_ERRORS=`$PKG_CONFIG --print-errors "libcurl >= $LIBCURL_REQUIRED" 2>&1`
7438 + LIBCURL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libcurl >= $LIBCURL_REQUIRED" 2>&1`
7439 fi
7440 # Put the nasty error message in config.log where it belongs
7441 echo "$LIBCURL_PKG_ERRORS" >&5
7442 @@ -52333,7 +52566,7 @@ do
7443 set dummy $ac_prog; ac_word=$2
7444 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7445 $as_echo_n "checking for $ac_word... " >&6; }
7446 -if test "${ac_cv_path_PYTHON+set}" = set; then :
7447 +if ${ac_cv_path_PYTHON+:} false; then :
7448 $as_echo_n "(cached) " >&6
7449 else
7450 case $PYTHON in
7451 @@ -52384,7 +52617,7 @@ test -n "$PYTHON" || PYTHON=":"
7452
7453 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON version" >&5
7454 $as_echo_n "checking for $am_display_PYTHON version... " >&6; }
7455 -if test "${am_cv_python_version+set}" = set; then :
7456 +if ${am_cv_python_version+:} false; then :
7457 $as_echo_n "(cached) " >&6
7458 else
7459 am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[:3])"`
7460 @@ -52403,7 +52636,7 @@ $as_echo "$am_cv_python_version" >&6; }
7461
7462 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON platform" >&5
7463 $as_echo_n "checking for $am_display_PYTHON platform... " >&6; }
7464 -if test "${am_cv_python_platform+set}" = set; then :
7465 +if ${am_cv_python_platform+:} false; then :
7466 $as_echo_n "(cached) " >&6
7467 else
7468 am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"`
7469 @@ -52417,7 +52650,7 @@ $as_echo "$am_cv_python_platform" >&6; }
7470
7471 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON script directory" >&5
7472 $as_echo_n "checking for $am_display_PYTHON script directory... " >&6; }
7473 -if test "${am_cv_python_pythondir+set}" = set; then :
7474 +if ${am_cv_python_pythondir+:} false; then :
7475 $as_echo_n "(cached) " >&6
7476 else
7477 if test "x$prefix" = xNONE
7478 @@ -52455,7 +52688,7 @@ $as_echo "$am_cv_python_pythondir" >&6; }
7479
7480 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON extension module directory" >&5
7481 $as_echo_n "checking for $am_display_PYTHON extension module directory... " >&6; }
7482 -if test "${am_cv_python_pyexecdir+set}" = set; then :
7483 +if ${am_cv_python_pyexecdir+:} false; then :
7484 $as_echo_n "(cached) " >&6
7485 else
7486 if test "x$exec_prefix" = xNONE
7487 @@ -52557,7 +52790,7 @@ if test "${enable_coverage}" = yes; then
7488 WARN_CFLAGS=
7489 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -fprofile-arcs" >&5
7490 $as_echo_n "checking whether compiler handles -fprofile-arcs... " >&6; }
7491 -if test "${gl_cv_warn__fprofile_arcs+set}" = set; then :
7492 +if ${gl_cv_warn__fprofile_arcs+:} false; then :
7493 $as_echo_n "(cached) " >&6
7494 else
7495
7496 @@ -52579,19 +52812,19 @@ if ac_fn_c_try_cpp "$LINENO"; then :
7497 else
7498 gl_cv_warn__fprofile_arcs=no
7499 fi
7500 -rm -f conftest.err conftest.$ac_ext
7501 +rm -f conftest.err conftest.i conftest.$ac_ext
7502 CPPFLAGS="$gl_save_CPPFLAGS"
7503
7504 fi
7505 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__fprofile_arcs" >&5
7506 $as_echo "$gl_cv_warn__fprofile_arcs" >&6; }
7507 -if test "x$gl_cv_warn__fprofile_arcs" = x""yes; then :
7508 +if test "x$gl_cv_warn__fprofile_arcs" = xyes; then :
7509 as_fn_append WARN_CFLAGS " -fprofile-arcs"
7510 fi
7511
7512 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -ftest-coverage" >&5
7513 $as_echo_n "checking whether compiler handles -ftest-coverage... " >&6; }
7514 -if test "${gl_cv_warn__ftest_coverage+set}" = set; then :
7515 +if ${gl_cv_warn__ftest_coverage+:} false; then :
7516 $as_echo_n "(cached) " >&6
7517 else
7518
7519 @@ -52613,13 +52846,13 @@ if ac_fn_c_try_cpp "$LINENO"; then :
7520 else
7521 gl_cv_warn__ftest_coverage=no
7522 fi
7523 -rm -f conftest.err conftest.$ac_ext
7524 +rm -f conftest.err conftest.i conftest.$ac_ext
7525 CPPFLAGS="$gl_save_CPPFLAGS"
7526
7527 fi
7528 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__ftest_coverage" >&5
7529 $as_echo "$gl_cv_warn__ftest_coverage" >&6; }
7530 -if test "x$gl_cv_warn__ftest_coverage" = x""yes; then :
7531 +if test "x$gl_cv_warn__ftest_coverage" = xyes; then :
7532 as_fn_append WARN_CFLAGS " -ftest-coverage"
7533 fi
7534
7535 @@ -52646,7 +52879,7 @@ enable_oom=$enableval
7536 if test "${enable_oom}" = yes; then
7537 have_trace=yes
7538 ac_fn_c_check_header_mongrel "$LINENO" "execinfo.h" "ac_cv_header_execinfo_h" "$ac_includes_default"
7539 -if test "x$ac_cv_header_execinfo_h" = x""yes; then :
7540 +if test "x$ac_cv_header_execinfo_h" = xyes; then :
7541
7542 else
7543 have_trace=no
7544 @@ -52654,7 +52887,7 @@ fi
7545
7546
7547 ac_fn_c_check_func "$LINENO" "backtrace" "ac_cv_func_backtrace"
7548 -if test "x$ac_cv_func_backtrace" = x""yes; then :
7549 +if test "x$ac_cv_func_backtrace" = xyes; then :
7550
7551 else
7552 have_trace=no
7553 @@ -52760,7 +52993,7 @@ rm -f conf$$.file
7554 set dummy msgfmt; ac_word=$2
7555 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7556 $as_echo_n "checking for $ac_word... " >&6; }
7557 -if test "${ac_cv_path_MSGFMT+set}" = set; then :
7558 +if ${ac_cv_path_MSGFMT+:} false; then :
7559 $as_echo_n "(cached) " >&6
7560 else
7561 case "$MSGFMT" in
7562 @@ -52801,7 +53034,7 @@ fi
7563 set dummy gmsgfmt; ac_word=$2
7564 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7565 $as_echo_n "checking for $ac_word... " >&6; }
7566 -if test "${ac_cv_path_GMSGFMT+set}" = set; then :
7567 +if ${ac_cv_path_GMSGFMT+:} false; then :
7568 $as_echo_n "(cached) " >&6
7569 else
7570 case $GMSGFMT in
7571 @@ -52883,7 +53116,7 @@ rm -f conf$$.file
7572 set dummy xgettext; ac_word=$2
7573 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7574 $as_echo_n "checking for $ac_word... " >&6; }
7575 -if test "${ac_cv_path_XGETTEXT+set}" = set; then :
7576 +if ${ac_cv_path_XGETTEXT+:} false; then :
7577 $as_echo_n "(cached) " >&6
7578 else
7579 case "$XGETTEXT" in
7580 @@ -52961,7 +53194,7 @@ rm -f conf$$.file
7581 set dummy msgmerge; ac_word=$2
7582 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7583 $as_echo_n "checking for $ac_word... " >&6; }
7584 -if test "${ac_cv_path_MSGMERGE+set}" = set; then :
7585 +if ${ac_cv_path_MSGMERGE+:} false; then :
7586 $as_echo_n "(cached) " >&6
7587 else
7588 case "$MSGMERGE" in
7589 @@ -53472,7 +53705,7 @@ fi
7590
7591 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFPreferencesCopyAppValue" >&5
7592 $as_echo_n "checking for CFPreferencesCopyAppValue... " >&6; }
7593 -if test "${gt_cv_func_CFPreferencesCopyAppValue+set}" = set; then :
7594 +if ${gt_cv_func_CFPreferencesCopyAppValue+:} false; then :
7595 $as_echo_n "(cached) " >&6
7596 else
7597 gt_save_LIBS="$LIBS"
7598 @@ -53506,7 +53739,7 @@ $as_echo "#define HAVE_CFPREFERENCESCOPYAPPVALUE 1" >>confdefs.h
7599 fi
7600 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFLocaleCopyCurrent" >&5
7601 $as_echo_n "checking for CFLocaleCopyCurrent... " >&6; }
7602 -if test "${gt_cv_func_CFLocaleCopyCurrent+set}" = set; then :
7603 +if ${gt_cv_func_CFLocaleCopyCurrent+:} false; then :
7604 $as_echo_n "(cached) " >&6
7605 else
7606 gt_save_LIBS="$LIBS"
7607 @@ -53582,7 +53815,7 @@ typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1];
7608
7609 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libc" >&5
7610 $as_echo_n "checking for GNU gettext in libc... " >&6; }
7611 -if eval "test \"\${$gt_func_gnugettext_libc+set}\"" = set; then :
7612 +if eval \${$gt_func_gnugettext_libc+:} false; then :
7613 $as_echo_n "(cached) " >&6
7614 else
7615 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
7616 @@ -53645,7 +53878,7 @@ $as_echo "$ac_res" >&6; }
7617
7618 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5
7619 $as_echo_n "checking for iconv... " >&6; }
7620 -if test "${am_cv_func_iconv+set}" = set; then :
7621 +if ${am_cv_func_iconv+:} false; then :
7622 $as_echo_n "(cached) " >&6
7623 else
7624
7625 @@ -53702,7 +53935,7 @@ $as_echo "$am_cv_func_iconv" >&6; }
7626 if test "$am_cv_func_iconv" = yes; then
7627 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working iconv" >&5
7628 $as_echo_n "checking for working iconv... " >&6; }
7629 -if test "${am_cv_func_iconv_works+set}" = set; then :
7630 +if ${am_cv_func_iconv_works+:} false; then :
7631 $as_echo_n "(cached) " >&6
7632 else
7633
7634 @@ -54253,7 +54486,7 @@ fi
7635
7636 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libintl" >&5
7637 $as_echo_n "checking for GNU gettext in libintl... " >&6; }
7638 -if eval "test \"\${$gt_func_gnugettext_libintl+set}\"" = set; then :
7639 +if eval \${$gt_func_gnugettext_libintl+:} false; then :
7640 $as_echo_n "(cached) " >&6
7641 else
7642 gt_save_CPPFLAGS="$CPPFLAGS"
7643 @@ -54502,7 +54735,7 @@ case "$host" in
7644 set dummy ${ac_tool_prefix}windres; ac_word=$2
7645 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7646 $as_echo_n "checking for $ac_word... " >&6; }
7647 -if test "${ac_cv_prog_WINDRES+set}" = set; then :
7648 +if ${ac_cv_prog_WINDRES+:} false; then :
7649 $as_echo_n "(cached) " >&6
7650 else
7651 if test -n "$WINDRES"; then
7652 @@ -54542,7 +54775,7 @@ if test -z "$ac_cv_prog_WINDRES"; then
7653 set dummy windres; ac_word=$2
7654 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7655 $as_echo_n "checking for $ac_word... " >&6; }
7656 -if test "${ac_cv_prog_ac_ct_WINDRES+set}" = set; then :
7657 +if ${ac_cv_prog_ac_ct_WINDRES+:} false; then :
7658 $as_echo_n "(cached) " >&6
7659 else
7660 if test -n "$ac_ct_WINDRES"; then
7661 @@ -54676,6 +54909,7 @@ if test -n "$HAL_CFLAGS"; then
7662 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
7663 test $ac_status = 0; }; then
7664 pkg_cv_HAL_CFLAGS=`$PKG_CONFIG --cflags "hal >= $HAL_REQUIRED" 2>/dev/null`
7665 + test "x$?" != "x0" && pkg_failed=yes
7666 else
7667 pkg_failed=yes
7668 fi
7669 @@ -54692,6 +54926,7 @@ if test -n "$HAL_LIBS"; then
7670 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
7671 test $ac_status = 0; }; then
7672 pkg_cv_HAL_LIBS=`$PKG_CONFIG --libs "hal >= $HAL_REQUIRED" 2>/dev/null`
7673 + test "x$?" != "x0" && pkg_failed=yes
7674 else
7675 pkg_failed=yes
7676 fi
7677 @@ -54711,9 +54946,9 @@ else
7678 _pkg_short_errors_supported=no
7679 fi
7680 if test $_pkg_short_errors_supported = yes; then
7681 - HAL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "hal >= $HAL_REQUIRED" 2>&1`
7682 + HAL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "hal >= $HAL_REQUIRED" 2>&1`
7683 else
7684 - HAL_PKG_ERRORS=`$PKG_CONFIG --print-errors "hal >= $HAL_REQUIRED" 2>&1`
7685 + HAL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "hal >= $HAL_REQUIRED" 2>&1`
7686 fi
7687 # Put the nasty error message in config.log where it belongs
7688 echo "$HAL_PKG_ERRORS" >&5
7689 @@ -54750,7 +54985,7 @@ fi
7690 for ac_func in libhal_get_all_devices
7691 do :
7692 ac_fn_c_check_func "$LINENO" "libhal_get_all_devices" "ac_cv_func_libhal_get_all_devices"
7693 -if test "x$ac_cv_func_libhal_get_all_devices" = x""yes; then :
7694 +if test "x$ac_cv_func_libhal_get_all_devices" = xyes; then :
7695 cat >>confdefs.h <<_ACEOF
7696 #define HAVE_LIBHAL_GET_ALL_DEVICES 1
7697 _ACEOF
7698 @@ -54763,7 +54998,7 @@ done
7699 for ac_func in dbus_watch_get_unix_fd
7700 do :
7701 ac_fn_c_check_func "$LINENO" "dbus_watch_get_unix_fd" "ac_cv_func_dbus_watch_get_unix_fd"
7702 -if test "x$ac_cv_func_dbus_watch_get_unix_fd" = x""yes; then :
7703 +if test "x$ac_cv_func_dbus_watch_get_unix_fd" = xyes; then :
7704 cat >>confdefs.h <<_ACEOF
7705 #define HAVE_DBUS_WATCH_GET_UNIX_FD 1
7706 _ACEOF
7707 @@ -54826,6 +55061,7 @@ if test -n "$UDEV_CFLAGS"; then
7708 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
7709 test $ac_status = 0; }; then
7710 pkg_cv_UDEV_CFLAGS=`$PKG_CONFIG --cflags "libudev >= $UDEV_REQUIRED" 2>/dev/null`
7711 + test "x$?" != "x0" && pkg_failed=yes
7712 else
7713 pkg_failed=yes
7714 fi
7715 @@ -54842,6 +55078,7 @@ if test -n "$UDEV_LIBS"; then
7716 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
7717 test $ac_status = 0; }; then
7718 pkg_cv_UDEV_LIBS=`$PKG_CONFIG --libs "libudev >= $UDEV_REQUIRED" 2>/dev/null`
7719 + test "x$?" != "x0" && pkg_failed=yes
7720 else
7721 pkg_failed=yes
7722 fi
7723 @@ -54861,9 +55098,9 @@ else
7724 _pkg_short_errors_supported=no
7725 fi
7726 if test $_pkg_short_errors_supported = yes; then
7727 - UDEV_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "libudev >= $UDEV_REQUIRED" 2>&1`
7728 + UDEV_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libudev >= $UDEV_REQUIRED" 2>&1`
7729 else
7730 - UDEV_PKG_ERRORS=`$PKG_CONFIG --print-errors "libudev >= $UDEV_REQUIRED" 2>&1`
7731 + UDEV_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libudev >= $UDEV_REQUIRED" 2>&1`
7732 fi
7733 # Put the nasty error message in config.log where it belongs
7734 echo "$UDEV_PKG_ERRORS" >&5
7735 @@ -54908,6 +55145,7 @@ if test -n "$PCIACCESS_CFLAGS"; then
7736 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
7737 test $ac_status = 0; }; then
7738 pkg_cv_PCIACCESS_CFLAGS=`$PKG_CONFIG --cflags "pciaccess >= $PCIACCESS_REQUIRED" 2>/dev/null`
7739 + test "x$?" != "x0" && pkg_failed=yes
7740 else
7741 pkg_failed=yes
7742 fi
7743 @@ -54924,6 +55162,7 @@ if test -n "$PCIACCESS_LIBS"; then
7744 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
7745 test $ac_status = 0; }; then
7746 pkg_cv_PCIACCESS_LIBS=`$PKG_CONFIG --libs "pciaccess >= $PCIACCESS_REQUIRED" 2>/dev/null`
7747 + test "x$?" != "x0" && pkg_failed=yes
7748 else
7749 pkg_failed=yes
7750 fi
7751 @@ -54943,9 +55182,9 @@ else
7752 _pkg_short_errors_supported=no
7753 fi
7754 if test $_pkg_short_errors_supported = yes; then
7755 - PCIACCESS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "pciaccess >= $PCIACCESS_REQUIRED" 2>&1`
7756 + PCIACCESS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "pciaccess >= $PCIACCESS_REQUIRED" 2>&1`
7757 else
7758 - PCIACCESS_PKG_ERRORS=`$PKG_CONFIG --print-errors "pciaccess >= $PCIACCESS_REQUIRED" 2>&1`
7759 + PCIACCESS_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "pciaccess >= $PCIACCESS_REQUIRED" 2>&1`
7760 fi
7761 # Put the nasty error message in config.log where it belongs
7762 echo "$PCIACCESS_PKG_ERRORS" >&5
7763 @@ -55122,7 +55361,7 @@ if test "$with_macvtap" = yes; then
7764 #include <linux/if_link.h>
7765
7766 "
7767 -if test "x$ac_cv_have_decl_MACVLAN_MODE_PASSTHRU" = x""yes; then :
7768 +if test "x$ac_cv_have_decl_MACVLAN_MODE_PASSTHRU" = xyes; then :
7769 ac_have_decl=1
7770 else
7771 ac_have_decl=0
7772 @@ -55223,6 +55462,7 @@ if test -n "$LIBNL_CFLAGS"; then
7773 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
7774 test $ac_status = 0; }; then
7775 pkg_cv_LIBNL_CFLAGS=`$PKG_CONFIG --cflags "libnl-1 >= $LIBNL_REQUIRED" 2>/dev/null`
7776 + test "x$?" != "x0" && pkg_failed=yes
7777 else
7778 pkg_failed=yes
7779 fi
7780 @@ -55239,6 +55479,7 @@ if test -n "$LIBNL_LIBS"; then
7781 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
7782 test $ac_status = 0; }; then
7783 pkg_cv_LIBNL_LIBS=`$PKG_CONFIG --libs "libnl-1 >= $LIBNL_REQUIRED" 2>/dev/null`
7784 + test "x$?" != "x0" && pkg_failed=yes
7785 else
7786 pkg_failed=yes
7787 fi
7788 @@ -55258,9 +55499,9 @@ else
7789 _pkg_short_errors_supported=no
7790 fi
7791 if test $_pkg_short_errors_supported = yes; then
7792 - LIBNL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "libnl-1 >= $LIBNL_REQUIRED" 2>&1`
7793 + LIBNL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libnl-1 >= $LIBNL_REQUIRED" 2>&1`
7794 else
7795 - LIBNL_PKG_ERRORS=`$PKG_CONFIG --print-errors "libnl-1 >= $LIBNL_REQUIRED" 2>&1`
7796 + LIBNL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libnl-1 >= $LIBNL_REQUIRED" 2>&1`
7797 fi
7798 # Put the nasty error message in config.log where it belongs
7799 echo "$LIBNL_PKG_ERRORS" >&5
7800 @@ -55319,7 +55560,7 @@ cp -f COPYING.LIB COPYING
7801 # or Coverity-prevent's cov-build. Define STATIC_ANALYSIS accordingly.
7802 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether this build is done by a static analysis tool" >&5
7803 $as_echo_n "checking whether this build is done by a static analysis tool... " >&6; }
7804 -if test "${lv_cv_static_analysis+set}" = set; then :
7805 +if ${lv_cv_static_analysis+:} false; then :
7806 $as_echo_n "(cached) " >&6
7807 else
7808
7809 @@ -55406,10 +55647,21 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
7810 :end' >>confcache
7811 if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
7812 if test -w "$cache_file"; then
7813 - test "x$cache_file" != "x/dev/null" &&
7814 + if test "x$cache_file" != "x/dev/null"; then
7815 { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
7816 $as_echo "$as_me: updating cache $cache_file" >&6;}
7817 - cat confcache >$cache_file
7818 + if test ! -f "$cache_file" || test -h "$cache_file"; then
7819 + cat confcache >"$cache_file"
7820 + else
7821 + case $cache_file in #(
7822 + */* | ?:*)
7823 + mv -f confcache "$cache_file"$$ &&
7824 + mv -f "$cache_file"$$ "$cache_file" ;; #(
7825 + *)
7826 + mv -f confcache "$cache_file" ;;
7827 + esac
7828 + fi
7829 + fi
7830 else
7831 { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
7832 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
7833 @@ -55805,7 +56057,7 @@ if test -z "${HAVE_LIBNL_TRUE}" && test -z "${HAVE_LIBNL_FALSE}"; then
7834 Usually this means the macro was only invoked conditionally." "$LINENO" 5
7835 fi
7836
7837 -: ${CONFIG_STATUS=./config.status}
7838 +: "${CONFIG_STATUS=./config.status}"
7839 ac_write_fail=0
7840 ac_clean_files_save=$ac_clean_files
7841 ac_clean_files="$ac_clean_files $CONFIG_STATUS"
7842 @@ -55906,6 +56158,7 @@ fi
7843 IFS=" "" $as_nl"
7844
7845 # Find who we are. Look in the path if we contain no directory separator.
7846 +as_myself=
7847 case $0 in #((
7848 *[\\/]* ) as_myself=$0 ;;
7849 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7850 @@ -56213,7 +56466,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
7851 # values after options handling.
7852 ac_log="
7853 This file was extended by libvirt $as_me 0.9.4, which was
7854 -generated by GNU Autoconf 2.66. Invocation command line was
7855 +generated by GNU Autoconf 2.68. Invocation command line was
7856
7857 CONFIG_FILES = $CONFIG_FILES
7858 CONFIG_HEADERS = $CONFIG_HEADERS
7859 @@ -56284,7 +56537,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
7860 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
7861 ac_cs_version="\\
7862 libvirt config.status 0.9.4
7863 -configured by $0, generated by GNU Autoconf 2.66,
7864 +configured by $0, generated by GNU Autoconf 2.68,
7865 with options \\"\$ac_cs_config\\"
7866
7867 Copyright (C) 2010 Free Software Foundation, Inc.
7868 @@ -56305,11 +56558,16 @@ ac_need_defaults=:
7869 while test $# != 0
7870 do
7871 case $1 in
7872 - --*=*)
7873 + --*=?*)
7874 ac_option=`expr "X$1" : 'X\([^=]*\)='`
7875 ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
7876 ac_shift=:
7877 ;;
7878 + --*=)
7879 + ac_option=`expr "X$1" : 'X\([^=]*\)='`
7880 + ac_optarg=
7881 + ac_shift=:
7882 + ;;
7883 *)
7884 ac_option=$1
7885 ac_optarg=$2
7886 @@ -56331,6 +56589,7 @@ do
7887 $ac_shift
7888 case $ac_optarg in
7889 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
7890 + '') as_fn_error $? "missing file argument" ;;
7891 esac
7892 as_fn_append CONFIG_FILES " '$ac_optarg'"
7893 ac_need_defaults=false;;
7894 @@ -56735,9 +56994,10 @@ fi
7895 # after its creation but before its name has been assigned to `$tmp'.
7896 $debug ||
7897 {
7898 - tmp=
7899 + tmp= ac_tmp=
7900 trap 'exit_status=$?
7901 - { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
7902 + : "${ac_tmp:=$tmp}"
7903 + { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
7904 ' 0
7905 trap 'as_fn_exit 1' 1 2 13 15
7906 }
7907 @@ -56745,12 +57005,13 @@ $debug ||
7908
7909 {
7910 tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
7911 - test -n "$tmp" && test -d "$tmp"
7912 + test -d "$tmp"
7913 } ||
7914 {
7915 tmp=./conf$$-$RANDOM
7916 (umask 077 && mkdir "$tmp")
7917 } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
7918 +ac_tmp=$tmp
7919
7920 # Set up the scripts for CONFIG_FILES section.
7921 # No need to generate them if there are no CONFIG_FILES.
7922 @@ -56772,7 +57033,7 @@ else
7923 ac_cs_awk_cr=$ac_cr
7924 fi
7925
7926 -echo 'BEGIN {' >"$tmp/subs1.awk" &&
7927 +echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
7928 _ACEOF
7929
7930
7931 @@ -56800,7 +57061,7 @@ done
7932 rm -f conf$$subs.sh
7933
7934 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
7935 -cat >>"\$tmp/subs1.awk" <<\\_ACAWK &&
7936 +cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
7937 _ACEOF
7938 sed -n '
7939 h
7940 @@ -56848,7 +57109,7 @@ t delim
7941 rm -f conf$$subs.awk
7942 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
7943 _ACAWK
7944 -cat >>"\$tmp/subs1.awk" <<_ACAWK &&
7945 +cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
7946 for (key in S) S_is_set[key] = 1
7947 FS = ""
7948
7949 @@ -56880,7 +57141,7 @@ if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
7950 sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
7951 else
7952 cat
7953 -fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
7954 +fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
7955 || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
7956 _ACEOF
7957
7958 @@ -56914,7 +57175,7 @@ fi # test -n "$CONFIG_FILES"
7959 # No need to generate them if there are no CONFIG_HEADERS.
7960 # This happens for instance with `./config.status Makefile'.
7961 if test -n "$CONFIG_HEADERS"; then
7962 -cat >"$tmp/defines.awk" <<\_ACAWK ||
7963 +cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
7964 BEGIN {
7965 _ACEOF
7966
7967 @@ -56926,8 +57187,8 @@ _ACEOF
7968 # handling of long lines.
7969 ac_delim='%!_!# '
7970 for ac_last_try in false false :; do
7971 - ac_t=`sed -n "/$ac_delim/p" confdefs.h`
7972 - if test -z "$ac_t"; then
7973 + ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
7974 + if test -z "$ac_tt"; then
7975 break
7976 elif $ac_last_try; then
7977 as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5
7978 @@ -57047,7 +57308,7 @@ do
7979 for ac_f
7980 do
7981 case $ac_f in
7982 - -) ac_f="$tmp/stdin";;
7983 + -) ac_f="$ac_tmp/stdin";;
7984 *) # Look for the file first in the build tree, then in the source tree
7985 # (if the path is not absolute). The absolute path cannot be DOS-style,
7986 # because $ac_f cannot contain `:'.
7987 @@ -57082,7 +57343,7 @@ $as_echo "$as_me: creating $ac_file" >&6;}
7988 esac
7989
7990 case $ac_tag in
7991 - *:-:* | *:-) cat >"$tmp/stdin" \
7992 + *:-:* | *:-) cat >"$ac_tmp/stdin" \
7993 || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
7994 esac
7995 ;;
7996 @@ -57219,21 +57480,22 @@ s&@INSTALL@&$ac_INSTALL&;t t
7997 s&@MKDIR_P@&$ac_MKDIR_P&;t t
7998 $ac_datarootdir_hack
7999 "
8000 -eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
8001 - || as_fn_error $? "could not create $ac_file" "$LINENO" 5
8002 +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
8003 + >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
8004
8005 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
8006 - { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
8007 - { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
8008 + { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
8009 + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
8010 + "$ac_tmp/out"`; test -z "$ac_out"; } &&
8011 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
8012 which seems to be undefined. Please make sure it is defined" >&5
8013 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
8014 which seems to be undefined. Please make sure it is defined" >&2;}
8015
8016 - rm -f "$tmp/stdin"
8017 + rm -f "$ac_tmp/stdin"
8018 case $ac_file in
8019 - -) cat "$tmp/out" && rm -f "$tmp/out";;
8020 - *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
8021 + -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
8022 + *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
8023 esac \
8024 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
8025 ;;
8026 @@ -57244,20 +57506,20 @@ which seems to be undefined. Please make sure it is defined" >&2;}
8027 if test x"$ac_file" != x-; then
8028 {
8029 $as_echo "/* $configure_input */" \
8030 - && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
8031 - } >"$tmp/config.h" \
8032 + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
8033 + } >"$ac_tmp/config.h" \
8034 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
8035 - if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
8036 + if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
8037 { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
8038 $as_echo "$as_me: $ac_file is unchanged" >&6;}
8039 else
8040 rm -f "$ac_file"
8041 - mv "$tmp/config.h" "$ac_file" \
8042 + mv "$ac_tmp/config.h" "$ac_file" \
8043 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
8044 fi
8045 else
8046 $as_echo "/* $configure_input */" \
8047 - && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
8048 + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
8049 || as_fn_error $? "could not create -" "$LINENO" 5
8050 fi
8051 # Compute "$ac_file"'s index in $config_headers.
8052 --
+0
-23
debian/patches/Readd-LFS-support.patch less more
0 From: =?UTF-8?q?Guido=20G=C3=BCnther?= <agx@sigxcpu.org>
1 Date: Tue, 9 Aug 2011 14:44:09 +0200
2 Subject: Readd LFS support
3
4 BZ: #517037
5 ---
6 configure.ac | 2 ++
7 1 files changed, 2 insertions(+), 0 deletions(-)
8
9 diff --git a/configure.ac b/configure.ac
10 index c8d291b..feeba64 100644
11 --- a/configure.ac
12 +++ b/configure.ac
13 @@ -122,6 +122,8 @@ AC_MSG_RESULT([$have_cpuid])
14
15 AC_CHECK_SIZEOF([long])
16
17 +AC_SYS_LARGEFILE
18 +
19 dnl Availability of various common functions (non-fatal if missing),
20 dnl and various less common threadsafe functions
21 AC_CHECK_FUNCS_ONCE([cfmakeraw geteuid getgid getgrnam_r getmntent_r \
22 --
88 Disable-gnulib-s-test-nonplocking-pipe.sh.patch
99 Autodetect-if-the-remote-nc-command-supports-the-q-o.patch
1010 Disable-failing-virnetsockettest.patch
11 Readd-LFS-support.patch
12 Autoreconf.patch
1311 debian/Don-t-require-gawk-for-a-simple-print-expression.patch