xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit 970959d12f3615a5a8f1a258899ccf00f885f0dc

Regenerate autoconf files using v2.73
Author: xaizek
Author date (UTC): 2026-05-24 15:03
Committer name: xaizek
Committer date (UTC): 2026-05-24 15:03
Parent(s): 19f9107fe75eec08960eb29071edebdab91af34a
Signing key: 99DC5E4DB05F6BE2
Tree: 01d2d32e6701cf8dfa3ade32813b646abbb62464
File Lines added Lines deleted
aclocal.m4 2 2
build-aux/config.h.in 4 0
configure 1201 957
File aclocal.m4 changed (mode: 100644) (index fee989c95..633ead9c8)
14 14 m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
15 15 m4_ifndef([AC_AUTOCONF_VERSION], m4_ifndef([AC_AUTOCONF_VERSION],
16 16 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
17 m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.72],,
18 [m4_warning([this file was generated for autoconf 2.72.
17 m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.73],,
18 [m4_warning([this file was generated for autoconf 2.73.
19 19 You have another version of autoconf. It may work, but is not guaranteed to. You have another version of autoconf. It may work, but is not guaranteed to.
20 20 If you have problems, you may need to regenerate the build system entirely. If you have problems, you may need to regenerate the build system entirely.
21 21 To do so, use the procedure documented by the package, typically 'autoreconf'.])]) To do so, use the procedure documented by the package, typically 'autoreconf'.])])
File build-aux/config.h.in changed (mode: 100644) (index 8dfa897e2..01d5689c0)
195 195 #ifndef _ALL_SOURCE #ifndef _ALL_SOURCE
196 196 # undef _ALL_SOURCE # undef _ALL_SOURCE
197 197 #endif #endif
198 /* Enable extensions on Cosmopolitan Libc. */
199 #ifndef _COSMO_SOURCE
200 # undef _COSMO_SOURCE
201 #endif
198 202 /* Enable general extensions on macOS. */ /* Enable general extensions on macOS. */
199 203 #ifndef _DARWIN_C_SOURCE #ifndef _DARWIN_C_SOURCE
200 204 # undef _DARWIN_C_SOURCE # undef _DARWIN_C_SOURCE
File configure changed (mode: 100755) (index 0fa2c7bbf..5a40f4ebf)
1 1 #! /bin/sh #! /bin/sh
2 2 # Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
3 # Generated by GNU Autoconf 2.72 for vifm 0.15.
3 # Generated by GNU Autoconf 2.73 for vifm 0.15.
4 4 # #
5 5 # Report bugs to <xaizek@posteo.net>. # Report bugs to <xaizek@posteo.net>.
6 6 # #
7 7 # #
8 # Copyright (C) 1992-1996, 1998-2017, 2020-2023 Free Software Foundation,
8 # Copyright (C) 1992-1996, 1998-2017, 2020-2026 Free Software Foundation,
9 9 # Inc. # Inc.
10 10 # #
11 11 # #
 
... ... then :
22 22 emulate sh emulate sh
23 23 NULLCMD=: NULLCMD=:
24 24 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
25 # is contrary to our usage. Disable this feature.
25 # contradicts POSIX and common usage. Disable this.
26 26 alias -g '${1+"$@"}'='"$@"' alias -g '${1+"$@"}'='"$@"'
27 27 setopt NO_GLOB_SUBST setopt NO_GLOB_SUBST
28 28 else case e in #( else case e in #(
 
... ... if test "x$as_myself" = x; then
109 109 as_myself=$0 as_myself=$0
110 110 fi fi
111 111 if test ! -f "$as_myself"; then if test ! -f "$as_myself"; then
112 printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
112 printf '%s\n' "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
113 113 exit 1 exit 1
114 114 fi fi
115 115
 
... ... case $- in # ((((
131 131 *x* ) as_opts=-x ;; *x* ) as_opts=-x ;;
132 132 * ) as_opts= ;; * ) as_opts= ;;
133 133 esac esac
134 exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
134 case $# in # ((
135 0) exec $CONFIG_SHELL $as_opts "$as_myself" ;;
136 *) exec $CONFIG_SHELL $as_opts "$as_myself" "$@" ;;
137 esac
135 138 # Admittedly, this is quite paranoid, since all the known shells bail # Admittedly, this is quite paranoid, since all the known shells bail
136 139 # out after a failed 'exec'. # out after a failed 'exec'.
137 printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2
140 printf '%s\n' "$0: could not re-execute with $CONFIG_SHELL" >&2
138 141 exit 255 exit 255
139 142 fi fi
140 143 # We don't want this to propagate to other subprocesses. # We don't want this to propagate to other subprocesses.
 
... ... then :
145 148 emulate sh emulate sh
146 149 NULLCMD=: NULLCMD=:
147 150 # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
148 # is contrary to our usage. Disable this feature.
151 # contradicts POSIX and common usage. Disable this.
149 152 alias -g '\${1+\"\$@\"}'='\"\$@\"' alias -g '\${1+\"\$@\"}'='\"\$@\"'
150 153 setopt NO_GLOB_SUBST setopt NO_GLOB_SUBST
151 154 else case e in #( else case e in #(
 
... ... case $- in # ((((
255 258 *x* ) as_opts=-x ;; *x* ) as_opts=-x ;;
256 259 * ) as_opts= ;; * ) as_opts= ;;
257 260 esac esac
258 exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
261 case $# in # ((
262 0) exec $CONFIG_SHELL $as_opts "$as_myself" ;;
263 *) exec $CONFIG_SHELL $as_opts "$as_myself" "$@" ;;
264 esac
259 265 # Admittedly, this is quite paranoid, since all the known shells bail # Admittedly, this is quite paranoid, since all the known shells bail
260 266 # out after a failed 'exec'. # out after a failed 'exec'.
261 printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2
267 printf '%s\n' "$0: could not re-execute with $CONFIG_SHELL" >&2
262 268 exit 255 exit 255
263 269 fi fi
264 270
265 271 if test x$as_have_required = xno if test x$as_have_required = xno
266 272 then : then :
267 printf "%s\n" "$0: This script requires a shell more modern than all"
268 printf "%s\n" "$0: the shells that I found on your system."
273 printf '%s\n' "$0: This script requires a shell more modern than all"
274 printf '%s\n' "$0: the shells that I found on your system."
269 275 if test ${ZSH_VERSION+y} ; then if test ${ZSH_VERSION+y} ; then
270 printf "%s\n" "$0: In particular, zsh $ZSH_VERSION has bugs and should"
271 printf "%s\n" "$0: be upgraded to zsh 4.3.4 or later."
276 printf '%s\n' "$0: In particular, zsh $ZSH_VERSION has bugs and should"
277 printf '%s\n' "$0: be upgraded to zsh 4.3.4 or later."
272 278 else else
273 printf "%s\n" "$0: Please tell bug-autoconf@gnu.org and xaizek@posteo.net
279 printf '%s\n' "$0: Please tell bug-autoconf@gnu.org and xaizek@posteo.net
274 280 $0: about your system, including any error possibly output $0: about your system, including any error possibly output
275 281 $0: before this message. Then install a modern shell, or $0: before this message. Then install a modern shell, or
276 282 $0: manually run the script under such a shell if you do $0: manually run the script under such a shell if you do
 
... ... as_fn_mkdir_p ()
331 337 as_dirs= as_dirs=
332 338 while :; do while :; do
333 339 case $as_dir in #( case $as_dir in #(
334 *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
340 *\'*) as_qdir=`printf '%s\n' "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
335 341 *) as_qdir=$as_dir;; *) as_qdir=$as_dir;;
336 342 esac esac
337 343 as_dirs="'$as_qdir' $as_dirs" as_dirs="'$as_qdir' $as_dirs"
 
... ... $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
340 346 X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \
341 347 X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(//\)$' \| \
342 348 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
343 printf "%s\n" X"$as_dir" |
349 printf '%s\n' X"$as_dir" |
344 350 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
345 351 s//\1/ s//\1/
346 352 q q
 
... ... as_fn_error ()
423 429 as_status=$1; test $as_status -eq 0 && as_status=1 as_status=$1; test $as_status -eq 0 && as_status=1
424 430 if test "$4"; then if test "$4"; then
425 431 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
426 printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
432 printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
427 433 fi fi
428 printf "%s\n" "$as_me: error: $2" >&2
434 printf '%s\n' "$as_me: error: $2" >&2
429 435 as_fn_exit $as_status as_fn_exit $as_status
430 436 } # as_fn_error } # as_fn_error
431 437
 
... ... as_me=`$as_basename -- "$0" ||
452 458 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
453 459 X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(//\)$' \| \
454 460 X"$0" : 'X\(/\)' \| . 2>/dev/null || X"$0" : 'X\(/\)' \| . 2>/dev/null ||
455 printf "%s\n" X/"$0" |
461 printf '%s\n' X/"$0" |
456 462 sed '/^.*\/\([^/][^/]*\)\/*$/{ sed '/^.*\/\([^/][^/]*\)\/*$/{
457 463 s//\1/ s//\1/
458 464 q q
 
... ... as_cr_alnum=$as_cr_Letters$as_cr_digits
498 504 s/-\n.*// s/-\n.*//
499 505 ' >$as_me.lineno && ' >$as_me.lineno &&
500 506 chmod +x "$as_me.lineno" || chmod +x "$as_me.lineno" ||
501 { printf "%s\n" "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
507 { printf '%s\n' "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
502 508
503 509 # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
504 510 # already done that, so ensure we don't try to do so again and fall # already done that, so ensure we don't try to do so again and fall
 
... ... as_cr_alnum=$as_cr_Letters$as_cr_digits
512 518 exit exit
513 519 } }
514 520
515
516 # Determine whether it's possible to make 'echo' print without a newline.
517 # These variables are no longer used directly by Autoconf, but are AC_SUBSTed
518 # for compatibility with existing Makefiles.
519 ECHO_C= ECHO_N= ECHO_T=
520 case `echo -n x` in #(((((
521 -n*)
522 case `echo 'xy\c'` in
523 *c*) ECHO_T=' ';; # ECHO_T is single tab character.
524 xy) ECHO_C='\c';;
525 *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
526 ECHO_T=' ';;
527 esac;;
528 *)
529 ECHO_N='-n';;
530 esac
531
532 # For backward compatibility with old third-party macros, we provide
533 # the shell variables $as_echo and $as_echo_n. New code should use
534 # AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively.
535 as_echo='printf %s\n'
536 as_echo_n='printf %s'
537
538 521 rm -f conf$$ conf$$.exe conf$$.file rm -f conf$$ conf$$.exe conf$$.file
539 522 if test -d conf$$.dir; then if test -d conf$$.dir; then
540 523 rm -f conf$$.dir/conf$$.file rm -f conf$$.dir/conf$$.file
 
... ... ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
593 576 # Initializations. # Initializations.
594 577 # #
595 578 ac_default_prefix=/usr/local ac_default_prefix=/usr/local
579 ac_clean_CONFIG_STATUS=
596 580 ac_clean_files= ac_clean_files=
597 581 ac_config_libobj_dir=. ac_config_libobj_dir=.
598 582 LIBOBJS= LIBOBJS=
 
... ... ac_includes_default="\
642 626 #endif" #endif"
643 627
644 628 ac_header_c_list= ac_header_c_list=
645 enable_year2038=no
629 : ${enable_year2038:=no}
646 630 ac_subst_vars='am__EXEEXT_FALSE ac_subst_vars='am__EXEEXT_FALSE
647 631 am__EXEEXT_TRUE am__EXEEXT_TRUE
648 632 LTLIBOBJS LTLIBOBJS
 
... ... am__isrc
722 706 INSTALL_DATA INSTALL_DATA
723 707 INSTALL_SCRIPT INSTALL_SCRIPT
724 708 INSTALL_PROGRAM INSTALL_PROGRAM
709 ECHO_T
710 ECHO_N
711 ECHO_C
725 712 target_alias target_alias
726 713 host_alias host_alias
727 714 build_alias build_alias
728 715 LIBS LIBS
729 ECHO_T
730 ECHO_N
731 ECHO_C
732 716 DEFS DEFS
733 717 mandir mandir
734 718 localedir localedir
 
... ... do
904 888 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
905 889 as_fn_error $? "invalid feature name: '$ac_useropt'" as_fn_error $? "invalid feature name: '$ac_useropt'"
906 890 ac_useropt_orig=$ac_useropt ac_useropt_orig=$ac_useropt
907 ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'`
891 ac_useropt=`printf '%s\n' "$ac_useropt" | sed 's/[-+.]/_/g'`
908 892 case $ac_user_opts in case $ac_user_opts in
909 893 *" *"
910 894 "enable_$ac_useropt" "enable_$ac_useropt"
 
... ... do
930 914 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
931 915 as_fn_error $? "invalid feature name: '$ac_useropt'" as_fn_error $? "invalid feature name: '$ac_useropt'"
932 916 ac_useropt_orig=$ac_useropt ac_useropt_orig=$ac_useropt
933 ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'`
917 ac_useropt=`printf '%s\n' "$ac_useropt" | sed 's/[-+.]/_/g'`
934 918 case $ac_user_opts in case $ac_user_opts in
935 919 *" *"
936 920 "enable_$ac_useropt" "enable_$ac_useropt"
 
... ... do
1143 1127 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1144 1128 as_fn_error $? "invalid package name: '$ac_useropt'" as_fn_error $? "invalid package name: '$ac_useropt'"
1145 1129 ac_useropt_orig=$ac_useropt ac_useropt_orig=$ac_useropt
1146 ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'`
1130 ac_useropt=`printf '%s\n' "$ac_useropt" | sed 's/[-+.]/_/g'`
1147 1131 case $ac_user_opts in case $ac_user_opts in
1148 1132 *" *"
1149 1133 "with_$ac_useropt" "with_$ac_useropt"
 
... ... do
1159 1143 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1160 1144 as_fn_error $? "invalid package name: '$ac_useropt'" as_fn_error $? "invalid package name: '$ac_useropt'"
1161 1145 ac_useropt_orig=$ac_useropt ac_useropt_orig=$ac_useropt
1162 ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'`
1146 ac_useropt=`printf '%s\n' "$ac_useropt" | sed 's/[-+.]/_/g'`
1163 1147 case $ac_user_opts in case $ac_user_opts in
1164 1148 *" *"
1165 1149 "with_$ac_useropt" "with_$ac_useropt"
 
... ... Try '$0 --help' for more information"
1203 1187
1204 1188 *) *)
1205 1189 # FIXME: should be removed in autoconf 3.0. # FIXME: should be removed in autoconf 3.0.
1206 printf "%s\n" "$as_me: WARNING: you should use --build, --host, --target" >&2
1190 printf '%s\n' "$as_me: WARNING: you should use --build, --host, --target" >&2
1207 1191 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1208 printf "%s\n" "$as_me: WARNING: invalid host type: $ac_option" >&2
1192 printf '%s\n' "$as_me: WARNING: invalid host type: $ac_option" >&2
1209 1193 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
1210 1194 ;; ;;
1211 1195
 
... ... Try '$0 --help' for more information"
1213 1197 done done
1214 1198
1215 1199 if test -n "$ac_prev"; then if test -n "$ac_prev"; then
1216 ac_option=--`echo $ac_prev | sed 's/_/-/g'`
1200 ac_option=--`printf '%s\n' $ac_prev | sed 's/_/-/g'`
1217 1201 as_fn_error $? "missing argument to $ac_option" as_fn_error $? "missing argument to $ac_option"
1218 1202 fi fi
1219 1203
 
... ... if test -n "$ac_unrecognized_opts"; then
1221 1205 case $enable_option_checking in case $enable_option_checking in
1222 1206 no) ;; no) ;;
1223 1207 fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
1224 *) printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
1208 *) printf '%s\n' "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
1225 1209 esac esac
1226 1210 fi fi
1227 1211
 
... ... $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1285 1269 X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \
1286 1270 X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(//\)$' \| \
1287 1271 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
1288 printf "%s\n" X"$as_myself" |
1272 printf '%s\n' X"$as_myself" |
1289 1273 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1290 1274 s//\1/ s//\1/
1291 1275 q q
 
... ... if test "$ac_init_help" = "recursive"; then
1493 1477 case "$ac_dir" in case "$ac_dir" in
1494 1478 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1495 1479 *) *)
1496 ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'`
1480 ac_dir_suffix=/`printf '%s\n' "$ac_dir" | sed 's|^\.[\\/]||'`
1497 1481 # A ".." for each directory in $ac_dir_suffix. # A ".." for each directory in $ac_dir_suffix.
1498 ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1482 ac_top_builddir_sub=`printf '%s\n' "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1499 1483 case $ac_top_builddir_sub in case $ac_top_builddir_sub in
1500 1484 "") ac_top_builddir_sub=. ac_top_build_prefix= ;; "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1501 1485 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
 
... ... ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1532 1516 echo && echo &&
1533 1517 $SHELL "$ac_srcdir/configure" --help=recursive $SHELL "$ac_srcdir/configure" --help=recursive
1534 1518 else else
1535 printf "%s\n" "$as_me: WARNING: no configuration information is in $ac_dir" >&2
1519 printf '%s\n' "$as_me: WARNING: no configuration information is in $ac_dir" >&2
1536 1520 fi || ac_status=$? fi || ac_status=$?
1537 1521 cd "$ac_pwd" || { ac_status=$?; break; } cd "$ac_pwd" || { ac_status=$?; break; }
1538 1522 done done
 
... ... test -n "$ac_init_help" && exit $ac_status
1542 1526 if $ac_init_version; then if $ac_init_version; then
1543 1527 cat <<\_ACEOF cat <<\_ACEOF
1544 1528 vifm configure 0.15 vifm configure 0.15
1545 generated by GNU Autoconf 2.72
1529 generated by GNU Autoconf 2.73
1546 1530
1547 Copyright (C) 2023 Free Software Foundation, Inc.
1531 Copyright (C) 2026 Free Software Foundation, Inc.
1548 1532 This configure script is free software; the Free Software Foundation This configure script is free software; the Free Software Foundation
1549 1533 gives unlimited permission to copy, distribute and modify it. gives unlimited permission to copy, distribute and modify it.
1550 1534 _ACEOF _ACEOF
 
... ... case "(($ac_try" in
1568 1552 *) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;;
1569 1553 esac esac
1570 1554 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
1571 printf "%s\n" "$ac_try_echo"; } >&5
1555 printf '%s\n' "$ac_try_echo"; } >&5
1572 1556 (eval "$ac_compile") 2>conftest.err (eval "$ac_compile") 2>conftest.err
1573 1557 ac_status=$? ac_status=$?
1574 1558 if test -s conftest.err; then if test -s conftest.err; then
 
... ... printf "%s\n" "$ac_try_echo"; } >&5
1576 1560 cat conftest.er1 >&5 cat conftest.er1 >&5
1577 1561 mv -f conftest.er1 conftest.err mv -f conftest.er1 conftest.err
1578 1562 fi fi
1579 printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1563 printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1580 1564 test $ac_status = 0; } && { test $ac_status = 0; } && {
1581 1565 test -z "$ac_c_werror_flag" || test -z "$ac_c_werror_flag" ||
1582 1566 test ! -s conftest.err test ! -s conftest.err
 
... ... printf "%s\n" "$ac_try_echo"; } >&5
1584 1568 then : then :
1585 1569 ac_retval=0 ac_retval=0
1586 1570 else case e in #( else case e in #(
1587 e) printf "%s\n" "$as_me: failed program was:" >&5
1571 e) printf '%s\n' "$as_me: failed program was:" >&5
1588 1572 sed 's/^/| /' conftest.$ac_ext >&5 sed 's/^/| /' conftest.$ac_ext >&5
1589 1573
1590 1574 ac_retval=1 ;; ac_retval=1 ;;
 
... ... fi
1602 1586 ac_fn_c_check_header_compile () ac_fn_c_check_header_compile ()
1603 1587 { {
1604 1588 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1605 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1589 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1606 1590 printf %s "checking for $2... " >&6; } printf %s "checking for $2... " >&6; }
1607 1591 if eval test \${$3+y} if eval test \${$3+y}
1608 1592 then : then :
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
1624 1608 esac esac
1625 1609 fi fi
1626 1610 eval ac_res=\$$3 eval ac_res=\$$3
1627 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1628 printf "%s\n" "$ac_res" >&6; }
1611 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1612 printf '%s\n' "$ac_res" >&6; }
1629 1613 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1630 1614
1631 1615 } # ac_fn_c_check_header_compile } # ac_fn_c_check_header_compile
 
... ... printf "%s\n" "$ac_res" >&6; }
1637 1621 ac_fn_c_check_type () ac_fn_c_check_type ()
1638 1622 { {
1639 1623 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1640 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1624 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1641 1625 printf %s "checking for $2... " >&6; } printf %s "checking for $2... " >&6; }
1642 1626 if eval test \${$3+y} if eval test \${$3+y}
1643 1627 then : then :
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
1683 1667 esac esac
1684 1668 fi fi
1685 1669 eval ac_res=\$$3 eval ac_res=\$$3
1686 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1687 printf "%s\n" "$ac_res" >&6; }
1670 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1671 printf '%s\n' "$ac_res" >&6; }
1688 1672 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1689 1673
1690 1674 } # ac_fn_c_check_type } # ac_fn_c_check_type
 
... ... case "(($ac_try" in
1702 1686 *) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;;
1703 1687 esac esac
1704 1688 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
1705 printf "%s\n" "$ac_try_echo"; } >&5
1689 printf '%s\n' "$ac_try_echo"; } >&5
1706 1690 (eval "$ac_link") 2>conftest.err (eval "$ac_link") 2>conftest.err
1707 1691 ac_status=$? ac_status=$?
1708 1692 if test -s conftest.err; then if test -s conftest.err; then
 
... ... printf "%s\n" "$ac_try_echo"; } >&5
1710 1694 cat conftest.er1 >&5 cat conftest.er1 >&5
1711 1695 mv -f conftest.er1 conftest.err mv -f conftest.er1 conftest.err
1712 1696 fi fi
1713 printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1697 printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1714 1698 test $ac_status = 0; } && { test $ac_status = 0; } && {
1715 1699 test -z "$ac_c_werror_flag" || test -z "$ac_c_werror_flag" ||
1716 1700 test ! -s conftest.err test ! -s conftest.err
 
... ... printf "%s\n" "$ac_try_echo"; } >&5
1721 1705 then : then :
1722 1706 ac_retval=0 ac_retval=0
1723 1707 else case e in #( else case e in #(
1724 e) printf "%s\n" "$as_me: failed program was:" >&5
1708 e) printf '%s\n' "$as_me: failed program was:" >&5
1725 1709 sed 's/^/| /' conftest.$ac_ext >&5 sed 's/^/| /' conftest.$ac_ext >&5
1726 1710
1727 1711 ac_retval=1 ;; ac_retval=1 ;;
 
... ... fi
1743 1727 ac_fn_c_check_func () ac_fn_c_check_func ()
1744 1728 { {
1745 1729 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1746 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1730 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1747 1731 printf %s "checking for $2... " >&6; } printf %s "checking for $2... " >&6; }
1748 1732 if eval test \${$3+y} if eval test \${$3+y}
1749 1733 then : then :
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam \
1795 1779 esac esac
1796 1780 fi fi
1797 1781 eval ac_res=\$$3 eval ac_res=\$$3
1798 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1799 printf "%s\n" "$ac_res" >&6; }
1782 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1783 printf '%s\n' "$ac_res" >&6; }
1800 1784 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1801 1785
1802 1786 } # ac_fn_c_check_func } # ac_fn_c_check_func
 
... ... ac_fn_check_decl ()
1809 1793 { {
1810 1794 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1811 1795 as_decl_name=`echo $2|sed 's/ *(.*//'` as_decl_name=`echo $2|sed 's/ *(.*//'`
1812 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5
1796 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5
1813 1797 printf %s "checking whether $as_decl_name is declared... " >&6; } printf %s "checking whether $as_decl_name is declared... " >&6; }
1814 1798 if eval test \${$3+y} if eval test \${$3+y}
1815 1799 then : then :
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
1849 1833 esac esac
1850 1834 fi fi
1851 1835 eval ac_res=\$$3 eval ac_res=\$$3
1852 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1853 printf "%s\n" "$ac_res" >&6; }
1836 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1837 printf '%s\n' "$ac_res" >&6; }
1854 1838 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1855 1839
1856 1840 } # ac_fn_check_decl } # ac_fn_check_decl
 
... ... printf "%s\n" "$ac_res" >&6; }
1862 1846 ac_fn_c_check_member () ac_fn_c_check_member ()
1863 1847 { {
1864 1848 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1865 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5
1849 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5
1866 1850 printf %s "checking for $2.$3... " >&6; } printf %s "checking for $2.$3... " >&6; }
1867 1851 if eval test \${$4+y} if eval test \${$4+y}
1868 1852 then : then :
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
1912 1896 esac esac
1913 1897 fi fi
1914 1898 eval ac_res=\$$4 eval ac_res=\$$4
1915 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1916 printf "%s\n" "$ac_res" >&6; }
1899 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1900 printf '%s\n' "$ac_res" >&6; }
1917 1901 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1918 1902
1919 1903 } # ac_fn_c_check_member } # ac_fn_c_check_member
 
... ... case "(($ac_try" in
1930 1914 *) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;;
1931 1915 esac esac
1932 1916 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
1933 printf "%s\n" "$ac_try_echo"; } >&5
1917 printf '%s\n' "$ac_try_echo"; } >&5
1934 1918 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err
1935 1919 ac_status=$? ac_status=$?
1936 1920 if test -s conftest.err; then if test -s conftest.err; then
 
... ... printf "%s\n" "$ac_try_echo"; } >&5
1938 1922 cat conftest.er1 >&5 cat conftest.er1 >&5
1939 1923 mv -f conftest.er1 conftest.err mv -f conftest.er1 conftest.err
1940 1924 fi fi
1941 printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1925 printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1942 1926 test $ac_status = 0; } > conftest.i && { test $ac_status = 0; } > conftest.i && {
1943 1927 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
1944 1928 test ! -s conftest.err test ! -s conftest.err
 
... ... printf "%s\n" "$ac_try_echo"; } >&5
1946 1930 then : then :
1947 1931 ac_retval=0 ac_retval=0
1948 1932 else case e in #( else case e in #(
1949 e) printf "%s\n" "$as_me: failed program was:" >&5
1933 e) printf '%s\n' "$as_me: failed program was:" >&5
1950 1934 sed 's/^/| /' conftest.$ac_ext >&5 sed 's/^/| /' conftest.$ac_ext >&5
1951 1935
1952 1936 ac_retval=1 ;; ac_retval=1 ;;
 
... ... for ac_arg
1961 1945 do do
1962 1946 case $ac_arg in case $ac_arg in
1963 1947 *\'*) *\'*)
1964 ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1948 ac_arg=`printf '%s\n' "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1965 1949 esac esac
1966 1950 as_fn_append ac_configure_args_raw " '$ac_arg'" as_fn_append ac_configure_args_raw " '$ac_arg'"
1967 1951 done done
 
... ... case $ac_configure_args_raw in
1973 1957 ac_unsafe_z='|&;<>()$`\\"*?[ '' ' # This string ends in space, tab. ac_unsafe_z='|&;<>()$`\\"*?[ '' ' # This string ends in space, tab.
1974 1958 ac_unsafe_a="$ac_unsafe_z#~" ac_unsafe_a="$ac_unsafe_z#~"
1975 1959 ac_safe_unquote="s/ '\\([^$ac_unsafe_a][^$ac_unsafe_z]*\\)'/ \\1/g" ac_safe_unquote="s/ '\\([^$ac_unsafe_a][^$ac_unsafe_z]*\\)'/ \\1/g"
1976 ac_configure_args_raw=` printf "%s\n" "$ac_configure_args_raw" | sed "$ac_safe_unquote"`;;
1960 ac_configure_args_raw=` printf '%s\n' "$ac_configure_args_raw" | sed "$ac_safe_unquote"`;;
1977 1961 esac esac
1978 1962
1979 1963 cat >config.log <<_ACEOF cat >config.log <<_ACEOF
 
... ... This file contains any messages produced by compilers while
1981 1965 running configure, to aid debugging if configure makes a mistake. running configure, to aid debugging if configure makes a mistake.
1982 1966
1983 1967 It was created by vifm $as_me 0.15, which was It was created by vifm $as_me 0.15, which was
1984 generated by GNU Autoconf 2.72. Invocation command line was
1968 generated by GNU Autoconf 2.73. Invocation command line was
1985 1969
1986 1970 $ $0$ac_configure_args_raw $ $0$ac_configure_args_raw
1987 1971
 
... ... do
2021 2005 */) ;; */) ;;
2022 2006 *) as_dir=$as_dir/ ;; *) as_dir=$as_dir/ ;;
2023 2007 esac esac
2024 printf "%s\n" "PATH: $as_dir"
2008 printf '%s\n' "PATH: $as_dir"
2025 2009 done done
2026 2010 IFS=$as_save_IFS IFS=$as_save_IFS
2027 2011
 
... ... do
2056 2040 | -silent | --silent | --silen | --sile | --sil) | -silent | --silent | --silen | --sile | --sil)
2057 2041 continue ;; continue ;;
2058 2042 *\'*) *\'*)
2059 ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
2043 ac_arg=`printf '%s\n' "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
2060 2044 esac esac
2061 2045 case $ac_pass in case $ac_pass in
2062 2046 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
 
... ... done
2085 2069 { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args0=; unset ac_configure_args0;}
2086 2070 { ac_configure_args1=; unset ac_configure_args1;} { ac_configure_args1=; unset ac_configure_args1;}
2087 2071
2088 # When interrupted or exit'd, cleanup temporary files, and complete
2089 # config.log. We remove comments because anyway the quotes in there
2090 # would cause problems or look ugly.
2091 # WARNING: Use '\'' to represent an apostrophe within the trap.
2092 # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
2093 trap 'exit_status=$?
2094 # Sanitize IFS.
2095 IFS=" "" $as_nl"
2096 # Save into config.log some information that might help in debugging.
2097 {
2098 echo
2099
2100 printf "%s\n" "## ---------------- ##
2101 ## Cache variables. ##
2102 ## ---------------- ##"
2103 echo
2104 # The following way of writing the cache mishandles newlines in values,
2072 # Dump the cache to stdout. It can be in a pipe (this is a requirement).
2073 ac_cache_dump ()
2074 {
2075 # The following way of writing the cache mishandles newlines in values,
2076 # but we know of no workaround that is simple, portable, and efficient.
2077 # So, we kill variables containing newlines.
2078 # Ultrix sh set writes to stderr and can't be redirected directly,
2079 # and sets the high bit in the cache file unless we assign to the vars.
2105 2080 ( (
2106 for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
2081 for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
2107 2082 eval ac_val=\$$ac_var eval ac_val=\$$ac_var
2108 2083 case $ac_val in #( case $ac_val in #(
2109 2084 *${as_nl}*) *${as_nl}*)
2110 2085 case $ac_var in #( case $ac_var in #(
2111 *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
2112 printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
2086 *_cv_*) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
2087 printf '%s\n' "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
2113 2088 esac esac
2114 2089 case $ac_var in #( case $ac_var in #(
2115 2090 _ | IFS | as_nl) ;; #( _ | IFS | as_nl) ;; #(
 
... ... printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;}
2118 2093 esac ;; esac ;;
2119 2094 esac esac
2120 2095 done done
2096
2121 2097 (set) 2>&1 | (set) 2>&1 |
2122 case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
2098 case $as_nl`(ac_space=' '; set) 2>&1` in #(
2123 2099 *${as_nl}ac_space=\ *) *${as_nl}ac_space=\ *)
2100 # 'set' does not quote correctly, so add quotes: double-quote
2101 # substitution turns \\\\ into \\, and sed turns \\ into \.
2124 2102 sed -n \ sed -n \
2125 "s/'\''/'\''\\\\'\'''\''/g;
2126 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
2103 "s/'/'\\\\''/g;
2104 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
2127 2105 ;; #( ;; #(
2128 2106 *) *)
2107 # 'set' quotes correctly as required by POSIX, so do not add quotes.
2129 2108 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
2130 2109 ;; ;;
2131 2110 esac | esac |
2132 2111 sort sort
2133 2112 ) )
2134 echo
2113 }
2114
2115 # Print debugging info to stdout.
2116 ac_dump_debugging_info ()
2117 {
2118 echo
2119
2120 printf '%s\n' "## ---------------- ##
2121 ## Cache variables. ##
2122 ## ---------------- ##"
2123 echo
2124 ac_cache_dump
2125 echo
2135 2126
2136 printf "%s\n" "## ----------------- ##
2127 printf '%s\n' "## ----------------- ##
2137 2128 ## Output variables. ## ## Output variables. ##
2138 2129 ## ----------------- ##" ## ----------------- ##"
2130 echo
2131 for ac_var in $ac_subst_vars
2132 do
2133 eval ac_val=\$$ac_var
2134 case $ac_val in
2135 *\'*) ac_val=`printf '%s\n' "$ac_val" | sed "s/'/'\\\\\\\\''/g"`;;
2136 esac
2137 printf '%s\n' "$ac_var='$ac_val'"
2138 done | sort
2139 echo
2140
2141 if test -n "$ac_subst_files"; then
2142 printf '%s\n' "## ------------------- ##
2143 ## File substitutions. ##
2144 ## ------------------- ##"
2139 2145 echo echo
2140 for ac_var in $ac_subst_vars
2146 for ac_var in $ac_subst_files
2141 2147 do do
2142 2148 eval ac_val=\$$ac_var eval ac_val=\$$ac_var
2143 2149 case $ac_val in case $ac_val in
2144 *\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
2150 *\'*) ac_val=`printf '%s\n' "$ac_val" | sed "s/'/'\\\\\\\\''/g"`;;
2145 2151 esac esac
2146 printf "%s\n" "$ac_var='\''$ac_val'\''"
2152 printf '%s\n' "$ac_var='$ac_val'"
2147 2153 done | sort done | sort
2148 2154 echo echo
2155 fi
2149 2156
2150 if test -n "$ac_subst_files"; then
2151 printf "%s\n" "## ------------------- ##
2152 ## File substitutions. ##
2153 ## ------------------- ##"
2154 echo
2155 for ac_var in $ac_subst_files
2156 do
2157 eval ac_val=\$$ac_var
2158 case $ac_val in
2159 *\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
2160 esac
2161 printf "%s\n" "$ac_var='\''$ac_val'\''"
2162 done | sort
2163 echo
2164 fi
2165
2166 if test -s confdefs.h; then
2167 printf "%s\n" "## ----------- ##
2157 if test -s confdefs.h; then
2158 printf '%s\n' "## ----------- ##
2168 2159 ## confdefs.h. ## ## confdefs.h. ##
2169 2160 ## ----------- ##" ## ----------- ##"
2170 echo
2171 cat confdefs.h
2172 echo
2173 fi
2174 test "$ac_signal" != 0 &&
2175 printf "%s\n" "$as_me: caught signal $ac_signal"
2176 printf "%s\n" "$as_me: exit $exit_status"
2177 } >&5
2178 rm -f core *.core core.conftest.* &&
2161 echo
2162 cat confdefs.h
2163 echo
2164 fi
2165 test "$ac_signal" != 0 &&
2166 printf '%s\n' "$as_me: caught signal $ac_signal"
2167 printf '%s\n' "$as_me: exit $exit_status"
2168 }
2169
2170 # When interrupted or exit'd, cleanup temporary files, and complete
2171 # config.log.
2172 ac_exit_trap ()
2173 {
2174 exit_status=
2175 # Sanitize IFS.
2176 IFS=" "" $as_nl"
2177 # Save into config.log some information that might help in debugging.
2178 ac_dump_debugging_info >&5
2179 eval "rm -f $ac_clean_CONFIG_STATUS core *.core core.conftest.*" &&
2179 2180 rm -f -r conftest* confdefs* conf$$* $ac_clean_files && rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
2180 2181 exit $exit_status exit $exit_status
2181 ' 0
2182 }
2183
2184 trap 'ac_exit_trap $?' 0
2182 2185 for ac_signal in 1 2 13 15; do for ac_signal in 1 2 13 15; do
2183 2186 trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
2184 2187 done done
 
... ... ac_signal=0
2187 2190 # confdefs.h avoids OS command line length limits that DEFS can exceed. # confdefs.h avoids OS command line length limits that DEFS can exceed.
2188 2191 rm -f -r conftest* confdefs.h rm -f -r conftest* confdefs.h
2189 2192
2190 printf "%s\n" "/* confdefs.h */" > confdefs.h
2193 printf '%s\n' "/* confdefs.h */" > confdefs.h
2191 2194
2192 2195 # Predefined preprocessor variables. # Predefined preprocessor variables.
2193 2196
2194 printf "%s\n" "#define PACKAGE_NAME \"$PACKAGE_NAME\"" >>confdefs.h
2197 printf '%s\n' "#define PACKAGE_NAME \"$PACKAGE_NAME\"" >>confdefs.h
2195 2198
2196 printf "%s\n" "#define PACKAGE_TARNAME \"$PACKAGE_TARNAME\"" >>confdefs.h
2199 printf '%s\n' "#define PACKAGE_TARNAME \"$PACKAGE_TARNAME\"" >>confdefs.h
2197 2200
2198 printf "%s\n" "#define PACKAGE_VERSION \"$PACKAGE_VERSION\"" >>confdefs.h
2201 printf '%s\n' "#define PACKAGE_VERSION \"$PACKAGE_VERSION\"" >>confdefs.h
2199 2202
2200 printf "%s\n" "#define PACKAGE_STRING \"$PACKAGE_STRING\"" >>confdefs.h
2203 printf '%s\n' "#define PACKAGE_STRING \"$PACKAGE_STRING\"" >>confdefs.h
2201 2204
2202 printf "%s\n" "#define PACKAGE_BUGREPORT \"$PACKAGE_BUGREPORT\"" >>confdefs.h
2205 printf '%s\n' "#define PACKAGE_BUGREPORT \"$PACKAGE_BUGREPORT\"" >>confdefs.h
2203 2206
2204 printf "%s\n" "#define PACKAGE_URL \"$PACKAGE_URL\"" >>confdefs.h
2207 printf '%s\n' "#define PACKAGE_URL \"$PACKAGE_URL\"" >>confdefs.h
2205 2208
2206 2209
2207 2210 # Let the site file select an alternate cache file if it wants to. # Let the site file select an alternate cache file if it wants to.
 
... ... do
2223 2226 ac_site_file=./$ac_site_file ;; ac_site_file=./$ac_site_file ;;
2224 2227 esac esac
2225 2228 if test -f "$ac_site_file" && test -r "$ac_site_file"; then if test -f "$ac_site_file" && test -r "$ac_site_file"; then
2226 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
2227 printf "%s\n" "$as_me: loading site script $ac_site_file" >&6;}
2229 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
2230 printf '%s\n' "$as_me: loading site script $ac_site_file" >&6;}
2228 2231 sed 's/^/| /' "$ac_site_file" >&5 sed 's/^/| /' "$ac_site_file" >&5
2229 2232 . "$ac_site_file" \ . "$ac_site_file" \
2230 || { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
2231 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
2233 || { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
2234 printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
2232 2235 as_fn_error $? "failed to load site script $ac_site_file as_fn_error $? "failed to load site script $ac_site_file
2233 2236 See 'config.log' for more details" "$LINENO" 5; } See 'config.log' for more details" "$LINENO" 5; }
2234 2237 fi fi
 
... ... if test -r "$cache_file"; then
2238 2241 # Some versions of bash will fail to source /dev/null (special files # Some versions of bash will fail to source /dev/null (special files
2239 2242 # actually), so we avoid doing that. DJGPP emulates it as a regular file. # actually), so we avoid doing that. DJGPP emulates it as a regular file.
2240 2243 if test /dev/null != "$cache_file" && test -f "$cache_file"; then if test /dev/null != "$cache_file" && test -f "$cache_file"; then
2241 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
2242 printf "%s\n" "$as_me: loading cache $cache_file" >&6;}
2244 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
2245 printf '%s\n' "$as_me: loading cache $cache_file" >&6;}
2243 2246 case $cache_file in case $cache_file in
2244 2247 [\\/]* | ?:[\\/]* ) . "$cache_file";; [\\/]* | ?:[\\/]* ) . "$cache_file";;
2245 2248 *) . "./$cache_file";; *) . "./$cache_file";;
2246 2249 esac esac
2247 2250 fi fi
2248 2251 else else
2249 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
2250 printf "%s\n" "$as_me: creating cache $cache_file" >&6;}
2252 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
2253 printf '%s\n' "$as_me: creating cache $cache_file" >&6;}
2251 2254 >$cache_file >$cache_file
2252 2255 fi fi
2253 2256
2254 2257 as_fn_append ac_header_c_list " stdio.h stdio_h HAVE_STDIO_H" as_fn_append ac_header_c_list " stdio.h stdio_h HAVE_STDIO_H"
2258 # Test code for whether the C compiler supports C23 (global declarations)
2259 ac_c_conftest_c23_globals='
2260 /* Does the compiler advertise conformance to C17 or earlier?
2261 Although GCC 14 does not do that, even with -std=gnu23,
2262 it is close enough, and defines __STDC_VERSION == 202000L. */
2263 #if !defined __STDC_VERSION__ || __STDC_VERSION__ <= 201710L
2264 # error "Compiler advertises conformance to C17 or earlier"
2265 #endif
2266
2267 // Check alignas.
2268 char alignas (double) c23_aligned_as_double;
2269 char alignas (0) c23_no_special_alignment;
2270 extern char c23_aligned_as_int;
2271 char alignas (0) alignas (int) c23_aligned_as_int;
2272
2273 // Check alignof.
2274 enum
2275 {
2276 c23_int_alignment = alignof (int),
2277 c23_int_array_alignment = alignof (int[100]),
2278 c23_char_alignment = alignof (char)
2279 };
2280 static_assert (0 < -alignof (int), "alignof is signed");
2281
2282 int function_with_unnamed_parameter (int) { return 0; }
2283
2284 void c23_noreturn ();
2285
2286 /* Test parsing of string and char UTF-8 literals (including hex escapes).
2287 The parens pacify GCC 15. */
2288 bool use_u8 = (!sizeof u8"\xFF") == (!u8'\''x'\'');
2289
2290 bool check_that_bool_works = true | false | !nullptr;
2291 #if !true
2292 # error "true does not work in #if"
2293 #endif
2294 #if false
2295 #elifdef __STDC_VERSION__
2296 #else
2297 # error "#elifdef does not work"
2298 #endif
2299
2300 #ifndef __has_c_attribute
2301 # error "__has_c_attribute not defined"
2302 #endif
2303
2304 #ifndef __has_include
2305 # error "__has_include not defined"
2306 #endif
2307
2308 #define LPAREN() (
2309 #define FORTY_TWO(x) 42
2310 #define VA_OPT_TEST(r, x, ...) __VA_OPT__ (FORTY_TWO r x))
2311 static_assert (VA_OPT_TEST (LPAREN (), 0, <:-) == 42);
2312
2313 static_assert (0b101010 == 42);
2314 static_assert (0B101010 == 42);
2315 static_assert (0xDEAD'\''BEEF == 3'\''735'\''928'\''559);
2316 static_assert (0.500'\''000'\''000 == 0.5);
2317
2318 enum unsignedish : unsigned int { uione = 1 };
2319 static_assert (0 < -uione);
2320
2321 #include <stddef.h>
2322 constexpr nullptr_t null_pointer = nullptr;
2323
2324 static typeof (1 + 1L) two () { return 2; }
2325 static long int three () { return 3; }
2326 '
2327
2328 # Test code for whether the C compiler supports C23 (body of main).
2329 ac_c_conftest_c23_main='
2330 {
2331 label_before_declaration:
2332 int arr[10] = {};
2333 if (arr[0])
2334 goto label_before_declaration;
2335 if (!arr[0])
2336 goto label_at_end_of_block;
2337 label_at_end_of_block:
2338 }
2339 ok |= !null_pointer;
2340 ok |= two != three;
2341 '
2342
2343 # Test code for whether the C compiler supports C23 (complete).
2344 ac_c_conftest_c23_program="${ac_c_conftest_c23_globals}
2345
2346 int
2347 main (int, char **)
2348 {
2349 int ok = 0;
2350 ${ac_c_conftest_c23_main}
2351 return ok;
2352 }
2353 "
2354
2255 2355 # Test code for whether the C compiler supports C89 (global declarations) # Test code for whether the C compiler supports C89 (global declarations)
2256 2356 ac_c_conftest_c89_globals=' ac_c_conftest_c89_globals='
2257 /* Does the compiler advertise C89 conformance?
2258 Do not test the value of __STDC__, because some compilers set it to 0
2259 while being otherwise adequately conformant. */
2260 #if !defined __STDC__
2261 # error "Compiler does not advertise C89 conformance"
2262 #endif
2357 /* Do not test the value of __STDC__, because some compilers define it to 0
2358 or do not define it, while otherwise adequately conforming. */
2263 2359
2264 2360 #include <stddef.h> #include <stddef.h>
2265 2361 #include <stdarg.h> #include <stdarg.h>
 
... ... extern void free (void *);
2339 2435
2340 2436 // Check varargs macros. These examples are taken from C99 6.10.3.5. // Check varargs macros. These examples are taken from C99 6.10.3.5.
2341 2437 // dprintf is used instead of fprintf to avoid needing to declare // dprintf is used instead of fprintf to avoid needing to declare
2342 // FILE and stderr.
2438 // FILE and stderr, and "aND" is used instead of "and" to work around
2439 // GCC bug 40564 which is irrelevant here.
2343 2440 #define debug(...) dprintf (2, __VA_ARGS__) #define debug(...) dprintf (2, __VA_ARGS__)
2344 2441 #define showlist(...) puts (#__VA_ARGS__) #define showlist(...) puts (#__VA_ARGS__)
2345 2442 #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__))
 
... ... test_varargs_macros (void)
2350 2447 int y = 5678; int y = 5678;
2351 2448 debug ("Flag"); debug ("Flag");
2352 2449 debug ("X = %d\n", x); debug ("X = %d\n", x);
2353 showlist (The first, second, and third items.);
2450 showlist (The first, second, aND third items.);
2354 2451 report (x>y, "x is %d but y is %d", x, y); report (x>y, "x is %d but y is %d", x, y);
2355 2452 } }
2356 2453
 
... ... ac_c_conftest_c99_main='
2438 2535 // Check restrict. // Check restrict.
2439 2536 if (test_restrict ("String literal") == 0) if (test_restrict ("String literal") == 0)
2440 2537 success = true; success = true;
2441 char *restrict newvar = "Another string";
2538 const char *restrict newvar = "Another string";
2442 2539
2443 2540 // Check varargs. // Check varargs.
2444 2541 success &= test_varargs ("s, d'\'' f .", "string", 65, 34.234); success &= test_varargs ("s, d'\'' f .", "string", 65, 34.234);
2445 2542 test_varargs_macros (); test_varargs_macros ();
2446 2543
2447 2544 // Check flexible array members. // Check flexible array members.
2448 struct incomplete_array *ia =
2449 malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10));
2545 static struct incomplete_array *volatile incomplete_array_pointer;
2546 struct incomplete_array *ia = incomplete_array_pointer;
2450 2547 ia->datasize = 10; ia->datasize = 10;
2451 2548 for (int i = 0; i < ia->datasize; ++i) for (int i = 0; i < ia->datasize; ++i)
2452 2549 ia->data[i] = i * 1.234; ia->data[i] = i * 1.234;
 
... ... ac_c_conftest_c99_main='
2462 2559
2463 2560 ni.number = 58; ni.number = 58;
2464 2561
2465 int dynamic_array[ni.number];
2466 dynamic_array[0] = argv[0][0];
2467 dynamic_array[ni.number - 1] = 543;
2562 // Do not test for VLAs, as some otherwise-conforming compilers lack them.
2563 // C code should instead use __STDC_NO_VLA__; see Autoconf manual.
2468 2564
2469 2565 // work around unused variable warnings // work around unused variable warnings
2470 2566 ok |= (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == '\''x'\'' ok |= (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == '\''x'\''
2471 || dynamic_array[ni.number - 1] != 543);
2567 || ni.number != 58);
2472 2568 ' '
2473 2569
2474 2570 # Test code for whether the C compiler supports C11 (global declarations) # Test code for whether the C compiler supports C11 (global declarations)
 
... ... ac_aux_dir_candidates="${srcdir}/build-aux"
2601 2697 # $ac_aux_dir_candidates and give up. # $ac_aux_dir_candidates and give up.
2602 2698 ac_missing_aux_files="" ac_missing_aux_files=""
2603 2699 ac_first_candidate=: ac_first_candidate=:
2604 printf "%s\n" "$as_me:${as_lineno-$LINENO}: looking for aux files: $ac_aux_files" >&5
2700 printf '%s\n' "$as_me:${as_lineno-$LINENO}: looking for aux files: $ac_aux_files" >&5
2605 2701 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2606 2702 as_found=false as_found=false
2607 2703 for as_dir in $ac_aux_dir_candidates for as_dir in $ac_aux_dir_candidates
 
... ... do
2614 2710 esac esac
2615 2711 as_found=: as_found=:
2616 2712
2617 printf "%s\n" "$as_me:${as_lineno-$LINENO}: trying $as_dir" >&5
2713 printf '%s\n' "$as_me:${as_lineno-$LINENO}: trying $as_dir" >&5
2618 2714 ac_aux_dir_found=yes ac_aux_dir_found=yes
2619 2715 ac_install_sh= ac_install_sh=
2620 2716 for ac_aux in $ac_aux_files for ac_aux in $ac_aux_files
 
... ... do
2625 2721 if test x"$ac_aux" = x"install-sh" if test x"$ac_aux" = x"install-sh"
2626 2722 then then
2627 2723 if test -f "${as_dir}install-sh"; then if test -f "${as_dir}install-sh"; then
2628 printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install-sh found" >&5
2724 printf '%s\n' "$as_me:${as_lineno-$LINENO}: ${as_dir}install-sh found" >&5
2629 2725 ac_install_sh="${as_dir}install-sh -c" ac_install_sh="${as_dir}install-sh -c"
2630 2726 elif test -f "${as_dir}install.sh"; then elif test -f "${as_dir}install.sh"; then
2631 printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install.sh found" >&5
2727 printf '%s\n' "$as_me:${as_lineno-$LINENO}: ${as_dir}install.sh found" >&5
2632 2728 ac_install_sh="${as_dir}install.sh -c" ac_install_sh="${as_dir}install.sh -c"
2633 2729 elif test -f "${as_dir}shtool"; then elif test -f "${as_dir}shtool"; then
2634 printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}shtool found" >&5
2730 printf '%s\n' "$as_me:${as_lineno-$LINENO}: ${as_dir}shtool found" >&5
2635 2731 ac_install_sh="${as_dir}shtool install -c" ac_install_sh="${as_dir}shtool install -c"
2636 2732 else else
2637 2733 ac_aux_dir_found=no ac_aux_dir_found=no
 
... ... do
2643 2739 fi fi
2644 2740 else else
2645 2741 if test -f "${as_dir}${ac_aux}"; then if test -f "${as_dir}${ac_aux}"; then
2646 printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}${ac_aux} found" >&5
2742 printf '%s\n' "$as_me:${as_lineno-$LINENO}: ${as_dir}${ac_aux} found" >&5
2647 2743 else else
2648 2744 ac_aux_dir_found=no ac_aux_dir_found=no
2649 2745 if $ac_first_candidate; then if $ac_first_candidate; then
 
... ... for ac_var in $ac_precious_vars; do
2696 2792 eval ac_new_val=\$ac_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value
2697 2793 case $ac_old_set,$ac_new_set in case $ac_old_set,$ac_new_set in
2698 2794 set,) set,)
2699 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: '$ac_var' was set to '$ac_old_val' in the previous run" >&5
2700 printf "%s\n" "$as_me: error: '$ac_var' was set to '$ac_old_val' in the previous run" >&2;}
2795 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: '$ac_var' was set to '$ac_old_val' in the previous run" >&5
2796 printf '%s\n' "$as_me: error: '$ac_var' was set to '$ac_old_val' in the previous run" >&2;}
2701 2797 ac_cache_corrupted=: ;; ac_cache_corrupted=: ;;
2702 2798 ,set) ,set)
2703 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: '$ac_var' was not set in the previous run" >&5
2704 printf "%s\n" "$as_me: error: '$ac_var' was not set in the previous run" >&2;}
2799 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: '$ac_var' was not set in the previous run" >&5
2800 printf '%s\n' "$as_me: error: '$ac_var' was not set in the previous run" >&2;}
2705 2801 ac_cache_corrupted=: ;; ac_cache_corrupted=: ;;
2706 2802 ,);; ,);;
2707 2803 *) *)
2708 2804 if test "x$ac_old_val" != "x$ac_new_val"; then if test "x$ac_old_val" != "x$ac_new_val"; then
2709 2805 # differences in whitespace do not lead to failure. # differences in whitespace do not lead to failure.
2710 ac_old_val_w=`echo x $ac_old_val`
2711 ac_new_val_w=`echo x $ac_new_val`
2806 ac_old_val_w=
2807 for ac_val in x $ac_old_val; do
2808 ac_old_val_w="$ac_old_val_w $ac_val"
2809 done
2810 ac_new_val_w=
2811 for ac_val in x $ac_new_val; do
2812 ac_new_val_w="$ac_new_val_w $ac_val"
2813 done
2712 2814 if test "$ac_old_val_w" != "$ac_new_val_w"; then if test "$ac_old_val_w" != "$ac_new_val_w"; then
2713 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: '$ac_var' has changed since the previous run:" >&5
2714 printf "%s\n" "$as_me: error: '$ac_var' has changed since the previous run:" >&2;}
2815 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: '$ac_var' has changed since the previous run:" >&5
2816 printf '%s\n' "$as_me: error: '$ac_var' has changed since the previous run:" >&2;}
2715 2817 ac_cache_corrupted=: ac_cache_corrupted=:
2716 2818 else else
2717 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in '$ac_var' since the previous run:" >&5
2718 printf "%s\n" "$as_me: warning: ignoring whitespace changes in '$ac_var' since the previous run:" >&2;}
2819 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in '$ac_var' since the previous run:" >&5
2820 printf '%s\n' "$as_me: warning: ignoring whitespace changes in '$ac_var' since the previous run:" >&2;}
2719 2821 eval $ac_var=\$ac_old_val eval $ac_var=\$ac_old_val
2720 2822 fi fi
2721 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: former value: '$ac_old_val'" >&5
2722 printf "%s\n" "$as_me: former value: '$ac_old_val'" >&2;}
2723 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: current value: '$ac_new_val'" >&5
2724 printf "%s\n" "$as_me: current value: '$ac_new_val'" >&2;}
2823 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: former value: '$ac_old_val'" >&5
2824 printf '%s\n' "$as_me: former value: '$ac_old_val'" >&2;}
2825 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: current value: '$ac_new_val'" >&5
2826 printf '%s\n' "$as_me: current value: '$ac_new_val'" >&2;}
2725 2827 fi;; fi;;
2726 2828 esac esac
2727 2829 # Pass precious variables to config.status. # Pass precious variables to config.status.
2728 2830 if test "$ac_new_set" = set; then if test "$ac_new_set" = set; then
2729 2831 case $ac_new_val in case $ac_new_val in
2730 *\'*) ac_arg=$ac_var=`printf "%s\n" "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
2832 *\'*) ac_arg=$ac_var=`printf '%s\n' "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
2731 2833 *) ac_arg=$ac_var=$ac_new_val ;; *) ac_arg=$ac_var=$ac_new_val ;;
2732 2834 esac esac
2733 2835 case " $ac_configure_args " in case " $ac_configure_args " in
 
... ... printf "%s\n" "$as_me: current value: '$ac_new_val'" >&2;}
2737 2839 fi fi
2738 2840 done done
2739 2841 if $ac_cache_corrupted; then if $ac_cache_corrupted; then
2740 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
2741 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
2742 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
2743 printf "%s\n" "$as_me: error: changes in the environment can compromise the build" >&2;}
2842 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
2843 printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
2844 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
2845 printf '%s\n' "$as_me: error: changes in the environment can compromise the build" >&2;}
2744 2846 as_fn_error $? "run '${MAKE-make} distclean' and/or 'rm $cache_file' as_fn_error $? "run '${MAKE-make} distclean' and/or 'rm $cache_file'
2745 2847 and start over" "$LINENO" 5 and start over" "$LINENO" 5
2746 2848 fi fi
 
... ... fi
2748 2850 ## Main body of script. ## ## Main body of script. ##
2749 2851 ## -------------------- ## ## -------------------- ##
2750 2852
2853
2854 # Determine whether it's possible to make 'echo' print without a newline.
2855 # These variables are no longer used directly by Autoconf, but are AC_SUBSTed
2856 # for compatibility with existing Makefiles.
2857 ECHO_C= ECHO_N= ECHO_T=
2858 case `echo -n x` in #(((((
2859 -n*)
2860 case `echo 'xy\c'` in
2861 *c*) ECHO_T=' ';; # ECHO_T is single tab character.
2862 xy) ECHO_C='\c';;
2863 *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
2864 ECHO_T=' ';;
2865 esac;;
2866 *)
2867 ECHO_N='-n';;
2868 esac
2869
2751 2870 ac_ext=c ac_ext=c
2752 2871 ac_cpp='$CPP $CPPFLAGS' ac_cpp='$CPP $CPPFLAGS'
2753 2872 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
... ... am__api_version='1.18'
2776 2895 # OS/2's system install, which has a completely different semantic # OS/2's system install, which has a completely different semantic
2777 2896 # ./install, which can be erroneously created by make from ./install.sh. # ./install, which can be erroneously created by make from ./install.sh.
2778 2897 # Reject install programs that cannot install multiple files. # Reject install programs that cannot install multiple files.
2779 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
2898 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
2780 2899 printf %s "checking for a BSD-compatible install... " >&6; } printf %s "checking for a BSD-compatible install... " >&6; }
2781 2900 if test -z "$INSTALL"; then if test -z "$INSTALL"; then
2782 2901 if test ${ac_cv_path_install+y} if test ${ac_cv_path_install+y}
 
... ... case $as_dir in #((
2799 2918 ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
2800 2919 /usr/ucb/* ) ;; /usr/ucb/* ) ;;
2801 2920 *) *)
2802 # OSF1 and SCO ODT 3.0 have their own names for install.
2803 # Don't use installbsd from OSF since it installs stuff as root
2921 # OSF/1 and SCO ODT 3.0 have their own names for install.
2922 # Don't use installbsd from OSF/1 since it installs stuff as root
2804 2923 # by default. # by default.
2805 2924 for ac_prog in ginstall scoinst install; do for ac_prog in ginstall scoinst install; do
2806 2925 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
 
... ... fi
2850 2969 INSTALL=$ac_install_sh INSTALL=$ac_install_sh
2851 2970 fi fi
2852 2971 fi fi
2853 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
2854 printf "%s\n" "$INSTALL" >&6; }
2972 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
2973 printf '%s\n' "$INSTALL" >&6; }
2855 2974
2856 2975 # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
2857 2976 # It thinks the first close brace ends the variable substitution. # It thinks the first close brace ends the variable substitution.
 
... ... test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
2861 2980
2862 2981 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
2863 2982
2864 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether sleep supports fractional seconds" >&5
2983 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether sleep supports fractional seconds" >&5
2865 2984 printf %s "checking whether sleep supports fractional seconds... " >&6; } printf %s "checking whether sleep supports fractional seconds... " >&6; }
2866 2985 if test ${am_cv_sleep_fractional_seconds+y} if test ${am_cv_sleep_fractional_seconds+y}
2867 2986 then : then :
 
... ... fi
2877 2996 ;; ;;
2878 2997 esac esac
2879 2998 fi fi
2880 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_sleep_fractional_seconds" >&5
2881 printf "%s\n" "$am_cv_sleep_fractional_seconds" >&6; }
2999 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $am_cv_sleep_fractional_seconds" >&5
3000 printf '%s\n' "$am_cv_sleep_fractional_seconds" >&6; }
2882 3001
2883 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking filesystem timestamp resolution" >&5
3002 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking filesystem timestamp resolution" >&5
2884 3003 printf %s "checking filesystem timestamp resolution... " >&6; } printf %s "checking filesystem timestamp resolution... " >&6; }
2885 3004 if test ${am_cv_filesystem_timestamp_resolution+y} if test ${am_cv_filesystem_timestamp_resolution+y}
2886 3005 then : then :
 
... ... if (
2932 3051 # if, for instance, CONFIG_SHELL is bash and it inherits a # if, for instance, CONFIG_SHELL is bash and it inherits a
2933 3052 # broken ls alias from the environment. This has actually # broken ls alias from the environment. This has actually
2934 3053 # happened. Such a system could not be considered "sane". # happened. Such a system could not be considered "sane".
2935 printf "%s\n" ""Bad output from ls -t: \"`ls -t conftest.ts[12]`\""" >&5
2936 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
2937 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
3054 printf '%s\n' ""Bad output from ls -t: \"`ls -t conftest.ts[12]`\""" >&5
3055 { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
3056 printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
2938 3057 as_fn_error $? "ls -t produces unexpected output. as_fn_error $? "ls -t produces unexpected output.
2939 3058 Make sure there is not a broken ls alias in your environment. Make sure there is not a broken ls alias in your environment.
2940 3059 See 'config.log' for more details" "$LINENO" 5; } See 'config.log' for more details" "$LINENO" 5; }
 
... ... rm -f conftest.ts?
3015 3134 ;; ;;
3016 3135 esac esac
3017 3136 fi fi
3018 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_filesystem_timestamp_resolution" >&5
3019 printf "%s\n" "$am_cv_filesystem_timestamp_resolution" >&6; }
3137 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $am_cv_filesystem_timestamp_resolution" >&5
3138 printf '%s\n' "$am_cv_filesystem_timestamp_resolution" >&6; }
3020 3139
3021 3140 # This check should not be cached, as it may vary across builds of # This check should not be cached, as it may vary across builds of
3022 3141 # different projects. # different projects.
3023 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
3142 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
3024 3143 printf %s "checking whether build environment is sane... " >&6; } printf %s "checking whether build environment is sane... " >&6; }
3025 3144 # Reject unsafe characters in $srcdir or the absolute working directory # Reject unsafe characters in $srcdir or the absolute working directory
3026 3145 # name. Accept space and tab only in the latter. # name. Accept space and tab only in the latter.
 
... ... am_lf='
3028 3147 ' '
3029 3148 case `pwd` in case `pwd` in
3030 3149 *[\\\"\#\$\&\'\`$am_lf]*) *[\\\"\#\$\&\'\`$am_lf]*)
3031 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
3032 printf "%s\n" "no" >&6; }
3150 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
3151 printf '%s\n' "no" >&6; }
3033 3152 as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
3034 3153 esac esac
3035 3154 case $srcdir in case $srcdir in
3036 3155 *[\\\"\#\$\&\'\`$am_lf\ \ ]*) *[\\\"\#\$\&\'\`$am_lf\ \ ]*)
3037 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
3038 printf "%s\n" "no" >&6; }
3156 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
3157 printf '%s\n' "no" >&6; }
3039 3158 as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;;
3040 3159 esac esac
3041 3160
 
... ... for am_try in 1 2; do
3065 3184 am_has_slept=yes am_has_slept=yes
3066 3185 done done
3067 3186
3068 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_build_env_is_sane" >&5
3069 printf "%s\n" "$am_build_env_is_sane" >&6; }
3187 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $am_build_env_is_sane" >&5
3188 printf '%s\n' "$am_build_env_is_sane" >&6; }
3070 3189 if test "$am_build_env_is_sane" = no; then if test "$am_build_env_is_sane" = no; then
3071 3190 as_fn_error $? "newly created file is older than distributed files! as_fn_error $? "newly created file is older than distributed files!
3072 3191 Check your system clock" "$LINENO" 5 Check your system clock" "$LINENO" 5
 
... ... test "$program_suffix" != NONE &&
3095 3214 # Double any \ or $. # Double any \ or $.
3096 3215 # By default was 's,x,x', remove it if useless. # By default was 's,x,x', remove it if useless.
3097 3216 ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
3098 program_transform_name=`printf "%s\n" "$program_transform_name" | sed "$ac_script"`
3217 program_transform_name=`printf '%s\n' "$program_transform_name" | sed "$ac_script"`
3099 3218
3100 3219
3101 3220 # Expand $ac_aux_dir to an absolute path. # Expand $ac_aux_dir to an absolute path.
 
... ... if eval "$MISSING --is-lightweight"; then
3110 3229 am_missing_run="$MISSING " am_missing_run="$MISSING "
3111 3230 else else
3112 3231 am_missing_run= am_missing_run=
3113 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5
3114 printf "%s\n" "$as_me: WARNING: 'missing' script is too old or missing" >&2;}
3232 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5
3233 printf '%s\n' "$as_me: WARNING: 'missing' script is too old or missing" >&2;}
3115 3234 fi fi
3116 3235
3117 3236 if test x"${install_sh+set}" != xset; then if test x"${install_sh+set}" != xset; then
 
... ... if test "$cross_compiling" != no; then
3131 3250 if test -n "$ac_tool_prefix"; then if test -n "$ac_tool_prefix"; then
3132 3251 # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
3133 3252 set dummy ${ac_tool_prefix}strip; ac_word=$2 set dummy ${ac_tool_prefix}strip; ac_word=$2
3134 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3253 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3135 3254 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
3136 3255 if test ${ac_cv_prog_STRIP+y} if test ${ac_cv_prog_STRIP+y}
3137 3256 then : then :
 
... ... do
3152 3271 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
3153 3272 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
3154 3273 ac_cv_prog_STRIP="${ac_tool_prefix}strip" ac_cv_prog_STRIP="${ac_tool_prefix}strip"
3155 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
3274 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
3156 3275 break 2 break 2
3157 3276 fi fi
3158 3277 done done
 
... ... esac
3164 3283 fi fi
3165 3284 STRIP=$ac_cv_prog_STRIP STRIP=$ac_cv_prog_STRIP
3166 3285 if test -n "$STRIP"; then if test -n "$STRIP"; then
3167 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
3168 printf "%s\n" "$STRIP" >&6; }
3286 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
3287 printf '%s\n' "$STRIP" >&6; }
3169 3288 else else
3170 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
3171 printf "%s\n" "no" >&6; }
3289 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
3290 printf '%s\n' "no" >&6; }
3172 3291 fi fi
3173 3292
3174 3293
 
... ... if test -z "$ac_cv_prog_STRIP"; then
3177 3296 ac_ct_STRIP=$STRIP ac_ct_STRIP=$STRIP
3178 3297 # Extract the first word of "strip", so it can be a program name with args. # Extract the first word of "strip", so it can be a program name with args.
3179 3298 set dummy strip; ac_word=$2 set dummy strip; ac_word=$2
3180 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3299 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3181 3300 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
3182 3301 if test ${ac_cv_prog_ac_ct_STRIP+y} if test ${ac_cv_prog_ac_ct_STRIP+y}
3183 3302 then : then :
 
... ... do
3198 3317 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
3199 3318 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
3200 3319 ac_cv_prog_ac_ct_STRIP="strip" ac_cv_prog_ac_ct_STRIP="strip"
3201 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
3320 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
3202 3321 break 2 break 2
3203 3322 fi fi
3204 3323 done done
 
... ... esac
3210 3329 fi fi
3211 3330 ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
3212 3331 if test -n "$ac_ct_STRIP"; then if test -n "$ac_ct_STRIP"; then
3213 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
3214 printf "%s\n" "$ac_ct_STRIP" >&6; }
3332 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
3333 printf '%s\n' "$ac_ct_STRIP" >&6; }
3215 3334 else else
3216 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
3217 printf "%s\n" "no" >&6; }
3335 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
3336 printf '%s\n' "no" >&6; }
3218 3337 fi fi
3219 3338
3220 3339 if test "x$ac_ct_STRIP" = x; then if test "x$ac_ct_STRIP" = x; then
 
... ... fi
3222 3341 else else
3223 3342 case $cross_compiling:$ac_tool_warned in case $cross_compiling:$ac_tool_warned in
3224 3343 yes:) yes:)
3225 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
3226 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
3344 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
3345 printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
3227 3346 ac_tool_warned=yes ;; ac_tool_warned=yes ;;
3228 3347 esac esac
3229 3348 STRIP=$ac_ct_STRIP STRIP=$ac_ct_STRIP
 
... ... fi
3236 3355 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
3237 3356
3238 3357
3239 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a race-free mkdir -p" >&5
3358 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for a race-free mkdir -p" >&5
3240 3359 printf %s "checking for a race-free mkdir -p... " >&6; } printf %s "checking for a race-free mkdir -p... " >&6; }
3241 3360 if test -z "$MKDIR_P"; then if test -z "$MKDIR_P"; then
3242 3361 if test ${ac_cv_path_mkdir+y} if test ${ac_cv_path_mkdir+y}
 
... ... fi
3279 3398 MKDIR_P='mkdir -p' MKDIR_P='mkdir -p'
3280 3399 fi fi
3281 3400 fi fi
3282 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
3283 printf "%s\n" "$MKDIR_P" >&6; }
3401 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
3402 printf '%s\n' "$MKDIR_P" >&6; }
3284 3403
3285 for ac_prog in gawk mawk nawk awk
3404 for ac_prog in gawk mawk nawk awk 'busybox awk'
3286 3405 do do
3287 3406 # Extract the first word of "$ac_prog", so it can be a program name with args. # Extract the first word of "$ac_prog", so it can be a program name with args.
3288 3407 set dummy $ac_prog; ac_word=$2 set dummy $ac_prog; ac_word=$2
3289 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3408 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3290 3409 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
3291 3410 if test ${ac_cv_prog_AWK+y} if test ${ac_cv_prog_AWK+y}
3292 3411 then : then :
 
... ... do
3307 3426 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
3308 3427 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
3309 3428 ac_cv_prog_AWK="$ac_prog" ac_cv_prog_AWK="$ac_prog"
3310 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
3429 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
3311 3430 break 2 break 2
3312 3431 fi fi
3313 3432 done done
 
... ... esac
3319 3438 fi fi
3320 3439 AWK=$ac_cv_prog_AWK AWK=$ac_cv_prog_AWK
3321 3440 if test -n "$AWK"; then if test -n "$AWK"; then
3322 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
3323 printf "%s\n" "$AWK" >&6; }
3441 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
3442 printf '%s\n' "$AWK" >&6; }
3324 3443 else else
3325 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
3326 printf "%s\n" "no" >&6; }
3444 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
3445 printf '%s\n' "no" >&6; }
3327 3446 fi fi
3328 3447
3329 3448
3330 3449 test -n "$AWK" && break test -n "$AWK" && break
3331 3450 done done
3332 3451
3333 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
3452 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
3334 3453 printf %s "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } printf %s "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
3335 3454 set x ${MAKE-make} set x ${MAKE-make}
3336 ac_make=`printf "%s\n" "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
3455 ac_make=`printf '%s\n' "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
3337 3456 if eval test \${ac_cv_prog_make_${ac_make}_set+y} if eval test \${ac_cv_prog_make_${ac_make}_set+y}
3338 3457 then : then :
3339 3458 printf %s "(cached) " >&6 printf %s "(cached) " >&6
 
... ... else case e in #(
3341 3460 e) cat >conftest.make <<\_ACEOF e) cat >conftest.make <<\_ACEOF
3342 3461 SHELL = /bin/sh SHELL = /bin/sh
3343 3462 all: all:
3344 @echo '@@@%%%=$(MAKE)=@@@%%%'
3463 @printf '%s\n' '@@@%%%=$(MAKE)=@@@%%%'
3345 3464 _ACEOF _ACEOF
3346 3465 # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. # GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
3347 3466 case `${MAKE-make} -f conftest.make 2>/dev/null` in case `${MAKE-make} -f conftest.make 2>/dev/null` in
 
... ... rm -f conftest.make ;;
3354 3473 esac esac
3355 3474 fi fi
3356 3475 if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
3357 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
3358 printf "%s\n" "yes" >&6; }
3476 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
3477 printf '%s\n' "yes" >&6; }
3359 3478 SET_MAKE= SET_MAKE=
3360 3479 else else
3361 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
3362 printf "%s\n" "no" >&6; }
3480 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
3481 printf '%s\n' "no" >&6; }
3363 3482 SET_MAKE="MAKE=${MAKE-make}" SET_MAKE="MAKE=${MAKE-make}"
3364 3483 fi fi
3365 3484
 
... ... then :
3380 3499 fi fi
3381 3500
3382 3501 am_make=${MAKE-make} am_make=${MAKE-make}
3383 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
3502 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
3384 3503 printf %s "checking whether $am_make supports nested variables... " >&6; } printf %s "checking whether $am_make supports nested variables... " >&6; }
3385 3504 if test ${am_cv_make_support_nested_variables+y} if test ${am_cv_make_support_nested_variables+y}
3386 3505 then : then :
3387 3506 printf %s "(cached) " >&6 printf %s "(cached) " >&6
3388 3507 else case e in #( else case e in #(
3389 e) if printf "%s\n" 'TRUE=$(BAR$(V))
3508 e) if printf '%s\n' 'TRUE=$(BAR$(V))
3390 3509 BAR0=false BAR0=false
3391 3510 BAR1=true BAR1=true
3392 3511 V=1 V=1
 
... ... else
3399 3518 fi ;; fi ;;
3400 3519 esac esac
3401 3520 fi fi
3402 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
3403 printf "%s\n" "$am_cv_make_support_nested_variables" >&6; }
3521 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
3522 printf '%s\n' "$am_cv_make_support_nested_variables" >&6; }
3404 3523 AM_BACKSLASH='\' AM_BACKSLASH='\'
3405 3524
3406 3525 am__rm_f_notfound= am__rm_f_notfound=
 
... ... esac
3413 3532 fi fi
3414 3533
3415 3534
3416 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking xargs -n works" >&5
3535 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking xargs -n works" >&5
3417 3536 printf %s "checking xargs -n works... " >&6; } printf %s "checking xargs -n works... " >&6; }
3418 3537 if test ${am_cv_xargs_n_works+y} if test ${am_cv_xargs_n_works+y}
3419 3538 then : then :
 
... ... esac
3429 3548 fi ;; fi ;;
3430 3549 esac esac
3431 3550 fi fi
3432 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_xargs_n_works" >&5
3433 printf "%s\n" "$am_cv_xargs_n_works" >&6; }
3551 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $am_cv_xargs_n_works" >&5
3552 printf '%s\n' "$am_cv_xargs_n_works" >&6; }
3434 3553 if test "$am_cv_xargs_n_works" = yes if test "$am_cv_xargs_n_works" = yes
3435 3554 then : then :
3436 3555 am__xargs_n='xargs -n' am__xargs_n='xargs -n'
 
... ... fi
3465 3584 VERSION='0.15' VERSION='0.15'
3466 3585
3467 3586
3468 printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
3587 printf '%s\n' "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
3469 3588
3470 3589
3471 printf "%s\n" "#define VERSION \"$VERSION\"" >>confdefs.h
3590 printf '%s\n' "#define VERSION \"$VERSION\"" >>confdefs.h
3472 3591
3473 3592 # Some tools Automake needs. # Some tools Automake needs.
3474 3593
 
... ... _am_tools='gnutar plaintar pax cpio none'
3514 3633 # (that is, avoid stderr redirection). # (that is, avoid stderr redirection).
3515 3634 am_uid=`id -u || echo unknown` am_uid=`id -u || echo unknown`
3516 3635 am_gid=`id -g || echo unknown` am_gid=`id -g || echo unknown`
3517 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether UID '$am_uid' is supported by ustar format" >&5
3636 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether UID '$am_uid' is supported by ustar format" >&5
3518 3637 printf %s "checking whether UID '$am_uid' is supported by ustar format... " >&6; } printf %s "checking whether UID '$am_uid' is supported by ustar format... " >&6; }
3519 3638 if test x$am_uid = xunknown; then if test x$am_uid = xunknown; then
3520 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: ancient id detected; assuming current UID is ok, but dist-ustar might not work" >&5
3521 printf "%s\n" "$as_me: WARNING: ancient id detected; assuming current UID is ok, but dist-ustar might not work" >&2;}
3639 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: ancient id detected; assuming current UID is ok, but dist-ustar might not work" >&5
3640 printf '%s\n' "$as_me: WARNING: ancient id detected; assuming current UID is ok, but dist-ustar might not work" >&2;}
3522 3641 elif test $am_uid -le $am_max_uid; then elif test $am_uid -le $am_max_uid; then
3523 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
3524 printf "%s\n" "yes" >&6; }
3642 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
3643 printf '%s\n' "yes" >&6; }
3525 3644 else else
3526 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
3527 printf "%s\n" "no" >&6; }
3645 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
3646 printf '%s\n' "no" >&6; }
3528 3647 _am_tools=none _am_tools=none
3529 3648 fi fi
3530 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether GID '$am_gid' is supported by ustar format" >&5
3649 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether GID '$am_gid' is supported by ustar format" >&5
3531 3650 printf %s "checking whether GID '$am_gid' is supported by ustar format... " >&6; } printf %s "checking whether GID '$am_gid' is supported by ustar format... " >&6; }
3532 3651 if test x$gm_gid = xunknown; then if test x$gm_gid = xunknown; then
3533 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: ancient id detected; assuming current GID is ok, but dist-ustar might not work" >&5
3534 printf "%s\n" "$as_me: WARNING: ancient id detected; assuming current GID is ok, but dist-ustar might not work" >&2;}
3652 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: ancient id detected; assuming current GID is ok, but dist-ustar might not work" >&5
3653 printf '%s\n' "$as_me: WARNING: ancient id detected; assuming current GID is ok, but dist-ustar might not work" >&2;}
3535 3654 elif test $am_gid -le $am_max_gid; then elif test $am_gid -le $am_max_gid; then
3536 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
3537 printf "%s\n" "yes" >&6; }
3655 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
3656 printf '%s\n' "yes" >&6; }
3538 3657 else else
3539 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
3540 printf "%s\n" "no" >&6; }
3658 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
3659 printf '%s\n' "no" >&6; }
3541 3660 _am_tools=none _am_tools=none
3542 3661 fi fi
3543 3662
3544 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to create a ustar tar archive" >&5
3663 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking how to create a ustar tar archive" >&5
3545 3664 printf %s "checking how to create a ustar tar archive... " >&6; } printf %s "checking how to create a ustar tar archive... " >&6; }
3546 3665
3547 3666 # Go ahead even if we have the value already cached. We do so because we # Go ahead even if we have the value already cached. We do so because we
 
... ... else case e in #(
3625 3744 esac esac
3626 3745 fi fi
3627 3746
3628 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_tar_ustar" >&5
3629 printf "%s\n" "$am_cv_prog_tar_ustar" >&6; }
3747 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_tar_ustar" >&5
3748 printf '%s\n' "$am_cv_prog_tar_ustar" >&6; }
3630 3749
3631 3750
3632 3751
 
... ... ac_config_headers="$ac_config_headers build-aux/config.h"
3655 3774
3656 3775
3657 3776
3658 printf "%s\n" "#define VERSION_NUM 1500" >>confdefs.h
3777 printf '%s\n' "#define VERSION_NUM 1500" >>confdefs.h
3778
3779
3659 3780
3781 printf '%s\n' "#define PACKAGE_SYSCONF_DIR /**/" >>confdefs.h
3660 3782
3661 3783
3662 printf "%s\n" "#define PACKAGE_SYSCONF_DIR /**/" >>confdefs.h
3784 printf '%s\n' "#define PACKAGE_DATA_DIR /**/" >>confdefs.h
3663 3785
3664 3786
3665 printf "%s\n" "#define PACKAGE_DATA_DIR /**/" >>confdefs.h
3787 printf '%s\n' "#define PACKAGE_SOURCE_DIR /**/" >>confdefs.h
3788
3666 3789
3667 3790
3668 printf "%s\n" "#define PACKAGE_SOURCE_DIR /**/" >>confdefs.h
3669 3791
3670 3792
3671 3793
 
... ... DEPDIR="${am__leading_dot}deps"
3681 3803
3682 3804 ac_config_commands="$ac_config_commands depfiles" ac_config_commands="$ac_config_commands depfiles"
3683 3805
3684 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5
3806 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5
3685 3807 printf %s "checking whether ${MAKE-make} supports the include directive... " >&6; } printf %s "checking whether ${MAKE-make} supports the include directive... " >&6; }
3686 3808 cat > confinc.mk << 'END' cat > confinc.mk << 'END'
3687 3809 am__doit: am__doit:
 
... ... esac
3718 3840 fi fi
3719 3841 done done
3720 3842 rm -f confinc.* confmf.* rm -f confinc.* confmf.*
3721 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5
3722 printf "%s\n" "${_am_result}" >&6; }
3843 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5
3844 printf '%s\n' "${_am_result}" >&6; }
3723 3845
3724 3846 # Check whether --enable-dependency-tracking was given. # Check whether --enable-dependency-tracking was given.
3725 3847 if test ${enable_dependency_tracking+y} if test ${enable_dependency_tracking+y}
 
... ... ac_compiler_gnu=$ac_cv_c_compiler_gnu
3749 3871 if test -n "$ac_tool_prefix"; then if test -n "$ac_tool_prefix"; then
3750 3872 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
3751 3873 set dummy ${ac_tool_prefix}gcc; ac_word=$2 set dummy ${ac_tool_prefix}gcc; ac_word=$2
3752 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3874 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3753 3875 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
3754 3876 if test ${ac_cv_prog_CC+y} if test ${ac_cv_prog_CC+y}
3755 3877 then : then :
 
... ... do
3770 3892 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
3771 3893 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
3772 3894 ac_cv_prog_CC="${ac_tool_prefix}gcc" ac_cv_prog_CC="${ac_tool_prefix}gcc"
3773 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
3895 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
3774 3896 break 2 break 2
3775 3897 fi fi
3776 3898 done done
 
... ... esac
3782 3904 fi fi
3783 3905 CC=$ac_cv_prog_CC CC=$ac_cv_prog_CC
3784 3906 if test -n "$CC"; then if test -n "$CC"; then
3785 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
3786 printf "%s\n" "$CC" >&6; }
3907 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
3908 printf '%s\n' "$CC" >&6; }
3787 3909 else else
3788 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
3789 printf "%s\n" "no" >&6; }
3910 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
3911 printf '%s\n' "no" >&6; }
3790 3912 fi fi
3791 3913
3792 3914
 
... ... if test -z "$ac_cv_prog_CC"; then
3795 3917 ac_ct_CC=$CC ac_ct_CC=$CC
3796 3918 # Extract the first word of "gcc", so it can be a program name with args. # Extract the first word of "gcc", so it can be a program name with args.
3797 3919 set dummy gcc; ac_word=$2 set dummy gcc; ac_word=$2
3798 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3920 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3799 3921 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
3800 3922 if test ${ac_cv_prog_ac_ct_CC+y} if test ${ac_cv_prog_ac_ct_CC+y}
3801 3923 then : then :
 
... ... do
3816 3938 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
3817 3939 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
3818 3940 ac_cv_prog_ac_ct_CC="gcc" ac_cv_prog_ac_ct_CC="gcc"
3819 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
3941 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
3820 3942 break 2 break 2
3821 3943 fi fi
3822 3944 done done
 
... ... esac
3828 3950 fi fi
3829 3951 ac_ct_CC=$ac_cv_prog_ac_ct_CC ac_ct_CC=$ac_cv_prog_ac_ct_CC
3830 3952 if test -n "$ac_ct_CC"; then if test -n "$ac_ct_CC"; then
3831 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
3832 printf "%s\n" "$ac_ct_CC" >&6; }
3953 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
3954 printf '%s\n' "$ac_ct_CC" >&6; }
3833 3955 else else
3834 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
3835 printf "%s\n" "no" >&6; }
3956 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
3957 printf '%s\n' "no" >&6; }
3836 3958 fi fi
3837 3959
3838 3960 if test "x$ac_ct_CC" = x; then if test "x$ac_ct_CC" = x; then
 
... ... fi
3840 3962 else else
3841 3963 case $cross_compiling:$ac_tool_warned in case $cross_compiling:$ac_tool_warned in
3842 3964 yes:) yes:)
3843 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
3844 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
3965 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
3966 printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
3845 3967 ac_tool_warned=yes ;; ac_tool_warned=yes ;;
3846 3968 esac esac
3847 3969 CC=$ac_ct_CC CC=$ac_ct_CC
 
... ... if test -z "$CC"; then
3854 3976 if test -n "$ac_tool_prefix"; then if test -n "$ac_tool_prefix"; then
3855 3977 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
3856 3978 set dummy ${ac_tool_prefix}cc; ac_word=$2 set dummy ${ac_tool_prefix}cc; ac_word=$2
3857 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3979 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3858 3980 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
3859 3981 if test ${ac_cv_prog_CC+y} if test ${ac_cv_prog_CC+y}
3860 3982 then : then :
 
... ... do
3875 3997 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
3876 3998 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
3877 3999 ac_cv_prog_CC="${ac_tool_prefix}cc" ac_cv_prog_CC="${ac_tool_prefix}cc"
3878 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
4000 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
3879 4001 break 2 break 2
3880 4002 fi fi
3881 4003 done done
 
... ... esac
3887 4009 fi fi
3888 4010 CC=$ac_cv_prog_CC CC=$ac_cv_prog_CC
3889 4011 if test -n "$CC"; then if test -n "$CC"; then
3890 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
3891 printf "%s\n" "$CC" >&6; }
4012 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
4013 printf '%s\n' "$CC" >&6; }
3892 4014 else else
3893 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
3894 printf "%s\n" "no" >&6; }
4015 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
4016 printf '%s\n' "no" >&6; }
3895 4017 fi fi
3896 4018
3897 4019
 
... ... fi
3900 4022 if test -z "$CC"; then if test -z "$CC"; then
3901 4023 # Extract the first word of "cc", so it can be a program name with args. # Extract the first word of "cc", so it can be a program name with args.
3902 4024 set dummy cc; ac_word=$2 set dummy cc; ac_word=$2
3903 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4025 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3904 4026 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
3905 4027 if test ${ac_cv_prog_CC+y} if test ${ac_cv_prog_CC+y}
3906 4028 then : then :
 
... ... do
3926 4048 continue continue
3927 4049 fi fi
3928 4050 ac_cv_prog_CC="cc" ac_cv_prog_CC="cc"
3929 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
4051 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
3930 4052 break 2 break 2
3931 4053 fi fi
3932 4054 done done
 
... ... esac
3950 4072 fi fi
3951 4073 CC=$ac_cv_prog_CC CC=$ac_cv_prog_CC
3952 4074 if test -n "$CC"; then if test -n "$CC"; then
3953 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
3954 printf "%s\n" "$CC" >&6; }
4075 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
4076 printf '%s\n' "$CC" >&6; }
3955 4077 else else
3956 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
3957 printf "%s\n" "no" >&6; }
4078 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
4079 printf '%s\n' "no" >&6; }
3958 4080 fi fi
3959 4081
3960 4082
 
... ... if test -z "$CC"; then
3965 4087 do do
3966 4088 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
3967 4089 set dummy $ac_tool_prefix$ac_prog; ac_word=$2 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
3968 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4090 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3969 4091 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
3970 4092 if test ${ac_cv_prog_CC+y} if test ${ac_cv_prog_CC+y}
3971 4093 then : then :
 
... ... do
3986 4108 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
3987 4109 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
3988 4110 ac_cv_prog_CC="$ac_tool_prefix$ac_prog" ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
3989 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
4111 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
3990 4112 break 2 break 2
3991 4113 fi fi
3992 4114 done done
 
... ... esac
3998 4120 fi fi
3999 4121 CC=$ac_cv_prog_CC CC=$ac_cv_prog_CC
4000 4122 if test -n "$CC"; then if test -n "$CC"; then
4001 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
4002 printf "%s\n" "$CC" >&6; }
4123 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
4124 printf '%s\n' "$CC" >&6; }
4003 4125 else else
4004 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
4005 printf "%s\n" "no" >&6; }
4126 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
4127 printf '%s\n' "no" >&6; }
4006 4128 fi fi
4007 4129
4008 4130
 
... ... if test -z "$CC"; then
4015 4137 do do
4016 4138 # Extract the first word of "$ac_prog", so it can be a program name with args. # Extract the first word of "$ac_prog", so it can be a program name with args.
4017 4139 set dummy $ac_prog; ac_word=$2 set dummy $ac_prog; ac_word=$2
4018 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4140 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4019 4141 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
4020 4142 if test ${ac_cv_prog_ac_ct_CC+y} if test ${ac_cv_prog_ac_ct_CC+y}
4021 4143 then : then :
 
... ... do
4036 4158 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
4037 4159 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
4038 4160 ac_cv_prog_ac_ct_CC="$ac_prog" ac_cv_prog_ac_ct_CC="$ac_prog"
4039 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
4161 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
4040 4162 break 2 break 2
4041 4163 fi fi
4042 4164 done done
 
... ... esac
4048 4170 fi fi
4049 4171 ac_ct_CC=$ac_cv_prog_ac_ct_CC ac_ct_CC=$ac_cv_prog_ac_ct_CC
4050 4172 if test -n "$ac_ct_CC"; then if test -n "$ac_ct_CC"; then
4051 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
4052 printf "%s\n" "$ac_ct_CC" >&6; }
4173 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
4174 printf '%s\n' "$ac_ct_CC" >&6; }
4053 4175 else else
4054 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
4055 printf "%s\n" "no" >&6; }
4176 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
4177 printf '%s\n' "no" >&6; }
4056 4178 fi fi
4057 4179
4058 4180
 
... ... done
4064 4186 else else
4065 4187 case $cross_compiling:$ac_tool_warned in case $cross_compiling:$ac_tool_warned in
4066 4188 yes:) yes:)
4067 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
4068 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
4189 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
4190 printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
4069 4191 ac_tool_warned=yes ;; ac_tool_warned=yes ;;
4070 4192 esac esac
4071 4193 CC=$ac_ct_CC CC=$ac_ct_CC
 
... ... if test -z "$CC"; then
4077 4199 if test -n "$ac_tool_prefix"; then if test -n "$ac_tool_prefix"; then
4078 4200 # Extract the first word of "${ac_tool_prefix}clang", so it can be a program name with args. # Extract the first word of "${ac_tool_prefix}clang", so it can be a program name with args.
4079 4201 set dummy ${ac_tool_prefix}clang; ac_word=$2 set dummy ${ac_tool_prefix}clang; ac_word=$2
4080 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4202 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4081 4203 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
4082 4204 if test ${ac_cv_prog_CC+y} if test ${ac_cv_prog_CC+y}
4083 4205 then : then :
 
... ... do
4098 4220 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
4099 4221 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
4100 4222 ac_cv_prog_CC="${ac_tool_prefix}clang" ac_cv_prog_CC="${ac_tool_prefix}clang"
4101 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
4223 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
4102 4224 break 2 break 2
4103 4225 fi fi
4104 4226 done done
 
... ... esac
4110 4232 fi fi
4111 4233 CC=$ac_cv_prog_CC CC=$ac_cv_prog_CC
4112 4234 if test -n "$CC"; then if test -n "$CC"; then
4113 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
4114 printf "%s\n" "$CC" >&6; }
4235 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
4236 printf '%s\n' "$CC" >&6; }
4115 4237 else else
4116 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
4117 printf "%s\n" "no" >&6; }
4238 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
4239 printf '%s\n' "no" >&6; }
4118 4240 fi fi
4119 4241
4120 4242
 
... ... if test -z "$ac_cv_prog_CC"; then
4123 4245 ac_ct_CC=$CC ac_ct_CC=$CC
4124 4246 # Extract the first word of "clang", so it can be a program name with args. # Extract the first word of "clang", so it can be a program name with args.
4125 4247 set dummy clang; ac_word=$2 set dummy clang; ac_word=$2
4126 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4248 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4127 4249 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
4128 4250 if test ${ac_cv_prog_ac_ct_CC+y} if test ${ac_cv_prog_ac_ct_CC+y}
4129 4251 then : then :
 
... ... do
4144 4266 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
4145 4267 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
4146 4268 ac_cv_prog_ac_ct_CC="clang" ac_cv_prog_ac_ct_CC="clang"
4147 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
4269 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
4148 4270 break 2 break 2
4149 4271 fi fi
4150 4272 done done
 
... ... esac
4156 4278 fi fi
4157 4279 ac_ct_CC=$ac_cv_prog_ac_ct_CC ac_ct_CC=$ac_cv_prog_ac_ct_CC
4158 4280 if test -n "$ac_ct_CC"; then if test -n "$ac_ct_CC"; then
4159 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
4160 printf "%s\n" "$ac_ct_CC" >&6; }
4281 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
4282 printf '%s\n' "$ac_ct_CC" >&6; }
4161 4283 else else
4162 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
4163 printf "%s\n" "no" >&6; }
4284 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
4285 printf '%s\n' "no" >&6; }
4164 4286 fi fi
4165 4287
4166 4288 if test "x$ac_ct_CC" = x; then if test "x$ac_ct_CC" = x; then
 
... ... fi
4168 4290 else else
4169 4291 case $cross_compiling:$ac_tool_warned in case $cross_compiling:$ac_tool_warned in
4170 4292 yes:) yes:)
4171 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
4172 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
4293 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
4294 printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
4173 4295 ac_tool_warned=yes ;; ac_tool_warned=yes ;;
4174 4296 esac esac
4175 4297 CC=$ac_ct_CC CC=$ac_ct_CC
 
... ... fi
4181 4303 fi fi
4182 4304
4183 4305
4184 test -z "$CC" && { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
4185 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
4306 test -z "$CC" && { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
4307 printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
4186 4308 as_fn_error $? "no acceptable C compiler found in \$PATH as_fn_error $? "no acceptable C compiler found in \$PATH
4187 4309 See 'config.log' for more details" "$LINENO" 5; } See 'config.log' for more details" "$LINENO" 5; }
4188 4310
4189 4311 # Provide some information about the compiler. # Provide some information about the compiler.
4190 printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
4312 printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
4191 4313 set X $ac_compile set X $ac_compile
4192 4314 ac_compiler=$2 ac_compiler=$2
4193 4315 for ac_option in --version -v -V -qversion -version; do for ac_option in --version -v -V -qversion -version; do
 
... ... case "(($ac_try" in
4197 4319 *) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;;
4198 4320 esac esac
4199 4321 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
4200 printf "%s\n" "$ac_try_echo"; } >&5
4322 printf '%s\n' "$ac_try_echo"; } >&5
4201 4323 (eval "$ac_compiler $ac_option >&5") 2>conftest.err (eval "$ac_compiler $ac_option >&5") 2>conftest.err
4202 4324 ac_status=$? ac_status=$?
4203 4325 if test -s conftest.err; then if test -s conftest.err; then
 
... ... printf "%s\n" "$ac_try_echo"; } >&5
4207 4329 cat conftest.er1 >&5 cat conftest.er1 >&5
4208 4330 fi fi
4209 4331 rm -f conftest.er1 conftest.err rm -f conftest.er1 conftest.err
4210 printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
4332 printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
4211 4333 test $ac_status = 0; } test $ac_status = 0; }
4212 4334 done done
4213 4335
 
... ... ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
4227 4349 # Try to create an executable without -o first, disregard a.out. # Try to create an executable without -o first, disregard a.out.
4228 4350 # It will help us diagnose broken compilers, and finding out an intuition # It will help us diagnose broken compilers, and finding out an intuition
4229 4351 # of exeext. # of exeext.
4230 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
4352 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
4231 4353 printf %s "checking whether the C compiler works... " >&6; } printf %s "checking whether the C compiler works... " >&6; }
4232 ac_link_default=`printf "%s\n" "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
4354 ac_link_default=`printf '%s\n' "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
4233 4355
4234 4356 # The possible output files: # The possible output files:
4235 4357 ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
 
... ... case "(($ac_try" in
4250 4372 *) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;;
4251 4373 esac esac
4252 4374 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
4253 printf "%s\n" "$ac_try_echo"; } >&5
4375 printf '%s\n' "$ac_try_echo"; } >&5
4254 4376 (eval "$ac_link_default") 2>&5 (eval "$ac_link_default") 2>&5
4255 4377 ac_status=$? ac_status=$?
4256 printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
4378 printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
4257 4379 test $ac_status = 0; } test $ac_status = 0; }
4258 4380 then : then :
4259 4381 # Autoconf-2.13 could set the ac_cv_exeext variable to 'no'. # Autoconf-2.13 could set the ac_cv_exeext variable to 'no'.
 
... ... esac
4294 4416 fi fi
4295 4417 if test -z "$ac_file" if test -z "$ac_file"
4296 4418 then : then :
4297 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
4298 printf "%s\n" "no" >&6; }
4299 printf "%s\n" "$as_me: failed program was:" >&5
4419 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
4420 printf '%s\n' "no" >&6; }
4421 printf '%s\n' "$as_me: failed program was:" >&5
4300 4422 sed 's/^/| /' conftest.$ac_ext >&5 sed 's/^/| /' conftest.$ac_ext >&5
4301 4423
4302 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
4303 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
4424 { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
4425 printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
4304 4426 as_fn_error 77 "C compiler cannot create executables as_fn_error 77 "C compiler cannot create executables
4305 4427 See 'config.log' for more details" "$LINENO" 5; } See 'config.log' for more details" "$LINENO" 5; }
4306 4428 else case e in #( else case e in #(
4307 e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
4308 printf "%s\n" "yes" >&6; } ;;
4429 e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
4430 printf '%s\n' "yes" >&6; } ;;
4309 4431 esac esac
4310 4432 fi fi
4311 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
4433 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
4312 4434 printf %s "checking for C compiler default output file name... " >&6; } printf %s "checking for C compiler default output file name... " >&6; }
4313 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
4314 printf "%s\n" "$ac_file" >&6; }
4435 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
4436 printf '%s\n' "$ac_file" >&6; }
4315 4437 ac_exeext=$ac_cv_exeext ac_exeext=$ac_cv_exeext
4316 4438
4317 4439 rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
4318 4440 ac_clean_files=$ac_clean_files_save ac_clean_files=$ac_clean_files_save
4319 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
4441 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
4320 4442 printf %s "checking for suffix of executables... " >&6; } printf %s "checking for suffix of executables... " >&6; }
4321 4443 if { { ac_try="$ac_link" if { { ac_try="$ac_link"
4322 4444 case "(($ac_try" in case "(($ac_try" in
 
... ... case "(($ac_try" in
4324 4446 *) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;;
4325 4447 esac esac
4326 4448 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
4327 printf "%s\n" "$ac_try_echo"; } >&5
4449 printf '%s\n' "$ac_try_echo"; } >&5
4328 4450 (eval "$ac_link") 2>&5 (eval "$ac_link") 2>&5
4329 4451 ac_status=$? ac_status=$?
4330 printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
4452 printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
4331 4453 test $ac_status = 0; } test $ac_status = 0; }
4332 4454 then : then :
4333 4455 # If both 'conftest.exe' and 'conftest' are 'present' (well, observable) # If both 'conftest.exe' and 'conftest' are 'present' (well, observable)
 
... ... for ac_file in conftest.exe conftest conftest.*; do
4344 4466 esac esac
4345 4467 done done
4346 4468 else case e in #( else case e in #(
4347 e) { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
4348 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
4469 e) { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
4470 printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
4349 4471 as_fn_error $? "cannot compute suffix of executables: cannot compile and link as_fn_error $? "cannot compute suffix of executables: cannot compile and link
4350 4472 See 'config.log' for more details" "$LINENO" 5; } ;; See 'config.log' for more details" "$LINENO" 5; } ;;
4351 4473 esac esac
4352 4474 fi fi
4353 4475 rm -f conftest conftest$ac_cv_exeext rm -f conftest conftest$ac_cv_exeext
4354 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
4355 printf "%s\n" "$ac_cv_exeext" >&6; }
4476 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
4477 printf '%s\n' "$ac_cv_exeext" >&6; }
4356 4478
4357 4479 rm -f conftest.$ac_ext rm -f conftest.$ac_ext
4358 4480 EXEEXT=$ac_cv_exeext EXEEXT=$ac_cv_exeext
 
... ... _ACEOF
4375 4497 ac_clean_files="$ac_clean_files conftest.out" ac_clean_files="$ac_clean_files conftest.out"
4376 4498 # Check that the compiler produces executables we can run. If not, either # Check that the compiler produces executables we can run. If not, either
4377 4499 # the compiler is broken, or we cross compile. # the compiler is broken, or we cross compile.
4378 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
4500 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
4379 4501 printf %s "checking whether we are cross compiling... " >&6; } printf %s "checking whether we are cross compiling... " >&6; }
4380 4502 if test "$cross_compiling" != yes; then if test "$cross_compiling" != yes; then
4381 4503 { { ac_try="$ac_link" { { ac_try="$ac_link"
 
... ... case "(($ac_try" in
4384 4506 *) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;;
4385 4507 esac esac
4386 4508 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
4387 printf "%s\n" "$ac_try_echo"; } >&5
4509 printf '%s\n' "$ac_try_echo"; } >&5
4388 4510 (eval "$ac_link") 2>&5 (eval "$ac_link") 2>&5
4389 4511 ac_status=$? ac_status=$?
4390 printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
4512 printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
4391 4513 test $ac_status = 0; } test $ac_status = 0; }
4392 4514 if { ac_try='./conftest$ac_cv_exeext' if { ac_try='./conftest$ac_cv_exeext'
4393 4515 { { case "(($ac_try" in { { case "(($ac_try" in
 
... ... printf "%s\n" "$ac_try_echo"; } >&5
4395 4517 *) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;;
4396 4518 esac esac
4397 4519 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
4398 printf "%s\n" "$ac_try_echo"; } >&5
4520 printf '%s\n' "$ac_try_echo"; } >&5
4399 4521 (eval "$ac_try") 2>&5 (eval "$ac_try") 2>&5
4400 4522 ac_status=$? ac_status=$?
4401 printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
4523 printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
4402 4524 test $ac_status = 0; }; }; then test $ac_status = 0; }; }; then
4403 4525 cross_compiling=no cross_compiling=no
4404 4526 else else
4405 4527 if test "$cross_compiling" = maybe; then if test "$cross_compiling" = maybe; then
4406 4528 cross_compiling=yes cross_compiling=yes
4407 4529 else else
4408 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
4409 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
4530 { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
4531 printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
4410 4532 as_fn_error 77 "cannot run C compiled programs. as_fn_error 77 "cannot run C compiled programs.
4411 4533 If you meant to cross compile, use '--host'. If you meant to cross compile, use '--host'.
4412 4534 See 'config.log' for more details" "$LINENO" 5; } See 'config.log' for more details" "$LINENO" 5; }
4413 4535 fi fi
4414 4536 fi fi
4415 4537 fi fi
4416 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
4417 printf "%s\n" "$cross_compiling" >&6; }
4538 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
4539 printf '%s\n' "$cross_compiling" >&6; }
4418 4540
4419 4541 rm -f conftest.$ac_ext conftest$ac_cv_exeext \ rm -f conftest.$ac_ext conftest$ac_cv_exeext \
4420 4542 conftest.o conftest.obj conftest.out conftest.o conftest.obj conftest.out
4421 4543 ac_clean_files=$ac_clean_files_save ac_clean_files=$ac_clean_files_save
4422 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
4544 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
4423 4545 printf %s "checking for suffix of object files... " >&6; } printf %s "checking for suffix of object files... " >&6; }
4424 4546 if test ${ac_cv_objext+y} if test ${ac_cv_objext+y}
4425 4547 then : then :
 
... ... case "(($ac_try" in
4443 4565 *) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;;
4444 4566 esac esac
4445 4567 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
4446 printf "%s\n" "$ac_try_echo"; } >&5
4568 printf '%s\n' "$ac_try_echo"; } >&5
4447 4569 (eval "$ac_compile") 2>&5 (eval "$ac_compile") 2>&5
4448 4570 ac_status=$? ac_status=$?
4449 printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
4571 printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
4450 4572 test $ac_status = 0; } test $ac_status = 0; }
4451 4573 then : then :
4452 4574 for ac_file in conftest.o conftest.obj conftest.*; do for ac_file in conftest.o conftest.obj conftest.*; do
 
... ... then :
4458 4580 esac esac
4459 4581 done done
4460 4582 else case e in #( else case e in #(
4461 e) printf "%s\n" "$as_me: failed program was:" >&5
4583 e) printf '%s\n' "$as_me: failed program was:" >&5
4462 4584 sed 's/^/| /' conftest.$ac_ext >&5 sed 's/^/| /' conftest.$ac_ext >&5
4463 4585
4464 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
4465 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
4586 { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
4587 printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
4466 4588 as_fn_error $? "cannot compute suffix of object files: cannot compile as_fn_error $? "cannot compute suffix of object files: cannot compile
4467 4589 See 'config.log' for more details" "$LINENO" 5; } ;; See 'config.log' for more details" "$LINENO" 5; } ;;
4468 4590 esac esac
 
... ... fi
4470 4592 rm -f conftest.$ac_cv_objext conftest.$ac_ext ;; rm -f conftest.$ac_cv_objext conftest.$ac_ext ;;
4471 4593 esac esac
4472 4594 fi fi
4473 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
4474 printf "%s\n" "$ac_cv_objext" >&6; }
4595 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
4596 printf '%s\n' "$ac_cv_objext" >&6; }
4475 4597 OBJEXT=$ac_cv_objext OBJEXT=$ac_cv_objext
4476 4598 ac_objext=$OBJEXT ac_objext=$OBJEXT
4477 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU C" >&5
4599 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU C" >&5
4478 4600 printf %s "checking whether the compiler supports GNU C... " >&6; } printf %s "checking whether the compiler supports GNU C... " >&6; }
4479 4601 if test ${ac_cv_c_compiler_gnu+y} if test ${ac_cv_c_compiler_gnu+y}
4480 4602 then : then :
 
... ... ac_cv_c_compiler_gnu=$ac_compiler_gnu
4506 4628 ;; ;;
4507 4629 esac esac
4508 4630 fi fi
4509 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
4510 printf "%s\n" "$ac_cv_c_compiler_gnu" >&6; }
4631 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
4632 printf '%s\n' "$ac_cv_c_compiler_gnu" >&6; }
4511 4633 ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_compiler_gnu=$ac_cv_c_compiler_gnu
4512 4634
4513 4635 if test $ac_compiler_gnu = yes; then if test $ac_compiler_gnu = yes; then
 
... ... else
4517 4639 fi fi
4518 4640 ac_test_CFLAGS=${CFLAGS+y} ac_test_CFLAGS=${CFLAGS+y}
4519 4641 ac_save_CFLAGS=$CFLAGS ac_save_CFLAGS=$CFLAGS
4520 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
4642 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
4521 4643 printf %s "checking whether $CC accepts -g... " >&6; } printf %s "checking whether $CC accepts -g... " >&6; }
4522 4644 if test ${ac_cv_prog_cc_g+y} if test ${ac_cv_prog_cc_g+y}
4523 4645 then : then :
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
4585 4707 ac_c_werror_flag=$ac_save_c_werror_flag ;; ac_c_werror_flag=$ac_save_c_werror_flag ;;
4586 4708 esac esac
4587 4709 fi fi
4588 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
4589 printf "%s\n" "$ac_cv_prog_cc_g" >&6; }
4710 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
4711 printf '%s\n' "$ac_cv_prog_cc_g" >&6; }
4590 4712 if test $ac_test_CFLAGS; then if test $ac_test_CFLAGS; then
4591 4713 CFLAGS=$ac_save_CFLAGS CFLAGS=$ac_save_CFLAGS
4592 4714 elif test $ac_cv_prog_cc_g = yes; then elif test $ac_cv_prog_cc_g = yes; then
 
... ... fi
4605 4727 ac_prog_cc_stdc=no ac_prog_cc_stdc=no
4606 4728 if test x$ac_prog_cc_stdc = xno if test x$ac_prog_cc_stdc = xno
4607 4729 then : then :
4608 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C11 features" >&5
4730 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C23 features" >&5
4731 printf %s "checking for $CC option to enable C23 features... " >&6; }
4732 if test ${ac_cv_prog_cc_c23+y}
4733 then :
4734 printf %s "(cached) " >&6
4735 else case e in #(
4736 e) ac_cv_prog_cc_c23=no
4737 ac_save_CC=$CC
4738 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4739 /* end confdefs.h. */
4740 $ac_c_conftest_c23_program
4741 _ACEOF
4742 for ac_arg in '' -std=gnu23
4743 do
4744 CC="$ac_save_CC $ac_arg"
4745 if ac_fn_c_try_compile "$LINENO"
4746 then :
4747 ac_cv_prog_cc_c23=$ac_arg
4748 fi
4749 rm -f core conftest.err conftest.$ac_objext conftest.beam
4750 test "x$ac_cv_prog_cc_c23" != "xno" && break
4751 done
4752 rm -f conftest.$ac_ext
4753 CC=$ac_save_CC ;;
4754 esac
4755 fi
4756
4757 if test "x$ac_cv_prog_cc_c23" = xno
4758 then :
4759 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
4760 printf '%s\n' "unsupported" >&6; }
4761 else case e in #(
4762 e) if test "x$ac_cv_prog_cc_c23" = x
4763 then :
4764 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
4765 printf '%s\n' "none needed" >&6; }
4766 else case e in #(
4767 e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c23" >&5
4768 printf '%s\n' "$ac_cv_prog_cc_c23" >&6; }
4769 CC="$CC $ac_cv_prog_cc_c23" ;;
4770 esac
4771 fi
4772 ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c23
4773 ac_prog_cc_stdc=c23 ;;
4774 esac
4775 fi
4776 fi
4777 if test x$ac_prog_cc_stdc = xno
4778 then :
4779 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C11 features" >&5
4609 4780 printf %s "checking for $CC option to enable C11 features... " >&6; } printf %s "checking for $CC option to enable C11 features... " >&6; }
4610 4781 if test ${ac_cv_prog_cc_c11+y} if test ${ac_cv_prog_cc_c11+y}
4611 4782 then : then :
 
... ... cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4617 4788 /* end confdefs.h. */ /* end confdefs.h. */
4618 4789 $ac_c_conftest_c11_program $ac_c_conftest_c11_program
4619 4790 _ACEOF _ACEOF
4620 for ac_arg in '' -std=gnu11
4791 for ac_arg in '' -std=gnu11 -std:c11
4621 4792 do do
4622 4793 CC="$ac_save_CC $ac_arg" CC="$ac_save_CC $ac_arg"
4623 4794 if ac_fn_c_try_compile "$LINENO" if ac_fn_c_try_compile "$LINENO"
 
... ... fi
4634 4805
4635 4806 if test "x$ac_cv_prog_cc_c11" = xno if test "x$ac_cv_prog_cc_c11" = xno
4636 4807 then : then :
4637 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
4638 printf "%s\n" "unsupported" >&6; }
4808 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
4809 printf '%s\n' "unsupported" >&6; }
4639 4810 else case e in #( else case e in #(
4640 4811 e) if test "x$ac_cv_prog_cc_c11" = x e) if test "x$ac_cv_prog_cc_c11" = x
4641 4812 then : then :
4642 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
4643 printf "%s\n" "none needed" >&6; }
4813 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
4814 printf '%s\n' "none needed" >&6; }
4644 4815 else case e in #( else case e in #(
4645 e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c11" >&5
4646 printf "%s\n" "$ac_cv_prog_cc_c11" >&6; }
4816 e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c11" >&5
4817 printf '%s\n' "$ac_cv_prog_cc_c11" >&6; }
4647 4818 CC="$CC $ac_cv_prog_cc_c11" ;; CC="$CC $ac_cv_prog_cc_c11" ;;
4648 4819 esac esac
4649 4820 fi fi
 
... ... fi
4654 4825 fi fi
4655 4826 if test x$ac_prog_cc_stdc = xno if test x$ac_prog_cc_stdc = xno
4656 4827 then : then :
4657 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C99 features" >&5
4828 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C99 features" >&5
4658 4829 printf %s "checking for $CC option to enable C99 features... " >&6; } printf %s "checking for $CC option to enable C99 features... " >&6; }
4659 4830 if test ${ac_cv_prog_cc_c99+y} if test ${ac_cv_prog_cc_c99+y}
4660 4831 then : then :
 
... ... fi
4683 4854
4684 4855 if test "x$ac_cv_prog_cc_c99" = xno if test "x$ac_cv_prog_cc_c99" = xno
4685 4856 then : then :
4686 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
4687 printf "%s\n" "unsupported" >&6; }
4857 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
4858 printf '%s\n' "unsupported" >&6; }
4688 4859 else case e in #( else case e in #(
4689 4860 e) if test "x$ac_cv_prog_cc_c99" = x e) if test "x$ac_cv_prog_cc_c99" = x
4690 4861 then : then :
4691 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
4692 printf "%s\n" "none needed" >&6; }
4862 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
4863 printf '%s\n' "none needed" >&6; }
4693 4864 else case e in #( else case e in #(
4694 e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5
4695 printf "%s\n" "$ac_cv_prog_cc_c99" >&6; }
4865 e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5
4866 printf '%s\n' "$ac_cv_prog_cc_c99" >&6; }
4696 4867 CC="$CC $ac_cv_prog_cc_c99" ;; CC="$CC $ac_cv_prog_cc_c99" ;;
4697 4868 esac esac
4698 4869 fi fi
 
... ... fi
4703 4874 fi fi
4704 4875 if test x$ac_prog_cc_stdc = xno if test x$ac_prog_cc_stdc = xno
4705 4876 then : then :
4706 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C89 features" >&5
4877 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C89 features" >&5
4707 4878 printf %s "checking for $CC option to enable C89 features... " >&6; } printf %s "checking for $CC option to enable C89 features... " >&6; }
4708 4879 if test ${ac_cv_prog_cc_c89+y} if test ${ac_cv_prog_cc_c89+y}
4709 4880 then : then :
 
... ... fi
4732 4903
4733 4904 if test "x$ac_cv_prog_cc_c89" = xno if test "x$ac_cv_prog_cc_c89" = xno
4734 4905 then : then :
4735 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
4736 printf "%s\n" "unsupported" >&6; }
4906 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
4907 printf '%s\n' "unsupported" >&6; }
4737 4908 else case e in #( else case e in #(
4738 4909 e) if test "x$ac_cv_prog_cc_c89" = x e) if test "x$ac_cv_prog_cc_c89" = x
4739 4910 then : then :
4740 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
4741 printf "%s\n" "none needed" >&6; }
4911 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
4912 printf '%s\n' "none needed" >&6; }
4742 4913 else case e in #( else case e in #(
4743 e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
4744 printf "%s\n" "$ac_cv_prog_cc_c89" >&6; }
4914 e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
4915 printf '%s\n' "$ac_cv_prog_cc_c89" >&6; }
4745 4916 CC="$CC $ac_cv_prog_cc_c89" ;; CC="$CC $ac_cv_prog_cc_c89" ;;
4746 4917 esac esac
4747 4918 fi fi
 
... ... ac_cpp='$CPP $CPPFLAGS'
4763 4934 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
4764 4935 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
4765 4936 ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_compiler_gnu=$ac_cv_c_compiler_gnu
4766 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5
4937 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5
4767 4938 printf %s "checking whether $CC understands -c and -o together... " >&6; } printf %s "checking whether $CC understands -c and -o together... " >&6; }
4768 4939 if test ${am_cv_prog_cc_c_o+y} if test ${am_cv_prog_cc_c_o+y}
4769 4940 then : then :
 
... ... _ACEOF
4805 4976 unset am_i ;; unset am_i ;;
4806 4977 esac esac
4807 4978 fi fi
4808 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5
4809 printf "%s\n" "$am_cv_prog_cc_c_o" >&6; }
4979 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5
4980 printf '%s\n' "$am_cv_prog_cc_c_o" >&6; }
4810 4981 if test "$am_cv_prog_cc_c_o" != yes; then if test "$am_cv_prog_cc_c_o" != yes; then
4811 4982 # Losing compiler, so override with the script. # Losing compiler, so override with the script.
4812 4983 # FIXME: It is wrong to rewrite CC. # FIXME: It is wrong to rewrite CC.
 
... ... ac_compiler_gnu=$ac_cv_c_compiler_gnu
4824 4995
4825 4996 depcc="$CC" am_compiler_list= depcc="$CC" am_compiler_list=
4826 4997
4827 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
4998 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
4828 4999 printf %s "checking dependency style of $depcc... " >&6; } printf %s "checking dependency style of $depcc... " >&6; }
4829 5000 if test ${am_cv_CC_dependencies_compiler_type+y} if test ${am_cv_CC_dependencies_compiler_type+y}
4830 5001 then : then :
 
... ... fi
4937 5108 ;; ;;
4938 5109 esac esac
4939 5110 fi fi
4940 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5
4941 printf "%s\n" "$am_cv_CC_dependencies_compiler_type" >&6; }
5111 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5
5112 printf '%s\n' "$am_cv_CC_dependencies_compiler_type" >&6; }
4942 5113 CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
4943 5114
4944 5115 if if
 
... ... do
4959 5130 if test $ac_cache; then if test $ac_cache; then
4960 5131 ac_fn_c_check_header_compile "$LINENO" $ac_header ac_cv_header_$ac_cache "$ac_includes_default" ac_fn_c_check_header_compile "$LINENO" $ac_header ac_cv_header_$ac_cache "$ac_includes_default"
4961 5132 if eval test \"x\$ac_cv_header_$ac_cache\" = xyes; then if eval test \"x\$ac_cv_header_$ac_cache\" = xyes; then
4962 printf "%s\n" "#define $ac_item 1" >> confdefs.h
5133 printf '%s\n' "#define $ac_item 1" >> confdefs.h
4963 5134 fi fi
4964 5135 ac_header= ac_cache= ac_header= ac_cache=
4965 5136 elif test $ac_header; then elif test $ac_header; then
 
... ... done
4979 5150 if test $ac_cv_header_stdlib_h = yes && test $ac_cv_header_string_h = yes if test $ac_cv_header_stdlib_h = yes && test $ac_cv_header_string_h = yes
4980 5151 then : then :
4981 5152
4982 printf "%s\n" "#define STDC_HEADERS 1" >>confdefs.h
5153 printf '%s\n' "#define STDC_HEADERS 1" >>confdefs.h
4983 5154
4984 5155 fi fi
4985 5156
 
... ... fi
4988 5159
4989 5160
4990 5161
4991 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5
5162 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5
4992 5163 printf %s "checking whether it is safe to define __EXTENSIONS__... " >&6; } printf %s "checking whether it is safe to define __EXTENSIONS__... " >&6; }
4993 5164 if test ${ac_cv_safe_to_define___extensions__+y} if test ${ac_cv_safe_to_define___extensions__+y}
4994 5165 then : then :
 
... ... fi
5017 5188 rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
5018 5189 esac esac
5019 5190 fi fi
5020 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__" >&5
5021 printf "%s\n" "$ac_cv_safe_to_define___extensions__" >&6; }
5191 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__" >&5
5192 printf '%s\n' "$ac_cv_safe_to_define___extensions__" >&6; }
5022 5193
5023 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether _XOPEN_SOURCE should be defined" >&5
5194 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether _XOPEN_SOURCE should be defined" >&5
5024 5195 printf %s "checking whether _XOPEN_SOURCE should be defined... " >&6; } printf %s "checking whether _XOPEN_SOURCE should be defined... " >&6; }
5025 5196 if test ${ac_cv_should_define__xopen_source+y} if test ${ac_cv_should_define__xopen_source+y}
5026 5197 then : then :
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
5071 5242 fi ;; fi ;;
5072 5243 esac esac
5073 5244 fi fi
5074 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_should_define__xopen_source" >&5
5075 printf "%s\n" "$ac_cv_should_define__xopen_source" >&6; }
5245 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_should_define__xopen_source" >&5
5246 printf '%s\n' "$ac_cv_should_define__xopen_source" >&6; }
5247
5248 printf '%s\n' "#define _ALL_SOURCE 1" >>confdefs.h
5076 5249
5077 printf "%s\n" "#define _ALL_SOURCE 1" >>confdefs.h
5250 printf '%s\n' "#define _COSMO_SOURCE 1" >>confdefs.h
5078 5251
5079 printf "%s\n" "#define _DARWIN_C_SOURCE 1" >>confdefs.h
5252 printf '%s\n' "#define _DARWIN_C_SOURCE 1" >>confdefs.h
5080 5253
5081 printf "%s\n" "#define _GNU_SOURCE 1" >>confdefs.h
5254 printf '%s\n' "#define _GNU_SOURCE 1" >>confdefs.h
5082 5255
5083 printf "%s\n" "#define _HPUX_ALT_XOPEN_SOCKET_API 1" >>confdefs.h
5256 printf '%s\n' "#define _HPUX_ALT_XOPEN_SOCKET_API 1" >>confdefs.h
5084 5257
5085 printf "%s\n" "#define _NETBSD_SOURCE 1" >>confdefs.h
5258 printf '%s\n' "#define _NETBSD_SOURCE 1" >>confdefs.h
5086 5259
5087 printf "%s\n" "#define _OPENBSD_SOURCE 1" >>confdefs.h
5260 printf '%s\n' "#define _OPENBSD_SOURCE 1" >>confdefs.h
5088 5261
5089 printf "%s\n" "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h
5262 printf '%s\n' "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h
5090 5263
5091 printf "%s\n" "#define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1" >>confdefs.h
5264 printf '%s\n' "#define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1" >>confdefs.h
5092 5265
5093 printf "%s\n" "#define __STDC_WANT_IEC_60559_BFP_EXT__ 1" >>confdefs.h
5266 printf '%s\n' "#define __STDC_WANT_IEC_60559_BFP_EXT__ 1" >>confdefs.h
5094 5267
5095 printf "%s\n" "#define __STDC_WANT_IEC_60559_DFP_EXT__ 1" >>confdefs.h
5268 printf '%s\n' "#define __STDC_WANT_IEC_60559_DFP_EXT__ 1" >>confdefs.h
5096 5269
5097 printf "%s\n" "#define __STDC_WANT_IEC_60559_EXT__ 1" >>confdefs.h
5270 printf '%s\n' "#define __STDC_WANT_IEC_60559_EXT__ 1" >>confdefs.h
5098 5271
5099 printf "%s\n" "#define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1" >>confdefs.h
5272 printf '%s\n' "#define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1" >>confdefs.h
5100 5273
5101 printf "%s\n" "#define __STDC_WANT_IEC_60559_TYPES_EXT__ 1" >>confdefs.h
5274 printf '%s\n' "#define __STDC_WANT_IEC_60559_TYPES_EXT__ 1" >>confdefs.h
5102 5275
5103 printf "%s\n" "#define __STDC_WANT_LIB_EXT2__ 1" >>confdefs.h
5276 printf '%s\n' "#define __STDC_WANT_LIB_EXT2__ 1" >>confdefs.h
5104 5277
5105 printf "%s\n" "#define __STDC_WANT_MATH_SPEC_FUNCS__ 1" >>confdefs.h
5278 printf '%s\n' "#define __STDC_WANT_MATH_SPEC_FUNCS__ 1" >>confdefs.h
5106 5279
5107 printf "%s\n" "#define _TANDEM_SOURCE 1" >>confdefs.h
5280 printf '%s\n' "#define _TANDEM_SOURCE 1" >>confdefs.h
5108 5281
5109 5282 if test $ac_cv_header_minix_config_h = yes if test $ac_cv_header_minix_config_h = yes
5110 5283 then : then :
5111 5284 MINIX=yes MINIX=yes
5112 printf "%s\n" "#define _MINIX 1" >>confdefs.h
5285 printf '%s\n' "#define _MINIX 1" >>confdefs.h
5113 5286
5114 printf "%s\n" "#define _POSIX_SOURCE 1" >>confdefs.h
5287 printf '%s\n' "#define _POSIX_SOURCE 1" >>confdefs.h
5115 5288
5116 printf "%s\n" "#define _POSIX_1_SOURCE 2" >>confdefs.h
5289 printf '%s\n' "#define _POSIX_1_SOURCE 2" >>confdefs.h
5117 5290
5118 5291 else case e in #( else case e in #(
5119 5292 e) MINIX= ;; e) MINIX= ;;
 
... ... esac
5121 5294 fi fi
5122 5295 if test $ac_cv_safe_to_define___extensions__ = yes if test $ac_cv_safe_to_define___extensions__ = yes
5123 5296 then : then :
5124 printf "%s\n" "#define __EXTENSIONS__ 1" >>confdefs.h
5297 printf '%s\n' "#define __EXTENSIONS__ 1" >>confdefs.h
5125 5298
5126 5299 fi fi
5127 5300 if test $ac_cv_should_define__xopen_source = yes if test $ac_cv_should_define__xopen_source = yes
5128 5301 then : then :
5129 printf "%s\n" "#define _XOPEN_SOURCE 500" >>confdefs.h
5302 printf '%s\n' "#define _XOPEN_SOURCE 500" >>confdefs.h
5130 5303
5131 5304 fi fi
5132 5305
 
... ... ac_compiler_gnu=$ac_cv_c_compiler_gnu
5139 5312 if test -n "$ac_tool_prefix"; then if test -n "$ac_tool_prefix"; then
5140 5313 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
5141 5314 set dummy ${ac_tool_prefix}gcc; ac_word=$2 set dummy ${ac_tool_prefix}gcc; ac_word=$2
5142 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5315 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5143 5316 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
5144 5317 if test ${ac_cv_prog_CC+y} if test ${ac_cv_prog_CC+y}
5145 5318 then : then :
 
... ... do
5160 5333 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
5161 5334 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
5162 5335 ac_cv_prog_CC="${ac_tool_prefix}gcc" ac_cv_prog_CC="${ac_tool_prefix}gcc"
5163 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
5336 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
5164 5337 break 2 break 2
5165 5338 fi fi
5166 5339 done done
 
... ... esac
5172 5345 fi fi
5173 5346 CC=$ac_cv_prog_CC CC=$ac_cv_prog_CC
5174 5347 if test -n "$CC"; then if test -n "$CC"; then
5175 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
5176 printf "%s\n" "$CC" >&6; }
5348 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
5349 printf '%s\n' "$CC" >&6; }
5177 5350 else else
5178 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
5179 printf "%s\n" "no" >&6; }
5351 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
5352 printf '%s\n' "no" >&6; }
5180 5353 fi fi
5181 5354
5182 5355
 
... ... if test -z "$ac_cv_prog_CC"; then
5185 5358 ac_ct_CC=$CC ac_ct_CC=$CC
5186 5359 # Extract the first word of "gcc", so it can be a program name with args. # Extract the first word of "gcc", so it can be a program name with args.
5187 5360 set dummy gcc; ac_word=$2 set dummy gcc; ac_word=$2
5188 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5361 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5189 5362 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
5190 5363 if test ${ac_cv_prog_ac_ct_CC+y} if test ${ac_cv_prog_ac_ct_CC+y}
5191 5364 then : then :
 
... ... do
5206 5379 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
5207 5380 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
5208 5381 ac_cv_prog_ac_ct_CC="gcc" ac_cv_prog_ac_ct_CC="gcc"
5209 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
5382 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
5210 5383 break 2 break 2
5211 5384 fi fi
5212 5385 done done
 
... ... esac
5218 5391 fi fi
5219 5392 ac_ct_CC=$ac_cv_prog_ac_ct_CC ac_ct_CC=$ac_cv_prog_ac_ct_CC
5220 5393 if test -n "$ac_ct_CC"; then if test -n "$ac_ct_CC"; then
5221 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
5222 printf "%s\n" "$ac_ct_CC" >&6; }
5394 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
5395 printf '%s\n' "$ac_ct_CC" >&6; }
5223 5396 else else
5224 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
5225 printf "%s\n" "no" >&6; }
5397 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
5398 printf '%s\n' "no" >&6; }
5226 5399 fi fi
5227 5400
5228 5401 if test "x$ac_ct_CC" = x; then if test "x$ac_ct_CC" = x; then
 
... ... fi
5230 5403 else else
5231 5404 case $cross_compiling:$ac_tool_warned in case $cross_compiling:$ac_tool_warned in
5232 5405 yes:) yes:)
5233 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
5234 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
5406 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
5407 printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
5235 5408 ac_tool_warned=yes ;; ac_tool_warned=yes ;;
5236 5409 esac esac
5237 5410 CC=$ac_ct_CC CC=$ac_ct_CC
 
... ... if test -z "$CC"; then
5244 5417 if test -n "$ac_tool_prefix"; then if test -n "$ac_tool_prefix"; then
5245 5418 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
5246 5419 set dummy ${ac_tool_prefix}cc; ac_word=$2 set dummy ${ac_tool_prefix}cc; ac_word=$2
5247 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5420 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5248 5421 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
5249 5422 if test ${ac_cv_prog_CC+y} if test ${ac_cv_prog_CC+y}
5250 5423 then : then :
 
... ... do
5265 5438 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
5266 5439 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
5267 5440 ac_cv_prog_CC="${ac_tool_prefix}cc" ac_cv_prog_CC="${ac_tool_prefix}cc"
5268 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
5441 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
5269 5442 break 2 break 2
5270 5443 fi fi
5271 5444 done done
 
... ... esac
5277 5450 fi fi
5278 5451 CC=$ac_cv_prog_CC CC=$ac_cv_prog_CC
5279 5452 if test -n "$CC"; then if test -n "$CC"; then
5280 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
5281 printf "%s\n" "$CC" >&6; }
5453 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
5454 printf '%s\n' "$CC" >&6; }
5282 5455 else else
5283 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
5284 printf "%s\n" "no" >&6; }
5456 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
5457 printf '%s\n' "no" >&6; }
5285 5458 fi fi
5286 5459
5287 5460
 
... ... fi
5290 5463 if test -z "$CC"; then if test -z "$CC"; then
5291 5464 # Extract the first word of "cc", so it can be a program name with args. # Extract the first word of "cc", so it can be a program name with args.
5292 5465 set dummy cc; ac_word=$2 set dummy cc; ac_word=$2
5293 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5466 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5294 5467 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
5295 5468 if test ${ac_cv_prog_CC+y} if test ${ac_cv_prog_CC+y}
5296 5469 then : then :
 
... ... do
5316 5489 continue continue
5317 5490 fi fi
5318 5491 ac_cv_prog_CC="cc" ac_cv_prog_CC="cc"
5319 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
5492 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
5320 5493 break 2 break 2
5321 5494 fi fi
5322 5495 done done
 
... ... esac
5340 5513 fi fi
5341 5514 CC=$ac_cv_prog_CC CC=$ac_cv_prog_CC
5342 5515 if test -n "$CC"; then if test -n "$CC"; then
5343 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
5344 printf "%s\n" "$CC" >&6; }
5516 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
5517 printf '%s\n' "$CC" >&6; }
5345 5518 else else
5346 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
5347 printf "%s\n" "no" >&6; }
5519 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
5520 printf '%s\n' "no" >&6; }
5348 5521 fi fi
5349 5522
5350 5523
 
... ... if test -z "$CC"; then
5355 5528 do do
5356 5529 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
5357 5530 set dummy $ac_tool_prefix$ac_prog; ac_word=$2 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
5358 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5531 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5359 5532 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
5360 5533 if test ${ac_cv_prog_CC+y} if test ${ac_cv_prog_CC+y}
5361 5534 then : then :
 
... ... do
5376 5549 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
5377 5550 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
5378 5551 ac_cv_prog_CC="$ac_tool_prefix$ac_prog" ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
5379 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
5552 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
5380 5553 break 2 break 2
5381 5554 fi fi
5382 5555 done done
 
... ... esac
5388 5561 fi fi
5389 5562 CC=$ac_cv_prog_CC CC=$ac_cv_prog_CC
5390 5563 if test -n "$CC"; then if test -n "$CC"; then
5391 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
5392 printf "%s\n" "$CC" >&6; }
5564 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
5565 printf '%s\n' "$CC" >&6; }
5393 5566 else else
5394 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
5395 printf "%s\n" "no" >&6; }
5567 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
5568 printf '%s\n' "no" >&6; }
5396 5569 fi fi
5397 5570
5398 5571
 
... ... if test -z "$CC"; then
5405 5578 do do
5406 5579 # Extract the first word of "$ac_prog", so it can be a program name with args. # Extract the first word of "$ac_prog", so it can be a program name with args.
5407 5580 set dummy $ac_prog; ac_word=$2 set dummy $ac_prog; ac_word=$2
5408 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5581 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5409 5582 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
5410 5583 if test ${ac_cv_prog_ac_ct_CC+y} if test ${ac_cv_prog_ac_ct_CC+y}
5411 5584 then : then :
 
... ... do
5426 5599 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
5427 5600 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
5428 5601 ac_cv_prog_ac_ct_CC="$ac_prog" ac_cv_prog_ac_ct_CC="$ac_prog"
5429 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
5602 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
5430 5603 break 2 break 2
5431 5604 fi fi
5432 5605 done done
 
... ... esac
5438 5611 fi fi
5439 5612 ac_ct_CC=$ac_cv_prog_ac_ct_CC ac_ct_CC=$ac_cv_prog_ac_ct_CC
5440 5613 if test -n "$ac_ct_CC"; then if test -n "$ac_ct_CC"; then
5441 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
5442 printf "%s\n" "$ac_ct_CC" >&6; }
5614 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
5615 printf '%s\n' "$ac_ct_CC" >&6; }
5443 5616 else else
5444 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
5445 printf "%s\n" "no" >&6; }
5617 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
5618 printf '%s\n' "no" >&6; }
5446 5619 fi fi
5447 5620
5448 5621
 
... ... done
5454 5627 else else
5455 5628 case $cross_compiling:$ac_tool_warned in case $cross_compiling:$ac_tool_warned in
5456 5629 yes:) yes:)
5457 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
5458 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
5630 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
5631 printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
5459 5632 ac_tool_warned=yes ;; ac_tool_warned=yes ;;
5460 5633 esac esac
5461 5634 CC=$ac_ct_CC CC=$ac_ct_CC
 
... ... if test -z "$CC"; then
5467 5640 if test -n "$ac_tool_prefix"; then if test -n "$ac_tool_prefix"; then
5468 5641 # Extract the first word of "${ac_tool_prefix}clang", so it can be a program name with args. # Extract the first word of "${ac_tool_prefix}clang", so it can be a program name with args.
5469 5642 set dummy ${ac_tool_prefix}clang; ac_word=$2 set dummy ${ac_tool_prefix}clang; ac_word=$2
5470 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5643 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5471 5644 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
5472 5645 if test ${ac_cv_prog_CC+y} if test ${ac_cv_prog_CC+y}
5473 5646 then : then :
 
... ... do
5488 5661 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
5489 5662 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
5490 5663 ac_cv_prog_CC="${ac_tool_prefix}clang" ac_cv_prog_CC="${ac_tool_prefix}clang"
5491 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
5664 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
5492 5665 break 2 break 2
5493 5666 fi fi
5494 5667 done done
 
... ... esac
5500 5673 fi fi
5501 5674 CC=$ac_cv_prog_CC CC=$ac_cv_prog_CC
5502 5675 if test -n "$CC"; then if test -n "$CC"; then
5503 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
5504 printf "%s\n" "$CC" >&6; }
5676 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
5677 printf '%s\n' "$CC" >&6; }
5505 5678 else else
5506 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
5507 printf "%s\n" "no" >&6; }
5679 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
5680 printf '%s\n' "no" >&6; }
5508 5681 fi fi
5509 5682
5510 5683
 
... ... if test -z "$ac_cv_prog_CC"; then
5513 5686 ac_ct_CC=$CC ac_ct_CC=$CC
5514 5687 # Extract the first word of "clang", so it can be a program name with args. # Extract the first word of "clang", so it can be a program name with args.
5515 5688 set dummy clang; ac_word=$2 set dummy clang; ac_word=$2
5516 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5689 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5517 5690 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
5518 5691 if test ${ac_cv_prog_ac_ct_CC+y} if test ${ac_cv_prog_ac_ct_CC+y}
5519 5692 then : then :
 
... ... do
5534 5707 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
5535 5708 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
5536 5709 ac_cv_prog_ac_ct_CC="clang" ac_cv_prog_ac_ct_CC="clang"
5537 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
5710 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
5538 5711 break 2 break 2
5539 5712 fi fi
5540 5713 done done
 
... ... esac
5546 5719 fi fi
5547 5720 ac_ct_CC=$ac_cv_prog_ac_ct_CC ac_ct_CC=$ac_cv_prog_ac_ct_CC
5548 5721 if test -n "$ac_ct_CC"; then if test -n "$ac_ct_CC"; then
5549 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
5550 printf "%s\n" "$ac_ct_CC" >&6; }
5722 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
5723 printf '%s\n' "$ac_ct_CC" >&6; }
5551 5724 else else
5552 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
5553 printf "%s\n" "no" >&6; }
5725 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
5726 printf '%s\n' "no" >&6; }
5554 5727 fi fi
5555 5728
5556 5729 if test "x$ac_ct_CC" = x; then if test "x$ac_ct_CC" = x; then
 
... ... fi
5558 5731 else else
5559 5732 case $cross_compiling:$ac_tool_warned in case $cross_compiling:$ac_tool_warned in
5560 5733 yes:) yes:)
5561 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
5562 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
5734 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
5735 printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
5563 5736 ac_tool_warned=yes ;; ac_tool_warned=yes ;;
5564 5737 esac esac
5565 5738 CC=$ac_ct_CC CC=$ac_ct_CC
 
... ... fi
5571 5744 fi fi
5572 5745
5573 5746
5574 test -z "$CC" && { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
5575 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
5747 test -z "$CC" && { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
5748 printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
5576 5749 as_fn_error $? "no acceptable C compiler found in \$PATH as_fn_error $? "no acceptable C compiler found in \$PATH
5577 5750 See 'config.log' for more details" "$LINENO" 5; } See 'config.log' for more details" "$LINENO" 5; }
5578 5751
5579 5752 # Provide some information about the compiler. # Provide some information about the compiler.
5580 printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
5753 printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
5581 5754 set X $ac_compile set X $ac_compile
5582 5755 ac_compiler=$2 ac_compiler=$2
5583 5756 for ac_option in --version -v -V -qversion -version; do for ac_option in --version -v -V -qversion -version; do
 
... ... case "(($ac_try" in
5587 5760 *) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;;
5588 5761 esac esac
5589 5762 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
5590 printf "%s\n" "$ac_try_echo"; } >&5
5763 printf '%s\n' "$ac_try_echo"; } >&5
5591 5764 (eval "$ac_compiler $ac_option >&5") 2>conftest.err (eval "$ac_compiler $ac_option >&5") 2>conftest.err
5592 5765 ac_status=$? ac_status=$?
5593 5766 if test -s conftest.err; then if test -s conftest.err; then
 
... ... printf "%s\n" "$ac_try_echo"; } >&5
5597 5770 cat conftest.er1 >&5 cat conftest.er1 >&5
5598 5771 fi fi
5599 5772 rm -f conftest.er1 conftest.err rm -f conftest.er1 conftest.err
5600 printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
5773 printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
5601 5774 test $ac_status = 0; } test $ac_status = 0; }
5602 5775 done done
5603 5776
5604 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU C" >&5
5777 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU C" >&5
5605 5778 printf %s "checking whether the compiler supports GNU C... " >&6; } printf %s "checking whether the compiler supports GNU C... " >&6; }
5606 5779 if test ${ac_cv_c_compiler_gnu+y} if test ${ac_cv_c_compiler_gnu+y}
5607 5780 then : then :
 
... ... ac_cv_c_compiler_gnu=$ac_compiler_gnu
5633 5806 ;; ;;
5634 5807 esac esac
5635 5808 fi fi
5636 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
5637 printf "%s\n" "$ac_cv_c_compiler_gnu" >&6; }
5809 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
5810 printf '%s\n' "$ac_cv_c_compiler_gnu" >&6; }
5638 5811 ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_compiler_gnu=$ac_cv_c_compiler_gnu
5639 5812
5640 5813 if test $ac_compiler_gnu = yes; then if test $ac_compiler_gnu = yes; then
 
... ... else
5644 5817 fi fi
5645 5818 ac_test_CFLAGS=${CFLAGS+y} ac_test_CFLAGS=${CFLAGS+y}
5646 5819 ac_save_CFLAGS=$CFLAGS ac_save_CFLAGS=$CFLAGS
5647 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
5820 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
5648 5821 printf %s "checking whether $CC accepts -g... " >&6; } printf %s "checking whether $CC accepts -g... " >&6; }
5649 5822 if test ${ac_cv_prog_cc_g+y} if test ${ac_cv_prog_cc_g+y}
5650 5823 then : then :
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
5712 5885 ac_c_werror_flag=$ac_save_c_werror_flag ;; ac_c_werror_flag=$ac_save_c_werror_flag ;;
5713 5886 esac esac
5714 5887 fi fi
5715 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
5716 printf "%s\n" "$ac_cv_prog_cc_g" >&6; }
5888 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
5889 printf '%s\n' "$ac_cv_prog_cc_g" >&6; }
5717 5890 if test $ac_test_CFLAGS; then if test $ac_test_CFLAGS; then
5718 5891 CFLAGS=$ac_save_CFLAGS CFLAGS=$ac_save_CFLAGS
5719 5892 elif test $ac_cv_prog_cc_g = yes; then elif test $ac_cv_prog_cc_g = yes; then
 
... ... fi
5732 5905 ac_prog_cc_stdc=no ac_prog_cc_stdc=no
5733 5906 if test x$ac_prog_cc_stdc = xno if test x$ac_prog_cc_stdc = xno
5734 5907 then : then :
5735 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C11 features" >&5
5908 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C23 features" >&5
5909 printf %s "checking for $CC option to enable C23 features... " >&6; }
5910 if test ${ac_cv_prog_cc_c23+y}
5911 then :
5912 printf %s "(cached) " >&6
5913 else case e in #(
5914 e) ac_cv_prog_cc_c23=no
5915 ac_save_CC=$CC
5916 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5917 /* end confdefs.h. */
5918 $ac_c_conftest_c23_program
5919 _ACEOF
5920 for ac_arg in '' -std=gnu23
5921 do
5922 CC="$ac_save_CC $ac_arg"
5923 if ac_fn_c_try_compile "$LINENO"
5924 then :
5925 ac_cv_prog_cc_c23=$ac_arg
5926 fi
5927 rm -f core conftest.err conftest.$ac_objext conftest.beam
5928 test "x$ac_cv_prog_cc_c23" != "xno" && break
5929 done
5930 rm -f conftest.$ac_ext
5931 CC=$ac_save_CC ;;
5932 esac
5933 fi
5934
5935 if test "x$ac_cv_prog_cc_c23" = xno
5936 then :
5937 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
5938 printf '%s\n' "unsupported" >&6; }
5939 else case e in #(
5940 e) if test "x$ac_cv_prog_cc_c23" = x
5941 then :
5942 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
5943 printf '%s\n' "none needed" >&6; }
5944 else case e in #(
5945 e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c23" >&5
5946 printf '%s\n' "$ac_cv_prog_cc_c23" >&6; }
5947 CC="$CC $ac_cv_prog_cc_c23" ;;
5948 esac
5949 fi
5950 ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c23
5951 ac_prog_cc_stdc=c23 ;;
5952 esac
5953 fi
5954 fi
5955 if test x$ac_prog_cc_stdc = xno
5956 then :
5957 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C11 features" >&5
5736 5958 printf %s "checking for $CC option to enable C11 features... " >&6; } printf %s "checking for $CC option to enable C11 features... " >&6; }
5737 5959 if test ${ac_cv_prog_cc_c11+y} if test ${ac_cv_prog_cc_c11+y}
5738 5960 then : then :
 
... ... cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5744 5966 /* end confdefs.h. */ /* end confdefs.h. */
5745 5967 $ac_c_conftest_c11_program $ac_c_conftest_c11_program
5746 5968 _ACEOF _ACEOF
5747 for ac_arg in '' -std=gnu11
5969 for ac_arg in '' -std=gnu11 -std:c11
5748 5970 do do
5749 5971 CC="$ac_save_CC $ac_arg" CC="$ac_save_CC $ac_arg"
5750 5972 if ac_fn_c_try_compile "$LINENO" if ac_fn_c_try_compile "$LINENO"
 
... ... fi
5761 5983
5762 5984 if test "x$ac_cv_prog_cc_c11" = xno if test "x$ac_cv_prog_cc_c11" = xno
5763 5985 then : then :
5764 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
5765 printf "%s\n" "unsupported" >&6; }
5986 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
5987 printf '%s\n' "unsupported" >&6; }
5766 5988 else case e in #( else case e in #(
5767 5989 e) if test "x$ac_cv_prog_cc_c11" = x e) if test "x$ac_cv_prog_cc_c11" = x
5768 5990 then : then :
5769 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
5770 printf "%s\n" "none needed" >&6; }
5991 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
5992 printf '%s\n' "none needed" >&6; }
5771 5993 else case e in #( else case e in #(
5772 e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c11" >&5
5773 printf "%s\n" "$ac_cv_prog_cc_c11" >&6; }
5994 e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c11" >&5
5995 printf '%s\n' "$ac_cv_prog_cc_c11" >&6; }
5774 5996 CC="$CC $ac_cv_prog_cc_c11" ;; CC="$CC $ac_cv_prog_cc_c11" ;;
5775 5997 esac esac
5776 5998 fi fi
 
... ... fi
5781 6003 fi fi
5782 6004 if test x$ac_prog_cc_stdc = xno if test x$ac_prog_cc_stdc = xno
5783 6005 then : then :
5784 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C99 features" >&5
6006 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C99 features" >&5
5785 6007 printf %s "checking for $CC option to enable C99 features... " >&6; } printf %s "checking for $CC option to enable C99 features... " >&6; }
5786 6008 if test ${ac_cv_prog_cc_c99+y} if test ${ac_cv_prog_cc_c99+y}
5787 6009 then : then :
 
... ... fi
5810 6032
5811 6033 if test "x$ac_cv_prog_cc_c99" = xno if test "x$ac_cv_prog_cc_c99" = xno
5812 6034 then : then :
5813 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
5814 printf "%s\n" "unsupported" >&6; }
6035 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
6036 printf '%s\n' "unsupported" >&6; }
5815 6037 else case e in #( else case e in #(
5816 6038 e) if test "x$ac_cv_prog_cc_c99" = x e) if test "x$ac_cv_prog_cc_c99" = x
5817 6039 then : then :
5818 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
5819 printf "%s\n" "none needed" >&6; }
6040 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
6041 printf '%s\n' "none needed" >&6; }
5820 6042 else case e in #( else case e in #(
5821 e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5
5822 printf "%s\n" "$ac_cv_prog_cc_c99" >&6; }
6043 e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5
6044 printf '%s\n' "$ac_cv_prog_cc_c99" >&6; }
5823 6045 CC="$CC $ac_cv_prog_cc_c99" ;; CC="$CC $ac_cv_prog_cc_c99" ;;
5824 6046 esac esac
5825 6047 fi fi
 
... ... fi
5830 6052 fi fi
5831 6053 if test x$ac_prog_cc_stdc = xno if test x$ac_prog_cc_stdc = xno
5832 6054 then : then :
5833 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C89 features" >&5
6055 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C89 features" >&5
5834 6056 printf %s "checking for $CC option to enable C89 features... " >&6; } printf %s "checking for $CC option to enable C89 features... " >&6; }
5835 6057 if test ${ac_cv_prog_cc_c89+y} if test ${ac_cv_prog_cc_c89+y}
5836 6058 then : then :
 
... ... fi
5859 6081
5860 6082 if test "x$ac_cv_prog_cc_c89" = xno if test "x$ac_cv_prog_cc_c89" = xno
5861 6083 then : then :
5862 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
5863 printf "%s\n" "unsupported" >&6; }
6084 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
6085 printf '%s\n' "unsupported" >&6; }
5864 6086 else case e in #( else case e in #(
5865 6087 e) if test "x$ac_cv_prog_cc_c89" = x e) if test "x$ac_cv_prog_cc_c89" = x
5866 6088 then : then :
5867 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
5868 printf "%s\n" "none needed" >&6; }
6089 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
6090 printf '%s\n' "none needed" >&6; }
5869 6091 else case e in #( else case e in #(
5870 e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
5871 printf "%s\n" "$ac_cv_prog_cc_c89" >&6; }
6092 e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
6093 printf '%s\n' "$ac_cv_prog_cc_c89" >&6; }
5872 6094 CC="$CC $ac_cv_prog_cc_c89" ;; CC="$CC $ac_cv_prog_cc_c89" ;;
5873 6095 esac esac
5874 6096 fi fi
 
... ... ac_cpp='$CPP $CPPFLAGS'
5890 6112 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
5891 6113 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
5892 6114 ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_compiler_gnu=$ac_cv_c_compiler_gnu
5893 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5
6115 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5
5894 6116 printf %s "checking whether $CC understands -c and -o together... " >&6; } printf %s "checking whether $CC understands -c and -o together... " >&6; }
5895 6117 if test ${am_cv_prog_cc_c_o+y} if test ${am_cv_prog_cc_c_o+y}
5896 6118 then : then :
 
... ... _ACEOF
5932 6154 unset am_i ;; unset am_i ;;
5933 6155 esac esac
5934 6156 fi fi
5935 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5
5936 printf "%s\n" "$am_cv_prog_cc_c_o" >&6; }
6157 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5
6158 printf '%s\n' "$am_cv_prog_cc_c_o" >&6; }
5937 6159 if test "$am_cv_prog_cc_c_o" != yes; then if test "$am_cv_prog_cc_c_o" != yes; then
5938 6160 # Losing compiler, so override with the script. # Losing compiler, so override with the script.
5939 6161 # FIXME: It is wrong to rewrite CC. # FIXME: It is wrong to rewrite CC.
 
... ... ac_compiler_gnu=$ac_cv_c_compiler_gnu
5951 6173
5952 6174 depcc="$CC" am_compiler_list= depcc="$CC" am_compiler_list=
5953 6175
5954 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
6176 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
5955 6177 printf %s "checking dependency style of $depcc... " >&6; } printf %s "checking dependency style of $depcc... " >&6; }
5956 6178 if test ${am_cv_CC_dependencies_compiler_type+y} if test ${am_cv_CC_dependencies_compiler_type+y}
5957 6179 then : then :
 
... ... fi
6064 6286 ;; ;;
6065 6287 esac esac
6066 6288 fi fi
6067 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5
6068 printf "%s\n" "$am_cv_CC_dependencies_compiler_type" >&6; }
6289 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5
6290 printf '%s\n' "$am_cv_CC_dependencies_compiler_type" >&6; }
6069 6291 CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
6070 6292
6071 6293 if if
 
... ... ac_compiler_gnu=$ac_cv_c_compiler_gnu
6098 6320 $SHELL "${ac_aux_dir}config.sub" sun4 >/dev/null 2>&1 || $SHELL "${ac_aux_dir}config.sub" sun4 >/dev/null 2>&1 ||
6099 6321 as_fn_error $? "cannot run $SHELL ${ac_aux_dir}config.sub" "$LINENO" 5 as_fn_error $? "cannot run $SHELL ${ac_aux_dir}config.sub" "$LINENO" 5
6100 6322
6101 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
6323 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
6102 6324 printf %s "checking build system type... " >&6; } printf %s "checking build system type... " >&6; }
6103 6325 if test ${ac_cv_build+y} if test ${ac_cv_build+y}
6104 6326 then : then :
 
... ... ac_cv_build=`$SHELL "${ac_aux_dir}config.sub" $ac_build_alias` ||
6114 6336 ;; ;;
6115 6337 esac esac
6116 6338 fi fi
6117 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
6118 printf "%s\n" "$ac_cv_build" >&6; }
6339 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
6340 printf '%s\n' "$ac_cv_build" >&6; }
6119 6341 case $ac_cv_build in case $ac_cv_build in
6120 6342 *-*-*) ;; *-*-*) ;;
6121 6343 *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
 
... ... shift; shift
6131 6353 # except with old shells: # except with old shells:
6132 6354 build_os=$* build_os=$*
6133 6355 IFS=$ac_save_IFS IFS=$ac_save_IFS
6134 case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
6356 case $build_os in *\ *) build_os=`printf '%s\n' "$build_os" | sed 's/ /-/g'`;; esac
6135 6357
6136 6358
6137 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
6359 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
6138 6360 printf %s "checking host system type... " >&6; } printf %s "checking host system type... " >&6; }
6139 6361 if test ${ac_cv_host+y} if test ${ac_cv_host+y}
6140 6362 then : then :
 
... ... fi
6149 6371 ;; ;;
6150 6372 esac esac
6151 6373 fi fi
6152 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5
6153 printf "%s\n" "$ac_cv_host" >&6; }
6374 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5
6375 printf '%s\n' "$ac_cv_host" >&6; }
6154 6376 case $ac_cv_host in case $ac_cv_host in
6155 6377 *-*-*) ;; *-*-*) ;;
6156 6378 *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
 
... ... shift; shift
6166 6388 # except with old shells: # except with old shells:
6167 6389 host_os=$* host_os=$*
6168 6390 IFS=$ac_save_IFS IFS=$ac_save_IFS
6169 case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
6391 case $host_os in *\ *) host_os=`printf '%s\n' "$host_os" | sed 's/ /-/g'`;; esac
6170 6392
6171 6393
6172 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking host" >&5
6394 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking host" >&5
6173 6395 printf %s "checking host... " >&6; } printf %s "checking host... " >&6; }
6174 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $host" >&5
6175 printf "%s\n" "$host" >&6; }
6396 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $host" >&5
6397 printf '%s\n' "$host" >&6; }
6176 6398 case "$host_os" in case "$host_os" in
6177 6399 macos* | darwin*) macos* | darwin*)
6178 6400 OSX_HOST=1 OSX_HOST=1
 
... ... TESTS_CFLAGS="$CFLAGS"
6186 6408
6187 6409
6188 6410
6189 printf "%s\n" "#define _XOPEN_SOURCE_EXTENDED 1" >>confdefs.h
6411 printf '%s\n' "#define _XOPEN_SOURCE_EXTENDED 1" >>confdefs.h
6190 6412
6191 6413
6192 6414
6193 printf "%s\n" "#define UTF8PROC_STATIC 1" >>confdefs.h
6415 printf '%s\n' "#define UTF8PROC_STATIC 1" >>confdefs.h
6194 6416
6195 6417
6196 6418 for ac_header in alloca.h for ac_header in alloca.h
 
... ... do :
6198 6420 ac_fn_c_check_header_compile "$LINENO" "alloca.h" "ac_cv_header_alloca_h" "$ac_includes_default" ac_fn_c_check_header_compile "$LINENO" "alloca.h" "ac_cv_header_alloca_h" "$ac_includes_default"
6199 6421 if test "x$ac_cv_header_alloca_h" = xyes if test "x$ac_cv_header_alloca_h" = xyes
6200 6422 then : then :
6201 printf "%s\n" "#define HAVE_ALLOCA_H 1" >>confdefs.h
6423 printf '%s\n' "#define HAVE_ALLOCA_H 1" >>confdefs.h
6202 6424
6203 printf "%s\n" "#define HAVE_ALLOCA_H 1" >>confdefs.h
6425 printf '%s\n' "#define HAVE_ALLOCA_H 1" >>confdefs.h
6204 6426
6205 6427 fi fi
6206 6428
 
... ... do :
6210 6432 ac_fn_c_check_header_compile "$LINENO" "malloc.h" "ac_cv_header_malloc_h" "$ac_includes_default" ac_fn_c_check_header_compile "$LINENO" "malloc.h" "ac_cv_header_malloc_h" "$ac_includes_default"
6211 6433 if test "x$ac_cv_header_malloc_h" = xyes if test "x$ac_cv_header_malloc_h" = xyes
6212 6434 then : then :
6213 printf "%s\n" "#define HAVE_MALLOC_H 1" >>confdefs.h
6435 printf '%s\n' "#define HAVE_MALLOC_H 1" >>confdefs.h
6214 6436
6215 printf "%s\n" "#define HAVE_MALLOC_H 1" >>confdefs.h
6437 printf '%s\n' "#define HAVE_MALLOC_H 1" >>confdefs.h
6216 6438
6217 6439 fi fi
6218 6440
 
... ... do :
6312 6534 ac_fn_c_check_header_compile "$LINENO" "mntent.h" "ac_cv_header_mntent_h" "$ac_includes_default" ac_fn_c_check_header_compile "$LINENO" "mntent.h" "ac_cv_header_mntent_h" "$ac_includes_default"
6313 6535 if test "x$ac_cv_header_mntent_h" = xyes if test "x$ac_cv_header_mntent_h" = xyes
6314 6536 then : then :
6315 printf "%s\n" "#define HAVE_MNTENT_H 1" >>confdefs.h
6537 printf '%s\n' "#define HAVE_MNTENT_H 1" >>confdefs.h
6316 6538 HAVE_MNTENT_H=1 HAVE_MNTENT_H=1
6317 6539 fi fi
6318 6540
 
... ... ac_fn_c_check_header_compile "$LINENO" "sys/sysmacros.h" "ac_cv_header_sys_sysma
6486 6708 " "
6487 6709 if test "x$ac_cv_header_sys_sysmacros_h" = xyes if test "x$ac_cv_header_sys_sysmacros_h" = xyes
6488 6710 then : then :
6489 printf "%s\n" "#define HAVE_SYS_SYSMACROS_H 1" >>confdefs.h
6711 printf '%s\n' "#define HAVE_SYS_SYSMACROS_H 1" >>confdefs.h
6490 6712
6491 6713 fi fi
6492 6714 ac_fn_c_check_header_compile "$LINENO" "sys/param.h" "ac_cv_header_sys_param_h" "#if HAVE_SYS_PARAM_H ac_fn_c_check_header_compile "$LINENO" "sys/param.h" "ac_cv_header_sys_param_h" "#if HAVE_SYS_PARAM_H
 
... ... ac_fn_c_check_header_compile "$LINENO" "sys/param.h" "ac_cv_header_sys_param_h"
6496 6718 " "
6497 6719 if test "x$ac_cv_header_sys_param_h" = xyes if test "x$ac_cv_header_sys_param_h" = xyes
6498 6720 then : then :
6499 printf "%s\n" "#define HAVE_SYS_PARAM_H 1" >>confdefs.h
6721 printf '%s\n' "#define HAVE_SYS_PARAM_H 1" >>confdefs.h
6500 6722
6501 6723 fi fi
6502 6724 ac_fn_c_check_header_compile "$LINENO" "sys/user.h" "ac_cv_header_sys_user_h" "#if HAVE_SYS_PARAM_H ac_fn_c_check_header_compile "$LINENO" "sys/user.h" "ac_cv_header_sys_user_h" "#if HAVE_SYS_PARAM_H
 
... ... ac_fn_c_check_header_compile "$LINENO" "sys/user.h" "ac_cv_header_sys_user_h" "#
6506 6728 " "
6507 6729 if test "x$ac_cv_header_sys_user_h" = xyes if test "x$ac_cv_header_sys_user_h" = xyes
6508 6730 then : then :
6509 printf "%s\n" "#define HAVE_SYS_USER_H 1" >>confdefs.h
6731 printf '%s\n' "#define HAVE_SYS_USER_H 1" >>confdefs.h
6510 6732
6511 6733 fi fi
6512 6734 ac_fn_c_check_header_compile "$LINENO" "linux/binfmts.h" "ac_cv_header_linux_binfmts_h" "#if HAVE_SYS_PARAM_H ac_fn_c_check_header_compile "$LINENO" "linux/binfmts.h" "ac_cv_header_linux_binfmts_h" "#if HAVE_SYS_PARAM_H
 
... ... ac_fn_c_check_header_compile "$LINENO" "linux/binfmts.h" "ac_cv_header_linux_bin
6516 6738 " "
6517 6739 if test "x$ac_cv_header_linux_binfmts_h" = xyes if test "x$ac_cv_header_linux_binfmts_h" = xyes
6518 6740 then : then :
6519 printf "%s\n" "#define HAVE_LINUX_BINFMTS_H 1" >>confdefs.h
6741 printf '%s\n' "#define HAVE_LINUX_BINFMTS_H 1" >>confdefs.h
6520 6742
6521 6743 fi fi
6522 6744
 
... ... _ACEOF
6535 6757 if ac_fn_c_try_compile "$LINENO" if ac_fn_c_try_compile "$LINENO"
6536 6758 then : then :
6537 6759
6538 printf "%s\n" "#define HAVE_MAX_ARG_STRLEN 1" >>confdefs.h
6760 printf '%s\n' "#define HAVE_MAX_ARG_STRLEN 1" >>confdefs.h
6539 6761
6540 6762 fi fi
6541 6763 rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
 
... ... else
6595 6817 if test "x$ac_cv_func_getmntinfo" = xyes if test "x$ac_cv_func_getmntinfo" = xyes
6596 6818 then : then :
6597 6819
6598 printf "%s\n" "#define HAVE_GETMNTINFO 1" >>confdefs.h
6820 printf '%s\n' "#define HAVE_GETMNTINFO 1" >>confdefs.h
6599 6821
6600 6822 fi fi
6601 6823
 
... ... ac_fn_c_check_func "$LINENO" "fdatasync" "ac_cv_func_fdatasync"
6731 6953 if test "x$ac_cv_func_fdatasync" = xyes if test "x$ac_cv_func_fdatasync" = xyes
6732 6954 then : then :
6733 6955
6734 printf "%s\n" "#define HAVE_FDATASYNC 1" >>confdefs.h
6956 printf '%s\n' "#define HAVE_FDATASYNC 1" >>confdefs.h
6735 6957
6736 6958 fi fi
6737 6959
 
... ... ac_fn_c_check_func "$LINENO" "strcasestr" "ac_cv_func_strcasestr"
7405 7627 if test "x$ac_cv_func_strcasestr" = xyes if test "x$ac_cv_func_strcasestr" = xyes
7406 7628 then : then :
7407 7629
7408 printf "%s\n" "#define HAVE_STRCASESTR 1" >>confdefs.h
7630 printf '%s\n' "#define HAVE_STRCASESTR 1" >>confdefs.h
7409 7631
7410 7632 fi fi
7411 7633
 
... ... ac_fn_c_check_func "$LINENO" "strverscmp" "ac_cv_func_strverscmp"
7584 7806 if test "x$ac_cv_func_strverscmp" = xyes if test "x$ac_cv_func_strverscmp" = xyes
7585 7807 then : then :
7586 7808
7587 printf "%s\n" "#define HAVE_STRVERSCMP_FUNC 1" >>confdefs.h
7809 printf '%s\n' "#define HAVE_STRVERSCMP_FUNC 1" >>confdefs.h
7588 7810
7589 7811 fi fi
7590 7812
 
... ... ac_fn_c_check_func "$LINENO" "wcwidth" "ac_cv_func_wcwidth"
7790 8012 if test "x$ac_cv_func_wcwidth" = xyes if test "x$ac_cv_func_wcwidth" = xyes
7791 8013 then : then :
7792 8014
7793 printf "%s\n" "#define HAVE_WCWIDTH 1" >>confdefs.h
8015 printf '%s\n' "#define HAVE_WCWIDTH 1" >>confdefs.h
7794 8016
7795 8017 fi fi
7796 8018
 
... ... fi
7798 8020 ac_fn_c_check_func "$LINENO" "futimens" "ac_cv_func_futimens" ac_fn_c_check_func "$LINENO" "futimens" "ac_cv_func_futimens"
7799 8021 if test "x$ac_cv_func_futimens" = xyes if test "x$ac_cv_func_futimens" = xyes
7800 8022 then : then :
7801 printf "%s\n" "#define HAVE_FUTIMENS 1" >>confdefs.h
8023 printf '%s\n' "#define HAVE_FUTIMENS 1" >>confdefs.h
7802 8024
7803 8025 fi fi
7804 8026
7805 8027 ac_fn_c_check_func "$LINENO" "random" "ac_cv_func_random" ac_fn_c_check_func "$LINENO" "random" "ac_cv_func_random"
7806 8028 if test "x$ac_cv_func_random" = xyes if test "x$ac_cv_func_random" = xyes
7807 8029 then : then :
7808 printf "%s\n" "#define HAVE_RANDOM 1" >>confdefs.h
8030 printf '%s\n' "#define HAVE_RANDOM 1" >>confdefs.h
7809 8031
7810 8032 fi fi
7811 8033 ac_fn_c_check_func "$LINENO" "srandom" "ac_cv_func_srandom" ac_fn_c_check_func "$LINENO" "srandom" "ac_cv_func_srandom"
7812 8034 if test "x$ac_cv_func_srandom" = xyes if test "x$ac_cv_func_srandom" = xyes
7813 8035 then : then :
7814 printf "%s\n" "#define HAVE_SRANDOM 1" >>confdefs.h
8036 printf '%s\n' "#define HAVE_SRANDOM 1" >>confdefs.h
7815 8037
7816 8038 fi fi
7817 8039
7818 8040 ac_fn_c_check_func "$LINENO" "reallocarray" "ac_cv_func_reallocarray" ac_fn_c_check_func "$LINENO" "reallocarray" "ac_cv_func_reallocarray"
7819 8041 if test "x$ac_cv_func_reallocarray" = xyes if test "x$ac_cv_func_reallocarray" = xyes
7820 8042 then : then :
7821 printf "%s\n" "#define HAVE_REALLOCARRAY 1" >>confdefs.h
8043 printf '%s\n' "#define HAVE_REALLOCARRAY 1" >>confdefs.h
7822 8044
7823 8045 fi fi
7824 8046
 
... ... fi
7853 8075
7854 8076 fi fi
7855 8077
7856 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC options needed to detect all undeclared functions" >&5
7857 printf %s "checking for $CC options needed to detect all undeclared functions... " >&6; }
8078 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $CC options to detect undeclared functions" >&5
8079 printf %s "checking for $CC options to detect undeclared functions... " >&6; }
7858 8080 if test ${ac_cv_c_undeclared_builtin_options+y} if test ${ac_cv_c_undeclared_builtin_options+y}
7859 8081 then : then :
7860 8082 printf %s "(cached) " >&6 printf %s "(cached) " >&6
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
7922 8144 ;; ;;
7923 8145 esac esac
7924 8146 fi fi
7925 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_undeclared_builtin_options" >&5
7926 printf "%s\n" "$ac_cv_c_undeclared_builtin_options" >&6; }
8147 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_undeclared_builtin_options" >&5
8148 printf '%s\n' "$ac_cv_c_undeclared_builtin_options" >&6; }
7927 8149 case $ac_cv_c_undeclared_builtin_options in #( case $ac_cv_c_undeclared_builtin_options in #(
7928 8150 'cannot detect') : 'cannot detect') :
7929 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
7930 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
8151 { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
8152 printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
7931 8153 as_fn_error $? "cannot make $CC report undeclared builtins as_fn_error $? "cannot make $CC report undeclared builtins
7932 8154 See 'config.log' for more details" "$LINENO" 5; } ;; #( See 'config.log' for more details" "$LINENO" 5; } ;; #(
7933 8155 'none needed') : 'none needed') :
 
... ... See 'config.log' for more details" "$LINENO" 5; } ;; #(
7936 8158 ac_c_undeclared_builtin_options=$ac_cv_c_undeclared_builtin_options ;; ac_c_undeclared_builtin_options=$ac_cv_c_undeclared_builtin_options ;;
7937 8159 esac esac
7938 8160
8161 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $CC options to ignore future-version functions" >&5
8162 printf %s "checking for $CC options to ignore future-version functions... " >&6; }
8163 if test ${ac_cv_c_future_darwin_options+y}
8164 then :
8165 printf %s "(cached) " >&6
8166 else case e in #(
8167 e) ac_compile_saved="$ac_compile"
8168 ac_compile="$ac_compile -Werror=unguarded-availability-new"
8169 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
8170 /* end confdefs.h. */
8171 #if ! (defined __APPLE__ && defined __MACH__)
8172 #error "-Werror=unguarded-availability-new not needed here"
8173 #endif
8174
8175 int
8176 main (void)
8177 {
8178
8179 ;
8180 return 0;
8181 }
8182 _ACEOF
8183 if ac_fn_c_try_compile "$LINENO"
8184 then :
8185 ac_cv_c_future_darwin_options='-Werror=unguarded-availability-new'
8186 else case e in #(
8187 e) ac_cv_c_future_darwin_options='none needed' ;;
8188 esac
8189 fi
8190 rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
8191 ac_compile="$ac_compile_saved"
8192 ;;
8193 esac
8194 fi
8195 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_future_darwin_options" >&5
8196 printf '%s\n' "$ac_cv_c_future_darwin_options" >&6; }
8197 case $ac_cv_c_future_darwin_options in #(
8198 'none needed') :
8199 ac_c_future_darwin_options='' ;; #(
8200 *) :
8201 ac_c_future_darwin_options=$ac_cv_c_future_darwin_options ;;
8202 esac
8203
7939 8204 ac_fn_check_decl "$LINENO" "_PC_CASE_SENSITIVE" "ac_cv_have_decl__PC_CASE_SENSITIVE" "#include <unistd.h> ac_fn_check_decl "$LINENO" "_PC_CASE_SENSITIVE" "ac_cv_have_decl__PC_CASE_SENSITIVE" "#include <unistd.h>
7940 " "$ac_c_undeclared_builtin_options" "CFLAGS"
8205 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
7941 8206 if test "x$ac_cv_have_decl__PC_CASE_SENSITIVE" = xyes if test "x$ac_cv_have_decl__PC_CASE_SENSITIVE" = xyes
7942 8207 then : then :
7943 8208 ac_have_decl=1 ac_have_decl=1
 
... ... else case e in #(
7945 8210 e) ac_have_decl=0 ;; e) ac_have_decl=0 ;;
7946 8211 esac esac
7947 8212 fi fi
7948 printf "%s\n" "#define HAVE_DECL__PC_CASE_SENSITIVE $ac_have_decl" >>confdefs.h
8213 printf '%s\n' "#define HAVE_DECL__PC_CASE_SENSITIVE $ac_have_decl" >>confdefs.h
7949 8214
7950 8215
7951 8216 ac_fn_c_check_header_compile "$LINENO" "regex.h" "ac_cv_header_regex_h" "$ac_includes_default" ac_fn_c_check_header_compile "$LINENO" "regex.h" "ac_cv_header_regex_h" "$ac_includes_default"
 
... ... esac
8004 8269 fi fi
8005 8270
8006 8271 ac_fn_check_decl "$LINENO" "REG_EXTENDED" "ac_cv_have_decl_REG_EXTENDED" "#include <regex.h> ac_fn_check_decl "$LINENO" "REG_EXTENDED" "ac_cv_have_decl_REG_EXTENDED" "#include <regex.h>
8007 " "$ac_c_undeclared_builtin_options" "CFLAGS"
8272 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
8008 8273 if test "x$ac_cv_have_decl_REG_EXTENDED" = xyes if test "x$ac_cv_have_decl_REG_EXTENDED" = xyes
8009 8274 then : then :
8010 8275
 
... ... else case e in #(
8013 8278 esac esac
8014 8279 fi fi
8015 8280 ac_fn_check_decl "$LINENO" "REG_ICASE" "ac_cv_have_decl_REG_ICASE" "#include <regex.h> ac_fn_check_decl "$LINENO" "REG_ICASE" "ac_cv_have_decl_REG_ICASE" "#include <regex.h>
8016 " "$ac_c_undeclared_builtin_options" "CFLAGS"
8281 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
8017 8282 if test "x$ac_cv_have_decl_REG_ICASE" = xyes if test "x$ac_cv_have_decl_REG_ICASE" = xyes
8018 8283 then : then :
8019 8284
 
... ... else case e in #(
8022 8287 esac esac
8023 8288 fi fi
8024 8289 ac_fn_check_decl "$LINENO" "REG_NOMATCH" "ac_cv_have_decl_REG_NOMATCH" "#include <regex.h> ac_fn_check_decl "$LINENO" "REG_NOMATCH" "ac_cv_have_decl_REG_NOMATCH" "#include <regex.h>
8025 " "$ac_c_undeclared_builtin_options" "CFLAGS"
8290 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
8026 8291 if test "x$ac_cv_have_decl_REG_NOMATCH" = xyes if test "x$ac_cv_have_decl_REG_NOMATCH" = xyes
8027 8292 then : then :
8028 8293
 
... ... ac_fn_c_check_member "$LINENO" "struct stat" "st_mtim" "ac_cv_member_struct_stat
8040 8305 if test "x$ac_cv_member_struct_stat_st_mtim" = xyes if test "x$ac_cv_member_struct_stat_st_mtim" = xyes
8041 8306 then : then :
8042 8307
8043 printf "%s\n" "#define HAVE_STRUCT_STAT_ST_MTIM 1" >>confdefs.h
8308 printf '%s\n' "#define HAVE_STRUCT_STAT_ST_MTIM 1" >>confdefs.h
8044 8309
8045 8310
8046 8311 fi fi
 
... ... ac_fn_c_check_member "$LINENO" "struct dirent" "d_type" "ac_cv_member_struct_dir
8052 8317 if test "x$ac_cv_member_struct_dirent_d_type" = xyes if test "x$ac_cv_member_struct_dirent_d_type" = xyes
8053 8318 then : then :
8054 8319
8055 printf "%s\n" "#define HAVE_STRUCT_DIRENT_D_TYPE 1" >>confdefs.h
8320 printf '%s\n' "#define HAVE_STRUCT_DIRENT_D_TYPE 1" >>confdefs.h
8056 8321
8057 8322
8058 8323 fi fi
 
... ... then :
8064 8329 fi fi
8065 8330 if test "$enable_largefile,$enable_year2038" != no,no if test "$enable_largefile,$enable_year2038" != no,no
8066 8331 then : then :
8067 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable large file support" >&5
8068 printf %s "checking for $CC option to enable large file support... " >&6; }
8332 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $CC option to support large files" >&5
8333 printf %s "checking for $CC option to support large files... " >&6; }
8069 8334 if test ${ac_cv_sys_largefile_opts+y} if test ${ac_cv_sys_largefile_opts+y}
8070 8335 then : then :
8071 8336 printf %s "(cached) " >&6 printf %s "(cached) " >&6
8072 8337 else case e in #( else case e in #(
8073 e) ac_save_CC="$CC"
8338 e) ac_save_CPPFLAGS=$CPPFLAGS
8074 8339 ac_opt_found=no ac_opt_found=no
8075 for ac_opt in "none needed" "-D_FILE_OFFSET_BITS=64" "-D_LARGE_FILES=1" "-n32"; do
8340 for ac_opt in "none needed" "-D_FILE_OFFSET_BITS=64" "-D_LARGE_FILES=1"; do
8076 8341 if test x"$ac_opt" != x"none needed" if test x"$ac_opt" != x"none needed"
8077 8342 then : then :
8078 CC="$ac_save_CC $ac_opt"
8343 CPPFLAGS="$ac_save_CPPFLAGS $ac_opt"
8079 8344 fi fi
8080 8345 cat confdefs.h - <<_ACEOF >conftest.$ac_ext cat confdefs.h - <<_ACEOF >conftest.$ac_ext
8081 8346 /* end confdefs.h. */ /* end confdefs.h. */
 
... ... then :
8104 8369 if test x"$ac_opt" = x"none needed" if test x"$ac_opt" = x"none needed"
8105 8370 then : then :
8106 8371 # GNU/Linux s390x and alpha need _FILE_OFFSET_BITS=64 for wide ino_t. # GNU/Linux s390x and alpha need _FILE_OFFSET_BITS=64 for wide ino_t.
8107 CC="$CC -DFTYPE=ino_t"
8372 CPPFLAGS="$CPPFLAGS -DFTYPE=ino_t"
8108 8373 if ac_fn_c_try_compile "$LINENO" if ac_fn_c_try_compile "$LINENO"
8109 8374 then : then :
8110 8375
8111 8376 else case e in #( else case e in #(
8112 e) CC="$CC -D_FILE_OFFSET_BITS=64"
8377 e) CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=64"
8113 8378 if ac_fn_c_try_compile "$LINENO" if ac_fn_c_try_compile "$LINENO"
8114 8379 then : then :
8115 8380 ac_opt='-D_FILE_OFFSET_BITS=64' ac_opt='-D_FILE_OFFSET_BITS=64'
 
... ... fi
8125 8390 rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
8126 8391 test $ac_opt_found = no || break test $ac_opt_found = no || break
8127 8392 done done
8128 CC="$ac_save_CC"
8393 CPPFLAGS=$ac_save_CPPFLAGS
8129 8394
8130 8395 test $ac_opt_found = yes || ac_cv_sys_largefile_opts="support not detected" ;; test $ac_opt_found = yes || ac_cv_sys_largefile_opts="support not detected" ;;
8131 8396 esac esac
8132 8397 fi fi
8133 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_opts" >&5
8134 printf "%s\n" "$ac_cv_sys_largefile_opts" >&6; }
8398 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_opts" >&5
8399 printf '%s\n' "$ac_cv_sys_largefile_opts" >&6; }
8135 8400
8136 8401 ac_have_largefile=yes ac_have_largefile=yes
8137 8402 case $ac_cv_sys_largefile_opts in #( case $ac_cv_sys_largefile_opts in #(
 
... ... case $ac_cv_sys_largefile_opts in #(
8143 8408 ac_have_largefile=no ;; #( ac_have_largefile=no ;; #(
8144 8409 "-D_FILE_OFFSET_BITS=64") : "-D_FILE_OFFSET_BITS=64") :
8145 8410
8146 printf "%s\n" "#define _FILE_OFFSET_BITS 64" >>confdefs.h
8411 printf '%s\n' "#define _FILE_OFFSET_BITS 64" >>confdefs.h
8147 8412 ;; #( ;; #(
8148 8413 "-D_LARGE_FILES=1") : "-D_LARGE_FILES=1") :
8149 8414
8150 printf "%s\n" "#define _LARGE_FILES 1" >>confdefs.h
8415 printf '%s\n' "#define _LARGE_FILES 1" >>confdefs.h
8151 8416 ;; #( ;; #(
8152 "-n32") :
8153 CC="$CC -n32" ;; #(
8154 8417 *) : *) :
8155 8418 as_fn_error $? "internal error: bad value for \$ac_cv_sys_largefile_opts" "$LINENO" 5 ;; as_fn_error $? "internal error: bad value for \$ac_cv_sys_largefile_opts" "$LINENO" 5 ;;
8156 8419 esac esac
8157 8420
8158 8421 if test "$enable_year2038" != no if test "$enable_year2038" != no
8159 8422 then : then :
8160 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option for timestamps after 2038" >&5
8161 printf %s "checking for $CC option for timestamps after 2038... " >&6; }
8423 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $CC option to support timestamps after 2038" >&5
8424 printf %s "checking for $CC option to support timestamps after 2038... " >&6; }
8162 8425 if test ${ac_cv_sys_year2038_opts+y} if test ${ac_cv_sys_year2038_opts+y}
8163 8426 then : then :
8164 8427 printf %s "(cached) " >&6 printf %s "(cached) " >&6
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
8201 8464 test $ac_opt_found = yes || ac_cv_sys_year2038_opts="support not detected" ;; test $ac_opt_found = yes || ac_cv_sys_year2038_opts="support not detected" ;;
8202 8465 esac esac
8203 8466 fi fi
8204 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_year2038_opts" >&5
8205 printf "%s\n" "$ac_cv_sys_year2038_opts" >&6; }
8467 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_year2038_opts" >&5
8468 printf '%s\n' "$ac_cv_sys_year2038_opts" >&6; }
8206 8469
8207 8470 ac_have_year2038=yes ac_have_year2038=yes
8208 8471 case $ac_cv_sys_year2038_opts in #( case $ac_cv_sys_year2038_opts in #(
 
... ... case $ac_cv_sys_year2038_opts in #(
8212 8475 ac_have_year2038=no ;; #( ac_have_year2038=no ;; #(
8213 8476 "-D_TIME_BITS=64") : "-D_TIME_BITS=64") :
8214 8477
8215 printf "%s\n" "#define _TIME_BITS 64" >>confdefs.h
8478 printf '%s\n' "#define _TIME_BITS 64" >>confdefs.h
8216 8479 ;; #( ;; #(
8217 8480 "-D__MINGW_USE_VC2005_COMPAT") : "-D__MINGW_USE_VC2005_COMPAT") :
8218 8481
8219 printf "%s\n" "#define __MINGW_USE_VC2005_COMPAT 1" >>confdefs.h
8482 printf '%s\n' "#define __MINGW_USE_VC2005_COMPAT 1" >>confdefs.h
8220 8483 ;; #( ;; #(
8221 8484 "-U_USE_32_BIT_TIME_T"*) : "-U_USE_32_BIT_TIME_T"*) :
8222 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
8223 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
8485 { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
8486 printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
8224 8487 as_fn_error $? "the 'time_t' type is currently forced to be 32-bit. It as_fn_error $? "the 'time_t' type is currently forced to be 32-bit. It
8225 8488 will stop working after mid-January 2038. Remove will stop working after mid-January 2038. Remove
8226 8489 _USE_32BIT_TIME_T from the compiler flags. _USE_32BIT_TIME_T from the compiler flags.
 
... ... esac
8232 8495 fi fi
8233 8496
8234 8497 fi fi
8235 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for declarations of fseeko and ftello" >&5
8498 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for declarations of fseeko and ftello" >&5
8236 8499 printf %s "checking for declarations of fseeko and ftello... " >&6; } printf %s "checking for declarations of fseeko and ftello... " >&6; }
8237 8500 if test ${ac_cv_func_fseeko_ftello+y} if test ${ac_cv_func_fseeko_ftello+y}
8238 8501 then : then :
 
... ... fi
8311 8574 rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
8312 8575 esac esac
8313 8576 fi fi
8314 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_fseeko_ftello" >&5
8315 printf "%s\n" "$ac_cv_func_fseeko_ftello" >&6; }
8577 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_fseeko_ftello" >&5
8578 printf '%s\n' "$ac_cv_func_fseeko_ftello" >&6; }
8316 8579 if test "$ac_cv_func_fseeko_ftello" != no if test "$ac_cv_func_fseeko_ftello" != no
8317 8580 then : then :
8318 8581
8319 printf "%s\n" "#define HAVE_FSEEKO 1" >>confdefs.h
8582 printf '%s\n' "#define HAVE_FSEEKO 1" >>confdefs.h
8320 8583
8321 8584 fi fi
8322 8585 if test "$ac_cv_func_fseeko_ftello" = "need _LARGEFILE_SOURCE" if test "$ac_cv_func_fseeko_ftello" = "need _LARGEFILE_SOURCE"
8323 8586 then : then :
8324 8587
8325 printf "%s\n" "#define _LARGEFILE_SOURCE 1" >>confdefs.h
8588 printf '%s\n' "#define _LARGEFILE_SOURCE 1" >>confdefs.h
8326 8589
8327 8590 fi fi
8328 8591
 
... ... then :
8332 8595
8333 8596 else case e in #( else case e in #(
8334 8597 e) e)
8335 printf "%s\n" "#define off_t long int" >>confdefs.h
8598 printf '%s\n' "#define off_t long int" >>confdefs.h
8336 8599 ;; ;;
8337 8600 esac esac
8338 8601 fi fi
 
... ... _ACEOF
8354 8617 if ac_fn_c_try_compile "$LINENO" if ac_fn_c_try_compile "$LINENO"
8355 8618 then : then :
8356 8619
8357 printf "%s\n" "#define HAVE_CONSISTENT_TIMESPEC 1" >>confdefs.h
8620 printf '%s\n' "#define HAVE_CONSISTENT_TIMESPEC 1" >>confdefs.h
8358 8621
8359 8622 fi fi
8360 8623 rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
 
... ... fi
8363 8626
8364 8627 # Extract the first word of "file", so it can be a program name with args. # Extract the first word of "file", so it can be a program name with args.
8365 8628 set dummy file; ac_word=$2 set dummy file; ac_word=$2
8366 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8629 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8367 8630 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
8368 8631 if test ${ac_cv_prog_HAVE_FILE_PROG+y} if test ${ac_cv_prog_HAVE_FILE_PROG+y}
8369 8632 then : then :
 
... ... do
8384 8647 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
8385 8648 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
8386 8649 ac_cv_prog_HAVE_FILE_PROG="1" ac_cv_prog_HAVE_FILE_PROG="1"
8387 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
8650 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
8388 8651 break 2 break 2
8389 8652 fi fi
8390 8653 done done
 
... ... esac
8396 8659 fi fi
8397 8660 HAVE_FILE_PROG=$ac_cv_prog_HAVE_FILE_PROG HAVE_FILE_PROG=$ac_cv_prog_HAVE_FILE_PROG
8398 8661 if test -n "$HAVE_FILE_PROG"; then if test -n "$HAVE_FILE_PROG"; then
8399 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $HAVE_FILE_PROG" >&5
8400 printf "%s\n" "$HAVE_FILE_PROG" >&6; }
8662 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $HAVE_FILE_PROG" >&5
8663 printf '%s\n' "$HAVE_FILE_PROG" >&6; }
8401 8664 else else
8402 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
8403 printf "%s\n" "no" >&6; }
8665 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
8666 printf '%s\n' "no" >&6; }
8404 8667 fi fi
8405 8668
8406 8669
8407 8670 if test "x${HAVE_FILE_PROG}" = 'x1' ; then if test "x${HAVE_FILE_PROG}" = 'x1' ; then
8408 8671
8409 printf "%s\n" "#define HAVE_FILE_PROG 1" >>confdefs.h
8672 printf '%s\n' "#define HAVE_FILE_PROG 1" >>confdefs.h
8410 8673
8411 8674 fi fi
8412 8675
 
... ... for ac_prog in groff mandoc
8414 8677 do do
8415 8678 # Extract the first word of "$ac_prog", so it can be a program name with args. # Extract the first word of "$ac_prog", so it can be a program name with args.
8416 8679 set dummy $ac_prog; ac_word=$2 set dummy $ac_prog; ac_word=$2
8417 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8680 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8418 8681 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
8419 8682 if test ${ac_cv_prog_MANGEN_PROG+y} if test ${ac_cv_prog_MANGEN_PROG+y}
8420 8683 then : then :
 
... ... do
8435 8698 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
8436 8699 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
8437 8700 ac_cv_prog_MANGEN_PROG="$ac_prog" ac_cv_prog_MANGEN_PROG="$ac_prog"
8438 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
8701 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
8439 8702 break 2 break 2
8440 8703 fi fi
8441 8704 done done
 
... ... esac
8447 8710 fi fi
8448 8711 MANGEN_PROG=$ac_cv_prog_MANGEN_PROG MANGEN_PROG=$ac_cv_prog_MANGEN_PROG
8449 8712 if test -n "$MANGEN_PROG"; then if test -n "$MANGEN_PROG"; then
8450 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MANGEN_PROG" >&5
8451 printf "%s\n" "$MANGEN_PROG" >&6; }
8713 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $MANGEN_PROG" >&5
8714 printf '%s\n' "$MANGEN_PROG" >&6; }
8452 8715 else else
8453 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
8454 printf "%s\n" "no" >&6; }
8716 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
8717 printf '%s\n' "no" >&6; }
8455 8718 fi fi
8456 8719
8457 8720
 
... ... done
8461 8724
8462 8725 # Extract the first word of "col", so it can be a program name with args. # Extract the first word of "col", so it can be a program name with args.
8463 8726 set dummy col; ac_word=$2 set dummy col; ac_word=$2
8464 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8727 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8465 8728 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
8466 8729 if test ${ac_cv_prog_COL_PROG+y} if test ${ac_cv_prog_COL_PROG+y}
8467 8730 then : then :
 
... ... do
8482 8745 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
8483 8746 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
8484 8747 ac_cv_prog_COL_PROG="col" ac_cv_prog_COL_PROG="col"
8485 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
8748 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
8486 8749 break 2 break 2
8487 8750 fi fi
8488 8751 done done
 
... ... esac
8494 8757 fi fi
8495 8758 COL_PROG=$ac_cv_prog_COL_PROG COL_PROG=$ac_cv_prog_COL_PROG
8496 8759 if test -n "$COL_PROG"; then if test -n "$COL_PROG"; then
8497 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $COL_PROG" >&5
8498 printf "%s\n" "$COL_PROG" >&6; }
8760 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $COL_PROG" >&5
8761 printf '%s\n' "$COL_PROG" >&6; }
8499 8762 else else
8500 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
8501 printf "%s\n" "no" >&6; }
8763 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
8764 printf '%s\n' "no" >&6; }
8502 8765 fi fi
8503 8766
8504 8767
8505 8768
8506 8769 # Extract the first word of "awk", so it can be a program name with args. # Extract the first word of "awk", so it can be a program name with args.
8507 8770 set dummy awk; ac_word=$2 set dummy awk; ac_word=$2
8508 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8771 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8509 8772 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
8510 8773 if test ${ac_cv_prog_AWK_PROG+y} if test ${ac_cv_prog_AWK_PROG+y}
8511 8774 then : then :
 
... ... do
8526 8789 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
8527 8790 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
8528 8791 ac_cv_prog_AWK_PROG="awk" ac_cv_prog_AWK_PROG="awk"
8529 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
8792 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
8530 8793 break 2 break 2
8531 8794 fi fi
8532 8795 done done
 
... ... esac
8538 8801 fi fi
8539 8802 AWK_PROG=$ac_cv_prog_AWK_PROG AWK_PROG=$ac_cv_prog_AWK_PROG
8540 8803 if test -n "$AWK_PROG"; then if test -n "$AWK_PROG"; then
8541 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $AWK_PROG" >&5
8542 printf "%s\n" "$AWK_PROG" >&6; }
8804 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $AWK_PROG" >&5
8805 printf '%s\n' "$AWK_PROG" >&6; }
8543 8806 else else
8544 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
8545 printf "%s\n" "no" >&6; }
8807 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
8808 printf '%s\n' "no" >&6; }
8546 8809 fi fi
8547 8810
8548 8811
8549 8812
8550 8813 # Extract the first word of "sed", so it can be a program name with args. # Extract the first word of "sed", so it can be a program name with args.
8551 8814 set dummy sed; ac_word=$2 set dummy sed; ac_word=$2
8552 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8815 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8553 8816 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
8554 8817 if test ${ac_cv_prog_SED_PROG+y} if test ${ac_cv_prog_SED_PROG+y}
8555 8818 then : then :
 
... ... do
8570 8833 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
8571 8834 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
8572 8835 ac_cv_prog_SED_PROG="sed" ac_cv_prog_SED_PROG="sed"
8573 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
8836 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
8574 8837 break 2 break 2
8575 8838 fi fi
8576 8839 done done
 
... ... esac
8582 8845 fi fi
8583 8846 SED_PROG=$ac_cv_prog_SED_PROG SED_PROG=$ac_cv_prog_SED_PROG
8584 8847 if test -n "$SED_PROG"; then if test -n "$SED_PROG"; then
8585 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $SED_PROG" >&5
8586 printf "%s\n" "$SED_PROG" >&6; }
8848 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $SED_PROG" >&5
8849 printf '%s\n' "$SED_PROG" >&6; }
8587 8850 else else
8588 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
8589 printf "%s\n" "no" >&6; }
8851 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
8852 printf '%s\n' "no" >&6; }
8590 8853 fi fi
8591 8854
8592 8855
8593 8856
8594 8857 # Extract the first word of "perl", so it can be a program name with args. # Extract the first word of "perl", so it can be a program name with args.
8595 8858 set dummy perl; ac_word=$2 set dummy perl; ac_word=$2
8596 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8859 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8597 8860 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
8598 8861 if test ${ac_cv_prog_PERL_PROG+y} if test ${ac_cv_prog_PERL_PROG+y}
8599 8862 then : then :
 
... ... do
8614 8877 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
8615 8878 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
8616 8879 ac_cv_prog_PERL_PROG="perl" ac_cv_prog_PERL_PROG="perl"
8617 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
8880 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
8618 8881 break 2 break 2
8619 8882 fi fi
8620 8883 done done
 
... ... esac
8626 8889 fi fi
8627 8890 PERL_PROG=$ac_cv_prog_PERL_PROG PERL_PROG=$ac_cv_prog_PERL_PROG
8628 8891 if test -n "$PERL_PROG"; then if test -n "$PERL_PROG"; then
8629 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $PERL_PROG" >&5
8630 printf "%s\n" "$PERL_PROG" >&6; }
8892 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $PERL_PROG" >&5
8893 printf '%s\n' "$PERL_PROG" >&6; }
8631 8894 else else
8632 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
8633 printf "%s\n" "no" >&6; }
8895 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
8896 printf '%s\n' "no" >&6; }
8634 8897 fi fi
8635 8898
8636 8899
8637 8900
8638 8901 # Extract the first word of "vim", so it can be a program name with args. # Extract the first word of "vim", so it can be a program name with args.
8639 8902 set dummy vim; ac_word=$2 set dummy vim; ac_word=$2
8640 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8903 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8641 8904 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
8642 8905 if test ${ac_cv_prog_VIM_PROG+y} if test ${ac_cv_prog_VIM_PROG+y}
8643 8906 then : then :
 
... ... do
8658 8921 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
8659 8922 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
8660 8923 ac_cv_prog_VIM_PROG="vim" ac_cv_prog_VIM_PROG="vim"
8661 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
8924 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
8662 8925 break 2 break 2
8663 8926 fi fi
8664 8927 done done
 
... ... esac
8670 8933 fi fi
8671 8934 VIM_PROG=$ac_cv_prog_VIM_PROG VIM_PROG=$ac_cv_prog_VIM_PROG
8672 8935 if test -n "$VIM_PROG"; then if test -n "$VIM_PROG"; then
8673 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $VIM_PROG" >&5
8674 printf "%s\n" "$VIM_PROG" >&6; }
8936 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $VIM_PROG" >&5
8937 printf '%s\n' "$VIM_PROG" >&6; }
8675 8938 else else
8676 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
8677 printf "%s\n" "no" >&6; }
8939 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
8940 printf '%s\n' "no" >&6; }
8678 8941 fi fi
8679 8942
8680 8943
 
... ... fi
8685 8948
8686 8949 # Extract the first word of "git", so it can be a program name with args. # Extract the first word of "git", so it can be a program name with args.
8687 8950 set dummy git; ac_word=$2 set dummy git; ac_word=$2
8688 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8951 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8689 8952 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
8690 8953 if test ${ac_cv_prog_GIT_PROG+y} if test ${ac_cv_prog_GIT_PROG+y}
8691 8954 then : then :
 
... ... do
8706 8969 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
8707 8970 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
8708 8971 ac_cv_prog_GIT_PROG="git" ac_cv_prog_GIT_PROG="git"
8709 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
8972 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
8710 8973 break 2 break 2
8711 8974 fi fi
8712 8975 done done
 
... ... esac
8718 8981 fi fi
8719 8982 GIT_PROG=$ac_cv_prog_GIT_PROG GIT_PROG=$ac_cv_prog_GIT_PROG
8720 8983 if test -n "$GIT_PROG"; then if test -n "$GIT_PROG"; then
8721 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $GIT_PROG" >&5
8722 printf "%s\n" "$GIT_PROG" >&6; }
8984 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $GIT_PROG" >&5
8985 printf '%s\n' "$GIT_PROG" >&6; }
8723 8986 else else
8724 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
8725 printf "%s\n" "no" >&6; }
8987 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
8988 printf '%s\n' "no" >&6; }
8726 8989 fi fi
8727 8990
8728 8991
 
... ... fi
8734 8997
8735 8998 if test "x${sysconfdir}" = 'x${prefix}/etc'; then if test "x${sysconfdir}" = 'x${prefix}/etc'; then
8736 8999 if test "x${prefix}" = "xNONE"; then if test "x${prefix}" = "xNONE"; then
8737 printf "%s\n" "#define PACKAGE_SYSCONF_DIR \"${ac_default_prefix}/etc/${PACKAGE}\"" >>confdefs.h
9000 cat >>confdefs.h <<_ACEOF
9001 #define PACKAGE_SYSCONF_DIR "${ac_default_prefix}/etc/${PACKAGE}"
9002 _ACEOF
8738 9003
8739 9004 else else
8740 printf "%s\n" "#define PACKAGE_SYSCONF_DIR \"${prefix}/etc/${PACKAGE}\"" >>confdefs.h
9005 cat >>confdefs.h <<_ACEOF
9006 #define PACKAGE_SYSCONF_DIR "${prefix}/etc/${PACKAGE}"
9007 _ACEOF
8741 9008
8742 9009 fi fi
8743 9010 else else
8744 printf "%s\n" "#define PACKAGE_SYSCONF_DIR \"${sysconfdir}/${PACKAGE}\"" >>confdefs.h
9011 cat >>confdefs.h <<_ACEOF
9012 #define PACKAGE_SYSCONF_DIR "${sysconfdir}/${PACKAGE}"
9013 _ACEOF
8745 9014
8746 9015 fi fi
8747 9016
8748 9017 if test "x${datadir}" = 'x${prefix}/share'; then if test "x${datadir}" = 'x${prefix}/share'; then
8749 9018 if test "x${prefix}" = "xNONE"; then if test "x${prefix}" = "xNONE"; then
8750 printf "%s\n" "#define PACKAGE_DATA_DIR \"${ac_default_prefix}/share/${PACKAGE}\"" >>confdefs.h
9019 cat >>confdefs.h <<_ACEOF
9020 #define PACKAGE_DATA_DIR "${ac_default_prefix}/share/${PACKAGE}"
9021 _ACEOF
8751 9022
8752 9023 else else
8753 printf "%s\n" "#define PACKAGE_DATA_DIR \"${prefix}/share/${PACKAGE}\"" >>confdefs.h
9024 cat >>confdefs.h <<_ACEOF
9025 #define PACKAGE_DATA_DIR "${prefix}/share/${PACKAGE}"
9026 _ACEOF
8754 9027
8755 9028 fi fi
8756 9029 else else
8757 9030 if test "x${datadir}" = 'x${datarootdir}'; then if test "x${datadir}" = 'x${datarootdir}'; then
8758 9031 if test "x${datarootdir}" = 'x${prefix}/share'; then if test "x${datarootdir}" = 'x${prefix}/share'; then
8759 9032 if test "x${prefix}" = "xNONE"; then if test "x${prefix}" = "xNONE"; then
8760 printf "%s\n" "#define PACKAGE_DATA_DIR \"${ac_default_prefix}/share/${PACKAGE}\"" >>confdefs.h
9033 cat >>confdefs.h <<_ACEOF
9034 #define PACKAGE_DATA_DIR "${ac_default_prefix}/share/${PACKAGE}"
9035 _ACEOF
8761 9036
8762 9037 else else
8763 printf "%s\n" "#define PACKAGE_DATA_DIR \"${prefix}/share/${PACKAGE}\"" >>confdefs.h
9038 cat >>confdefs.h <<_ACEOF
9039 #define PACKAGE_DATA_DIR "${prefix}/share/${PACKAGE}"
9040 _ACEOF
8764 9041
8765 9042 fi fi
8766 9043 fi fi
8767 9044 else else
8768 printf "%s\n" "#define PACKAGE_DATA_DIR \"${datadir}/${PACKAGE}\"" >>confdefs.h
9045 cat >>confdefs.h <<_ACEOF
9046 #define PACKAGE_DATA_DIR "${datadir}/${PACKAGE}"
9047 _ACEOF
8769 9048
8770 9049 fi fi
8771 9050 fi fi
 
... ... fi
8776 9055
8777 9056
8778 9057 packagesrcdir=`cd $srcdir && pwd` packagesrcdir=`cd $srcdir && pwd`
8779 printf "%s\n" "#define PACKAGE_SOURCE_DIR \"${packagesrcdir}\"" >>confdefs.h
9058 cat >>confdefs.h <<_ACEOF
9059 #define PACKAGE_SOURCE_DIR "${packagesrcdir}"
9060 _ACEOF
8780 9061
8781 9062
8782 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Wall" >&5
9063 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Wall" >&5
8783 9064 printf %s "checking whether C compiler accepts -Wall... " >&6; } printf %s "checking whether C compiler accepts -Wall... " >&6; }
8784 9065 if test ${ax_cv_check_cflags___Wall+y} if test ${ax_cv_check_cflags___Wall+y}
8785 9066 then : then :
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
8810 9091 CFLAGS=$ax_check_save_flags ;; CFLAGS=$ax_check_save_flags ;;
8811 9092 esac esac
8812 9093 fi fi
8813 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___Wall" >&5
8814 printf "%s\n" "$ax_cv_check_cflags___Wall" >&6; }
9094 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___Wall" >&5
9095 printf '%s\n' "$ax_cv_check_cflags___Wall" >&6; }
8815 9096 if test "x$ax_cv_check_cflags___Wall" = xyes if test "x$ax_cv_check_cflags___Wall" = xyes
8816 9097 then : then :
8817 9098
 
... ... fi
8828 9109
8829 9110 if test -n "$OSX_HOST" ; then if test -n "$OSX_HOST" ; then
8830 9111
8831 printf "%s\n" "#define _DARWIN_C_SOURCE 1" >>confdefs.h
9112 printf '%s\n' "#define _DARWIN_C_SOURCE 1" >>confdefs.h
8832 9113
8833 9114 fi fi
8834 9115
8835 9116
8836 printf "%s\n" "#define _FILE_OFFSET_BITS 64" >>confdefs.h
9117 printf '%s\n' "#define _FILE_OFFSET_BITS 64" >>confdefs.h
8837 9118
8838 9119
8839 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for pow in -lm" >&5
9120 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for pow in -lm" >&5
8840 9121 printf %s "checking for pow in -lm... " >&6; } printf %s "checking for pow in -lm... " >&6; }
8841 9122 if test ${ac_cv_lib_m_pow+y} if test ${ac_cv_lib_m_pow+y}
8842 9123 then : then :
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam \
8877 9158 LIBS=$ac_check_lib_save_LIBS ;; LIBS=$ac_check_lib_save_LIBS ;;
8878 9159 esac esac
8879 9160 fi fi
8880 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_pow" >&5
8881 printf "%s\n" "$ac_cv_lib_m_pow" >&6; }
9161 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_pow" >&5
9162 printf '%s\n' "$ac_cv_lib_m_pow" >&6; }
8882 9163 if test "x$ac_cv_lib_m_pow" = xyes if test "x$ac_cv_lib_m_pow" = xyes
8883 9164 then : then :
8884 9165 LIBS="$LIBS -lm" LIBS="$LIBS -lm"
8885 9166 fi fi
8886 9167
8887 9168
8888 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for shm_open in -lrt" >&5
9169 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for shm_open in -lrt" >&5
8889 9170 printf %s "checking for shm_open in -lrt... " >&6; } printf %s "checking for shm_open in -lrt... " >&6; }
8890 9171 if test ${ac_cv_lib_rt_shm_open+y} if test ${ac_cv_lib_rt_shm_open+y}
8891 9172 then : then :
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam \
8926 9207 LIBS=$ac_check_lib_save_LIBS ;; LIBS=$ac_check_lib_save_LIBS ;;
8927 9208 esac esac
8928 9209 fi fi
8929 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_shm_open" >&5
8930 printf "%s\n" "$ac_cv_lib_rt_shm_open" >&6; }
9210 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_shm_open" >&5
9211 printf '%s\n' "$ac_cv_lib_rt_shm_open" >&6; }
8931 9212 if test "x$ac_cv_lib_rt_shm_open" = xyes if test "x$ac_cv_lib_rt_shm_open" = xyes
8932 9213 then : then :
8933 9214 LIBS="$LIBS -lrt" LIBS="$LIBS -lrt"
8934 9215 fi fi
8935 9216
8936 9217
8937 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5
9218 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5
8938 9219 printf %s "checking for a sed that does not truncate output... " >&6; } printf %s "checking for a sed that does not truncate output... " >&6; }
8939 9220 if test ${ac_cv_path_SED+y} if test ${ac_cv_path_SED+y}
8940 9221 then : then :
 
... ... case `"$ac_path_SED" --version 2>&1` in #(
8977 9258 cat "conftest.in" "conftest.in" >"conftest.tmp" cat "conftest.in" "conftest.in" >"conftest.tmp"
8978 9259 mv "conftest.tmp" "conftest.in" mv "conftest.tmp" "conftest.in"
8979 9260 cp "conftest.in" "conftest.nl" cp "conftest.in" "conftest.nl"
8980 printf "%s\n" '' >> "conftest.nl"
9261 printf '%s\n' '' >> "conftest.nl"
8981 9262 "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break
8982 9263 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
8983 9264 as_fn_arith $ac_count + 1 && ac_count=$as_val as_fn_arith $ac_count + 1 && ac_count=$as_val
 
... ... fi
9006 9287 ;; ;;
9007 9288 esac esac
9008 9289 fi fi
9009 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5
9010 printf "%s\n" "$ac_cv_path_SED" >&6; }
9290 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5
9291 printf '%s\n' "$ac_cv_path_SED" >&6; }
9011 9292 SED="$ac_cv_path_SED" SED="$ac_cv_path_SED"
9012 9293 rm -f conftest.sed rm -f conftest.sed
9013 9294
 
... ... ac_cpp='$CPP $CPPFLAGS'
9016 9297 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
9017 9298 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
9018 9299 ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_compiler_gnu=$ac_cv_c_compiler_gnu
9019 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5
9300 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5
9020 9301 printf %s "checking how to run the C preprocessor... " >&6; } printf %s "checking how to run the C preprocessor... " >&6; }
9021 9302 # On Suns, sometimes $CPP names a directory. # On Suns, sometimes $CPP names a directory.
9022 9303 if test -n "$CPP" && test -d "$CPP"; then if test -n "$CPP" && test -d "$CPP"; then
 
... ... fi
9087 9368 else else
9088 9369 ac_cv_prog_CPP=$CPP ac_cv_prog_CPP=$CPP
9089 9370 fi fi
9090 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5
9091 printf "%s\n" "$CPP" >&6; }
9371 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5
9372 printf '%s\n' "$CPP" >&6; }
9092 9373 ac_preproc_ok=false ac_preproc_ok=false
9093 9374 for ac_c_preproc_warn_flag in '' yes for ac_c_preproc_warn_flag in '' yes
9094 9375 do do
 
... ... if $ac_preproc_ok
9136 9417 then : then :
9137 9418
9138 9419 else case e in #( else case e in #(
9139 e) { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
9140 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
9420 e) { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
9421 printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
9141 9422 as_fn_error $? "C preprocessor \"$CPP\" fails sanity check as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
9142 9423 See 'config.log' for more details" "$LINENO" 5; } ;; See 'config.log' for more details" "$LINENO" 5; } ;;
9143 9424 esac esac
 
... ... ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
9150 9431 ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_compiler_gnu=$ac_cv_c_compiler_gnu
9151 9432
9152 9433
9153 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for egrep -e" >&5
9434 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for egrep -e" >&5
9154 9435 printf %s "checking for egrep -e... " >&6; } printf %s "checking for egrep -e... " >&6; }
9155 9436 if test ${ac_cv_path_EGREP_TRADITIONAL+y} if test ${ac_cv_path_EGREP_TRADITIONAL+y}
9156 9437 then : then :
 
... ... case `"$ac_path_EGREP_TRADITIONAL" --version 2>&1` in #(
9187 9468 cat "conftest.in" "conftest.in" >"conftest.tmp" cat "conftest.in" "conftest.in" >"conftest.tmp"
9188 9469 mv "conftest.tmp" "conftest.in" mv "conftest.tmp" "conftest.in"
9189 9470 cp "conftest.in" "conftest.nl" cp "conftest.in" "conftest.nl"
9190 printf "%s\n" 'EGREP_TRADITIONAL' >> "conftest.nl"
9471 printf '%s\n' 'EGREP_TRADITIONAL' >> "conftest.nl"
9191 9472 "$ac_path_EGREP_TRADITIONAL" -E 'EGR(EP|AC)_TRADITIONAL$' < "conftest.nl" >"conftest.out" 2>/dev/null || break "$ac_path_EGREP_TRADITIONAL" -E 'EGR(EP|AC)_TRADITIONAL$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
9192 9473 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
9193 9474 as_fn_arith $ac_count + 1 && ac_count=$as_val as_fn_arith $ac_count + 1 && ac_count=$as_val
 
... ... case `"$ac_path_EGREP_TRADITIONAL" --version 2>&1` in #(
9249 9530 cat "conftest.in" "conftest.in" >"conftest.tmp" cat "conftest.in" "conftest.in" >"conftest.tmp"
9250 9531 mv "conftest.tmp" "conftest.in" mv "conftest.tmp" "conftest.in"
9251 9532 cp "conftest.in" "conftest.nl" cp "conftest.in" "conftest.nl"
9252 printf "%s\n" 'EGREP_TRADITIONAL' >> "conftest.nl"
9533 printf '%s\n' 'EGREP_TRADITIONAL' >> "conftest.nl"
9253 9534 "$ac_path_EGREP_TRADITIONAL" 'EGR(EP|AC)_TRADITIONAL$' < "conftest.nl" >"conftest.out" 2>/dev/null || break "$ac_path_EGREP_TRADITIONAL" 'EGR(EP|AC)_TRADITIONAL$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
9254 9535 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
9255 9536 as_fn_arith $ac_count + 1 && ac_count=$as_val as_fn_arith $ac_count + 1 && ac_count=$as_val
 
... ... esac
9280 9561 fi ;; fi ;;
9281 9562 esac esac
9282 9563 fi fi
9283 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP_TRADITIONAL" >&5
9284 printf "%s\n" "$ac_cv_path_EGREP_TRADITIONAL" >&6; }
9564 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP_TRADITIONAL" >&5
9565 printf '%s\n' "$ac_cv_path_EGREP_TRADITIONAL" >&6; }
9285 9566 EGREP_TRADITIONAL=$ac_cv_path_EGREP_TRADITIONAL EGREP_TRADITIONAL=$ac_cv_path_EGREP_TRADITIONAL
9286 9567
9287 9568
 
... ... then :
9317 9598 fi fi
9318 9599 CFLAGS="$CFLAGS $PTHREAD_CFLAGS" CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
9319 9600 LIBS="$PTHREAD_LIBS $LIBS" LIBS="$PTHREAD_LIBS $LIBS"
9320 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for pthread_join using $CC $PTHREAD_CFLAGS $PTHREAD_LIBS" >&5
9601 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for pthread_join using $CC $PTHREAD_CFLAGS $PTHREAD_LIBS" >&5
9321 9602 printf %s "checking for pthread_join using $CC $PTHREAD_CFLAGS $PTHREAD_LIBS... " >&6; } printf %s "checking for pthread_join using $CC $PTHREAD_CFLAGS $PTHREAD_LIBS... " >&6; }
9322 9603 cat confdefs.h - <<_ACEOF >conftest.$ac_ext cat confdefs.h - <<_ACEOF >conftest.$ac_ext
9323 9604 /* end confdefs.h. */ /* end confdefs.h. */
 
... ... then :
9346 9627 fi fi
9347 9628 rm -f core conftest.err conftest.$ac_objext conftest.beam \ rm -f core conftest.err conftest.$ac_objext conftest.beam \
9348 9629 conftest$ac_exeext conftest.$ac_ext conftest$ac_exeext conftest.$ac_ext
9349 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_pthread_ok" >&5
9350 printf "%s\n" "$ax_pthread_ok" >&6; }
9630 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_pthread_ok" >&5
9631 printf '%s\n' "$ax_pthread_ok" >&6; }
9351 9632 if test "x$ax_pthread_ok" = "xno"; then if test "x$ax_pthread_ok" = "xno"; then
9352 9633 PTHREAD_LIBS="" PTHREAD_LIBS=""
9353 9634 PTHREAD_CFLAGS="" PTHREAD_CFLAGS=""
 
... ... _ACEOF
9427 9708 if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
9428 9709 $EGREP_TRADITIONAL "AX_PTHREAD_ZOS_MISSING" >/dev/null 2>&1 $EGREP_TRADITIONAL "AX_PTHREAD_ZOS_MISSING" >/dev/null 2>&1
9429 9710 then : then :
9430 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: IBM z/OS requires -D_OPEN_THREADS or -D_UNIX03_THREADS to enable pthreads support." >&5
9431 printf "%s\n" "$as_me: WARNING: IBM z/OS requires -D_OPEN_THREADS or -D_UNIX03_THREADS to enable pthreads support." >&2;}
9711 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: IBM z/OS requires -D_OPEN_THREADS or -D_UNIX03_THREADS to enable pthreads support." >&5
9712 printf '%s\n' "$as_me: WARNING: IBM z/OS requires -D_OPEN_THREADS or -D_UNIX03_THREADS to enable pthreads support." >&2;}
9432 9713 fi fi
9433 9714 rm -rf conftest* rm -rf conftest*
9434 9715
 
... ... esac
9450 9731
9451 9732 # Are we compiling with Clang? # Are we compiling with Clang?
9452 9733
9453 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC is Clang" >&5
9734 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether $CC is Clang" >&5
9454 9735 printf %s "checking whether $CC is Clang... " >&6; } printf %s "checking whether $CC is Clang... " >&6; }
9455 9736 if test ${ax_cv_PTHREAD_CLANG+y} if test ${ax_cv_PTHREAD_CLANG+y}
9456 9737 then : then :
 
... ... rm -rf conftest*
9478 9759 ;; ;;
9479 9760 esac esac
9480 9761 fi fi
9481 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_PTHREAD_CLANG" >&5
9482 printf "%s\n" "$ax_cv_PTHREAD_CLANG" >&6; }
9762 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_PTHREAD_CLANG" >&5
9763 printf '%s\n' "$ax_cv_PTHREAD_CLANG" >&6; }
9483 9764 ax_pthread_clang="$ax_cv_PTHREAD_CLANG" ax_pthread_clang="$ax_cv_PTHREAD_CLANG"
9484 9765
9485 9766
 
... ... for ax_pthread_try_flag in $ax_pthread_flags; do
9537 9818
9538 9819 case $ax_pthread_try_flag in case $ax_pthread_try_flag in
9539 9820 none) none)
9540 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether pthreads work without any flags" >&5
9821 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether pthreads work without any flags" >&5
9541 9822 printf %s "checking whether pthreads work without any flags... " >&6; } printf %s "checking whether pthreads work without any flags... " >&6; }
9542 9823 ;; ;;
9543 9824
9544 9825 *,*) *,*)
9545 9826 PTHREAD_CFLAGS=`echo $ax_pthread_try_flag | sed "s/^\(.*\),\(.*\)$/\1/"` PTHREAD_CFLAGS=`echo $ax_pthread_try_flag | sed "s/^\(.*\),\(.*\)$/\1/"`
9546 9827 PTHREAD_LIBS=`echo $ax_pthread_try_flag | sed "s/^\(.*\),\(.*\)$/\2/"` PTHREAD_LIBS=`echo $ax_pthread_try_flag | sed "s/^\(.*\),\(.*\)$/\2/"`
9547 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether pthreads work with \"$PTHREAD_CFLAGS\" and \"$PTHREAD_LIBS\"" >&5
9828 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether pthreads work with \"$PTHREAD_CFLAGS\" and \"$PTHREAD_LIBS\"" >&5
9548 9829 printf %s "checking whether pthreads work with \"$PTHREAD_CFLAGS\" and \"$PTHREAD_LIBS\"... " >&6; } printf %s "checking whether pthreads work with \"$PTHREAD_CFLAGS\" and \"$PTHREAD_LIBS\"... " >&6; }
9549 9830 ;; ;;
9550 9831
9551 9832 -*) -*)
9552 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether pthreads work with $ax_pthread_try_flag" >&5
9833 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether pthreads work with $ax_pthread_try_flag" >&5
9553 9834 printf %s "checking whether pthreads work with $ax_pthread_try_flag... " >&6; } printf %s "checking whether pthreads work with $ax_pthread_try_flag... " >&6; }
9554 9835 PTHREAD_CFLAGS="$ax_pthread_try_flag" PTHREAD_CFLAGS="$ax_pthread_try_flag"
9555 9836 ;; ;;
 
... ... printf %s "checking whether pthreads work with $ax_pthread_try_flag... " >&6; }
9557 9838 pthread-config) pthread-config)
9558 9839 # Extract the first word of "pthread-config", so it can be a program name with args. # Extract the first word of "pthread-config", so it can be a program name with args.
9559 9840 set dummy pthread-config; ac_word=$2 set dummy pthread-config; ac_word=$2
9560 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9841 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9561 9842 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
9562 9843 if test ${ac_cv_prog_ax_pthread_config+y} if test ${ac_cv_prog_ax_pthread_config+y}
9563 9844 then : then :
 
... ... do
9578 9859 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
9579 9860 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
9580 9861 ac_cv_prog_ax_pthread_config="yes" ac_cv_prog_ax_pthread_config="yes"
9581 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
9862 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
9582 9863 break 2 break 2
9583 9864 fi fi
9584 9865 done done
 
... ... esac
9591 9872 fi fi
9592 9873 ax_pthread_config=$ac_cv_prog_ax_pthread_config ax_pthread_config=$ac_cv_prog_ax_pthread_config
9593 9874 if test -n "$ax_pthread_config"; then if test -n "$ax_pthread_config"; then
9594 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_pthread_config" >&5
9595 printf "%s\n" "$ax_pthread_config" >&6; }
9875 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_pthread_config" >&5
9876 printf '%s\n' "$ax_pthread_config" >&6; }
9596 9877 else else
9597 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
9598 printf "%s\n" "no" >&6; }
9878 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
9879 printf '%s\n' "no" >&6; }
9599 9880 fi fi
9600 9881
9601 9882
 
... ... fi
9608 9889 ;; ;;
9609 9890
9610 9891 *) *)
9611 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for the pthreads library -l$ax_pthread_try_flag" >&5
9892 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for the pthreads library -l$ax_pthread_try_flag" >&5
9612 9893 printf %s "checking for the pthreads library -l$ax_pthread_try_flag... " >&6; } printf %s "checking for the pthreads library -l$ax_pthread_try_flag... " >&6; }
9613 9894 PTHREAD_LIBS="-l$ax_pthread_try_flag" PTHREAD_LIBS="-l$ax_pthread_try_flag"
9614 9895 ;; ;;
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam \
9666 9947 CFLAGS="$ax_pthread_save_CFLAGS" CFLAGS="$ax_pthread_save_CFLAGS"
9667 9948 LIBS="$ax_pthread_save_LIBS" LIBS="$ax_pthread_save_LIBS"
9668 9949
9669 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_pthread_ok" >&5
9670 printf "%s\n" "$ax_pthread_ok" >&6; }
9950 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_pthread_ok" >&5
9951 printf '%s\n' "$ax_pthread_ok" >&6; }
9671 9952 if test "x$ax_pthread_ok" = "xyes" if test "x$ax_pthread_ok" = "xyes"
9672 9953 then : then :
9673 9954 break break
 
... ... if test "x$ax_pthread_clang" = "xyes"; then
9715 9996 # that build with -Werror. So if the active version of Clang has # that build with -Werror. So if the active version of Clang has
9716 9997 # this misfeature, we search for an option to squash it. # this misfeature, we search for an option to squash it.
9717 9998
9718 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether Clang needs flag to prevent \"argument unused\" warning when linking with -pthread" >&5
9999 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether Clang needs flag to prevent \"argument unused\" warning when linking with -pthread" >&5
9719 10000 printf %s "checking whether Clang needs flag to prevent \"argument unused\" warning when linking with -pthread... " >&6; } printf %s "checking whether Clang needs flag to prevent \"argument unused\" warning when linking with -pthread... " >&6; }
9720 10001 if test ${ax_cv_PTHREAD_CLANG_NO_WARN_FLAG+y} if test ${ax_cv_PTHREAD_CLANG_NO_WARN_FLAG+y}
9721 10002 then : then :
 
... ... else case e in #(
9728 10009 # step # step
9729 10010 ax_pthread_save_ac_link="$ac_link" ax_pthread_save_ac_link="$ac_link"
9730 10011 ax_pthread_sed='s/conftest\.\$ac_ext/conftest.$ac_objext/g' ax_pthread_sed='s/conftest\.\$ac_ext/conftest.$ac_objext/g'
9731 ax_pthread_link_step=`printf "%s\n" "$ac_link" | sed "$ax_pthread_sed"`
10012 ax_pthread_link_step=`printf '%s\n' "$ac_link" | sed "$ax_pthread_sed"`
9732 10013 ax_pthread_2step_ac_link="($ac_compile) && (echo ==== >&5) && ($ax_pthread_link_step)" ax_pthread_2step_ac_link="($ac_compile) && (echo ==== >&5) && ($ax_pthread_link_step)"
9733 10014 ax_pthread_save_CFLAGS="$CFLAGS" ax_pthread_save_CFLAGS="$CFLAGS"
9734 10015 for ax_pthread_try in '' -Qunused-arguments -Wno-unused-command-line-argument unknown; do for ax_pthread_try in '' -Qunused-arguments -Wno-unused-command-line-argument unknown; do
 
... ... fi
9770 10051 ;; ;;
9771 10052 esac esac
9772 10053 fi fi
9773 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_PTHREAD_CLANG_NO_WARN_FLAG" >&5
9774 printf "%s\n" "$ax_cv_PTHREAD_CLANG_NO_WARN_FLAG" >&6; }
10054 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_PTHREAD_CLANG_NO_WARN_FLAG" >&5
10055 printf '%s\n' "$ax_cv_PTHREAD_CLANG_NO_WARN_FLAG" >&6; }
9775 10056
9776 10057 case "$ax_cv_PTHREAD_CLANG_NO_WARN_FLAG" in case "$ax_cv_PTHREAD_CLANG_NO_WARN_FLAG" in
9777 10058 no | unknown) ;; no | unknown) ;;
 
... ... if test "x$ax_pthread_ok" = "xyes"; then
9790 10071 LIBS="$PTHREAD_LIBS $LIBS" LIBS="$PTHREAD_LIBS $LIBS"
9791 10072
9792 10073 # Detect AIX lossage: JOINABLE attribute is called UNDETACHED. # Detect AIX lossage: JOINABLE attribute is called UNDETACHED.
9793 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for joinable pthread attribute" >&5
10074 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for joinable pthread attribute" >&5
9794 10075 printf %s "checking for joinable pthread attribute... " >&6; } printf %s "checking for joinable pthread attribute... " >&6; }
9795 10076 if test ${ax_cv_PTHREAD_JOINABLE_ATTR+y} if test ${ax_cv_PTHREAD_JOINABLE_ATTR+y}
9796 10077 then : then :
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam \
9819 10100 ;; ;;
9820 10101 esac esac
9821 10102 fi fi
9822 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_PTHREAD_JOINABLE_ATTR" >&5
9823 printf "%s\n" "$ax_cv_PTHREAD_JOINABLE_ATTR" >&6; }
10103 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_PTHREAD_JOINABLE_ATTR" >&5
10104 printf '%s\n' "$ax_cv_PTHREAD_JOINABLE_ATTR" >&6; }
9824 10105 if test "x$ax_cv_PTHREAD_JOINABLE_ATTR" != "xunknown" && \ if test "x$ax_cv_PTHREAD_JOINABLE_ATTR" != "xunknown" && \
9825 10106 test "x$ax_cv_PTHREAD_JOINABLE_ATTR" != "xPTHREAD_CREATE_JOINABLE" && \ test "x$ax_cv_PTHREAD_JOINABLE_ATTR" != "xPTHREAD_CREATE_JOINABLE" && \
9826 10107 test "x$ax_pthread_joinable_attr_defined" != "xyes" test "x$ax_pthread_joinable_attr_defined" != "xyes"
9827 10108 then : then :
9828 10109
9829 printf "%s\n" "#define PTHREAD_CREATE_JOINABLE $ax_cv_PTHREAD_JOINABLE_ATTR" >>confdefs.h
10110 printf '%s\n' "#define PTHREAD_CREATE_JOINABLE $ax_cv_PTHREAD_JOINABLE_ATTR" >>confdefs.h
9830 10111
9831 10112 ax_pthread_joinable_attr_defined=yes ax_pthread_joinable_attr_defined=yes
9832 10113
9833 10114 fi fi
9834 10115
9835 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether more special flags are required for pthreads" >&5
10116 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether more special flags are required for pthreads" >&5
9836 10117 printf %s "checking whether more special flags are required for pthreads... " >&6; } printf %s "checking whether more special flags are required for pthreads... " >&6; }
9837 10118 if test ${ax_cv_PTHREAD_SPECIAL_FLAGS+y} if test ${ax_cv_PTHREAD_SPECIAL_FLAGS+y}
9838 10119 then : then :
 
... ... else case e in #(
9847 10128 ;; ;;
9848 10129 esac esac
9849 10130 fi fi
9850 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_PTHREAD_SPECIAL_FLAGS" >&5
9851 printf "%s\n" "$ax_cv_PTHREAD_SPECIAL_FLAGS" >&6; }
10131 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_PTHREAD_SPECIAL_FLAGS" >&5
10132 printf '%s\n' "$ax_cv_PTHREAD_SPECIAL_FLAGS" >&6; }
9852 10133 if test "x$ax_cv_PTHREAD_SPECIAL_FLAGS" != "xno" && \ if test "x$ax_cv_PTHREAD_SPECIAL_FLAGS" != "xno" && \
9853 10134 test "x$ax_pthread_special_flags_added" != "xyes" test "x$ax_pthread_special_flags_added" != "xyes"
9854 10135 then : then :
 
... ... then :
9856 10137 ax_pthread_special_flags_added=yes ax_pthread_special_flags_added=yes
9857 10138 fi fi
9858 10139
9859 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for PTHREAD_PRIO_INHERIT" >&5
10140 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for PTHREAD_PRIO_INHERIT" >&5
9860 10141 printf %s "checking for PTHREAD_PRIO_INHERIT... " >&6; } printf %s "checking for PTHREAD_PRIO_INHERIT... " >&6; }
9861 10142 if test ${ax_cv_PTHREAD_PRIO_INHERIT+y} if test ${ax_cv_PTHREAD_PRIO_INHERIT+y}
9862 10143 then : then :
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam \
9886 10167 ;; ;;
9887 10168 esac esac
9888 10169 fi fi
9889 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_PTHREAD_PRIO_INHERIT" >&5
9890 printf "%s\n" "$ax_cv_PTHREAD_PRIO_INHERIT" >&6; }
10170 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_PTHREAD_PRIO_INHERIT" >&5
10171 printf '%s\n' "$ax_cv_PTHREAD_PRIO_INHERIT" >&6; }
9891 10172 if test "x$ax_cv_PTHREAD_PRIO_INHERIT" = "xyes" && \ if test "x$ax_cv_PTHREAD_PRIO_INHERIT" = "xyes" && \
9892 10173 test "x$ax_pthread_prio_inherit_defined" != "xyes" test "x$ax_pthread_prio_inherit_defined" != "xyes"
9893 10174 then : then :
9894 10175
9895 printf "%s\n" "#define HAVE_PTHREAD_PRIO_INHERIT 1" >>confdefs.h
10176 printf '%s\n' "#define HAVE_PTHREAD_PRIO_INHERIT 1" >>confdefs.h
9896 10177
9897 10178 ax_pthread_prio_inherit_defined=yes ax_pthread_prio_inherit_defined=yes
9898 10179
 
... ... fi
9929 10210 do do
9930 10211 # Extract the first word of "$ac_prog", so it can be a program name with args. # Extract the first word of "$ac_prog", so it can be a program name with args.
9931 10212 set dummy $ac_prog; ac_word=$2 set dummy $ac_prog; ac_word=$2
9932 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
10213 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9933 10214 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
9934 10215 if test ${ac_cv_prog_PTHREAD_CC+y} if test ${ac_cv_prog_PTHREAD_CC+y}
9935 10216 then : then :
 
... ... do
9950 10231 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
9951 10232 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
9952 10233 ac_cv_prog_PTHREAD_CC="$ac_prog" ac_cv_prog_PTHREAD_CC="$ac_prog"
9953 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
10234 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
9954 10235 break 2 break 2
9955 10236 fi fi
9956 10237 done done
 
... ... esac
9962 10243 fi fi
9963 10244 PTHREAD_CC=$ac_cv_prog_PTHREAD_CC PTHREAD_CC=$ac_cv_prog_PTHREAD_CC
9964 10245 if test -n "$PTHREAD_CC"; then if test -n "$PTHREAD_CC"; then
9965 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $PTHREAD_CC" >&5
9966 printf "%s\n" "$PTHREAD_CC" >&6; }
10246 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $PTHREAD_CC" >&5
10247 printf '%s\n' "$PTHREAD_CC" >&6; }
9967 10248 else else
9968 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
9969 printf "%s\n" "no" >&6; }
10249 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
10250 printf '%s\n' "no" >&6; }
9970 10251 fi fi
9971 10252
9972 10253
 
... ... then :
9980 10261 do do
9981 10262 # Extract the first word of "$ac_prog", so it can be a program name with args. # Extract the first word of "$ac_prog", so it can be a program name with args.
9982 10263 set dummy $ac_prog; ac_word=$2 set dummy $ac_prog; ac_word=$2
9983 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
10264 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9984 10265 printf %s "checking for $ac_word... " >&6; } printf %s "checking for $ac_word... " >&6; }
9985 10266 if test ${ac_cv_prog_PTHREAD_CXX+y} if test ${ac_cv_prog_PTHREAD_CXX+y}
9986 10267 then : then :
 
... ... do
10001 10282 for ac_exec_ext in '' $ac_executable_extensions; do for ac_exec_ext in '' $ac_executable_extensions; do
10002 10283 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
10003 10284 ac_cv_prog_PTHREAD_CXX="$ac_prog" ac_cv_prog_PTHREAD_CXX="$ac_prog"
10004 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
10285 printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
10005 10286 break 2 break 2
10006 10287 fi fi
10007 10288 done done
 
... ... esac
10013 10294 fi fi
10014 10295 PTHREAD_CXX=$ac_cv_prog_PTHREAD_CXX PTHREAD_CXX=$ac_cv_prog_PTHREAD_CXX
10015 10296 if test -n "$PTHREAD_CXX"; then if test -n "$PTHREAD_CXX"; then
10016 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $PTHREAD_CXX" >&5
10017 printf "%s\n" "$PTHREAD_CXX" >&6; }
10297 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $PTHREAD_CXX" >&5
10298 printf '%s\n' "$PTHREAD_CXX" >&6; }
10018 10299 else else
10019 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
10020 printf "%s\n" "no" >&6; }
10300 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
10301 printf '%s\n' "no" >&6; }
10021 10302 fi fi
10022 10303
10023 10304
 
... ... esac
10182 10463 fi fi
10183 10464
10184 10465 ac_fn_check_decl "$LINENO" "PTHREAD_MUTEX_INITIALIZER" "ac_cv_have_decl_PTHREAD_MUTEX_INITIALIZER" "#include <pthread.h> ac_fn_check_decl "$LINENO" "PTHREAD_MUTEX_INITIALIZER" "ac_cv_have_decl_PTHREAD_MUTEX_INITIALIZER" "#include <pthread.h>
10185 " "$ac_c_undeclared_builtin_options" "CFLAGS"
10466 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
10186 10467 if test "x$ac_cv_have_decl_PTHREAD_MUTEX_INITIALIZER" = xyes if test "x$ac_cv_have_decl_PTHREAD_MUTEX_INITIALIZER" = xyes
10187 10468 then : then :
10188 10469
 
... ... else case e in #(
10191 10472 esac esac
10192 10473 fi fi
10193 10474 ac_fn_check_decl "$LINENO" "PTHREAD_COND_INITIALIZER" "ac_cv_have_decl_PTHREAD_COND_INITIALIZER" "#include <pthread.h> ac_fn_check_decl "$LINENO" "PTHREAD_COND_INITIALIZER" "ac_cv_have_decl_PTHREAD_COND_INITIALIZER" "#include <pthread.h>
10194 " "$ac_c_undeclared_builtin_options" "CFLAGS"
10475 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
10195 10476 if test "x$ac_cv_have_decl_PTHREAD_COND_INITIALIZER" = xyes if test "x$ac_cv_have_decl_PTHREAD_COND_INITIALIZER" = xyes
10196 10477 then : then :
10197 10478
 
... ... fi
10225 10506
10226 10507
10227 10508 ncurses_found=no ncurses_found=no
10228 as_ac_Lib=`printf "%s\n" "ac_cv_lib_${curses_lib_name}""_initscr" | sed "$as_sed_sh"`
10229 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for initscr in -l${curses_lib_name}" >&5
10509 as_ac_Lib=`printf '%s\n' "ac_cv_lib_${curses_lib_name}""_initscr" | sed "$as_sed_sh"`
10510 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for initscr in -l${curses_lib_name}" >&5
10230 10511 printf %s "checking for initscr in -l${curses_lib_name}... " >&6; } printf %s "checking for initscr in -l${curses_lib_name}... " >&6; }
10231 10512 if eval test \${$as_ac_Lib+y} if eval test \${$as_ac_Lib+y}
10232 10513 then : then :
 
... ... LIBS=$ac_check_lib_save_LIBS ;;
10268 10549 esac esac
10269 10550 fi fi
10270 10551 eval ac_res=\$$as_ac_Lib eval ac_res=\$$as_ac_Lib
10271 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
10272 printf "%s\n" "$ac_res" >&6; }
10552 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
10553 printf '%s\n' "$ac_res" >&6; }
10273 10554 if eval test \"x\$"$as_ac_Lib"\" = x"yes" if eval test \"x\$"$as_ac_Lib"\" = x"yes"
10274 10555 then : then :
10275 10556 LIBS="$LIBS -l${curses_lib_name}" LIBS="$LIBS -l${curses_lib_name}"
 
... ... then :
10277 10558 CPPFLAGS="$CPPFLAGS -I/usr/include/${curses_lib_name}" CPPFLAGS="$CPPFLAGS -I/usr/include/${curses_lib_name}"
10278 10559 fi fi
10279 10560 ncurses_found=yes ncurses_found=yes
10280 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing curs_set" >&5
10561 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for library containing curs_set" >&5
10281 10562 printf %s "checking for library containing curs_set... " >&6; } printf %s "checking for library containing curs_set... " >&6; }
10282 10563 if test ${ac_cv_search_curs_set+y} if test ${ac_cv_search_curs_set+y}
10283 10564 then : then :
 
... ... rm conftest.$ac_ext
10335 10616 LIBS=$ac_func_search_save_LIBS ;; LIBS=$ac_func_search_save_LIBS ;;
10336 10617 esac esac
10337 10618 fi fi
10338 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_curs_set" >&5
10339 printf "%s\n" "$ac_cv_search_curs_set" >&6; }
10619 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_curs_set" >&5
10620 printf '%s\n' "$ac_cv_search_curs_set" >&6; }
10340 10621 ac_res=$ac_cv_search_curs_set ac_res=$ac_cv_search_curs_set
10341 10622 if test "$ac_res" != no if test "$ac_res" != no
10342 10623 then : then :
 
... ... fi
10350 10631 fi fi
10351 10632
10352 10633 if test -n "$OSX_HOST" -a "x$ncurses_found" != "xyes"; then if test -n "$OSX_HOST" -a "x$ncurses_found" != "xyes"; then
10353 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for initscr in -lncurses" >&5
10634 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for initscr in -lncurses" >&5
10354 10635 printf %s "checking for initscr in -lncurses... " >&6; } printf %s "checking for initscr in -lncurses... " >&6; }
10355 10636 if test ${ac_cv_lib_ncurses_initscr+y} if test ${ac_cv_lib_ncurses_initscr+y}
10356 10637 then : then :
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam \
10391 10672 LIBS=$ac_check_lib_save_LIBS ;; LIBS=$ac_check_lib_save_LIBS ;;
10392 10673 esac esac
10393 10674 fi fi
10394 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ncurses_initscr" >&5
10395 printf "%s\n" "$ac_cv_lib_ncurses_initscr" >&6; }
10675 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ncurses_initscr" >&5
10676 printf '%s\n' "$ac_cv_lib_ncurses_initscr" >&6; }
10396 10677 if test "x$ac_cv_lib_ncurses_initscr" = xyes if test "x$ac_cv_lib_ncurses_initscr" = xyes
10397 10678 then : then :
10398 10679 LIBS="$LIBS -lncurses" LIBS="$LIBS -lncurses"
 
... ... esac
10422 10703 fi fi
10423 10704
10424 10705 ac_fn_check_decl "$LINENO" "A_ITALIC" "ac_cv_have_decl_A_ITALIC" "#include <curses.h> ac_fn_check_decl "$LINENO" "A_ITALIC" "ac_cv_have_decl_A_ITALIC" "#include <curses.h>
10425 " "$ac_c_undeclared_builtin_options" "CFLAGS"
10706 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
10426 10707 if test "x$ac_cv_have_decl_A_ITALIC" = xyes if test "x$ac_cv_have_decl_A_ITALIC" = xyes
10427 10708 then : then :
10428 10709
10429 printf "%s\n" "#define HAVE_A_ITALIC_DECL 1" >>confdefs.h
10710 printf '%s\n' "#define HAVE_A_ITALIC_DECL 1" >>confdefs.h
10430 10711
10431 10712 fi fi
10432 10713 ac_fn_check_decl "$LINENO" "COLORS" "ac_cv_have_decl_COLORS" "#include <curses.h> ac_fn_check_decl "$LINENO" "COLORS" "ac_cv_have_decl_COLORS" "#include <curses.h>
10433 " "$ac_c_undeclared_builtin_options" "CFLAGS"
10714 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
10434 10715 if test "x$ac_cv_have_decl_COLORS" = xyes if test "x$ac_cv_have_decl_COLORS" = xyes
10435 10716 then : then :
10436 10717
 
... ... else case e in #(
10439 10720 esac esac
10440 10721 fi fi
10441 10722 ac_fn_check_decl "$LINENO" "TABSIZE" "ac_cv_have_decl_TABSIZE" "#include <curses.h> ac_fn_check_decl "$LINENO" "TABSIZE" "ac_cv_have_decl_TABSIZE" "#include <curses.h>
10442 " "$ac_c_undeclared_builtin_options" "CFLAGS"
10723 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
10443 10724 if test "x$ac_cv_have_decl_TABSIZE" = xyes if test "x$ac_cv_have_decl_TABSIZE" = xyes
10444 10725 then : then :
10445 10726
 
... ... ac_fn_c_check_func "$LINENO" "set_escdelay" "ac_cv_func_set_escdelay"
10640 10921 if test "x$ac_cv_func_set_escdelay" = xyes if test "x$ac_cv_func_set_escdelay" = xyes
10641 10922 then : then :
10642 10923
10643 printf "%s\n" "#define HAVE_SET_ESCDELAY_FUNC 1" >>confdefs.h
10924 printf '%s\n' "#define HAVE_SET_ESCDELAY_FUNC 1" >>confdefs.h
10644 10925
10645 10926 fi fi
10646 10927
 
... ... fi
10858 11139
10859 11140 if test "$use_extended_colors" = "yes"; then if test "$use_extended_colors" = "yes"; then
10860 11141
10861 printf "%s\n" "#define HAVE_EXTENDED_COLORS 1" >>confdefs.h
11142 printf '%s\n' "#define HAVE_EXTENDED_COLORS 1" >>confdefs.h
10862 11143
10863 11144 fi fi
10864 11145
 
... ... fi
10875 11156
10876 11157 if test "$use_inotify" = "yes"; then if test "$use_inotify" = "yes"; then
10877 11158 ac_fn_check_decl "$LINENO" "IN_NONBLOCK" "ac_cv_have_decl_IN_NONBLOCK" "#include <sys/inotify.h> ac_fn_check_decl "$LINENO" "IN_NONBLOCK" "ac_cv_have_decl_IN_NONBLOCK" "#include <sys/inotify.h>
10878 " "$ac_c_undeclared_builtin_options" "CFLAGS"
11159 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
10879 11160 if test "x$ac_cv_have_decl_IN_NONBLOCK" = xyes if test "x$ac_cv_have_decl_IN_NONBLOCK" = xyes
10880 11161 then : then :
10881 11162
 
... ... else case e in #(
10884 11165 esac esac
10885 11166 fi fi
10886 11167 ac_fn_check_decl "$LINENO" "IN_CLOEXEC" "ac_cv_have_decl_IN_CLOEXEC" "#include <sys/inotify.h> ac_fn_check_decl "$LINENO" "IN_CLOEXEC" "ac_cv_have_decl_IN_CLOEXEC" "#include <sys/inotify.h>
10887 " "$ac_c_undeclared_builtin_options" "CFLAGS"
11168 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
10888 11169 if test "x$ac_cv_have_decl_IN_CLOEXEC" = xyes if test "x$ac_cv_have_decl_IN_CLOEXEC" = xyes
10889 11170 then : then :
10890 11171
 
... ... else case e in #(
10893 11174 esac esac
10894 11175 fi fi
10895 11176 ac_fn_check_decl "$LINENO" "IN_ATTRIB" "ac_cv_have_decl_IN_ATTRIB" "#include <sys/inotify.h> ac_fn_check_decl "$LINENO" "IN_ATTRIB" "ac_cv_have_decl_IN_ATTRIB" "#include <sys/inotify.h>
10896 " "$ac_c_undeclared_builtin_options" "CFLAGS"
11177 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
10897 11178 if test "x$ac_cv_have_decl_IN_ATTRIB" = xyes if test "x$ac_cv_have_decl_IN_ATTRIB" = xyes
10898 11179 then : then :
10899 11180
 
... ... else case e in #(
10902 11183 esac esac
10903 11184 fi fi
10904 11185 ac_fn_check_decl "$LINENO" "IN_MODIFY" "ac_cv_have_decl_IN_MODIFY" "#include <sys/inotify.h> ac_fn_check_decl "$LINENO" "IN_MODIFY" "ac_cv_have_decl_IN_MODIFY" "#include <sys/inotify.h>
10905 " "$ac_c_undeclared_builtin_options" "CFLAGS"
11186 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
10906 11187 if test "x$ac_cv_have_decl_IN_MODIFY" = xyes if test "x$ac_cv_have_decl_IN_MODIFY" = xyes
10907 11188 then : then :
10908 11189
 
... ... else case e in #(
10911 11192 esac esac
10912 11193 fi fi
10913 11194 ac_fn_check_decl "$LINENO" "IN_CREATE" "ac_cv_have_decl_IN_CREATE" "#include <sys/inotify.h> ac_fn_check_decl "$LINENO" "IN_CREATE" "ac_cv_have_decl_IN_CREATE" "#include <sys/inotify.h>
10914 " "$ac_c_undeclared_builtin_options" "CFLAGS"
11195 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
10915 11196 if test "x$ac_cv_have_decl_IN_CREATE" = xyes if test "x$ac_cv_have_decl_IN_CREATE" = xyes
10916 11197 then : then :
10917 11198
 
... ... else case e in #(
10920 11201 esac esac
10921 11202 fi fi
10922 11203 ac_fn_check_decl "$LINENO" "IN_DELETE" "ac_cv_have_decl_IN_DELETE" "#include <sys/inotify.h> ac_fn_check_decl "$LINENO" "IN_DELETE" "ac_cv_have_decl_IN_DELETE" "#include <sys/inotify.h>
10923 " "$ac_c_undeclared_builtin_options" "CFLAGS"
11204 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
10924 11205 if test "x$ac_cv_have_decl_IN_DELETE" = xyes if test "x$ac_cv_have_decl_IN_DELETE" = xyes
10925 11206 then : then :
10926 11207
 
... ... else case e in #(
10929 11210 esac esac
10930 11211 fi fi
10931 11212 ac_fn_check_decl "$LINENO" "IN_MOVED_FROM" "ac_cv_have_decl_IN_MOVED_FROM" "#include <sys/inotify.h> ac_fn_check_decl "$LINENO" "IN_MOVED_FROM" "ac_cv_have_decl_IN_MOVED_FROM" "#include <sys/inotify.h>
10932 " "$ac_c_undeclared_builtin_options" "CFLAGS"
11213 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
10933 11214 if test "x$ac_cv_have_decl_IN_MOVED_FROM" = xyes if test "x$ac_cv_have_decl_IN_MOVED_FROM" = xyes
10934 11215 then : then :
10935 11216
 
... ... else case e in #(
10938 11219 esac esac
10939 11220 fi fi
10940 11221 ac_fn_check_decl "$LINENO" "IN_MOVED_TO" "ac_cv_have_decl_IN_MOVED_TO" "#include <sys/inotify.h> ac_fn_check_decl "$LINENO" "IN_MOVED_TO" "ac_cv_have_decl_IN_MOVED_TO" "#include <sys/inotify.h>
10941 " "$ac_c_undeclared_builtin_options" "CFLAGS"
11222 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
10942 11223 if test "x$ac_cv_have_decl_IN_MOVED_TO" = xyes if test "x$ac_cv_have_decl_IN_MOVED_TO" = xyes
10943 11224 then : then :
10944 11225
 
... ... else case e in #(
10947 11228 esac esac
10948 11229 fi fi
10949 11230 ac_fn_check_decl "$LINENO" "IN_EXCL_UNLINK" "ac_cv_have_decl_IN_EXCL_UNLINK" "#include <sys/inotify.h> ac_fn_check_decl "$LINENO" "IN_EXCL_UNLINK" "ac_cv_have_decl_IN_EXCL_UNLINK" "#include <sys/inotify.h>
10950 " "$ac_c_undeclared_builtin_options" "CFLAGS"
11231 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
10951 11232 if test "x$ac_cv_have_decl_IN_EXCL_UNLINK" = xyes if test "x$ac_cv_have_decl_IN_EXCL_UNLINK" = xyes
10952 11233 then : then :
10953 11234
 
... ... else case e in #(
10956 11237 esac esac
10957 11238 fi fi
10958 11239 ac_fn_check_decl "$LINENO" "IN_CLOSE_WRITE" "ac_cv_have_decl_IN_CLOSE_WRITE" "#include <sys/inotify.h> ac_fn_check_decl "$LINENO" "IN_CLOSE_WRITE" "ac_cv_have_decl_IN_CLOSE_WRITE" "#include <sys/inotify.h>
10959 " "$ac_c_undeclared_builtin_options" "CFLAGS"
11240 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
10960 11241 if test "x$ac_cv_have_decl_IN_CLOSE_WRITE" = xyes if test "x$ac_cv_have_decl_IN_CLOSE_WRITE" = xyes
10961 11242 then : then :
10962 11243
 
... ... else case e in #(
10965 11246 esac esac
10966 11247 fi fi
10967 11248 ac_fn_check_decl "$LINENO" "IN_Q_OVERFLOW" "ac_cv_have_decl_IN_Q_OVERFLOW" "#include <sys/inotify.h> ac_fn_check_decl "$LINENO" "IN_Q_OVERFLOW" "ac_cv_have_decl_IN_Q_OVERFLOW" "#include <sys/inotify.h>
10968 " "$ac_c_undeclared_builtin_options" "CFLAGS"
11249 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
10969 11250 if test "x$ac_cv_have_decl_IN_Q_OVERFLOW" = xyes if test "x$ac_cv_have_decl_IN_Q_OVERFLOW" = xyes
10970 11251 then : then :
10971 11252
 
... ... fi
11004 11285
11005 11286 if test "$use_inotify" = "yes"; then if test "$use_inotify" = "yes"; then
11006 11287
11007 printf "%s\n" "#define HAVE_INOTIFY 1" >>confdefs.h
11288 printf '%s\n' "#define HAVE_INOTIFY 1" >>confdefs.h
11008 11289
11009 11290 fi fi
11010 11291 fi fi
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
11069 11350
11070 11351 if test "$use_xattrs" = "yes"; then if test "$use_xattrs" = "yes"; then
11071 11352
11072 printf "%s\n" "#define HAVE_XATTRS 1" >>confdefs.h
11353 printf '%s\n' "#define HAVE_XATTRS 1" >>confdefs.h
11073 11354
11074 11355 fi fi
11075 11356 fi fi
 
... ... minor="${version#*.}"
11083 11364 if test "x$major" != "x" -a "x$minor" != "x" ; then if test "x$major" != "x" -a "x$minor" != "x" ; then
11084 11365 if test $major -eq 7 -a $minor -ge 1 -o $major -gt 7; then if test $major -eq 7 -a $minor -ge 1 -o $major -gt 7; then
11085 11366
11086 printf "%s\n" "#define SUPPORT_NO_CLOBBER 1" >>confdefs.h
11367 printf '%s\n' "#define SUPPORT_NO_CLOBBER 1" >>confdefs.h
11087 11368
11088 11369 fi fi
11089 11370 if test $major -eq 7 -a $minor -ge 6 -o $major -gt 7; then if test $major -eq 7 -a $minor -ge 6 -o $major -gt 7; then
11090 11371
11091 printf "%s\n" "#define SUPPORT_REFLINK_AUTO 1" >>confdefs.h
11372 printf '%s\n' "#define SUPPORT_REFLINK_AUTO 1" >>confdefs.h
11092 11373
11093 11374 fi fi
11094 11375 fi fi
 
... ... esac
11115 11396 fi fi
11116 11397
11117 11398 if test "x$use_gtk" != "xuse_glib"; then if test "x$use_gtk" != "xuse_glib"; then
11118 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: \"--with(out)-gtk flag is obsolete, please use --with(out)-glib instead\"" >&5
11119 printf "%s\n" "$as_me: WARNING: \"--with(out)-gtk flag is obsolete, please use --with(out)-glib instead\"" >&2;}
11399 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: \"--with(out)-gtk flag is obsolete, please use --with(out)-glib instead\"" >&5
11400 printf '%s\n' "$as_me: WARNING: \"--with(out)-gtk flag is obsolete, please use --with(out)-glib instead\"" >&2;}
11120 11401 use_glib=$use_gtk use_glib=$use_gtk
11121 11402 fi fi
11122 11403
 
... ... esac
11225 11506 fi fi
11226 11507
11227 11508
11228 printf "%s\n" "#define HAVE_GLIB 1" >>confdefs.h
11509 printf '%s\n' "#define HAVE_GLIB 1" >>confdefs.h
11229 11510
11230 11511 else else
11231 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: \"Could not find glib-2.0/gio-2.0 via pkg-config. No GLib support.\"" >&5
11232 printf "%s\n" "$as_me: WARNING: \"Could not find glib-2.0/gio-2.0 via pkg-config. No GLib support.\"" >&2;}
11512 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: \"Could not find glib-2.0/gio-2.0 via pkg-config. No GLib support.\"" >&5
11513 printf '%s\n' "$as_me: WARNING: \"Could not find glib-2.0/gio-2.0 via pkg-config. No GLib support.\"" >&2;}
11233 11514 fi fi
11234 11515 else else
11235 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: \"Could not find pkg-config. No GLib support.\"" >&5
11236 printf "%s\n" "$as_me: WARNING: \"Could not find pkg-config. No GLib support.\"" >&2;}
11516 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: \"Could not find pkg-config. No GLib support.\"" >&5
11517 printf '%s\n' "$as_me: WARNING: \"Could not find pkg-config. No GLib support.\"" >&2;}
11237 11518 fi fi
11238 11519 fi fi
11239 11520
11240 11521 if test "$use_libmagic" = "yes"; then if test "$use_libmagic" = "yes"; then
11241 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for magic_open in -lmagic" >&5
11522 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for magic_open in -lmagic" >&5
11242 11523 printf %s "checking for magic_open in -lmagic... " >&6; } printf %s "checking for magic_open in -lmagic... " >&6; }
11243 11524 if test ${ac_cv_lib_magic_magic_open+y} if test ${ac_cv_lib_magic_magic_open+y}
11244 11525 then : then :
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam \
11279 11560 LIBS=$ac_check_lib_save_LIBS ;; LIBS=$ac_check_lib_save_LIBS ;;
11280 11561 esac esac
11281 11562 fi fi
11282 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_magic_magic_open" >&5
11283 printf "%s\n" "$ac_cv_lib_magic_magic_open" >&6; }
11563 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_magic_magic_open" >&5
11564 printf '%s\n' "$ac_cv_lib_magic_magic_open" >&6; }
11284 11565 if test "x$ac_cv_lib_magic_magic_open" = xyes if test "x$ac_cv_lib_magic_magic_open" = xyes
11285 11566 then : then :
11286 11567 LIBS="$LIBS -lmagic" LIBS="$LIBS -lmagic"
 
... ... esac
11330 11611 fi fi
11331 11612
11332 11613 ac_fn_check_decl "$LINENO" "MAGIC_MIME_TYPE" "ac_cv_have_decl_MAGIC_MIME_TYPE" "#include <magic.h> ac_fn_check_decl "$LINENO" "MAGIC_MIME_TYPE" "ac_cv_have_decl_MAGIC_MIME_TYPE" "#include <magic.h>
11333 " "$ac_c_undeclared_builtin_options" "CFLAGS"
11614 " "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
11334 11615 if test "x$ac_cv_have_decl_MAGIC_MIME_TYPE" = xyes if test "x$ac_cv_have_decl_MAGIC_MIME_TYPE" = xyes
11335 11616 then : then :
11336 11617 ac_have_decl=1 ac_have_decl=1
 
... ... else case e in #(
11338 11619 e) ac_have_decl=0 ;; e) ac_have_decl=0 ;;
11339 11620 esac esac
11340 11621 fi fi
11341 printf "%s\n" "#define HAVE_DECL_MAGIC_MIME_TYPE $ac_have_decl" >>confdefs.h
11622 printf '%s\n' "#define HAVE_DECL_MAGIC_MIME_TYPE $ac_have_decl" >>confdefs.h
11342 11623
11343 11624
11344 printf "%s\n" "#define HAVE_LIBMAGIC 1" >>confdefs.h
11625 printf '%s\n' "#define HAVE_LIBMAGIC 1" >>confdefs.h
11345 11626
11346 11627 fi fi
11347 11628
 
... ... fi
11428 11709
11429 11710 if test "$extended_keys" = "yes"; then if test "$extended_keys" = "yes"; then
11430 11711
11431 printf "%s\n" "#define ENABLE_EXTENDED_KEYS 1" >>confdefs.h
11712 printf '%s\n' "#define ENABLE_EXTENDED_KEYS 1" >>confdefs.h
11432 11713
11433 11714 fi fi
11434 11715
11435 11716 if test "$desktop_files" = "yes"; then if test "$desktop_files" = "yes"; then
11436 11717
11437 printf "%s\n" "#define ENABLE_DESKTOP_FILES 1" >>confdefs.h
11718 printf '%s\n' "#define ENABLE_DESKTOP_FILES 1" >>confdefs.h
11438 11719
11439 11720 fi fi
11440 11721
11441 11722 if test "$remote_cmds" = "yes"; then if test "$remote_cmds" = "yes"; then
11442 11723
11443 printf "%s\n" "#define ENABLE_REMOTE_CMDS 1" >>confdefs.h
11724 printf '%s\n' "#define ENABLE_REMOTE_CMDS 1" >>confdefs.h
11444 11725
11445 11726 fi fi
11446 11727
11447 11728 if test "$use_dyn_libX11" = "yes"; then if test "$use_dyn_libX11" = "yes"; then
11448 11729 ORIG_LIBS="$LIBS" ORIG_LIBS="$LIBS"
11449 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
11730 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
11450 11731 printf %s "checking for dlopen in -ldl... " >&6; } printf %s "checking for dlopen in -ldl... " >&6; }
11451 11732 if test ${ac_cv_lib_dl_dlopen+y} if test ${ac_cv_lib_dl_dlopen+y}
11452 11733 then : then :
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam \
11487 11768 LIBS=$ac_check_lib_save_LIBS ;; LIBS=$ac_check_lib_save_LIBS ;;
11488 11769 esac esac
11489 11770 fi fi
11490 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
11491 printf "%s\n" "$ac_cv_lib_dl_dlopen" >&6; }
11771 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
11772 printf '%s\n' "$ac_cv_lib_dl_dlopen" >&6; }
11492 11773 if test "x$ac_cv_lib_dl_dlopen" = xyes if test "x$ac_cv_lib_dl_dlopen" = xyes
11493 11774 then : then :
11494 11775
 
... ... fi
11531 11812
11532 11813 if test "$use_dyn_libX11" != "yes"; then if test "$use_dyn_libX11" != "yes"; then
11533 11814 LIBS="$ORIG_LIBS" LIBS="$ORIG_LIBS"
11534 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: \"libdl seems to don't work as expected. No dynamic X11.\"" >&5
11535 printf "%s\n" "$as_me: WARNING: \"libdl seems to don't work as expected. No dynamic X11.\"" >&2;}
11815 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: \"libdl seems to don't work as expected. No dynamic X11.\"" >&5
11816 printf '%s\n' "$as_me: WARNING: \"libdl seems to don't work as expected. No dynamic X11.\"" >&2;}
11536 11817 fi fi
11537 11818 fi fi
11538 11819
11539 11820 if test "$use_libX11" = "yes"; then if test "$use_libX11" = "yes"; then
11540 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for XOpenDisplay in -lX11" >&5
11821 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for XOpenDisplay in -lX11" >&5
11541 11822 printf %s "checking for XOpenDisplay in -lX11... " >&6; } printf %s "checking for XOpenDisplay in -lX11... " >&6; }
11542 11823 if test ${ac_cv_lib_X11_XOpenDisplay+y} if test ${ac_cv_lib_X11_XOpenDisplay+y}
11543 11824 then : then :
 
... ... rm -f core conftest.err conftest.$ac_objext conftest.beam \
11578 11859 LIBS=$ac_check_lib_save_LIBS ;; LIBS=$ac_check_lib_save_LIBS ;;
11579 11860 esac esac
11580 11861 fi fi
11581 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_X11_XOpenDisplay" >&5
11582 printf "%s\n" "$ac_cv_lib_X11_XOpenDisplay" >&6; }
11862 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_X11_XOpenDisplay" >&5
11863 printf '%s\n' "$ac_cv_lib_X11_XOpenDisplay" >&6; }
11583 11864 if test "x$ac_cv_lib_X11_XOpenDisplay" = xyes if test "x$ac_cv_lib_X11_XOpenDisplay" = xyes
11584 11865 then : then :
11585 11866
 
... ... esac
11602 11883 fi fi
11603 11884
11604 11885
11605 printf "%s\n" "#define HAVE_X11 1" >>confdefs.h
11886 printf '%s\n' "#define HAVE_X11 1" >>confdefs.h
11606 11887
11607 11888 if test "$use_dyn_libX11" = "yes"; then if test "$use_dyn_libX11" = "yes"; then
11608 11889
11609 printf "%s\n" "#define DYN_X11 1" >>confdefs.h
11890 printf '%s\n' "#define DYN_X11 1" >>confdefs.h
11610 11891
11611 11892 else else
11612 11893 LIBS="$LIBS -lX11" LIBS="$LIBS -lX11"
 
... ... fi
11635 11916
11636 11917 if test "$build_timestamp" = "yes"; then if test "$build_timestamp" = "yes"; then
11637 11918
11638 printf "%s\n" "#define WITH_BUILD_TIMESTAMP 1" >>confdefs.h
11919 printf '%s\n' "#define WITH_BUILD_TIMESTAMP 1" >>confdefs.h
11639 11920
11640 11921 fi fi
11641 11922
 
... ... cat >confcache <<\_ACEOF
11677 11958
11678 11959 _ACEOF _ACEOF
11679 11960
11680 # The following way of writing the cache mishandles newlines in values,
11681 # but we know of no workaround that is simple, portable, and efficient.
11682 # So, we kill variables containing newlines.
11683 # Ultrix sh set writes to stderr and can't be redirected directly,
11684 # and sets the high bit in the cache file unless we assign to the vars.
11685 (
11686 for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
11687 eval ac_val=\$$ac_var
11688 case $ac_val in #(
11689 *${as_nl}*)
11690 case $ac_var in #(
11691 *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
11692 printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
11693 esac
11694 case $ac_var in #(
11695 _ | IFS | as_nl) ;; #(
11696 BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
11697 *) { eval $ac_var=; unset $ac_var;} ;;
11698 esac ;;
11699 esac
11700 done
11701
11702 (set) 2>&1 |
11703 case $as_nl`(ac_space=' '; set) 2>&1` in #(
11704 *${as_nl}ac_space=\ *)
11705 # 'set' does not quote correctly, so add quotes: double-quote
11706 # substitution turns \\\\ into \\, and sed turns \\ into \.
11707 sed -n \
11708 "s/'/'\\\\''/g;
11709 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
11710 ;; #(
11711 *)
11712 # 'set' quotes correctly as required by POSIX, so do not add quotes.
11713 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
11714 ;;
11715 esac |
11716 sort
11717 ) |
11961 ac_cache_dump |
11718 11962 sed ' sed '
11719 11963 /^ac_cv_env_/b end /^ac_cv_env_/b end
11720 11964 t clear t clear
 
... ... printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;}
11726 11970 if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
11727 11971 if test -w "$cache_file"; then if test -w "$cache_file"; then
11728 11972 if test "x$cache_file" != "x/dev/null"; then if test "x$cache_file" != "x/dev/null"; then
11729 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
11730 printf "%s\n" "$as_me: updating cache $cache_file" >&6;}
11973 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
11974 printf '%s\n' "$as_me: updating cache $cache_file" >&6;}
11731 11975 if test ! -f "$cache_file" || test -h "$cache_file"; then if test ! -f "$cache_file" || test -h "$cache_file"; then
11732 11976 cat confcache >"$cache_file" cat confcache >"$cache_file"
11733 11977 else else
 
... ... printf "%s\n" "$as_me: updating cache $cache_file" >&6;}
11741 11985 fi fi
11742 11986 fi fi
11743 11987 else else
11744 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
11745 printf "%s\n" "$as_me: not updating unwritable cache $cache_file" >&6;}
11988 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
11989 printf '%s\n' "$as_me: not updating unwritable cache $cache_file" >&6;}
11746 11990 fi fi
11747 11991 fi fi
11748 11992 rm -f confcache rm -f confcache
 
... ... U=
11759 12003 for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
11760 12004 # 1. Remove the extension, and $U if already installed. # 1. Remove the extension, and $U if already installed.
11761 12005 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
11762 ac_i=`printf "%s\n" "$ac_i" | sed "$ac_script"`
12006 ac_i=`printf '%s\n' "$ac_i" | sed "$ac_script"`
11763 12007 # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR
11764 12008 # will be set to the directory where LIBOBJS objects are built. # will be set to the directory where LIBOBJS objects are built.
11765 12009 as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
 
... ... LIBOBJS=$ac_libobjs
11770 12014 LTLIBOBJS=$ac_ltlibobjs LTLIBOBJS=$ac_ltlibobjs
11771 12015
11772 12016
11773 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5
12017 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5
11774 12018 printf %s "checking that generated files are newer than configure... " >&6; } printf %s "checking that generated files are newer than configure... " >&6; }
11775 12019 if test -n "$am_sleep_pid"; then if test -n "$am_sleep_pid"; then
11776 12020 # Hide warnings about reused PIDs. # Hide warnings about reused PIDs.
11777 12021 wait $am_sleep_pid 2>/dev/null wait $am_sleep_pid 2>/dev/null
11778 12022 fi fi
11779 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: done" >&5
11780 printf "%s\n" "done" >&6; }
12023 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: done" >&5
12024 printf '%s\n' "done" >&6; }
11781 12025 case $enable_silent_rules in # ((( case $enable_silent_rules in # (((
11782 12026 yes) AM_DEFAULT_VERBOSITY=0;; yes) AM_DEFAULT_VERBOSITY=0;;
11783 12027 no) AM_DEFAULT_VERBOSITY=1;; no) AM_DEFAULT_VERBOSITY=1;;
 
... ... fi
11818 12062
11819 12063
11820 12064 : "${CONFIG_STATUS=./config.status}" : "${CONFIG_STATUS=./config.status}"
12065 case $CONFIG_STATUS in #(
12066 -*) :
12067 CONFIG_STATUS=./$CONFIG_STATUS ;; #(
12068 */*) :
12069 ;; #(
12070 *) :
12071 CONFIG_STATUS=./$CONFIG_STATUS ;;
12072 esac
12073
11821 12074 ac_write_fail=0 ac_write_fail=0
11822 ac_clean_files_save=$ac_clean_files
11823 ac_clean_files="$ac_clean_files $CONFIG_STATUS"
11824 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
11825 printf "%s\n" "$as_me: creating $CONFIG_STATUS" >&6;}
12075 ac_clean_CONFIG_STATUS='"$CONFIG_STATUS"'
12076 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
12077 printf '%s\n' "$as_me: creating $CONFIG_STATUS" >&6;}
11826 12078 as_write_fail=0 as_write_fail=0
11827 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
12079 cat >"$CONFIG_STATUS" <<_ASEOF || as_write_fail=1
11828 12080 #! $SHELL #! $SHELL
11829 12081 # Generated by $as_me. # Generated by $as_me.
11830 12082 # Run this file to recreate the current configuration. # Run this file to recreate the current configuration.
 
... ... ac_cs_silent=false
11838 12090 SHELL=\${CONFIG_SHELL-$SHELL} SHELL=\${CONFIG_SHELL-$SHELL}
11839 12091 export SHELL export SHELL
11840 12092 _ASEOF _ASEOF
11841 cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
12093 cat >>"$CONFIG_STATUS" <<\_ASEOF || as_write_fail=1
11842 12094 ## -------------------- ## ## -------------------- ##
11843 12095 ## M4sh Initialization. ## ## M4sh Initialization. ##
11844 12096 ## -------------------- ## ## -------------------- ##
 
... ... then :
11850 12102 emulate sh emulate sh
11851 12103 NULLCMD=: NULLCMD=:
11852 12104 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
11853 # is contrary to our usage. Disable this feature.
12105 # contradicts POSIX and common usage. Disable this.
11854 12106 alias -g '${1+"$@"}'='"$@"' alias -g '${1+"$@"}'='"$@"'
11855 12107 setopt NO_GLOB_SUBST setopt NO_GLOB_SUBST
11856 12108 else case e in #( else case e in #(
 
... ... if test "x$as_myself" = x; then
11937 12189 as_myself=$0 as_myself=$0
11938 12190 fi fi
11939 12191 if test ! -f "$as_myself"; then if test ! -f "$as_myself"; then
11940 printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
12192 printf '%s\n' "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
11941 12193 exit 1 exit 1
11942 12194 fi fi
11943 12195
 
... ... as_fn_error ()
11953 12205 as_status=$1; test $as_status -eq 0 && as_status=1 as_status=$1; test $as_status -eq 0 && as_status=1
11954 12206 if test "$4"; then if test "$4"; then
11955 12207 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
11956 printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
12208 printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
11957 12209 fi fi
11958 printf "%s\n" "$as_me: error: $2" >&2
12210 printf '%s\n' "$as_me: error: $2" >&2
11959 12211 as_fn_exit $as_status as_fn_exit $as_status
11960 12212 } # as_fn_error } # as_fn_error
11961 12213
 
... ... as_me=`$as_basename -- "$0" ||
12050 12302 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
12051 12303 X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(//\)$' \| \
12052 12304 X"$0" : 'X\(/\)' \| . 2>/dev/null || X"$0" : 'X\(/\)' \| . 2>/dev/null ||
12053 printf "%s\n" X/"$0" |
12305 printf '%s\n' X/"$0" |
12054 12306 sed '/^.*\/\([^/][^/]*\)\/*$/{ sed '/^.*\/\([^/][^/]*\)\/*$/{
12055 12307 s//\1/ s//\1/
12056 12308 q q
 
... ... as_cr_Letters=$as_cr_letters$as_cr_LETTERS
12072 12324 as_cr_digits='0123456789' as_cr_digits='0123456789'
12073 12325 as_cr_alnum=$as_cr_Letters$as_cr_digits as_cr_alnum=$as_cr_Letters$as_cr_digits
12074 12326
12075
12076 # Determine whether it's possible to make 'echo' print without a newline.
12077 # These variables are no longer used directly by Autoconf, but are AC_SUBSTed
12078 # for compatibility with existing Makefiles.
12079 ECHO_C= ECHO_N= ECHO_T=
12080 case `echo -n x` in #(((((
12081 -n*)
12082 case `echo 'xy\c'` in
12083 *c*) ECHO_T=' ';; # ECHO_T is single tab character.
12084 xy) ECHO_C='\c';;
12085 *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
12086 ECHO_T=' ';;
12087 esac;;
12088 *)
12089 ECHO_N='-n';;
12090 esac
12091
12092 # For backward compatibility with old third-party macros, we provide
12093 # the shell variables $as_echo and $as_echo_n. New code should use
12094 # AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively.
12095 as_echo='printf %s\n'
12096 as_echo_n='printf %s'
12097
12098 12327 rm -f conf$$ conf$$.exe conf$$.file rm -f conf$$ conf$$.exe conf$$.file
12099 12328 if test -d conf$$.dir; then if test -d conf$$.dir; then
12100 12329 rm -f conf$$.dir/conf$$.file rm -f conf$$.dir/conf$$.file
 
... ... as_fn_mkdir_p ()
12136 12365 as_dirs= as_dirs=
12137 12366 while :; do while :; do
12138 12367 case $as_dir in #( case $as_dir in #(
12139 *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
12368 *\'*) as_qdir=`printf '%s\n' "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
12140 12369 *) as_qdir=$as_dir;; *) as_qdir=$as_dir;;
12141 12370 esac esac
12142 12371 as_dirs="'$as_qdir' $as_dirs" as_dirs="'$as_qdir' $as_dirs"
 
... ... $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
12145 12374 X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \
12146 12375 X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(//\)$' \| \
12147 12376 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
12148 printf "%s\n" X"$as_dir" |
12377 printf '%s\n' X"$as_dir" |
12149 12378 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
12150 12379 s//\1/ s//\1/
12151 12380 q q
 
... ... as_tr_sh="eval sed '$as_sed_sh'" # deprecated
12198 12427
12199 12428
12200 12429 exec 6>&1 exec 6>&1
12201 ## ----------------------------------- ##
12202 ## Main body of $CONFIG_STATUS script. ##
12203 ## ----------------------------------- ##
12430 ## ------------------------------------- ##
12431 ## Main body of "$CONFIG_STATUS" script. ##
12432 ## ------------------------------------- ##
12204 12433 _ASEOF _ASEOF
12205 test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
12434 test $as_write_fail = 0 && chmod +x "$CONFIG_STATUS" || ac_write_fail=1
12206 12435
12207 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
12436 cat >>"$CONFIG_STATUS" <<\_ACEOF || ac_write_fail=1
12208 12437 # Save the log message, to keep $0 and so on meaningful, and to # Save the log message, to keep $0 and so on meaningful, and to
12209 12438 # report actual input values of CONFIG_FILES etc. instead of their # report actual input values of CONFIG_FILES etc. instead of their
12210 12439 # values after options handling. # values after options handling.
12211 12440 ac_log=" ac_log="
12212 12441 This file was extended by vifm $as_me 0.15, which was This file was extended by vifm $as_me 0.15, which was
12213 generated by GNU Autoconf 2.72. Invocation command line was
12442 generated by GNU Autoconf 2.73. Invocation command line was
12214 12443
12215 12444 CONFIG_FILES = $CONFIG_FILES CONFIG_FILES = $CONFIG_FILES
12216 12445 CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_HEADERS = $CONFIG_HEADERS
 
... ... case $ac_config_headers in *"
12232 12461 esac esac
12233 12462
12234 12463
12235 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
12464 cat >>"$CONFIG_STATUS" <<_ACEOF || ac_write_fail=1
12236 12465 # Files that config.status was made for. # Files that config.status was made for.
12237 12466 config_files="$ac_config_files" config_files="$ac_config_files"
12238 12467 config_headers="$ac_config_headers" config_headers="$ac_config_headers"
 
... ... config_commands="$ac_config_commands"
12240 12469
12241 12470 _ACEOF _ACEOF
12242 12471
12243 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
12472 cat >>"$CONFIG_STATUS" <<\_ACEOF || ac_write_fail=1
12244 12473 ac_cs_usage="\ ac_cs_usage="\
12245 12474 '$as_me' instantiates files and other configuration actions '$as_me' instantiates files and other configuration actions
12246 12475 from templates according to the current configuration. Unless the files from templates according to the current configuration. Unless the files
 
... ... Report bugs to <xaizek@posteo.net>.
12273 12502 vifm home page: <https://vifm.info>." vifm home page: <https://vifm.info>."
12274 12503
12275 12504 _ACEOF _ACEOF
12276 ac_cs_config=`printf "%s\n" "$ac_configure_args" | sed "$ac_safe_unquote"`
12277 ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\''/g"`
12278 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
12505 ac_cs_config=`printf '%s\n' "$ac_configure_args" | sed "$ac_safe_unquote"`
12506 ac_cs_config_escaped=`printf '%s\n' "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\''/g"`
12507 cat >>"$CONFIG_STATUS" <<_ACEOF || ac_write_fail=1
12279 12508 ac_cs_config='$ac_cs_config_escaped' ac_cs_config='$ac_cs_config_escaped'
12280 12509 ac_cs_version="\\ ac_cs_version="\\
12281 12510 vifm config.status 0.15 vifm config.status 0.15
12282 configured by $0, generated by GNU Autoconf 2.72,
12511 configured by $0, generated by GNU Autoconf 2.73,
12283 12512 with options \\"\$ac_cs_config\\" with options \\"\$ac_cs_config\\"
12284 12513
12285 Copyright (C) 2023 Free Software Foundation, Inc.
12514 Copyright (C) 2026 Free Software Foundation, Inc.
12286 12515 This config.status script is free software; the Free Software Foundation This config.status script is free software; the Free Software Foundation
12287 12516 gives unlimited permission to copy, distribute and modify it." gives unlimited permission to copy, distribute and modify it."
12288 12517
 
... ... srcdir='$srcdir'
12291 12520 INSTALL='$INSTALL' INSTALL='$INSTALL'
12292 12521 MKDIR_P='$MKDIR_P' MKDIR_P='$MKDIR_P'
12293 12522 AWK='$AWK' AWK='$AWK'
12294 test -n "\$AWK" || AWK=awk
12523 test -n "\$AWK" || {
12524 awk '' </dev/null ||
12525 as_fn_error \$? "try installing gawk"
12526 AWK=awk
12527 }
12295 12528 _ACEOF _ACEOF
12296 12529
12297 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
12530 cat >>"$CONFIG_STATUS" <<\_ACEOF || ac_write_fail=1
12298 12531 # The default lists apply if the user does not specify any file. # The default lists apply if the user does not specify any file.
12299 12532 ac_need_defaults=: ac_need_defaults=:
12300 12533 while test $# != 0 while test $# != 0
 
... ... do
12322 12555 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
12323 12556 ac_cs_recheck=: ;; ac_cs_recheck=: ;;
12324 12557 --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
12325 printf "%s\n" "$ac_cs_version"; exit ;;
12558 printf '%s\n' "$ac_cs_version"; exit ;;
12326 12559 --config | --confi | --conf | --con | --co | --c ) --config | --confi | --conf | --con | --co | --c )
12327 printf "%s\n" "$ac_cs_config"; exit ;;
12560 printf '%s\n' "$ac_cs_config"; exit ;;
12328 12561 --debug | --debu | --deb | --de | --d | -d ) --debug | --debu | --deb | --de | --d | -d )
12329 12562 debug=: ;; debug=: ;;
12330 12563 --file | --fil | --fi | --f ) --file | --fil | --fi | --f )
12331 12564 $ac_shift $ac_shift
12332 12565 case $ac_optarg in case $ac_optarg in
12333 *\'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
12566 *\'*) ac_optarg=`printf '%s\n' "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
12334 12567 '') as_fn_error $? "missing file argument" ;; '') as_fn_error $? "missing file argument" ;;
12335 12568 esac esac
12336 12569 as_fn_append CONFIG_FILES " '$ac_optarg'" as_fn_append CONFIG_FILES " '$ac_optarg'"
 
... ... do
12338 12571 --header | --heade | --head | --hea ) --header | --heade | --head | --hea )
12339 12572 $ac_shift $ac_shift
12340 12573 case $ac_optarg in case $ac_optarg in
12341 *\'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
12574 *\'*) ac_optarg=`printf '%s\n' "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
12342 12575 esac esac
12343 12576 as_fn_append CONFIG_HEADERS " '$ac_optarg'" as_fn_append CONFIG_HEADERS " '$ac_optarg'"
12344 12577 ac_need_defaults=false;; ac_need_defaults=false;;
 
... ... do
12347 12580 as_fn_error $? "ambiguous option: '$1' as_fn_error $? "ambiguous option: '$1'
12348 12581 Try '$0 --help' for more information.";; Try '$0 --help' for more information.";;
12349 12582 --help | --hel | -h ) --help | --hel | -h )
12350 printf "%s\n" "$ac_cs_usage"; exit ;;
12583 printf '%s\n' "$ac_cs_usage"; exit ;;
12351 12584 -q | -quiet | --quiet | --quie | --qui | --qu | --q \ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
12352 12585 | -silent | --silent | --silen | --sile | --sil | --si | --s) | -silent | --silent | --silen | --sile | --sil | --si | --s)
12353 12586 ac_cs_silent=: ;; ac_cs_silent=: ;;
 
... ... if $ac_cs_silent; then
12371 12604 fi fi
12372 12605
12373 12606 _ACEOF _ACEOF
12374 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
12607 cat >>"$CONFIG_STATUS" <<_ACEOF || ac_write_fail=1
12375 12608 if \$ac_cs_recheck; then if \$ac_cs_recheck; then
12376 12609 set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
12377 12610 shift shift
12378 \printf "%s\n" "running CONFIG_SHELL=$SHELL \$*" >&6
12611 \printf '%s\n' "running CONFIG_SHELL=$SHELL \$*" >&6
12379 12612 CONFIG_SHELL='$SHELL' CONFIG_SHELL='$SHELL'
12380 12613 export CONFIG_SHELL export CONFIG_SHELL
12381 12614 exec "\$@" exec "\$@"
12382 12615 fi fi
12383 12616
12384 12617 _ACEOF _ACEOF
12385 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
12618 cat >>"$CONFIG_STATUS" <<\_ACEOF || ac_write_fail=1
12386 12619 exec 5>>config.log exec 5>>config.log
12387 12620 { {
12388 12621 echo echo
12389 12622 sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
12390 12623 ## Running $as_me. ## ## Running $as_me. ##
12391 12624 _ASBOX _ASBOX
12392 printf "%s\n" "$ac_log"
12625 printf '%s\n' "$ac_log"
12393 12626 } >&5 } >&5
12394 12627
12395 12628 _ACEOF _ACEOF
12396 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
12629 cat >>"$CONFIG_STATUS" <<_ACEOF || ac_write_fail=1
12397 12630 # #
12398 12631 # INIT-COMMANDS # INIT-COMMANDS
12399 12632 # #
 
... ... AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"
12401 12634
12402 12635 _ACEOF _ACEOF
12403 12636
12404 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
12637 cat >>"$CONFIG_STATUS" <<\_ACEOF || ac_write_fail=1
12405 12638
12406 12639 # Handling of arguments. # Handling of arguments.
12407 12640 for ac_config_target in $ac_config_targets for ac_config_target in $ac_config_targets
 
... ... _ACEOF
12484 12717 echo "_ACEOF" echo "_ACEOF"
12485 12718 } >conf$$subs.sh || } >conf$$subs.sh ||
12486 12719 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
12487 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
12720 ac_delim_num=`echo "$ac_subst_vars" | sed -n '$='`
12488 12721 ac_delim='%!_!# ' ac_delim='%!_!# '
12489 12722 for ac_last_try in false false false false false :; do for ac_last_try in false false false false false :; do
12490 12723 . ./conf$$subs.sh || . ./conf$$subs.sh ||
12491 12724 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
12492 12725
12493 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
12726 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | sed -n '$='`
12494 12727 if test $ac_delim_n = $ac_delim_num; then if test $ac_delim_n = $ac_delim_num; then
12495 12728 break break
12496 12729 elif $ac_last_try; then elif $ac_last_try; then
 
... ... for ac_last_try in false false false false false :; do
12501 12734 done done
12502 12735 rm -f conf$$subs.sh rm -f conf$$subs.sh
12503 12736
12504 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
12737 cat >>"$CONFIG_STATUS" <<_ACEOF || ac_write_fail=1
12505 12738 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
12506 12739 _ACEOF _ACEOF
12507 12740 sed -n ' sed -n '
 
... ... t delim
12546 12779 N N
12547 12780 s/\n// s/\n//
12548 12781 } }
12549 ' >>$CONFIG_STATUS || ac_write_fail=1
12782 ' >>"$CONFIG_STATUS" || ac_write_fail=1
12550 12783 rm -f conf$$subs.awk rm -f conf$$subs.awk
12551 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
12784 cat >>"$CONFIG_STATUS" <<_ACEOF || ac_write_fail=1
12552 12785 _ACAWK _ACAWK
12553 12786 cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
12554 12787 for (key in S) S_is_set[key] = 1 for (key in S) S_is_set[key] = 1
 
... ... cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
12577 12810
12578 12811 _ACAWK _ACAWK
12579 12812 _ACEOF _ACEOF
12580 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
12813 cat >>"$CONFIG_STATUS" <<\_ACEOF || ac_write_fail=1
12581 12814 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
12582 12815 sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
12583 12816 else else
 
... ... s/^[^=]*=[ ]*$//
12609 12842 }' }'
12610 12843 fi fi
12611 12844
12612 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
12845 cat >>"$CONFIG_STATUS" <<\_ACEOF || ac_write_fail=1
12613 12846 fi # test -n "$CONFIG_FILES" fi # test -n "$CONFIG_FILES"
12614 12847
12615 12848 # Set up the scripts for CONFIG_HEADERS section. # Set up the scripts for CONFIG_HEADERS section.
 
... ... s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p
12680 12913 b cont b cont
12681 12914 ' <confdefs.h | sed ' ' <confdefs.h | sed '
12682 12915 s/'"$ac_delim"'/"\\\ s/'"$ac_delim"'/"\\\
12683 "/g' >>$CONFIG_STATUS || ac_write_fail=1
12916 "/g' >>"$CONFIG_STATUS" || ac_write_fail=1
12684 12917
12685 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
12918 cat >>"$CONFIG_STATUS" <<_ACEOF || ac_write_fail=1
12686 12919 for (key in D) D_is_set[key] = 1 for (key in D) D_is_set[key] = 1
12687 12920 FS = "" FS = ""
12688 12921 } }
 
... ... cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
12700 12933 macro = mac2[1] macro = mac2[1]
12701 12934 prefix = substr(line, 1, index(line, defundef) - 1) prefix = substr(line, 1, index(line, defundef) - 1)
12702 12935 if (D_is_set[macro]) { if (D_is_set[macro]) {
12936 suffix = P[macro] D[macro]
12937 while (suffix ~ /[\t ]$/) {
12938 suffix = substr(suffix, 1, length(suffix) - 1)
12939 }
12703 12940 # Preserve the white space surrounding the "#". # Preserve the white space surrounding the "#".
12704 print prefix "define", macro P[macro] D[macro]
12941 print prefix "define", macro suffix
12705 12942 next next
12706 12943 } else { } else {
12707 12944 # Replace #undef with comments. This is necessary, for example, # Replace #undef with comments. This is necessary, for example,
 
... ... cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
12716 12953 { print } { print }
12717 12954 _ACAWK _ACAWK
12718 12955 _ACEOF _ACEOF
12719 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
12956 cat >>"$CONFIG_STATUS" <<\_ACEOF || ac_write_fail=1
12720 12957 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
12721 12958 fi # test -n "$CONFIG_HEADERS" fi # test -n "$CONFIG_HEADERS"
12722 12959
 
... ... do
12760 12997 esac || esac ||
12761 12998 as_fn_error 1 "cannot find input file: '$ac_f'" "$LINENO" 5;; as_fn_error 1 "cannot find input file: '$ac_f'" "$LINENO" 5;;
12762 12999 esac esac
12763 case $ac_f in *\'*) ac_f=`printf "%s\n" "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
13000 case $ac_f in *\'*) ac_f=`printf '%s\n' "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
12764 13001 as_fn_append ac_file_inputs " '$ac_f'" as_fn_append ac_file_inputs " '$ac_f'"
12765 13002 done done
12766 13003
 
... ... do
12768 13005 # use $as_me), people would be surprised to read: # use $as_me), people would be surprised to read:
12769 13006 # /* config.h. Generated by config.status. */ # /* config.h. Generated by config.status. */
12770 13007 configure_input='Generated from '` configure_input='Generated from '`
12771 printf "%s\n" "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
13008 printf '%s\n' "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
12772 13009 `' by configure.' `' by configure.'
12773 13010 if test x"$ac_file" != x-; then if test x"$ac_file" != x-; then
12774 13011 configure_input="$ac_file. $configure_input" configure_input="$ac_file. $configure_input"
12775 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
12776 printf "%s\n" "$as_me: creating $ac_file" >&6;}
13012 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
13013 printf '%s\n' "$as_me: creating $ac_file" >&6;}
12777 13014 fi fi
12778 13015 # Neutralize special characters interpreted by sed in replacement strings. # Neutralize special characters interpreted by sed in replacement strings.
12779 13016 case $configure_input in #( case $configure_input in #(
12780 13017 *\&* | *\|* | *\\* ) *\&* | *\|* | *\\* )
12781 ac_sed_conf_input=`printf "%s\n" "$configure_input" |
13018 ac_sed_conf_input=`printf '%s\n' "$configure_input" |
12782 13019 sed 's/[\\\\&|]/\\\\&/g'`;; #( sed 's/[\\\\&|]/\\\\&/g'`;; #(
12783 13020 *) ac_sed_conf_input=$configure_input;; *) ac_sed_conf_input=$configure_input;;
12784 13021 esac esac
 
... ... $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
12795 13032 X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \
12796 13033 X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(//\)$' \| \
12797 13034 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
12798 printf "%s\n" X"$ac_file" |
13035 printf '%s\n' X"$ac_file" |
12799 13036 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
12800 13037 s//\1/ s//\1/
12801 13038 q q
 
... ... printf "%s\n" X"$ac_file" |
12819 13056 case "$ac_dir" in case "$ac_dir" in
12820 13057 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
12821 13058 *) *)
12822 ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'`
13059 ac_dir_suffix=/`printf '%s\n' "$ac_dir" | sed 's|^\.[\\/]||'`
12823 13060 # A ".." for each directory in $ac_dir_suffix. # A ".." for each directory in $ac_dir_suffix.
12824 ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
13061 ac_top_builddir_sub=`printf '%s\n' "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
12825 13062 case $ac_top_builddir_sub in case $ac_top_builddir_sub in
12826 13063 "") ac_top_builddir_sub=. ac_top_build_prefix= ;; "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
12827 13064 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
 
... ... ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
12866 13103 esac esac
12867 13104 _ACEOF _ACEOF
12868 13105
12869 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
13106 cat >>"$CONFIG_STATUS" <<\_ACEOF || ac_write_fail=1
12870 13107 # If the template does not know about datarootdir, expand it. # If the template does not know about datarootdir, expand it.
12871 13108 # FIXME: This hack should be removed a few years after 2.60. # FIXME: This hack should be removed a few years after 2.60.
12872 13109 ac_datarootdir_hack=; ac_datarootdir_seen= ac_datarootdir_hack=; ac_datarootdir_seen=
 
... ... ac_sed_dataroot='
12883 13120 case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
12884 13121 *datarootdir*) ac_datarootdir_seen=yes;; *datarootdir*) ac_datarootdir_seen=yes;;
12885 13122 *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
12886 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
12887 printf "%s\n" "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
13123 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
13124 printf '%s\n' "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
12888 13125 _ACEOF _ACEOF
12889 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
13126 cat >>"$CONFIG_STATUS" <<_ACEOF || ac_write_fail=1
12890 13127 ac_datarootdir_hack=' ac_datarootdir_hack='
12891 13128 s&@datadir@&$datadir&g s&@datadir@&$datadir&g
12892 13129 s&@docdir@&$docdir&g s&@docdir@&$docdir&g
 
... ... _ACEOF
12900 13137 # Neutralize VPATH when '$srcdir' = '.'. # Neutralize VPATH when '$srcdir' = '.'.
12901 13138 # Shell code in configure.ac might set extrasub. # Shell code in configure.ac might set extrasub.
12902 13139 # FIXME: do we really want to maintain this feature? # FIXME: do we really want to maintain this feature?
12903 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
13140 cat >>"$CONFIG_STATUS" <<_ACEOF || ac_write_fail=1
12904 13141 ac_sed_extra="$ac_vpsub ac_sed_extra="$ac_vpsub
12905 13142 $extrasub $extrasub
12906 13143 _ACEOF _ACEOF
12907 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
13144 cat >>"$CONFIG_STATUS" <<\_ACEOF || ac_write_fail=1
12908 13145 :t :t
12909 13146 /@[a-zA-Z_][a-zA-Z_0-9]*@/!b /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
12910 13147 s|@configure_input@|$ac_sed_conf_input|;t t s|@configure_input@|$ac_sed_conf_input|;t t
 
... ... test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
12928 13165 { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
12929 13166 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
12930 13167 "$ac_tmp/out"`; test -z "$ac_out"; } && "$ac_tmp/out"`; test -z "$ac_out"; } &&
12931 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable 'datarootdir'
13168 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable 'datarootdir'
12932 13169 which seems to be undefined. Please make sure it is defined" >&5 which seems to be undefined. Please make sure it is defined" >&5
12933 printf "%s\n" "$as_me: WARNING: $ac_file contains a reference to the variable 'datarootdir'
13170 printf '%s\n' "$as_me: WARNING: $ac_file contains a reference to the variable 'datarootdir'
12934 13171 which seems to be undefined. Please make sure it is defined" >&2;} which seems to be undefined. Please make sure it is defined" >&2;}
12935 13172
12936 13173 rm -f "$ac_tmp/stdin" rm -f "$ac_tmp/stdin"
 
... ... which seems to be undefined. Please make sure it is defined" >&2;}
12946 13183 # #
12947 13184 if test x"$ac_file" != x-; then if test x"$ac_file" != x-; then
12948 13185 { {
12949 printf "%s\n" "/* $configure_input */" >&1 \
13186 printf '%s\n' "/* $configure_input */" >&1 \
12950 13187 && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
12951 13188 } >"$ac_tmp/config.h" \ } >"$ac_tmp/config.h" \
12952 13189 || as_fn_error $? "could not create $ac_file" "$LINENO" 5 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
12953 13190 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
12954 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
12955 printf "%s\n" "$as_me: $ac_file is unchanged" >&6;}
13191 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
13192 printf '%s\n' "$as_me: $ac_file is unchanged" >&6;}
12956 13193 else else
12957 13194 rm -f "$ac_file" rm -f "$ac_file"
12958 13195 mv "$ac_tmp/config.h" "$ac_file" \ mv "$ac_tmp/config.h" "$ac_file" \
12959 13196 || as_fn_error $? "could not create $ac_file" "$LINENO" 5 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
12960 13197 fi fi
12961 13198 else else
12962 printf "%s\n" "/* $configure_input */" >&1 \
13199 printf '%s\n' "/* $configure_input */" >&1 \
12963 13200 && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
12964 13201 || as_fn_error $? "could not create -" "$LINENO" 5 || as_fn_error $? "could not create -" "$LINENO" 5
12965 13202 fi fi
 
... ... $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
12979 13216 X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \
12980 13217 X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(//\)$' \| \
12981 13218 X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
12982 printf "%s\n" X"$_am_arg" |
13219 printf '%s\n' X"$_am_arg" |
12983 13220 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
12984 13221 s//\1/ s//\1/
12985 13222 q q
 
... ... printf "%s\n" X"$_am_arg" |
12999 13236 s/.*/./; q'`/stamp-h$_am_stamp_count s/.*/./; q'`/stamp-h$_am_stamp_count
13000 13237 ;; ;;
13001 13238
13002 :C) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
13003 printf "%s\n" "$as_me: executing $ac_file commands" >&6;}
13239 :C) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
13240 printf '%s\n' "$as_me: executing $ac_file commands" >&6;}
13004 13241 ;; ;;
13005 13242 esac esac
13006 13243
 
... ... esac
13026 13263 for am_mf for am_mf
13027 13264 do do
13028 13265 # Strip MF so we end up with the name of the file. # Strip MF so we end up with the name of the file.
13029 am_mf=`printf "%s\n" "$am_mf" | sed -e 's/:.*$//'`
13266 am_mf=`printf '%s\n' "$am_mf" | sed -e 's/:.*$//'`
13030 13267 # Check whether this is an Automake generated Makefile which includes # Check whether this is an Automake generated Makefile which includes
13031 13268 # dependency-tracking related rules and includes. # dependency-tracking related rules and includes.
13032 13269 # Grep'ing the whole file directly is not great: AIX grep has a line # Grep'ing the whole file directly is not great: AIX grep has a line
 
... ... $as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
13038 13275 X"$am_mf" : 'X\(//\)[^/]' \| \ X"$am_mf" : 'X\(//\)[^/]' \| \
13039 13276 X"$am_mf" : 'X\(//\)$' \| \ X"$am_mf" : 'X\(//\)$' \| \
13040 13277 X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
13041 printf "%s\n" X"$am_mf" |
13278 printf '%s\n' X"$am_mf" |
13042 13279 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
13043 13280 s//\1/ s//\1/
13044 13281 q q
 
... ... printf "%s\n" X"$am_mf" |
13060 13297 $as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \ $as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \
13061 13298 X"$am_mf" : 'X\(//\)$' \| \ X"$am_mf" : 'X\(//\)$' \| \
13062 13299 X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
13063 printf "%s\n" X/"$am_mf" |
13300 printf '%s\n' X/"$am_mf" |
13064 13301 sed '/^.*\/\([^/][^/]*\)\/*$/{ sed '/^.*\/\([^/][^/]*\)\/*$/{
13065 13302 s//\1/ s//\1/
13066 13303 q q
 
... ... printf "%s\n" X/"$am_mf" |
13085 13322 (exit $ac_status); } || am_rc=$? (exit $ac_status); } || am_rc=$?
13086 13323 done done
13087 13324 if test $am_rc -ne 0; then if test $am_rc -ne 0; then
13088 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
13089 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
13325 { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
13326 printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
13090 13327 as_fn_error $? "Something went wrong bootstrapping makefile fragments as_fn_error $? "Something went wrong bootstrapping makefile fragments
13091 13328 for automatic dependency tracking. If GNU make was not used, consider for automatic dependency tracking. If GNU make was not used, consider
13092 13329 re-running the configure script with MAKE=\"gmake\" (or whatever is re-running the configure script with MAKE=\"gmake\" (or whatever is
 
... ... done # for ac_tag
13109 13346
13110 13347 as_fn_exit 0 as_fn_exit 0
13111 13348 _ACEOF _ACEOF
13112 ac_clean_files=$ac_clean_files_save
13349 ac_clean_CONFIG_STATUS=
13113 13350
13114 13351 test $ac_write_fail = 0 || test $ac_write_fail = 0 ||
13115 13352 as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
 
... ... test $ac_write_fail = 0 ||
13125 13362 # need to make the FD available again. # need to make the FD available again.
13126 13363 if test "$no_create" != yes; then if test "$no_create" != yes; then
13127 13364 ac_cs_success=: ac_cs_success=:
13365 case $CONFIG_STATUS in #(
13366 -*) :
13367 ac_no_opts=-- ;; #(
13368 *) :
13369 ac_no_opts= ;;
13370 esac
13128 13371 ac_config_status_args= ac_config_status_args=
13129 13372 test "$silent" = yes && test "$silent" = yes &&
13130 13373 ac_config_status_args="$ac_config_status_args --quiet" ac_config_status_args="$ac_config_status_args --quiet"
13131 13374 exec 5>/dev/null exec 5>/dev/null
13132 $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
13375 $SHELL $ac_no_opts "$CONFIG_STATUS" $ac_config_status_args ||
13376 ac_cs_success=false
13133 13377 exec 5>>config.log exec 5>>config.log
13134 13378 # Use ||, not &&, to avoid exiting from the if with $? = 1, which # Use ||, not &&, to avoid exiting from the if with $? = 1, which
13135 13379 # would make configure fail if this is the last instruction. # would make configure fail if this is the last instruction.
13136 13380 $ac_cs_success || as_fn_exit 1 $ac_cs_success || as_fn_exit 1
13137 13381 fi fi
13138 13382 if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
13139 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
13140 printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
13383 { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
13384 printf '%s\n' "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
13141 13385 fi fi
13142 13386
13143 13387
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master