diff --git a/Doc/using/configure.rst b/Doc/using/configure.rst
index 22a10db976c4fc6..11d876617cbdc81 100644
--- a/Doc/using/configure.rst
+++ b/Doc/using/configure.rst
@@ -612,6 +612,14 @@ Options for third-party dependencies
C compiler and linker flags for ``libzlib``, used by :mod:`gzip` module,
overriding ``pkg-config``.
+.. option:: --disable-curses
+
+ Do not build nor install the :mod:`curses` module regardless of whether the
+ ``libncurses`` library is present on the host system (built and installed by
+ default if ``libncurses`` is present).
+
+ .. versionadded:: next
+
WebAssembly Options
-------------------
diff --git a/Misc/NEWS.d/next/Build/2025-07-16-11-41-43.gh-issue-136687.ob_uIp.rst b/Misc/NEWS.d/next/Build/2025-07-16-11-41-43.gh-issue-136687.ob_uIp.rst
new file mode 100644
index 000000000000000..d1417ba6543f9c0
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2025-07-16-11-41-43.gh-issue-136687.ob_uIp.rst
@@ -0,0 +1,2 @@
+Add :option:`--disable-curses` option to :file:`configure` to manually exclude
+the :mod:`curses` module from the build.
diff --git a/configure b/configure
index 01faef615a3d5e1..95bd0d1dc921a37 100755
--- a/configure
+++ b/configure
@@ -1,11 +1,11 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.72 for python 3.16.
+# Generated by GNU Autoconf 2.73 for python 3.16.
#
# Report bugs to .
#
#
-# Copyright (C) 1992-1996, 1998-2017, 2020-2023 Free Software Foundation,
+# Copyright (C) 1992-1996, 1998-2017, 2020-2026 Free Software Foundation,
# Inc.
#
#
@@ -22,7 +22,7 @@ then :
emulate sh
NULLCMD=:
# Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
- # is contrary to our usage. Disable this feature.
+ # contradicts POSIX and common usage. Disable this.
alias -g '${1+"$@"}'='"$@"'
setopt NO_GLOB_SUBST
else case e in #(
@@ -109,7 +109,7 @@ if test "x$as_myself" = x; then
as_myself=$0
fi
if test ! -f "$as_myself"; then
- printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
+ printf '%s\n' "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
exit 1
fi
@@ -131,10 +131,13 @@ case $- in # ((((
*x* ) as_opts=-x ;;
* ) as_opts= ;;
esac
-exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
+case $# in # ((
+ 0) exec $CONFIG_SHELL $as_opts "$as_myself" ;;
+ *) exec $CONFIG_SHELL $as_opts "$as_myself" "$@" ;;
+esac
# Admittedly, this is quite paranoid, since all the known shells bail
# out after a failed 'exec'.
-printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2
+printf '%s\n' "$0: could not re-execute with $CONFIG_SHELL" >&2
exit 255
fi
# We don't want this to propagate to other subprocesses.
@@ -145,7 +148,7 @@ then :
emulate sh
NULLCMD=:
# Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
- # is contrary to our usage. Disable this feature.
+ # contradicts POSIX and common usage. Disable this.
alias -g '\${1+\"\$@\"}'='\"\$@\"'
setopt NO_GLOB_SUBST
else case e in #(
@@ -255,22 +258,25 @@ case $- in # ((((
*x* ) as_opts=-x ;;
* ) as_opts= ;;
esac
-exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
+case $# in # ((
+ 0) exec $CONFIG_SHELL $as_opts "$as_myself" ;;
+ *) exec $CONFIG_SHELL $as_opts "$as_myself" "$@" ;;
+esac
# Admittedly, this is quite paranoid, since all the known shells bail
# out after a failed 'exec'.
-printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2
+printf '%s\n' "$0: could not re-execute with $CONFIG_SHELL" >&2
exit 255
fi
if test x$as_have_required = xno
then :
- printf "%s\n" "$0: This script requires a shell more modern than all"
- printf "%s\n" "$0: the shells that I found on your system."
+ printf '%s\n' "$0: This script requires a shell more modern than all"
+ printf '%s\n' "$0: the shells that I found on your system."
if test ${ZSH_VERSION+y} ; then
- printf "%s\n" "$0: In particular, zsh $ZSH_VERSION has bugs and should"
- printf "%s\n" "$0: be upgraded to zsh 4.3.4 or later."
+ printf '%s\n' "$0: In particular, zsh $ZSH_VERSION has bugs and should"
+ printf '%s\n' "$0: be upgraded to zsh 4.3.4 or later."
else
- printf "%s\n" "$0: Please tell bug-autoconf@gnu.org and
+ printf '%s\n' "$0: Please tell bug-autoconf@gnu.org and
$0: https://github.com/python/cpython/issues/ about your
$0: system, including any error possibly output before this
$0: message. Then install a modern shell, or manually run
@@ -331,7 +337,7 @@ as_fn_mkdir_p ()
as_dirs=
while :; do
case $as_dir in #(
- *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
+ *\'*) as_qdir=`printf '%s\n' "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
*) as_qdir=$as_dir;;
esac
as_dirs="'$as_qdir' $as_dirs"
@@ -340,7 +346,7 @@ $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
X"$as_dir" : 'X\(//\)[^/]' \| \
X"$as_dir" : 'X\(//\)$' \| \
X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
-printf "%s\n" X"$as_dir" |
+printf '%s\n' X"$as_dir" |
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
s//\1/
q
@@ -423,9 +429,9 @@ as_fn_error ()
as_status=$1; test $as_status -eq 0 && as_status=1
if test "$4"; then
as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
fi
- printf "%s\n" "$as_me: error: $2" >&2
+ printf '%s\n' "$as_me: error: $2" >&2
as_fn_exit $as_status
} # as_fn_error
@@ -452,7 +458,7 @@ as_me=`$as_basename -- "$0" ||
$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
X"$0" : 'X\(//\)$' \| \
X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-printf "%s\n" X/"$0" |
+printf '%s\n' X/"$0" |
sed '/^.*\/\([^/][^/]*\)\/*$/{
s//\1/
q
@@ -498,7 +504,7 @@ as_cr_alnum=$as_cr_Letters$as_cr_digits
s/-\n.*//
' >$as_me.lineno &&
chmod +x "$as_me.lineno" ||
- { printf "%s\n" "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
+ { printf '%s\n' "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
# If we had to re-execute with $CONFIG_SHELL, we're ensured to have
# already done that, so ensure we don't try to do so again and fall
@@ -512,29 +518,6 @@ as_cr_alnum=$as_cr_Letters$as_cr_digits
exit
}
-
-# Determine whether it's possible to make 'echo' print without a newline.
-# These variables are no longer used directly by Autoconf, but are AC_SUBSTed
-# for compatibility with existing Makefiles.
-ECHO_C= ECHO_N= ECHO_T=
-case `echo -n x` in #(((((
--n*)
- case `echo 'xy\c'` in
- *c*) ECHO_T=' ';; # ECHO_T is single tab character.
- xy) ECHO_C='\c';;
- *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
- ECHO_T=' ';;
- esac;;
-*)
- ECHO_N='-n';;
-esac
-
-# For backward compatibility with old third-party macros, we provide
-# the shell variables $as_echo and $as_echo_n. New code should use
-# AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively.
-as_echo='printf %s\n'
-as_echo_n='printf %s'
-
rm -f conf$$ conf$$.exe conf$$.file
if test -d conf$$.dir; then
rm -f conf$$.dir/conf$$.file
@@ -593,6 +576,7 @@ ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
# Initializations.
#
ac_default_prefix=/usr/local
+ac_clean_CONFIG_STATUS=
ac_clean_files=
ac_config_libobj_dir=.
LIBOBJS=
@@ -1050,13 +1034,13 @@ GITBRANCH
GITTAG
GITVERSION
BASECPPFLAGS
+ECHO_T
+ECHO_N
+ECHO_C
target_alias
host_alias
build_alias
LIBS
-ECHO_T
-ECHO_N
-ECHO_C
DEFS
mandir
localedir
@@ -1147,6 +1131,7 @@ enable_big_digits
with_platlibdir
with_wheel_pkg_dir
with_readline
+enable_curses
with_computed_gotos
with_tail_call_interp
with_remote_debug
@@ -1315,7 +1300,7 @@ do
expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
as_fn_error $? "invalid feature name: '$ac_useropt'"
ac_useropt_orig=$ac_useropt
- ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'`
+ ac_useropt=`printf '%s\n' "$ac_useropt" | sed 's/[-+.]/_/g'`
case $ac_user_opts in
*"
"enable_$ac_useropt"
@@ -1341,7 +1326,7 @@ do
expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
as_fn_error $? "invalid feature name: '$ac_useropt'"
ac_useropt_orig=$ac_useropt
- ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'`
+ ac_useropt=`printf '%s\n' "$ac_useropt" | sed 's/[-+.]/_/g'`
case $ac_user_opts in
*"
"enable_$ac_useropt"
@@ -1554,7 +1539,7 @@ do
expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
as_fn_error $? "invalid package name: '$ac_useropt'"
ac_useropt_orig=$ac_useropt
- ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'`
+ ac_useropt=`printf '%s\n' "$ac_useropt" | sed 's/[-+.]/_/g'`
case $ac_user_opts in
*"
"with_$ac_useropt"
@@ -1570,7 +1555,7 @@ do
expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
as_fn_error $? "invalid package name: '$ac_useropt'"
ac_useropt_orig=$ac_useropt
- ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'`
+ ac_useropt=`printf '%s\n' "$ac_useropt" | sed 's/[-+.]/_/g'`
case $ac_user_opts in
*"
"with_$ac_useropt"
@@ -1614,9 +1599,9 @@ Try '$0 --help' for more information"
*)
# FIXME: should be removed in autoconf 3.0.
- printf "%s\n" "$as_me: WARNING: you should use --build, --host, --target" >&2
+ printf '%s\n' "$as_me: WARNING: you should use --build, --host, --target" >&2
expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
- printf "%s\n" "$as_me: WARNING: invalid host type: $ac_option" >&2
+ printf '%s\n' "$as_me: WARNING: invalid host type: $ac_option" >&2
: "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
;;
@@ -1624,7 +1609,7 @@ Try '$0 --help' for more information"
done
if test -n "$ac_prev"; then
- ac_option=--`echo $ac_prev | sed 's/_/-/g'`
+ ac_option=--`printf '%s\n' $ac_prev | sed 's/_/-/g'`
as_fn_error $? "missing argument to $ac_option"
fi
@@ -1632,7 +1617,7 @@ if test -n "$ac_unrecognized_opts"; then
case $enable_option_checking in
no) ;;
fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
- *) printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
+ *) printf '%s\n' "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
esac
fi
@@ -1696,7 +1681,7 @@ $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
X"$as_myself" : 'X\(//\)[^/]' \| \
X"$as_myself" : 'X\(//\)$' \| \
X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
-printf "%s\n" X"$as_myself" |
+printf '%s\n' X"$as_myself" |
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
s//\1/
q
@@ -1873,6 +1858,7 @@ Optional Features:
--enable-big-digits[=15|30]
use big digits (30 or 15 bits) for Python longs
(default is 30)]
+ --disable-curses don't build the curses module (default: enabled)
--disable-test-modules don't build nor install test modules
Optional Packages:
@@ -2089,9 +2075,9 @@ if test "$ac_init_help" = "recursive"; then
case "$ac_dir" in
.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
*)
- ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'`
+ ac_dir_suffix=/`printf '%s\n' "$ac_dir" | sed 's|^\.[\\/]||'`
# A ".." for each directory in $ac_dir_suffix.
- ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
+ ac_top_builddir_sub=`printf '%s\n' "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
case $ac_top_builddir_sub in
"") ac_top_builddir_sub=. ac_top_build_prefix= ;;
*) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
@@ -2128,7 +2114,7 @@ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
echo &&
$SHELL "$ac_srcdir/configure" --help=recursive
else
- printf "%s\n" "$as_me: WARNING: no configuration information is in $ac_dir" >&2
+ printf '%s\n' "$as_me: WARNING: no configuration information is in $ac_dir" >&2
fi || ac_status=$?
cd "$ac_pwd" || { ac_status=$?; break; }
done
@@ -2138,9 +2124,9 @@ test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
python configure 3.16
-generated by GNU Autoconf 2.72
+generated by GNU Autoconf 2.73
-Copyright (C) 2023 Free Software Foundation, Inc.
+Copyright (C) 2026 Free Software Foundation, Inc.
This configure script is free software; the Free Software Foundation
gives unlimited permission to copy, distribute and modify it.
_ACEOF
@@ -2164,7 +2150,7 @@ case "(($ac_try" in
*) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-printf "%s\n" "$ac_try_echo"; } >&5
+printf '%s\n' "$ac_try_echo"; } >&5
(eval "$ac_compile") 2>conftest.err
ac_status=$?
if test -s conftest.err; then
@@ -2172,7 +2158,7 @@ printf "%s\n" "$ac_try_echo"; } >&5
cat conftest.er1 >&5
mv -f conftest.er1 conftest.err
fi
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; } && {
test -z "$ac_c_werror_flag" ||
test ! -s conftest.err
@@ -2180,7 +2166,7 @@ printf "%s\n" "$ac_try_echo"; } >&5
then :
ac_retval=0
else case e in #(
- e) printf "%s\n" "$as_me: failed program was:" >&5
+ e) printf '%s\n' "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
ac_retval=1 ;;
@@ -2203,7 +2189,7 @@ case "(($ac_try" in
*) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-printf "%s\n" "$ac_try_echo"; } >&5
+printf '%s\n' "$ac_try_echo"; } >&5
(eval "$ac_cpp conftest.$ac_ext") 2>conftest.err
ac_status=$?
if test -s conftest.err; then
@@ -2211,7 +2197,7 @@ printf "%s\n" "$ac_try_echo"; } >&5
cat conftest.er1 >&5
mv -f conftest.er1 conftest.err
fi
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; } > conftest.i && {
test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
test ! -s conftest.err
@@ -2219,7 +2205,7 @@ printf "%s\n" "$ac_try_echo"; } >&5
then :
ac_retval=0
else case e in #(
- e) printf "%s\n" "$as_me: failed program was:" >&5
+ e) printf '%s\n' "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
ac_retval=1 ;;
@@ -2237,7 +2223,7 @@ fi
ac_fn_c_check_header_compile ()
{
as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
printf %s "checking for $2... " >&6; }
if eval test \${$3+y}
then :
@@ -2259,8 +2245,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
eval ac_res=\$$3
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-printf "%s\n" "$ac_res" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+printf '%s\n' "$ac_res" >&6; }
eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_c_check_header_compile
@@ -2278,7 +2264,7 @@ case "(($ac_try" in
*) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-printf "%s\n" "$ac_try_echo"; } >&5
+printf '%s\n' "$ac_try_echo"; } >&5
(eval "$ac_link") 2>conftest.err
ac_status=$?
if test -s conftest.err; then
@@ -2286,7 +2272,7 @@ printf "%s\n" "$ac_try_echo"; } >&5
cat conftest.er1 >&5
mv -f conftest.er1 conftest.err
fi
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; } && {
test -z "$ac_c_werror_flag" ||
test ! -s conftest.err
@@ -2297,7 +2283,7 @@ printf "%s\n" "$ac_try_echo"; } >&5
then :
ac_retval=0
else case e in #(
- e) printf "%s\n" "$as_me: failed program was:" >&5
+ e) printf '%s\n' "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
ac_retval=1 ;;
@@ -2326,26 +2312,26 @@ case "(($ac_try" in
*) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-printf "%s\n" "$ac_try_echo"; } >&5
+printf '%s\n' "$ac_try_echo"; } >&5
(eval "$ac_link") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; } && { ac_try='./conftest$ac_exeext'
{ { case "(($ac_try" in
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
*) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-printf "%s\n" "$ac_try_echo"; } >&5
+printf '%s\n' "$ac_try_echo"; } >&5
(eval "$ac_try") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; }
then :
ac_retval=0
else case e in #(
- e) printf "%s\n" "$as_me: program exited with status $ac_status" >&5
- printf "%s\n" "$as_me: failed program was:" >&5
+ e) printf '%s\n' "$as_me: program exited with status $ac_status" >&5
+ printf '%s\n' "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
ac_retval=$ac_status ;;
@@ -2365,7 +2351,7 @@ ac_fn_check_decl ()
{
as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
as_decl_name=`echo $2|sed 's/ *(.*//'`
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5
printf %s "checking whether $as_decl_name is declared... " >&6; }
if eval test \${$3+y}
then :
@@ -2405,8 +2391,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
esac
fi
eval ac_res=\$$3
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-printf "%s\n" "$ac_res" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+printf '%s\n' "$ac_res" >&6; }
eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_check_decl
@@ -2418,7 +2404,7 @@ printf "%s\n" "$ac_res" >&6; }
ac_fn_c_check_type ()
{
as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
printf %s "checking for $2... " >&6; }
if eval test \${$3+y}
then :
@@ -2464,8 +2450,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
eval ac_res=\$$3
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-printf "%s\n" "$ac_res" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+printf '%s\n' "$ac_res" >&6; }
eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_c_check_type
@@ -2671,7 +2657,7 @@ rm -f conftest.val
ac_fn_c_check_func ()
{
as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
printf %s "checking for $2... " >&6; }
if eval test \${$3+y}
then :
@@ -2723,8 +2709,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
esac
fi
eval ac_res=\$$3
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-printf "%s\n" "$ac_res" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+printf '%s\n' "$ac_res" >&6; }
eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_c_check_func
@@ -2736,7 +2722,7 @@ printf "%s\n" "$ac_res" >&6; }
ac_fn_c_check_member ()
{
as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5
printf %s "checking for $2.$3... " >&6; }
if eval test \${$4+y}
then :
@@ -2786,8 +2772,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
eval ac_res=\$$4
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-printf "%s\n" "$ac_res" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+printf '%s\n' "$ac_res" >&6; }
eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_c_check_member
@@ -2796,7 +2782,7 @@ for ac_arg
do
case $ac_arg in
*\'*)
- ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
+ ac_arg=`printf '%s\n' "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
esac
as_fn_append ac_configure_args_raw " '$ac_arg'"
done
@@ -2808,7 +2794,7 @@ case $ac_configure_args_raw in
ac_unsafe_z='|&;<>()$`\\"*?[ '' ' # This string ends in space, tab.
ac_unsafe_a="$ac_unsafe_z#~"
ac_safe_unquote="s/ '\\([^$ac_unsafe_a][^$ac_unsafe_z]*\\)'/ \\1/g"
- ac_configure_args_raw=` printf "%s\n" "$ac_configure_args_raw" | sed "$ac_safe_unquote"`;;
+ ac_configure_args_raw=` printf '%s\n' "$ac_configure_args_raw" | sed "$ac_safe_unquote"`;;
esac
cat >config.log <<_ACEOF
@@ -2816,7 +2802,7 @@ This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by python $as_me 3.16, which was
-generated by GNU Autoconf 2.72. Invocation command line was
+generated by GNU Autoconf 2.73. Invocation command line was
$ $0$ac_configure_args_raw
@@ -2856,7 +2842,7 @@ do
*/) ;;
*) as_dir=$as_dir/ ;;
esac
- printf "%s\n" "PATH: $as_dir"
+ printf '%s\n' "PATH: $as_dir"
done
IFS=$as_save_IFS
@@ -2891,7 +2877,7 @@ do
| -silent | --silent | --silen | --sile | --sil)
continue ;;
*\'*)
- ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
+ ac_arg=`printf '%s\n' "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
esac
case $ac_pass in
1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
@@ -2920,31 +2906,22 @@ done
{ ac_configure_args0=; unset ac_configure_args0;}
{ ac_configure_args1=; unset ac_configure_args1;}
-# When interrupted or exit'd, cleanup temporary files, and complete
-# config.log. We remove comments because anyway the quotes in there
-# would cause problems or look ugly.
-# WARNING: Use '\'' to represent an apostrophe within the trap.
-# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
-trap 'exit_status=$?
- # Sanitize IFS.
- IFS=" "" $as_nl"
- # Save into config.log some information that might help in debugging.
- {
- echo
-
- printf "%s\n" "## ---------------- ##
-## Cache variables. ##
-## ---------------- ##"
- echo
- # The following way of writing the cache mishandles newlines in values,
+# Dump the cache to stdout. It can be in a pipe (this is a requirement).
+ac_cache_dump ()
+{
+ # The following way of writing the cache mishandles newlines in values,
+# but we know of no workaround that is simple, portable, and efficient.
+# So, we kill variables containing newlines.
+# Ultrix sh set writes to stderr and can't be redirected directly,
+# and sets the high bit in the cache file unless we assign to the vars.
(
- for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
+ for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
eval ac_val=\$$ac_var
case $ac_val in #(
*${as_nl}*)
case $ac_var in #(
- *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
-printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
+ *_cv_*) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
+printf '%s\n' "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
esac
case $ac_var in #(
_ | IFS | as_nl) ;; #(
@@ -2953,67 +2930,95 @@ printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;}
esac ;;
esac
done
+
(set) 2>&1 |
- case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
+ case $as_nl`(ac_space=' '; set) 2>&1` in #(
*${as_nl}ac_space=\ *)
+ # 'set' does not quote correctly, so add quotes: double-quote
+ # substitution turns \\\\ into \\, and sed turns \\ into \.
sed -n \
- "s/'\''/'\''\\\\'\'''\''/g;
- s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
+ "s/'/'\\\\''/g;
+ s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
;; #(
*)
+ # 'set' quotes correctly as required by POSIX, so do not add quotes.
sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
;;
esac |
sort
)
- echo
+}
+
+# Print debugging info to stdout.
+ac_dump_debugging_info ()
+{
+ echo
+
+ printf '%s\n' "## ---------------- ##
+## Cache variables. ##
+## ---------------- ##"
+ echo
+ ac_cache_dump
+ echo
- printf "%s\n" "## ----------------- ##
+ printf '%s\n' "## ----------------- ##
## Output variables. ##
## ----------------- ##"
+ echo
+ for ac_var in $ac_subst_vars
+ do
+ eval ac_val=\$$ac_var
+ case $ac_val in
+ *\'*) ac_val=`printf '%s\n' "$ac_val" | sed "s/'/'\\\\\\\\''/g"`;;
+ esac
+ printf '%s\n' "$ac_var='$ac_val'"
+ done | sort
+ echo
+
+ if test -n "$ac_subst_files"; then
+ printf '%s\n' "## ------------------- ##
+## File substitutions. ##
+## ------------------- ##"
echo
- for ac_var in $ac_subst_vars
+ for ac_var in $ac_subst_files
do
eval ac_val=\$$ac_var
case $ac_val in
- *\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
+ *\'*) ac_val=`printf '%s\n' "$ac_val" | sed "s/'/'\\\\\\\\''/g"`;;
esac
- printf "%s\n" "$ac_var='\''$ac_val'\''"
+ printf '%s\n' "$ac_var='$ac_val'"
done | sort
echo
+ fi
- if test -n "$ac_subst_files"; then
- printf "%s\n" "## ------------------- ##
-## File substitutions. ##
-## ------------------- ##"
- echo
- for ac_var in $ac_subst_files
- do
- eval ac_val=\$$ac_var
- case $ac_val in
- *\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
- esac
- printf "%s\n" "$ac_var='\''$ac_val'\''"
- done | sort
- echo
- fi
-
- if test -s confdefs.h; then
- printf "%s\n" "## ----------- ##
+ if test -s confdefs.h; then
+ printf '%s\n' "## ----------- ##
## confdefs.h. ##
## ----------- ##"
- echo
- cat confdefs.h
- echo
- fi
- test "$ac_signal" != 0 &&
- printf "%s\n" "$as_me: caught signal $ac_signal"
- printf "%s\n" "$as_me: exit $exit_status"
- } >&5
- rm -f core *.core core.conftest.* &&
+ echo
+ cat confdefs.h
+ echo
+ fi
+ test "$ac_signal" != 0 &&
+ printf '%s\n' "$as_me: caught signal $ac_signal"
+ printf '%s\n' "$as_me: exit $exit_status"
+}
+
+# When interrupted or exit'd, cleanup temporary files, and complete
+# config.log.
+ac_exit_trap ()
+{
+ exit_status=
+ # Sanitize IFS.
+ IFS=" "" $as_nl"
+ # Save into config.log some information that might help in debugging.
+ ac_dump_debugging_info >&5
+ eval "rm -f $ac_clean_CONFIG_STATUS core *.core core.conftest.*" &&
rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
exit $exit_status
-' 0
+}
+
+trap 'ac_exit_trap $?' 0
for ac_signal in 1 2 13 15; do
trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
done
@@ -3022,21 +3027,21 @@ ac_signal=0
# confdefs.h avoids OS command line length limits that DEFS can exceed.
rm -f -r conftest* confdefs.h
-printf "%s\n" "/* confdefs.h */" > confdefs.h
+printf '%s\n' "/* confdefs.h */" > confdefs.h
# Predefined preprocessor variables.
-printf "%s\n" "#define PACKAGE_NAME \"$PACKAGE_NAME\"" >>confdefs.h
+printf '%s\n' "#define PACKAGE_NAME \"$PACKAGE_NAME\"" >>confdefs.h
-printf "%s\n" "#define PACKAGE_TARNAME \"$PACKAGE_TARNAME\"" >>confdefs.h
+printf '%s\n' "#define PACKAGE_TARNAME \"$PACKAGE_TARNAME\"" >>confdefs.h
-printf "%s\n" "#define PACKAGE_VERSION \"$PACKAGE_VERSION\"" >>confdefs.h
+printf '%s\n' "#define PACKAGE_VERSION \"$PACKAGE_VERSION\"" >>confdefs.h
-printf "%s\n" "#define PACKAGE_STRING \"$PACKAGE_STRING\"" >>confdefs.h
+printf '%s\n' "#define PACKAGE_STRING \"$PACKAGE_STRING\"" >>confdefs.h
-printf "%s\n" "#define PACKAGE_BUGREPORT \"$PACKAGE_BUGREPORT\"" >>confdefs.h
+printf '%s\n' "#define PACKAGE_BUGREPORT \"$PACKAGE_BUGREPORT\"" >>confdefs.h
-printf "%s\n" "#define PACKAGE_URL \"$PACKAGE_URL\"" >>confdefs.h
+printf '%s\n' "#define PACKAGE_URL \"$PACKAGE_URL\"" >>confdefs.h
# Let the site file select an alternate cache file if it wants to.
@@ -3058,12 +3063,12 @@ do
ac_site_file=./$ac_site_file ;;
esac
if test -f "$ac_site_file" && test -r "$ac_site_file"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
-printf "%s\n" "$as_me: loading site script $ac_site_file" >&6;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
+printf '%s\n' "$as_me: loading site script $ac_site_file" >&6;}
sed 's/^/| /' "$ac_site_file" >&5
. "$ac_site_file" \
- || { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
+ || { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
+printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
as_fn_error $? "failed to load site script $ac_site_file
See 'config.log' for more details" "$LINENO" 5; }
fi
@@ -3073,27 +3078,120 @@ if test -r "$cache_file"; then
# Some versions of bash will fail to source /dev/null (special files
# actually), so we avoid doing that. DJGPP emulates it as a regular file.
if test /dev/null != "$cache_file" && test -f "$cache_file"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
-printf "%s\n" "$as_me: loading cache $cache_file" >&6;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
+printf '%s\n' "$as_me: loading cache $cache_file" >&6;}
case $cache_file in
[\\/]* | ?:[\\/]* ) . "$cache_file";;
*) . "./$cache_file";;
esac
fi
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
-printf "%s\n" "$as_me: creating cache $cache_file" >&6;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
+printf '%s\n' "$as_me: creating cache $cache_file" >&6;}
>$cache_file
fi
+# Test code for whether the C compiler supports C23 (global declarations)
+ac_c_conftest_c23_globals='
+/* Does the compiler advertise conformance to C17 or earlier?
+ Although GCC 14 does not do that, even with -std=gnu23,
+ it is close enough, and defines __STDC_VERSION == 202000L. */
+#if !defined __STDC_VERSION__ || __STDC_VERSION__ <= 201710L
+# error "Compiler advertises conformance to C17 or earlier"
+#endif
+
+// Check alignas.
+char alignas (double) c23_aligned_as_double;
+char alignas (0) c23_no_special_alignment;
+extern char c23_aligned_as_int;
+char alignas (0) alignas (int) c23_aligned_as_int;
+
+// Check alignof.
+enum
+{
+ c23_int_alignment = alignof (int),
+ c23_int_array_alignment = alignof (int[100]),
+ c23_char_alignment = alignof (char)
+};
+static_assert (0 < -alignof (int), "alignof is signed");
+
+int function_with_unnamed_parameter (int) { return 0; }
+
+void c23_noreturn ();
+
+/* Test parsing of string and char UTF-8 literals (including hex escapes).
+ The parens pacify GCC 15. */
+bool use_u8 = (!sizeof u8"\xFF") == (!u8'\''x'\'');
+
+bool check_that_bool_works = true | false | !nullptr;
+#if !true
+# error "true does not work in #if"
+#endif
+#if false
+#elifdef __STDC_VERSION__
+#else
+# error "#elifdef does not work"
+#endif
+
+#ifndef __has_c_attribute
+# error "__has_c_attribute not defined"
+#endif
+
+#ifndef __has_include
+# error "__has_include not defined"
+#endif
+
+#define LPAREN() (
+#define FORTY_TWO(x) 42
+#define VA_OPT_TEST(r, x, ...) __VA_OPT__ (FORTY_TWO r x))
+static_assert (VA_OPT_TEST (LPAREN (), 0, <:-) == 42);
+
+static_assert (0b101010 == 42);
+static_assert (0B101010 == 42);
+static_assert (0xDEAD'\''BEEF == 3'\''735'\''928'\''559);
+static_assert (0.500'\''000'\''000 == 0.5);
+
+enum unsignedish : unsigned int { uione = 1 };
+static_assert (0 < -uione);
+
+#include
+constexpr nullptr_t null_pointer = nullptr;
+
+static typeof (1 + 1L) two () { return 2; }
+static long int three () { return 3; }
+'
+
+# Test code for whether the C compiler supports C23 (body of main).
+ac_c_conftest_c23_main='
+ {
+ label_before_declaration:
+ int arr[10] = {};
+ if (arr[0])
+ goto label_before_declaration;
+ if (!arr[0])
+ goto label_at_end_of_block;
+ label_at_end_of_block:
+ }
+ ok |= !null_pointer;
+ ok |= two != three;
+'
+
+# Test code for whether the C compiler supports C23 (complete).
+ac_c_conftest_c23_program="${ac_c_conftest_c23_globals}
+
+int
+main (int, char **)
+{
+ int ok = 0;
+ ${ac_c_conftest_c23_main}
+ return ok;
+}
+"
+
# Test code for whether the C compiler supports C89 (global declarations)
ac_c_conftest_c89_globals='
-/* Does the compiler advertise C89 conformance?
- Do not test the value of __STDC__, because some compilers set it to 0
- while being otherwise adequately conformant. */
-#if !defined __STDC__
-# error "Compiler does not advertise C89 conformance"
-#endif
+/* Do not test the value of __STDC__, because some compilers define it to 0
+ or do not define it, while otherwise adequately conforming. */
#include
#include
@@ -3173,7 +3271,8 @@ extern void free (void *);
// Check varargs macros. These examples are taken from C99 6.10.3.5.
// dprintf is used instead of fprintf to avoid needing to declare
-// FILE and stderr.
+// FILE and stderr, and "aND" is used instead of "and" to work around
+// GCC bug 40564 which is irrelevant here.
#define debug(...) dprintf (2, __VA_ARGS__)
#define showlist(...) puts (#__VA_ARGS__)
#define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__))
@@ -3184,7 +3283,7 @@ test_varargs_macros (void)
int y = 5678;
debug ("Flag");
debug ("X = %d\n", x);
- showlist (The first, second, and third items.);
+ showlist (The first, second, aND third items.);
report (x>y, "x is %d but y is %d", x, y);
}
@@ -3272,15 +3371,15 @@ ac_c_conftest_c99_main='
// Check restrict.
if (test_restrict ("String literal") == 0)
success = true;
- char *restrict newvar = "Another string";
+ const char *restrict newvar = "Another string";
// Check varargs.
success &= test_varargs ("s, d'\'' f .", "string", 65, 34.234);
test_varargs_macros ();
// Check flexible array members.
- struct incomplete_array *ia =
- malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10));
+ static struct incomplete_array *volatile incomplete_array_pointer;
+ struct incomplete_array *ia = incomplete_array_pointer;
ia->datasize = 10;
for (int i = 0; i < ia->datasize; ++i)
ia->data[i] = i * 1.234;
@@ -3296,13 +3395,12 @@ ac_c_conftest_c99_main='
ni.number = 58;
- int dynamic_array[ni.number];
- dynamic_array[0] = argv[0][0];
- dynamic_array[ni.number - 1] = 543;
+ // Do not test for VLAs, as some otherwise-conforming compilers lack them.
+ // C code should instead use __STDC_NO_VLA__; see Autoconf manual.
// work around unused variable warnings
ok |= (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == '\''x'\''
- || dynamic_array[ni.number - 1] != 543);
+ || ni.number != 58);
'
# Test code for whether the C compiler supports C11 (global declarations)
@@ -3443,7 +3541,7 @@ ac_aux_dir_candidates="${srcdir}${PATH_SEPARATOR}${srcdir}/..${PATH_SEPARATOR}${
# $ac_aux_dir_candidates and give up.
ac_missing_aux_files=""
ac_first_candidate=:
-printf "%s\n" "$as_me:${as_lineno-$LINENO}: looking for aux files: $ac_aux_files" >&5
+printf '%s\n' "$as_me:${as_lineno-$LINENO}: looking for aux files: $ac_aux_files" >&5
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
as_found=false
for as_dir in $ac_aux_dir_candidates
@@ -3456,7 +3554,7 @@ do
esac
as_found=:
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: trying $as_dir" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: trying $as_dir" >&5
ac_aux_dir_found=yes
ac_install_sh=
for ac_aux in $ac_aux_files
@@ -3467,13 +3565,13 @@ do
if test x"$ac_aux" = x"install-sh"
then
if test -f "${as_dir}install-sh"; then
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install-sh found" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: ${as_dir}install-sh found" >&5
ac_install_sh="${as_dir}install-sh -c"
elif test -f "${as_dir}install.sh"; then
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install.sh found" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: ${as_dir}install.sh found" >&5
ac_install_sh="${as_dir}install.sh -c"
elif test -f "${as_dir}shtool"; then
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}shtool found" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: ${as_dir}shtool found" >&5
ac_install_sh="${as_dir}shtool install -c"
else
ac_aux_dir_found=no
@@ -3485,7 +3583,7 @@ do
fi
else
if test -f "${as_dir}${ac_aux}"; then
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}${ac_aux} found" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: ${as_dir}${ac_aux} found" >&5
else
ac_aux_dir_found=no
if $ac_first_candidate; then
@@ -3538,38 +3636,44 @@ for ac_var in $ac_precious_vars; do
eval ac_new_val=\$ac_env_${ac_var}_value
case $ac_old_set,$ac_new_set in
set,)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: '$ac_var' was set to '$ac_old_val' in the previous run" >&5
-printf "%s\n" "$as_me: error: '$ac_var' was set to '$ac_old_val' in the previous run" >&2;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: '$ac_var' was set to '$ac_old_val' in the previous run" >&5
+printf '%s\n' "$as_me: error: '$ac_var' was set to '$ac_old_val' in the previous run" >&2;}
ac_cache_corrupted=: ;;
,set)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: '$ac_var' was not set in the previous run" >&5
-printf "%s\n" "$as_me: error: '$ac_var' was not set in the previous run" >&2;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: '$ac_var' was not set in the previous run" >&5
+printf '%s\n' "$as_me: error: '$ac_var' was not set in the previous run" >&2;}
ac_cache_corrupted=: ;;
,);;
*)
if test "x$ac_old_val" != "x$ac_new_val"; then
# differences in whitespace do not lead to failure.
- ac_old_val_w=`echo x $ac_old_val`
- ac_new_val_w=`echo x $ac_new_val`
+ ac_old_val_w=
+ for ac_val in x $ac_old_val; do
+ ac_old_val_w="$ac_old_val_w $ac_val"
+ done
+ ac_new_val_w=
+ for ac_val in x $ac_new_val; do
+ ac_new_val_w="$ac_new_val_w $ac_val"
+ done
if test "$ac_old_val_w" != "$ac_new_val_w"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: '$ac_var' has changed since the previous run:" >&5
-printf "%s\n" "$as_me: error: '$ac_var' has changed since the previous run:" >&2;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: '$ac_var' has changed since the previous run:" >&5
+printf '%s\n' "$as_me: error: '$ac_var' has changed since the previous run:" >&2;}
ac_cache_corrupted=:
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in '$ac_var' since the previous run:" >&5
-printf "%s\n" "$as_me: warning: ignoring whitespace changes in '$ac_var' since the previous run:" >&2;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in '$ac_var' since the previous run:" >&5
+printf '%s\n' "$as_me: warning: ignoring whitespace changes in '$ac_var' since the previous run:" >&2;}
eval $ac_var=\$ac_old_val
fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: former value: '$ac_old_val'" >&5
-printf "%s\n" "$as_me: former value: '$ac_old_val'" >&2;}
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: current value: '$ac_new_val'" >&5
-printf "%s\n" "$as_me: current value: '$ac_new_val'" >&2;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: former value: '$ac_old_val'" >&5
+printf '%s\n' "$as_me: former value: '$ac_old_val'" >&2;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: current value: '$ac_new_val'" >&5
+printf '%s\n' "$as_me: current value: '$ac_new_val'" >&2;}
fi;;
esac
# Pass precious variables to config.status.
if test "$ac_new_set" = set; then
case $ac_new_val in
- *\'*) ac_arg=$ac_var=`printf "%s\n" "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
+ *\'*) ac_arg=$ac_var=`printf '%s\n' "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
*) ac_arg=$ac_var=$ac_new_val ;;
esac
case " $ac_configure_args " in
@@ -3579,10 +3683,10 @@ printf "%s\n" "$as_me: current value: '$ac_new_val'" >&2;}
fi
done
if $ac_cache_corrupted; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
-printf "%s\n" "$as_me: error: changes in the environment can compromise the build" >&2;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
+printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
+printf '%s\n' "$as_me: error: changes in the environment can compromise the build" >&2;}
as_fn_error $? "run '${MAKE-make} distclean' and/or 'rm $cache_file'
and start over" "$LINENO" 5
fi
@@ -3590,6 +3694,23 @@ fi
## Main body of script. ##
## -------------------- ##
+
+# Determine whether it's possible to make 'echo' print without a newline.
+# These variables are no longer used directly by Autoconf, but are AC_SUBSTed
+# for compatibility with existing Makefiles.
+ECHO_C= ECHO_N= ECHO_T=
+case `echo -n x` in #(((((
+-n*)
+ case `echo 'xy\c'` in
+ *c*) ECHO_T=' ';; # ECHO_T is single tab character.
+ xy) ECHO_C='\c';;
+ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
+ ECHO_T=' ';;
+ esac;;
+*)
+ ECHO_N='-n';;
+esac
+
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
@@ -3629,7 +3750,7 @@ if test -e $srcdir/.git
then
# Extract the first word of "git", so it can be a program name with args.
set dummy git; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_prog_HAS_GIT+y}
then :
@@ -3650,7 +3771,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_prog_HAS_GIT="found"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -3663,11 +3784,11 @@ esac
fi
HAS_GIT=$ac_cv_prog_HAS_GIT
if test -n "$HAS_GIT"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $HAS_GIT" >&5
-printf "%s\n" "$HAS_GIT" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $HAS_GIT" >&5
+printf '%s\n' "$HAS_GIT" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -3696,7 +3817,7 @@ ac_config_headers="$ac_config_headers pyconfig.h"
$SHELL "${ac_aux_dir}config.sub" sun4 >/dev/null 2>&1 ||
as_fn_error $? "cannot run $SHELL ${ac_aux_dir}config.sub" "$LINENO" 5
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
printf %s "checking build system type... " >&6; }
if test ${ac_cv_build+y}
then :
@@ -3712,8 +3833,8 @@ ac_cv_build=`$SHELL "${ac_aux_dir}config.sub" $ac_build_alias` ||
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
-printf "%s\n" "$ac_cv_build" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
+printf '%s\n' "$ac_cv_build" >&6; }
case $ac_cv_build in
*-*-*) ;;
*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
@@ -3729,10 +3850,10 @@ shift; shift
# except with old shells:
build_os=$*
IFS=$ac_save_IFS
-case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
+case $build_os in *\ *) build_os=`printf '%s\n' "$build_os" | sed 's/ /-/g'`;; esac
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
printf %s "checking host system type... " >&6; }
if test ${ac_cv_host+y}
then :
@@ -3747,8 +3868,8 @@ fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5
-printf "%s\n" "$ac_cv_host" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5
+printf '%s\n' "$ac_cv_host" >&6; }
case $ac_cv_host in
*-*-*) ;;
*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
@@ -3764,7 +3885,7 @@ shift; shift
# except with old shells:
host_os=$*
IFS=$ac_save_IFS
-case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
+case $host_os in *\ *) host_os=`printf '%s\n' "$host_os" | sed 's/ /-/g'`;; esac
@@ -3784,7 +3905,7 @@ rm -f pybuilddir.txt
if test ${with_build_python+y}
then :
withval=$with_build_python;
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-build-python" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-build-python" >&5
printf %s "checking for --with-build-python... " >&6; }
if test "x$with_build_python" = xyes
@@ -3806,8 +3927,8 @@ fi
ac_cv_prog_PYTHON_FOR_REGEN=$with_build_python
PYTHON_FOR_FREEZE="$with_build_python"
PYTHON_FOR_BUILD='_PYTHON_PROJECT_BASE=$(abs_builddir) _PYTHON_HOST_PLATFORM=$(_PYTHON_HOST_PLATFORM) PYTHONPATH=$(srcdir)/Lib _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_$(ABIFLAGS)_$(MACHDEP)_$(MULTIARCH) _PYTHON_SYSCONFIGDATA_PATH=$(shell test -f pybuilddir.txt && echo $(abs_builddir)/`cat pybuilddir.txt`) '$with_build_python
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $with_build_python" >&5
-printf "%s\n" "$with_build_python" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $with_build_python" >&5
+printf '%s\n' "$with_build_python" >&6; }
else case e in #(
e)
@@ -3825,10 +3946,10 @@ fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for Python interpreter freezing" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for Python interpreter freezing" >&5
printf %s "checking for Python interpreter freezing... " >&6; }
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $PYTHON_FOR_FREEZE" >&5
-printf "%s\n" "$PYTHON_FOR_FREEZE" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $PYTHON_FOR_FREEZE" >&5
+printf '%s\n' "$PYTHON_FOR_FREEZE" >&6; }
if test "x$cross_compiling" = xyes
@@ -3861,7 +3982,7 @@ for ac_prog in python$PACKAGE_VERSION python3.16 python3.15 python3.14 python3.1
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_prog_PYTHON_FOR_REGEN+y}
then :
@@ -3882,7 +4003,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_prog_PYTHON_FOR_REGEN="$ac_prog"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -3894,11 +4015,11 @@ esac
fi
PYTHON_FOR_REGEN=$ac_cv_prog_PYTHON_FOR_REGEN
if test -n "$PYTHON_FOR_REGEN"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $PYTHON_FOR_REGEN" >&5
-printf "%s\n" "$PYTHON_FOR_REGEN" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $PYTHON_FOR_REGEN" >&5
+printf '%s\n' "$PYTHON_FOR_REGEN" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -3908,14 +4029,14 @@ test -n "$PYTHON_FOR_REGEN" || PYTHON_FOR_REGEN="python3"
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking Python for regen version" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking Python for regen version" >&5
printf %s "checking Python for regen version... " >&6; }
if command -v "$PYTHON_FOR_REGEN" >/dev/null 2>&1; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $($PYTHON_FOR_REGEN -V 2>/dev/null)" >&5
-printf "%s\n" "$($PYTHON_FOR_REGEN -V 2>/dev/null)" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $($PYTHON_FOR_REGEN -V 2>/dev/null)" >&5
+printf '%s\n' "$($PYTHON_FOR_REGEN -V 2>/dev/null)" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: missing" >&5
-printf "%s\n" "missing" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: missing" >&5
+printf '%s\n' "missing" >&6; }
fi
@@ -3943,21 +4064,21 @@ SOVERSION=1.0
# certain features on NetBSD, so we need _NETBSD_SOURCE to re-enable
# them.
-printf "%s\n" "#define _NETBSD_SOURCE 1" >>confdefs.h
+printf '%s\n' "#define _NETBSD_SOURCE 1" >>confdefs.h
# The later definition of _XOPEN_SOURCE and _POSIX_C_SOURCE disables
# certain features on FreeBSD, so we need __BSD_VISIBLE to re-enable
# them.
-printf "%s\n" "#define __BSD_VISIBLE 1" >>confdefs.h
+printf '%s\n' "#define __BSD_VISIBLE 1" >>confdefs.h
# The later definition of _XOPEN_SOURCE and _POSIX_C_SOURCE disables
# certain features on Mac OS X, so we need _DARWIN_C_SOURCE to re-enable
# them.
-printf "%s\n" "#define _DARWIN_C_SOURCE 1" >>confdefs.h
+printf '%s\n' "#define _DARWIN_C_SOURCE 1" >>confdefs.h
@@ -3997,7 +4118,7 @@ if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_PKG_CONFIG+y}
then :
@@ -4020,7 +4141,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_PKG_CONFIG="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -4033,11 +4154,11 @@ esac
fi
PKG_CONFIG=$ac_cv_path_PKG_CONFIG
if test -n "$PKG_CONFIG"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
-printf "%s\n" "$PKG_CONFIG" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
+printf '%s\n' "$PKG_CONFIG" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -4046,7 +4167,7 @@ if test -z "$ac_cv_path_PKG_CONFIG"; then
ac_pt_PKG_CONFIG=$PKG_CONFIG
# Extract the first word of "pkg-config", so it can be a program name with args.
set dummy pkg-config; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_ac_pt_PKG_CONFIG+y}
then :
@@ -4069,7 +4190,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_ac_pt_PKG_CONFIG="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -4082,11 +4203,11 @@ esac
fi
ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
if test -n "$ac_pt_PKG_CONFIG"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
-printf "%s\n" "$ac_pt_PKG_CONFIG" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
+printf '%s\n' "$ac_pt_PKG_CONFIG" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
if test "x$ac_pt_PKG_CONFIG" = x; then
@@ -4094,8 +4215,8 @@ fi
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
PKG_CONFIG=$ac_pt_PKG_CONFIG
@@ -4107,14 +4228,14 @@ fi
fi
if test -n "$PKG_CONFIG"; then
_pkg_min_version=0.9.0
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
printf %s "checking pkg-config is at least version $_pkg_min_version... " >&6; }
if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
PKG_CONFIG=""
fi
fi
@@ -4148,7 +4269,7 @@ fi
# Set name for machine-dependent library files
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking MACHDEP" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking MACHDEP" >&5
printf %s "checking MACHDEP... " >&6; }
if test -z "$MACHDEP"
then
@@ -4221,12 +4342,12 @@ then
# in most compilers, so we define one here.
SUNOS_VERSION=`echo $ac_sys_release | sed -e 's!\.\(0-9\)$!.0\1!g' | tr -d '.'`
-printf "%s\n" "#define Py_SUNOS_VERSION $SUNOS_VERSION" >>confdefs.h
+printf '%s\n' "#define Py_SUNOS_VERSION $SUNOS_VERSION" >>confdefs.h
fi
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: \"$MACHDEP\"" >&5
-printf "%s\n" "\"$MACHDEP\"" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: \"$MACHDEP\"" >&5
+printf '%s\n' "\"$MACHDEP\"" >&6; }
if test -z "$host_prefix"; then
@@ -4297,7 +4418,7 @@ if test -z "$CXX"; then
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --enable-universalsdk" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --enable-universalsdk" >&5
printf %s "checking for --enable-universalsdk... " >&6; }
# Check whether --enable-universalsdk was given.
if test ${enable_universalsdk+y}
@@ -4343,11 +4464,11 @@ fi
if test -n "${UNIVERSALSDK}"
then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: ${UNIVERSALSDK}" >&5
-printf "%s\n" "${UNIVERSALSDK}" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: ${UNIVERSALSDK}" >&5
+printf '%s\n' "${UNIVERSALSDK}" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -4370,7 +4491,7 @@ fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-universal-archs" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-universal-archs" >&5
printf %s "checking for --with-universal-archs... " >&6; }
# Check whether --with-universal-archs was given.
@@ -4383,11 +4504,11 @@ fi
if test -n "${UNIVERSALSDK}"
then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: ${UNIVERSAL_ARCHS}" >&5
-printf "%s\n" "${UNIVERSAL_ARCHS}" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: ${UNIVERSAL_ARCHS}" >&5
+printf '%s\n' "${UNIVERSAL_ARCHS}" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -4583,10 +4704,12 @@ fi
-printf "%s\n" "#define _PYTHONFRAMEWORK \"${PYTHONFRAMEWORK}\"" >>confdefs.h
+cat >>confdefs.h <<_ACEOF
+#define _PYTHONFRAMEWORK "${PYTHONFRAMEWORK}"
+_ACEOF
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-app-store-compliance" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-app-store-compliance" >&5
printf %s "checking for --with-app-store-compliance... " >&6; }
# Check whether --with-app_store_compliance was given.
@@ -4602,13 +4725,13 @@ then :
;;
*) as_fn_error $? "no default app store compliance patch available for $ac_sys_system" "$LINENO" 5 ;;
esac
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: applying default app store compliance patch" >&5
-printf "%s\n" "applying default app store compliance patch" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: applying default app store compliance patch" >&5
+printf '%s\n' "applying default app store compliance patch" >&6; }
;;
*)
APP_STORE_COMPLIANCE_PATCH="${withval}"
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: applying custom app store compliance patch" >&5
-printf "%s\n" "applying custom app store compliance patch" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: applying custom app store compliance patch" >&5
+printf '%s\n' "applying custom app store compliance patch" >&6; }
;;
esac
@@ -4618,14 +4741,14 @@ else case e in #(
iOS)
# Always apply the compliance patch on iOS; we can use the macOS patch
APP_STORE_COMPLIANCE_PATCH="Mac/Resources/app-store-compliance.patch"
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: applying default app store compliance patch" >&5
-printf "%s\n" "applying default app store compliance patch" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: applying default app store compliance patch" >&5
+printf '%s\n' "applying default app store compliance patch" >&6; }
;;
*)
# No default app compliance patching on any other platform
APP_STORE_COMPLIANCE_PATCH=
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not patching for app store compliance" >&5
-printf "%s\n" "not patching for app store compliance" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: not patching for app store compliance" >&5
+printf '%s\n' "not patching for app store compliance" >&6; }
;;
esac
;;
@@ -4658,12 +4781,12 @@ if test "$cross_compiling" = yes; then
_host_device=${_host_device:=os}
# IPHONEOS_DEPLOYMENT_TARGET is the minimum supported iOS version
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking iOS deployment target" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking iOS deployment target" >&5
printf %s "checking iOS deployment target... " >&6; }
IPHONEOS_DEPLOYMENT_TARGET=$(echo ${_host_os} | cut -c4-)
IPHONEOS_DEPLOYMENT_TARGET=${IPHONEOS_DEPLOYMENT_TARGET:=13.0}
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $IPHONEOS_DEPLOYMENT_TARGET" >&5
-printf "%s\n" "$IPHONEOS_DEPLOYMENT_TARGET" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $IPHONEOS_DEPLOYMENT_TARGET" >&5
+printf '%s\n' "$IPHONEOS_DEPLOYMENT_TARGET" >&6; }
case "$host_cpu" in
aarch64)
@@ -4721,7 +4844,7 @@ case $ac_sys_system/$ac_sys_release in
# also defined. This can be overridden by defining _BSD_SOURCE
# As this has a different meaning on Linux, only define it on OpenBSD
-printf "%s\n" "#define _BSD_SOURCE 1" >>confdefs.h
+printf '%s\n' "#define _BSD_SOURCE 1" >>confdefs.h
;;
OpenBSD/*)
@@ -4729,7 +4852,7 @@ printf "%s\n" "#define _BSD_SOURCE 1" >>confdefs.h
# also defined. This can be overridden by defining _BSD_SOURCE
# As this has a different meaning on Linux, only define it on OpenBSD
-printf "%s\n" "#define _BSD_SOURCE 1" >>confdefs.h
+printf '%s\n' "#define _BSD_SOURCE 1" >>confdefs.h
;;
# Defining _XOPEN_SOURCE on NetBSD version prior to the introduction of
@@ -4790,7 +4913,7 @@ if test $define_xopen_source = yes
then
# X/Open 8, incorporating POSIX.1-2024
-printf "%s\n" "#define _XOPEN_SOURCE 800" >>confdefs.h
+printf '%s\n' "#define _XOPEN_SOURCE 800" >>confdefs.h
# On Tru64 Unix 4.0F, defining _XOPEN_SOURCE also requires
@@ -4798,11 +4921,11 @@ printf "%s\n" "#define _XOPEN_SOURCE 800" >>confdefs.h
# several APIs are not declared. Since this is also needed in some
# cases for HP-UX, we define it globally.
-printf "%s\n" "#define _XOPEN_SOURCE_EXTENDED 1" >>confdefs.h
+printf '%s\n' "#define _XOPEN_SOURCE_EXTENDED 1" >>confdefs.h
-printf "%s\n" "#define _POSIX_C_SOURCE 202405L" >>confdefs.h
+printf '%s\n' "#define _POSIX_C_SOURCE 202405L" >>confdefs.h
fi
@@ -4817,7 +4940,7 @@ esac
if test $define_stdc_a1 = yes
then
-printf "%s\n" "#define _INCLUDE__STDC_A1_SOURCE 1" >>confdefs.h
+printf '%s\n' "#define _INCLUDE__STDC_A1_SOURCE 1" >>confdefs.h
fi
@@ -4878,7 +5001,7 @@ if test "$ac_sys_system" = "Darwin"
then
# Extract the first word of "xcrun", so it can be a program name with args.
set dummy xcrun; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_prog_HAS_XCRUN+y}
then :
@@ -4899,7 +5022,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_prog_HAS_XCRUN="yes"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -4912,15 +5035,15 @@ esac
fi
HAS_XCRUN=$ac_cv_prog_HAS_XCRUN
if test -n "$HAS_XCRUN"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $HAS_XCRUN" >&5
-printf "%s\n" "$HAS_XCRUN" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $HAS_XCRUN" >&5
+printf '%s\n' "$HAS_XCRUN" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking macOS SDKROOT" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking macOS SDKROOT" >&5
printf %s "checking macOS SDKROOT... " >&6; }
if test -z "$SDKROOT"; then
if test "$HAS_XCRUN" = "yes"; then
@@ -4929,8 +5052,8 @@ printf %s "checking macOS SDKROOT... " >&6; }
SDKROOT="/"
fi
fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $SDKROOT" >&5
-printf "%s\n" "$SDKROOT" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $SDKROOT" >&5
+printf '%s\n' "$SDKROOT" >&6; }
# Compiler selection on MacOSX is more complicated than
# AC_PROG_CC can handle, see Mac/README for more
@@ -4960,8 +5083,8 @@ printf "%s\n" "$SDKROOT" >&6; }
then
if test -n "`"$found_gcc" --version | grep llvm-gcc`"
then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: Detected llvm-gcc, falling back to clang" >&5
-printf "%s\n" "$as_me: Detected llvm-gcc, falling back to clang" >&6;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: Detected llvm-gcc, falling back to clang" >&5
+printf '%s\n' "$as_me: Detected llvm-gcc, falling back to clang" >&6;}
CC="$found_clang"
CXX="$found_clang++"
fi
@@ -4969,8 +5092,8 @@ printf "%s\n" "$as_me: Detected llvm-gcc, falling back to clang" >&6;}
elif test -z "$found_gcc" -a -n "$found_clang"
then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: No GCC found, use CLANG" >&5
-printf "%s\n" "$as_me: No GCC found, use CLANG" >&6;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: No GCC found, use CLANG" >&5
+printf '%s\n' "$as_me: No GCC found, use CLANG" >&6;}
CC="$found_clang"
CXX="$found_clang++"
@@ -4979,8 +5102,8 @@ printf "%s\n" "$as_me: No GCC found, use CLANG" >&6;}
found_clang=`/usr/bin/xcrun -find clang 2>/dev/null`
if test -n "${found_clang}"
then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: Using clang from Xcode.app" >&5
-printf "%s\n" "$as_me: Using clang from Xcode.app" >&6;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: Using clang from Xcode.app" >&5
+printf '%s\n' "$as_me: Using clang from Xcode.app" >&6;}
CC="${found_clang}"
CXX="`/usr/bin/xcrun -find clang++`"
@@ -4998,6 +5121,9 @@ fi
+
+
+
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
@@ -5006,7 +5132,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
set dummy ${ac_tool_prefix}gcc; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_prog_CC+y}
then :
@@ -5027,7 +5153,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_prog_CC="${ac_tool_prefix}gcc"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -5039,11 +5165,11 @@ esac
fi
CC=$ac_cv_prog_CC
if test -n "$CC"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
-printf "%s\n" "$CC" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
+printf '%s\n' "$CC" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -5052,7 +5178,7 @@ if test -z "$ac_cv_prog_CC"; then
ac_ct_CC=$CC
# Extract the first word of "gcc", so it can be a program name with args.
set dummy gcc; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_prog_ac_ct_CC+y}
then :
@@ -5073,7 +5199,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_CC="gcc"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -5085,11 +5211,11 @@ esac
fi
ac_ct_CC=$ac_cv_prog_ac_ct_CC
if test -n "$ac_ct_CC"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
-printf "%s\n" "$ac_ct_CC" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
+printf '%s\n' "$ac_ct_CC" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
if test "x$ac_ct_CC" = x; then
@@ -5097,8 +5223,8 @@ fi
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
CC=$ac_ct_CC
@@ -5111,7 +5237,7 @@ if test -z "$CC"; then
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
set dummy ${ac_tool_prefix}cc; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_prog_CC+y}
then :
@@ -5132,7 +5258,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_prog_CC="${ac_tool_prefix}cc"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -5144,11 +5270,11 @@ esac
fi
CC=$ac_cv_prog_CC
if test -n "$CC"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
-printf "%s\n" "$CC" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
+printf '%s\n' "$CC" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -5157,7 +5283,7 @@ fi
if test -z "$CC"; then
# Extract the first word of "cc", so it can be a program name with args.
set dummy cc; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_prog_CC+y}
then :
@@ -5183,7 +5309,7 @@ do
continue
fi
ac_cv_prog_CC="cc"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -5207,11 +5333,11 @@ esac
fi
CC=$ac_cv_prog_CC
if test -n "$CC"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
-printf "%s\n" "$CC" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
+printf '%s\n' "$CC" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -5222,7 +5348,7 @@ if test -z "$CC"; then
do
# Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
set dummy $ac_tool_prefix$ac_prog; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_prog_CC+y}
then :
@@ -5243,7 +5369,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -5255,11 +5381,11 @@ esac
fi
CC=$ac_cv_prog_CC
if test -n "$CC"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
-printf "%s\n" "$CC" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
+printf '%s\n' "$CC" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -5272,7 +5398,7 @@ if test -z "$CC"; then
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_prog_ac_ct_CC+y}
then :
@@ -5293,7 +5419,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_CC="$ac_prog"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -5305,11 +5431,11 @@ esac
fi
ac_ct_CC=$ac_cv_prog_ac_ct_CC
if test -n "$ac_ct_CC"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
-printf "%s\n" "$ac_ct_CC" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
+printf '%s\n' "$ac_ct_CC" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -5321,8 +5447,8 @@ done
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
CC=$ac_ct_CC
@@ -5334,7 +5460,7 @@ if test -z "$CC"; then
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}clang", so it can be a program name with args.
set dummy ${ac_tool_prefix}clang; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_prog_CC+y}
then :
@@ -5355,7 +5481,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_prog_CC="${ac_tool_prefix}clang"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -5367,11 +5493,11 @@ esac
fi
CC=$ac_cv_prog_CC
if test -n "$CC"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
-printf "%s\n" "$CC" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
+printf '%s\n' "$CC" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -5380,7 +5506,7 @@ if test -z "$ac_cv_prog_CC"; then
ac_ct_CC=$CC
# Extract the first word of "clang", so it can be a program name with args.
set dummy clang; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_prog_ac_ct_CC+y}
then :
@@ -5401,7 +5527,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_CC="clang"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -5413,11 +5539,11 @@ esac
fi
ac_ct_CC=$ac_cv_prog_ac_ct_CC
if test -n "$ac_ct_CC"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
-printf "%s\n" "$ac_ct_CC" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
+printf '%s\n' "$ac_ct_CC" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
if test "x$ac_ct_CC" = x; then
@@ -5425,8 +5551,8 @@ fi
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
CC=$ac_ct_CC
@@ -5438,13 +5564,13 @@ fi
fi
-test -z "$CC" && { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
+test -z "$CC" && { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
+printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
as_fn_error $? "no acceptable C compiler found in \$PATH
See 'config.log' for more details" "$LINENO" 5; }
# Provide some information about the compiler.
-printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
+printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
set X $ac_compile
ac_compiler=$2
for ac_option in --version -v -V -qversion -version; do
@@ -5454,7 +5580,7 @@ case "(($ac_try" in
*) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-printf "%s\n" "$ac_try_echo"; } >&5
+printf '%s\n' "$ac_try_echo"; } >&5
(eval "$ac_compiler $ac_option >&5") 2>conftest.err
ac_status=$?
if test -s conftest.err; then
@@ -5464,7 +5590,7 @@ printf "%s\n" "$ac_try_echo"; } >&5
cat conftest.er1 >&5
fi
rm -f conftest.er1 conftest.err
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }
done
@@ -5484,9 +5610,9 @@ ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
# Try to create an executable without -o first, disregard a.out.
# It will help us diagnose broken compilers, and finding out an intuition
# of exeext.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
printf %s "checking whether the C compiler works... " >&6; }
-ac_link_default=`printf "%s\n" "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
+ac_link_default=`printf '%s\n' "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
# The possible output files:
ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
@@ -5507,10 +5633,10 @@ case "(($ac_try" in
*) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-printf "%s\n" "$ac_try_echo"; } >&5
+printf '%s\n' "$ac_try_echo"; } >&5
(eval "$ac_link_default") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }
then :
# Autoconf-2.13 could set the ac_cv_exeext variable to 'no'.
@@ -5551,29 +5677,29 @@ esac
fi
if test -z "$ac_file"
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
-printf "%s\n" "$as_me: failed program was:" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
+printf '%s\n' "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
-{ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
+{ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
+printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
as_fn_error 77 "C compiler cannot create executables
See 'config.log' for more details" "$LINENO" 5; }
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; } ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; } ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
printf %s "checking for C compiler default output file name... " >&6; }
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
-printf "%s\n" "$ac_file" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
+printf '%s\n' "$ac_file" >&6; }
ac_exeext=$ac_cv_exeext
rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
ac_clean_files=$ac_clean_files_save
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
printf %s "checking for suffix of executables... " >&6; }
if { { ac_try="$ac_link"
case "(($ac_try" in
@@ -5581,10 +5707,10 @@ case "(($ac_try" in
*) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-printf "%s\n" "$ac_try_echo"; } >&5
+printf '%s\n' "$ac_try_echo"; } >&5
(eval "$ac_link") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }
then :
# If both 'conftest.exe' and 'conftest' are 'present' (well, observable)
@@ -5601,15 +5727,15 @@ for ac_file in conftest.exe conftest conftest.*; do
esac
done
else case e in #(
- e) { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
+ e) { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
+printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
as_fn_error $? "cannot compute suffix of executables: cannot compile and link
See 'config.log' for more details" "$LINENO" 5; } ;;
esac
fi
rm -f conftest conftest$ac_cv_exeext
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
-printf "%s\n" "$ac_cv_exeext" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
+printf '%s\n' "$ac_cv_exeext" >&6; }
rm -f conftest.$ac_ext
EXEEXT=$ac_cv_exeext
@@ -5632,7 +5758,7 @@ _ACEOF
ac_clean_files="$ac_clean_files conftest.out"
# Check that the compiler produces executables we can run. If not, either
# the compiler is broken, or we cross compile.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
printf %s "checking whether we are cross compiling... " >&6; }
if test "$cross_compiling" != yes; then
{ { ac_try="$ac_link"
@@ -5641,10 +5767,10 @@ case "(($ac_try" in
*) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-printf "%s\n" "$ac_try_echo"; } >&5
+printf '%s\n' "$ac_try_echo"; } >&5
(eval "$ac_link") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }
if { ac_try='./conftest$ac_cv_exeext'
{ { case "(($ac_try" in
@@ -5652,31 +5778,31 @@ printf "%s\n" "$ac_try_echo"; } >&5
*) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-printf "%s\n" "$ac_try_echo"; } >&5
+printf '%s\n' "$ac_try_echo"; } >&5
(eval "$ac_try") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; }; then
cross_compiling=no
else
if test "$cross_compiling" = maybe; then
cross_compiling=yes
else
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
+printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
as_fn_error 77 "cannot run C compiled programs.
If you meant to cross compile, use '--host'.
See 'config.log' for more details" "$LINENO" 5; }
fi
fi
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
-printf "%s\n" "$cross_compiling" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
+printf '%s\n' "$cross_compiling" >&6; }
rm -f conftest.$ac_ext conftest$ac_cv_exeext \
conftest.o conftest.obj conftest.out
ac_clean_files=$ac_clean_files_save
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
printf %s "checking for suffix of object files... " >&6; }
if test ${ac_cv_objext+y}
then :
@@ -5700,10 +5826,10 @@ case "(($ac_try" in
*) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-printf "%s\n" "$ac_try_echo"; } >&5
+printf '%s\n' "$ac_try_echo"; } >&5
(eval "$ac_compile") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }
then :
for ac_file in conftest.o conftest.obj conftest.*; do
@@ -5715,11 +5841,11 @@ then :
esac
done
else case e in #(
- e) printf "%s\n" "$as_me: failed program was:" >&5
+ e) printf '%s\n' "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
-{ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
+{ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
+printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
as_fn_error $? "cannot compute suffix of object files: cannot compile
See 'config.log' for more details" "$LINENO" 5; } ;;
esac
@@ -5727,11 +5853,11 @@ fi
rm -f conftest.$ac_cv_objext conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
-printf "%s\n" "$ac_cv_objext" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
+printf '%s\n' "$ac_cv_objext" >&6; }
OBJEXT=$ac_cv_objext
ac_objext=$OBJEXT
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU C" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU C" >&5
printf %s "checking whether the compiler supports GNU C... " >&6; }
if test ${ac_cv_c_compiler_gnu+y}
then :
@@ -5763,8 +5889,8 @@ ac_cv_c_compiler_gnu=$ac_compiler_gnu
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
-printf "%s\n" "$ac_cv_c_compiler_gnu" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
+printf '%s\n' "$ac_cv_c_compiler_gnu" >&6; }
ac_compiler_gnu=$ac_cv_c_compiler_gnu
if test $ac_compiler_gnu = yes; then
@@ -5774,7 +5900,7 @@ else
fi
ac_test_CFLAGS=${CFLAGS+y}
ac_save_CFLAGS=$CFLAGS
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
printf %s "checking whether $CC accepts -g... " >&6; }
if test ${ac_cv_prog_cc_g+y}
then :
@@ -5842,8 +5968,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
ac_c_werror_flag=$ac_save_c_werror_flag ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
-printf "%s\n" "$ac_cv_prog_cc_g" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
+printf '%s\n' "$ac_cv_prog_cc_g" >&6; }
if test $ac_test_CFLAGS; then
CFLAGS=$ac_save_CFLAGS
elif test $ac_cv_prog_cc_g = yes; then
@@ -5862,7 +5988,56 @@ fi
ac_prog_cc_stdc=no
if test x$ac_prog_cc_stdc = xno
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C11 features" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C23 features" >&5
+printf %s "checking for $CC option to enable C23 features... " >&6; }
+if test ${ac_cv_prog_cc_c23+y}
+then :
+ printf %s "(cached) " >&6
+else case e in #(
+ e) ac_cv_prog_cc_c23=no
+ac_save_CC=$CC
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+$ac_c_conftest_c23_program
+_ACEOF
+for ac_arg in '' -std=gnu23
+do
+ CC="$ac_save_CC $ac_arg"
+ if ac_fn_c_try_compile "$LINENO"
+then :
+ ac_cv_prog_cc_c23=$ac_arg
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.beam
+ test "x$ac_cv_prog_cc_c23" != "xno" && break
+done
+rm -f conftest.$ac_ext
+CC=$ac_save_CC ;;
+esac
+fi
+
+if test "x$ac_cv_prog_cc_c23" = xno
+then :
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
+printf '%s\n' "unsupported" >&6; }
+else case e in #(
+ e) if test "x$ac_cv_prog_cc_c23" = x
+then :
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
+printf '%s\n' "none needed" >&6; }
+else case e in #(
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c23" >&5
+printf '%s\n' "$ac_cv_prog_cc_c23" >&6; }
+ CC="$CC $ac_cv_prog_cc_c23" ;;
+esac
+fi
+ ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c23
+ ac_prog_cc_stdc=c23 ;;
+esac
+fi
+fi
+if test x$ac_prog_cc_stdc = xno
+then :
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C11 features" >&5
printf %s "checking for $CC option to enable C11 features... " >&6; }
if test ${ac_cv_prog_cc_c11+y}
then :
@@ -5874,7 +6049,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
$ac_c_conftest_c11_program
_ACEOF
-for ac_arg in '' -std=gnu11
+for ac_arg in '' -std=gnu11 -std:c11
do
CC="$ac_save_CC $ac_arg"
if ac_fn_c_try_compile "$LINENO"
@@ -5891,16 +6066,16 @@ fi
if test "x$ac_cv_prog_cc_c11" = xno
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
-printf "%s\n" "unsupported" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
+printf '%s\n' "unsupported" >&6; }
else case e in #(
e) if test "x$ac_cv_prog_cc_c11" = x
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
-printf "%s\n" "none needed" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
+printf '%s\n' "none needed" >&6; }
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c11" >&5
-printf "%s\n" "$ac_cv_prog_cc_c11" >&6; }
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c11" >&5
+printf '%s\n' "$ac_cv_prog_cc_c11" >&6; }
CC="$CC $ac_cv_prog_cc_c11" ;;
esac
fi
@@ -5911,7 +6086,7 @@ fi
fi
if test x$ac_prog_cc_stdc = xno
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C99 features" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C99 features" >&5
printf %s "checking for $CC option to enable C99 features... " >&6; }
if test ${ac_cv_prog_cc_c99+y}
then :
@@ -5940,16 +6115,16 @@ fi
if test "x$ac_cv_prog_cc_c99" = xno
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
-printf "%s\n" "unsupported" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
+printf '%s\n' "unsupported" >&6; }
else case e in #(
e) if test "x$ac_cv_prog_cc_c99" = x
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
-printf "%s\n" "none needed" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
+printf '%s\n' "none needed" >&6; }
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5
-printf "%s\n" "$ac_cv_prog_cc_c99" >&6; }
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5
+printf '%s\n' "$ac_cv_prog_cc_c99" >&6; }
CC="$CC $ac_cv_prog_cc_c99" ;;
esac
fi
@@ -5960,7 +6135,7 @@ fi
fi
if test x$ac_prog_cc_stdc = xno
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C89 features" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C89 features" >&5
printf %s "checking for $CC option to enable C89 features... " >&6; }
if test ${ac_cv_prog_cc_c89+y}
then :
@@ -5989,16 +6164,16 @@ fi
if test "x$ac_cv_prog_cc_c89" = xno
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
-printf "%s\n" "unsupported" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
+printf '%s\n' "unsupported" >&6; }
else case e in #(
e) if test "x$ac_cv_prog_cc_c89" = x
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
-printf "%s\n" "none needed" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
+printf '%s\n' "none needed" >&6; }
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
-printf "%s\n" "$ac_cv_prog_cc_c89" >&6; }
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
+printf '%s\n' "$ac_cv_prog_cc_c89" >&6; }
CC="$CC $ac_cv_prog_cc_c89" ;;
esac
fi
@@ -6019,7 +6194,7 @@ ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5
printf %s "checking how to run the C preprocessor... " >&6; }
# On Suns, sometimes $CPP names a directory.
if test -n "$CPP" && test -d "$CPP"; then
@@ -6090,8 +6265,8 @@ fi
else
ac_cv_prog_CPP=$CPP
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5
-printf "%s\n" "$CPP" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5
+printf '%s\n' "$CPP" >&6; }
ac_preproc_ok=false
for ac_c_preproc_warn_flag in '' yes
do
@@ -6139,8 +6314,8 @@ if $ac_preproc_ok
then :
else case e in #(
- e) { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
+ e) { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
+printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
See 'config.log' for more details" "$LINENO" 5; } ;;
esac
@@ -6152,7 +6327,7 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
printf %s "checking for grep that handles long lines and -e... " >&6; }
if test ${ac_cv_path_GREP+y}
then :
@@ -6189,7 +6364,7 @@ case `"$ac_path_GREP" --version 2>&1` in #(
cat "conftest.in" "conftest.in" >"conftest.tmp"
mv "conftest.tmp" "conftest.in"
cp "conftest.in" "conftest.nl"
- printf "%s\n" 'GREP' >> "conftest.nl"
+ printf '%s\n' 'GREP' >> "conftest.nl"
"$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break
diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
as_fn_arith $ac_count + 1 && ac_count=$as_val
@@ -6218,12 +6393,12 @@ fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5
-printf "%s\n" "$ac_cv_path_GREP" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5
+printf '%s\n' "$ac_cv_path_GREP" >&6; }
GREP="$ac_cv_path_GREP"
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5
printf %s "checking for a sed that does not truncate output... " >&6; }
if test ${ac_cv_path_SED+y}
then :
@@ -6266,7 +6441,7 @@ case `"$ac_path_SED" --version 2>&1` in #(
cat "conftest.in" "conftest.in" >"conftest.tmp"
mv "conftest.tmp" "conftest.in"
cp "conftest.in" "conftest.nl"
- printf "%s\n" '' >> "conftest.nl"
+ printf '%s\n' '' >> "conftest.nl"
"$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break
diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
as_fn_arith $ac_count + 1 && ac_count=$as_val
@@ -6295,12 +6470,12 @@ fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5
-printf "%s\n" "$ac_cv_path_SED" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5
+printf '%s\n' "$ac_cv_path_SED" >&6; }
SED="$ac_cv_path_SED"
rm -f conftest.sed
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
printf %s "checking for egrep... " >&6; }
if test ${ac_cv_path_EGREP+y}
then :
@@ -6340,7 +6515,7 @@ case `"$ac_path_EGREP" --version 2>&1` in #(
cat "conftest.in" "conftest.in" >"conftest.tmp"
mv "conftest.tmp" "conftest.in"
cp "conftest.in" "conftest.nl"
- printf "%s\n" 'EGREP' >> "conftest.nl"
+ printf '%s\n' 'EGREP' >> "conftest.nl"
"$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
as_fn_arith $ac_count + 1 && ac_count=$as_val
@@ -6370,8 +6545,8 @@ fi
fi ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5
-printf "%s\n" "$ac_cv_path_EGREP" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5
+printf '%s\n' "$ac_cv_path_EGREP" >&6; }
EGREP="$ac_cv_path_EGREP"
EGREP_TRADITIONAL=$EGREP
@@ -6380,7 +6555,7 @@ printf "%s\n" "$ac_cv_path_EGREP" >&6; }
CC_BASENAME=$(expr "//$CC" : '.*/\(.*\)')
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for CC compiler name" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for CC compiler name" >&5
printf %s "checking for CC compiler name... " >&6; }
if test ${ac_cv_cc_name+y}
then :
@@ -6418,8 +6593,8 @@ rm -f conftest.c conftest.out
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cc_name" >&5
-printf "%s\n" "$ac_cv_cc_name" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cc_name" >&5
+printf '%s\n' "$ac_cv_cc_name" >&6; }
# checks for UNIX variants that set C preprocessor variables
# may set _GNU_SOURCE, __EXTENSIONS__, _POSIX_PTHREAD_SEMANTICS,
@@ -6431,7 +6606,7 @@ do
if test $ac_cache; then
ac_fn_c_check_header_compile "$LINENO" $ac_header ac_cv_header_$ac_cache "$ac_includes_default"
if eval test \"x\$ac_cv_header_$ac_cache\" = xyes; then
- printf "%s\n" "#define $ac_item 1" >> confdefs.h
+ printf '%s\n' "#define $ac_item 1" >> confdefs.h
fi
ac_header= ac_cache=
elif test $ac_header; then
@@ -6451,7 +6626,7 @@ done
if test $ac_cv_header_stdlib_h = yes && test $ac_cv_header_string_h = yes
then :
-printf "%s\n" "#define STDC_HEADERS 1" >>confdefs.h
+printf '%s\n' "#define STDC_HEADERS 1" >>confdefs.h
fi
@@ -6460,7 +6635,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5
printf %s "checking whether it is safe to define __EXTENSIONS__... " >&6; }
if test ${ac_cv_safe_to_define___extensions__+y}
then :
@@ -6489,10 +6664,10 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__" >&5
-printf "%s\n" "$ac_cv_safe_to_define___extensions__" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__" >&5
+printf '%s\n' "$ac_cv_safe_to_define___extensions__" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether _XOPEN_SOURCE should be defined" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether _XOPEN_SOURCE should be defined" >&5
printf %s "checking whether _XOPEN_SOURCE should be defined... " >&6; }
if test ${ac_cv_should_define__xopen_source+y}
then :
@@ -6543,49 +6718,51 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
fi ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_should_define__xopen_source" >&5
-printf "%s\n" "$ac_cv_should_define__xopen_source" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_should_define__xopen_source" >&5
+printf '%s\n' "$ac_cv_should_define__xopen_source" >&6; }
+
+ printf '%s\n' "#define _ALL_SOURCE 1" >>confdefs.h
- printf "%s\n" "#define _ALL_SOURCE 1" >>confdefs.h
+ printf '%s\n' "#define _COSMO_SOURCE 1" >>confdefs.h
- printf "%s\n" "#define _DARWIN_C_SOURCE 1" >>confdefs.h
+ printf '%s\n' "#define _DARWIN_C_SOURCE 1" >>confdefs.h
- printf "%s\n" "#define _GNU_SOURCE 1" >>confdefs.h
+ printf '%s\n' "#define _GNU_SOURCE 1" >>confdefs.h
- printf "%s\n" "#define _HPUX_ALT_XOPEN_SOCKET_API 1" >>confdefs.h
+ printf '%s\n' "#define _HPUX_ALT_XOPEN_SOCKET_API 1" >>confdefs.h
- printf "%s\n" "#define _NETBSD_SOURCE 1" >>confdefs.h
+ printf '%s\n' "#define _NETBSD_SOURCE 1" >>confdefs.h
- printf "%s\n" "#define _OPENBSD_SOURCE 1" >>confdefs.h
+ printf '%s\n' "#define _OPENBSD_SOURCE 1" >>confdefs.h
- printf "%s\n" "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h
+ printf '%s\n' "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h
- printf "%s\n" "#define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1" >>confdefs.h
+ printf '%s\n' "#define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1" >>confdefs.h
- printf "%s\n" "#define __STDC_WANT_IEC_60559_BFP_EXT__ 1" >>confdefs.h
+ printf '%s\n' "#define __STDC_WANT_IEC_60559_BFP_EXT__ 1" >>confdefs.h
- printf "%s\n" "#define __STDC_WANT_IEC_60559_DFP_EXT__ 1" >>confdefs.h
+ printf '%s\n' "#define __STDC_WANT_IEC_60559_DFP_EXT__ 1" >>confdefs.h
- printf "%s\n" "#define __STDC_WANT_IEC_60559_EXT__ 1" >>confdefs.h
+ printf '%s\n' "#define __STDC_WANT_IEC_60559_EXT__ 1" >>confdefs.h
- printf "%s\n" "#define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1" >>confdefs.h
+ printf '%s\n' "#define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1" >>confdefs.h
- printf "%s\n" "#define __STDC_WANT_IEC_60559_TYPES_EXT__ 1" >>confdefs.h
+ printf '%s\n' "#define __STDC_WANT_IEC_60559_TYPES_EXT__ 1" >>confdefs.h
- printf "%s\n" "#define __STDC_WANT_LIB_EXT2__ 1" >>confdefs.h
+ printf '%s\n' "#define __STDC_WANT_LIB_EXT2__ 1" >>confdefs.h
- printf "%s\n" "#define __STDC_WANT_MATH_SPEC_FUNCS__ 1" >>confdefs.h
+ printf '%s\n' "#define __STDC_WANT_MATH_SPEC_FUNCS__ 1" >>confdefs.h
- printf "%s\n" "#define _TANDEM_SOURCE 1" >>confdefs.h
+ printf '%s\n' "#define _TANDEM_SOURCE 1" >>confdefs.h
if test $ac_cv_header_minix_config_h = yes
then :
MINIX=yes
- printf "%s\n" "#define _MINIX 1" >>confdefs.h
+ printf '%s\n' "#define _MINIX 1" >>confdefs.h
- printf "%s\n" "#define _POSIX_SOURCE 1" >>confdefs.h
+ printf '%s\n' "#define _POSIX_SOURCE 1" >>confdefs.h
- printf "%s\n" "#define _POSIX_1_SOURCE 2" >>confdefs.h
+ printf '%s\n' "#define _POSIX_1_SOURCE 2" >>confdefs.h
else case e in #(
e) MINIX= ;;
@@ -6593,18 +6770,18 @@ esac
fi
if test $ac_cv_safe_to_define___extensions__ = yes
then :
- printf "%s\n" "#define __EXTENSIONS__ 1" >>confdefs.h
+ printf '%s\n' "#define __EXTENSIONS__ 1" >>confdefs.h
fi
if test $ac_cv_should_define__xopen_source = yes
then :
- printf "%s\n" "#define _XOPEN_SOURCE 500" >>confdefs.h
+ printf '%s\n' "#define _XOPEN_SOURCE 500" >>confdefs.h
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for GCC compatible compiler" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for GCC compatible compiler" >&5
printf %s "checking for GCC compatible compiler... " >&6; }
if test ${ac_cv_gcc_compat+y}
then :
@@ -6630,8 +6807,8 @@ fi
rm -f conftest.err conftest.i conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_gcc_compat" >&5
-printf "%s\n" "$ac_cv_gcc_compat" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_gcc_compat" >&5
+printf '%s\n' "$ac_cv_gcc_compat" >&6; }
@@ -6642,7 +6819,7 @@ then
gcc) if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}g++", so it can be a program name with args.
set dummy ${ac_tool_prefix}g++; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_CXX+y}
then :
@@ -6665,7 +6842,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_CXX="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -6678,11 +6855,11 @@ esac
fi
CXX=$ac_cv_path_CXX
if test -n "$CXX"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5
-printf "%s\n" "$CXX" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5
+printf '%s\n' "$CXX" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -6691,7 +6868,7 @@ if test -z "$ac_cv_path_CXX"; then
ac_pt_CXX=$CXX
# Extract the first word of "g++", so it can be a program name with args.
set dummy g++; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_ac_pt_CXX+y}
then :
@@ -6714,7 +6891,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_ac_pt_CXX="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -6727,11 +6904,11 @@ esac
fi
ac_pt_CXX=$ac_cv_path_ac_pt_CXX
if test -n "$ac_pt_CXX"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_pt_CXX" >&5
-printf "%s\n" "$ac_pt_CXX" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_pt_CXX" >&5
+printf '%s\n' "$ac_pt_CXX" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
if test "x$ac_pt_CXX" = x; then
@@ -6739,8 +6916,8 @@ fi
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
CXX=$ac_pt_CXX
@@ -6752,7 +6929,7 @@ fi
cc) if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}c++", so it can be a program name with args.
set dummy ${ac_tool_prefix}c++; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_CXX+y}
then :
@@ -6775,7 +6952,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_CXX="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -6788,11 +6965,11 @@ esac
fi
CXX=$ac_cv_path_CXX
if test -n "$CXX"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5
-printf "%s\n" "$CXX" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5
+printf '%s\n' "$CXX" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -6801,7 +6978,7 @@ if test -z "$ac_cv_path_CXX"; then
ac_pt_CXX=$CXX
# Extract the first word of "c++", so it can be a program name with args.
set dummy c++; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_ac_pt_CXX+y}
then :
@@ -6824,7 +7001,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_ac_pt_CXX="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -6837,11 +7014,11 @@ esac
fi
ac_pt_CXX=$ac_cv_path_ac_pt_CXX
if test -n "$ac_pt_CXX"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_pt_CXX" >&5
-printf "%s\n" "$ac_pt_CXX" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_pt_CXX" >&5
+printf '%s\n' "$ac_pt_CXX" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
if test "x$ac_pt_CXX" = x; then
@@ -6849,8 +7026,8 @@ fi
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
CXX=$ac_pt_CXX
@@ -6862,7 +7039,7 @@ fi
clang) if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}clang++", so it can be a program name with args.
set dummy ${ac_tool_prefix}clang++; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_CXX+y}
then :
@@ -6885,7 +7062,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_CXX="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -6898,11 +7075,11 @@ esac
fi
CXX=$ac_cv_path_CXX
if test -n "$CXX"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5
-printf "%s\n" "$CXX" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5
+printf '%s\n' "$CXX" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -6911,7 +7088,7 @@ if test -z "$ac_cv_path_CXX"; then
ac_pt_CXX=$CXX
# Extract the first word of "clang++", so it can be a program name with args.
set dummy clang++; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_ac_pt_CXX+y}
then :
@@ -6934,7 +7111,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_ac_pt_CXX="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -6947,11 +7124,11 @@ esac
fi
ac_pt_CXX=$ac_cv_path_ac_pt_CXX
if test -n "$ac_pt_CXX"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_pt_CXX" >&5
-printf "%s\n" "$ac_pt_CXX" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_pt_CXX" >&5
+printf '%s\n' "$ac_pt_CXX" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
if test "x$ac_pt_CXX" = x; then
@@ -6959,8 +7136,8 @@ fi
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
CXX=$ac_pt_CXX
@@ -6972,7 +7149,7 @@ fi
icc) if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}icpc", so it can be a program name with args.
set dummy ${ac_tool_prefix}icpc; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_CXX+y}
then :
@@ -6995,7 +7172,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_CXX="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -7008,11 +7185,11 @@ esac
fi
CXX=$ac_cv_path_CXX
if test -n "$CXX"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5
-printf "%s\n" "$CXX" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5
+printf '%s\n' "$CXX" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -7021,7 +7198,7 @@ if test -z "$ac_cv_path_CXX"; then
ac_pt_CXX=$CXX
# Extract the first word of "icpc", so it can be a program name with args.
set dummy icpc; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_ac_pt_CXX+y}
then :
@@ -7044,7 +7221,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_ac_pt_CXX="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -7057,11 +7234,11 @@ esac
fi
ac_pt_CXX=$ac_cv_path_ac_pt_CXX
if test -n "$ac_pt_CXX"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_pt_CXX" >&5
-printf "%s\n" "$ac_pt_CXX" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_pt_CXX" >&5
+printf '%s\n' "$ac_pt_CXX" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
if test "x$ac_pt_CXX" = x; then
@@ -7069,8 +7246,8 @@ fi
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
CXX=$ac_pt_CXX
@@ -7092,7 +7269,7 @@ then
do
# Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
set dummy $ac_tool_prefix$ac_prog; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_prog_CXX+y}
then :
@@ -7113,7 +7290,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -7125,11 +7302,11 @@ esac
fi
CXX=$ac_cv_prog_CXX
if test -n "$CXX"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5
-printf "%s\n" "$CXX" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5
+printf '%s\n' "$CXX" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -7142,7 +7319,7 @@ if test -z "$CXX"; then
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_prog_ac_ct_CXX+y}
then :
@@ -7163,7 +7340,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_CXX="$ac_prog"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -7175,11 +7352,11 @@ esac
fi
ac_ct_CXX=$ac_cv_prog_ac_ct_CXX
if test -n "$ac_ct_CXX"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5
-printf "%s\n" "$ac_ct_CXX" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5
+printf '%s\n' "$ac_ct_CXX" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -7191,8 +7368,8 @@ done
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
CXX=$ac_ct_CXX
@@ -7206,12 +7383,12 @@ fi
fi
if test "$preset_cxx" != "$CXX"
then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}:
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}:
By default, distutils will build C++ extension modules with \"$CXX\".
If this is not intended, then set CXX on the configure command line.
" >&5
-printf "%s\n" "$as_me:
+printf '%s\n' "$as_me:
By default, distutils will build C++ extension modules with \"$CXX\".
If this is not intended, then set CXX on the configure command line.
@@ -7219,20 +7396,20 @@ printf "%s\n" "$as_me:
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
printf %s "checking for the platform triplet based on compiler characteristics... " >&6; }
if $CPP $CPPFLAGS $srcdir/Misc/platform_triplet.c >conftest.out 2>/dev/null; then
PLATFORM_TRIPLET=`grep '^PLATFORM_TRIPLET=' conftest.out | tr -d ' '`
PLATFORM_TRIPLET="${PLATFORM_TRIPLET#PLATFORM_TRIPLET=}"
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $PLATFORM_TRIPLET" >&5
-printf "%s\n" "$PLATFORM_TRIPLET" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $PLATFORM_TRIPLET" >&5
+printf '%s\n' "$PLATFORM_TRIPLET" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none" >&5
-printf "%s\n" "none" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: none" >&5
+printf '%s\n' "none" >&6; }
fi
rm -f conftest.out
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for multiarch" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for multiarch" >&5
printf %s "checking for multiarch... " >&6; }
case $ac_sys_system in #(
Darwin*) :
@@ -7255,8 +7432,8 @@ elif test x$PLATFORM_TRIPLET != x && test x$MULTIARCH = x; then
MULTIARCH=$PLATFORM_TRIPLET
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MULTIARCH" >&5
-printf "%s\n" "$MULTIARCH" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $MULTIARCH" >&5
+printf '%s\n' "$MULTIARCH" >&6; }
case $ac_sys_system in #(
iOS) :
@@ -7279,11 +7456,11 @@ case $host in #(
_Py_STACK_GROWS_DOWN=1 ;;
esac
-printf "%s\n" "#define _Py_STACK_GROWS_DOWN $_Py_STACK_GROWS_DOWN" >>confdefs.h
+printf '%s\n' "#define _Py_STACK_GROWS_DOWN $_Py_STACK_GROWS_DOWN" >>confdefs.h
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for PEP 11 support tier" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for PEP 11 support tier" >&5
printf %s "checking for PEP 11 support tier... " >&6; }
case $host/$ac_cv_cc_name in #(
x86_64-*-linux-gnu/gcc) :
@@ -7336,25 +7513,25 @@ esac
case $PY_SUPPORT_TIER in #(
1) :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $host/$ac_cv_cc_name has tier 1 (supported)" >&5
-printf "%s\n" "$host/$ac_cv_cc_name has tier 1 (supported)" >&6; } ;; #(
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $host/$ac_cv_cc_name has tier 1 (supported)" >&5
+printf '%s\n' "$host/$ac_cv_cc_name has tier 1 (supported)" >&6; } ;; #(
2) :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $host/$ac_cv_cc_name has tier 2 (supported)" >&5
-printf "%s\n" "$host/$ac_cv_cc_name has tier 2 (supported)" >&6; } ;; #(
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $host/$ac_cv_cc_name has tier 2 (supported)" >&5
+printf '%s\n' "$host/$ac_cv_cc_name has tier 2 (supported)" >&6; } ;; #(
3) :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $host/$ac_cv_cc_name has tier 3 (partially supported)" >&5
-printf "%s\n" "$host/$ac_cv_cc_name has tier 3 (partially supported)" >&6; } ;; #(
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $host/$ac_cv_cc_name has tier 3 (partially supported)" >&5
+printf '%s\n' "$host/$ac_cv_cc_name has tier 3 (partially supported)" >&6; } ;; #(
*) :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $host/$ac_cv_cc_name is not supported" >&5
-printf "%s\n" "$as_me: WARNING: $host/$ac_cv_cc_name is not supported" >&2;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: $host/$ac_cv_cc_name is not supported" >&5
+printf '%s\n' "$as_me: WARNING: $host/$ac_cv_cc_name is not supported" >&2;}
;;
esac
-printf "%s\n" "#define PY_SUPPORT_TIER $PY_SUPPORT_TIER" >>confdefs.h
+printf '%s\n' "#define PY_SUPPORT_TIER $PY_SUPPORT_TIER" >>confdefs.h
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -Wl,--no-as-needed" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for -Wl,--no-as-needed" >&5
printf %s "checking for -Wl,--no-as-needed... " >&6; }
if test ${ac_cv_wl_no_as_needed+y}
then :
@@ -7389,11 +7566,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_wl_no_as_needed" >&5
-printf "%s\n" "$ac_cv_wl_no_as_needed" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_wl_no_as_needed" >&5
+printf '%s\n' "$ac_cv_wl_no_as_needed" >&6; }
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for the Android API level" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for the Android API level" >&5
printf %s "checking for the Android API level... " >&6; }
cat > conftest.c <conftest.out 2>/dev/null; then
ANDROID_API_LEVEL=`sed -n -e '/__ANDROID_API__/d' -e 's/^android_api = //p' conftest.out`
_arm_arch=`sed -n -e '/__ARM_ARCH/d' -e 's/^arm_arch = //p' conftest.out`
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ANDROID_API_LEVEL" >&5
-printf "%s\n" "$ANDROID_API_LEVEL" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ANDROID_API_LEVEL" >&5
+printf '%s\n' "$ANDROID_API_LEVEL" >&6; }
if test -z "$ANDROID_API_LEVEL"; then
as_fn_error $? "Fatal: you must define __ANDROID_API__" "$LINENO" 5
fi
-printf "%s\n" "#define ANDROID_API_LEVEL $ANDROID_API_LEVEL" >>confdefs.h
+printf '%s\n' "#define ANDROID_API_LEVEL $ANDROID_API_LEVEL" >>confdefs.h
# For __android_log_write() in Python/pylifecycle.c.
LIBS="$LIBS -llog"
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for the Android arm ABI" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for the Android arm ABI" >&5
printf %s "checking for the Android arm ABI... " >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $_arm_arch" >&5
-printf "%s\n" "$_arm_arch" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $_arm_arch" >&5
+printf '%s\n' "$_arm_arch" >&6; }
if test "$_arm_arch" = 7; then
BASECFLAGS="${BASECFLAGS} -mfloat-abi=softfp -mfpu=vfpv3-d16"
LDFLAGS="${LDFLAGS} -march=armv7-a -Wl,--fix-cortex-a8"
fi
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not Android" >&5
-printf "%s\n" "not Android" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: not Android" >&5
+printf '%s\n' "not Android" >&6; }
fi
rm -f conftest.c conftest.out
@@ -7444,7 +7621,7 @@ case $ac_sys_system/$ac_sys_release in #(
;;
esac
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --enable-wasm-dynamic-linking" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --enable-wasm-dynamic-linking" >&5
printf %s "checking for --enable-wasm-dynamic-linking... " >&6; }
# Check whether --enable-wasm-dynamic-linking was given.
if test ${enable_wasm_dynamic_linking+y}
@@ -7467,10 +7644,10 @@ else case e in #(
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $enable_wasm_dynamic_linking" >&5
-printf "%s\n" "$enable_wasm_dynamic_linking" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $enable_wasm_dynamic_linking" >&5
+printf '%s\n' "$enable_wasm_dynamic_linking" >&6; }
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --enable-wasm-pthreads" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --enable-wasm-pthreads" >&5
printf %s "checking for --enable-wasm-pthreads... " >&6; }
# Check whether --enable-wasm-pthreads was given.
if test ${enable_wasm_pthreads+y}
@@ -7493,10 +7670,10 @@ else case e in #(
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $enable_wasm_pthreads" >&5
-printf "%s\n" "$enable_wasm_pthreads" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $enable_wasm_pthreads" >&5
+printf '%s\n' "$enable_wasm_pthreads" >&6; }
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-suffix" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-suffix" >&5
printf %s "checking for --with-suffix... " >&6; }
# Check whether --with-suffix was given.
@@ -7528,8 +7705,8 @@ esac
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $EXEEXT" >&5
-printf "%s\n" "$EXEEXT" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $EXEEXT" >&5
+printf '%s\n' "$EXEEXT" >&6; }
# Make sure we keep EXEEXT and ac_exeext sync'ed.
ac_exeext=$EXEEXT
@@ -7537,7 +7714,7 @@ ac_exeext=$EXEEXT
# Test whether we're running on a non-case-sensitive system, in which
# case we give a warning if no ext is given
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for case-insensitive build directory" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for case-insensitive build directory" >&5
printf %s "checking for case-insensitive build directory... " >&6; }
if test ! -d CaseSensitiveTestDir; then
mkdir CaseSensitiveTestDir
@@ -7545,12 +7722,12 @@ fi
if test -d casesensitivetestdir && test -z "$EXEEXT"
then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
BUILDEXEEXT=.exe
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
BUILDEXEEXT=$EXEEXT
fi
rmdir CaseSensitiveTestDir
@@ -7563,14 +7740,14 @@ hp*|HP*)
esac
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking LIBRARY" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking LIBRARY" >&5
printf %s "checking LIBRARY... " >&6; }
if test -z "$LIBRARY"
then
LIBRARY='libpython$(VERSION)$(ABIFLAGS).a'
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LIBRARY" >&5
-printf "%s\n" "$LIBRARY" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $LIBRARY" >&5
+printf '%s\n' "$LIBRARY" >&6; }
# LDLIBRARY is the name of the library to link against (as opposed to the
# name of the library into which to insert object files). BLDLIBRARY is also
@@ -7609,7 +7786,7 @@ LDVERSION="$VERSION"
# compiled with CXX, LINKCC is CXX instead. Always using CXX is undesirable:
# python might then depend on the C++ runtime
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking LINKCC" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking LINKCC" >&5
printf %s "checking LINKCC... " >&6; }
if test -z "$LINKCC"
then
@@ -7621,8 +7798,8 @@ then
LINKCC=qcc;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LINKCC" >&5
-printf "%s\n" "$LINKCC" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $LINKCC" >&5
+printf '%s\n' "$LINKCC" >&6; }
# EXPORTSYMS holds the list of exported symbols for AIX.
# EXPORTSFROM holds the module name exporting symbols on AIX.
@@ -7630,7 +7807,7 @@ EXPORTSYMS=
EXPORTSFROM=
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking EXPORTSYMS" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking EXPORTSYMS" >&5
printf %s "checking EXPORTSYMS... " >&6; }
case $ac_sys_system in
AIX*)
@@ -7638,8 +7815,8 @@ AIX*)
EXPORTSFROM=. # the main executable
;;
esac
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $EXPORTSYMS" >&5
-printf "%s\n" "$EXPORTSYMS" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $EXPORTSYMS" >&5
+printf '%s\n' "$EXPORTSYMS" >&6; }
# GNULD is set to "yes" if the GNU linker is used. If this goes wrong
# make sure we default having it set to "no": this is used by
@@ -7647,7 +7824,7 @@ printf "%s\n" "$EXPORTSYMS" >&6; }
# to linker command lines, and failing to detect GNU ld simply results
# in the same behaviour as before.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5
printf %s "checking for GNU ld... " >&6; }
ac_prog=ld
if test "$ac_cv_cc_name" = "gcc"; then
@@ -7659,10 +7836,10 @@ case `"$ac_prog" -V 2>&1 < /dev/null` in
*)
GNULD=no;;
esac
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $GNULD" >&5
-printf "%s\n" "$GNULD" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $GNULD" >&5
+printf '%s\n' "$GNULD" >&6; }
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --enable-shared" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --enable-shared" >&5
printf %s "checking for --enable-shared... " >&6; }
# Check whether --enable-shared was given.
if test ${enable_shared+y}
@@ -7680,12 +7857,12 @@ then
enable_shared="no";;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5
-printf "%s\n" "$enable_shared" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5
+printf '%s\n' "$enable_shared" >&6; }
# --with-static-libpython
STATIC_LIBPYTHON=1
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-static-libpython" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-static-libpython" >&5
printf %s "checking for --with-static-libpython... " >&6; }
# Check whether --with-static-libpython was given.
@@ -7694,22 +7871,22 @@ then :
withval=$with_static_libpython;
if test "$withval" = no
then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; };
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; };
STATIC_LIBPYTHON=0
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; };
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; };
fi
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; } ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; } ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --enable-static-libpython-for-interpreter" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --enable-static-libpython-for-interpreter" >&5
printf %s "checking for --enable-static-libpython-for-interpreter... " >&6; }
# Check whether --enable-static-libpython-for-interpreter was given.
if test ${enable_static_libpython_for_interpreter+y}
@@ -7722,10 +7899,10 @@ if test -z "$enable_static_libpython_for_interpreter"
then
enable_static_libpython_for_interpreter="no"
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $enable_static_libpython_for_interpreter" >&5
-printf "%s\n" "$enable_static_libpython_for_interpreter" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $enable_static_libpython_for_interpreter" >&5
+printf '%s\n' "$enable_static_libpython_for_interpreter" >&6; }
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --enable-profiling" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --enable-profiling" >&5
printf %s "checking for --enable-profiling... " >&6; }
# Check whether --enable-profiling was given.
if test ${enable_profiling+y}
@@ -7753,15 +7930,15 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
else
enable_profiling=no
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $enable_profiling" >&5
-printf "%s\n" "$enable_profiling" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $enable_profiling" >&5
+printf '%s\n' "$enable_profiling" >&6; }
if test "x$enable_profiling" = xyes; then
BASECFLAGS="-pg $BASECFLAGS"
LDFLAGS="-pg $LDFLAGS"
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking LDLIBRARY" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking LDLIBRARY" >&5
printf %s "checking LDLIBRARY... " >&6; }
# Apple framework builds need more magic. LDLIBRARY is the dynamic
@@ -7791,7 +7968,7 @@ fi
if test $enable_shared = "yes"; then
PY_ENABLE_SHARED=1
-printf "%s\n" "#define Py_ENABLE_SHARED 1" >>confdefs.h
+printf '%s\n' "#define Py_ENABLE_SHARED 1" >>confdefs.h
case $ac_sys_system in
CYGWIN*)
@@ -7860,11 +8037,11 @@ else # shared is disabled
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LDLIBRARY" >&5
-printf "%s\n" "$LDLIBRARY" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $LDLIBRARY" >&5
+printf '%s\n' "$LDLIBRARY" >&6; }
# HOSTRUNNER - Program to run CPython for the host platform
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking HOSTRUNNER" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking HOSTRUNNER" >&5
printf %s "checking HOSTRUNNER... " >&6; }
if test -z "$HOSTRUNNER"
then
@@ -7874,7 +8051,7 @@ then
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}node", so it can be a program name with args.
set dummy ${ac_tool_prefix}node; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_NODE+y}
then :
@@ -7897,7 +8074,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_NODE="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -7910,11 +8087,11 @@ esac
fi
NODE=$ac_cv_path_NODE
if test -n "$NODE"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $NODE" >&5
-printf "%s\n" "$NODE" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $NODE" >&5
+printf '%s\n' "$NODE" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -7923,7 +8100,7 @@ if test -z "$ac_cv_path_NODE"; then
ac_pt_NODE=$NODE
# Extract the first word of "node", so it can be a program name with args.
set dummy node; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_ac_pt_NODE+y}
then :
@@ -7946,7 +8123,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_ac_pt_NODE="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -7959,11 +8136,11 @@ esac
fi
ac_pt_NODE=$ac_cv_path_ac_pt_NODE
if test -n "$ac_pt_NODE"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_pt_NODE" >&5
-printf "%s\n" "$ac_pt_NODE" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_pt_NODE" >&5
+printf '%s\n' "$ac_pt_NODE" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
if test "x$ac_pt_NODE" = x; then
@@ -7971,8 +8148,8 @@ fi
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
NODE=$ac_pt_NODE
@@ -7997,8 +8174,8 @@ fi
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $HOSTRUNNER" >&5
-printf "%s\n" "$HOSTRUNNER" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $HOSTRUNNER" >&5
+printf '%s\n' "$HOSTRUNNER" >&6; }
if test -n "$HOSTRUNNER"; then
PYTHON_FOR_BUILD="_PYTHON_HOSTRUNNER='$HOSTRUNNER' $PYTHON_FOR_BUILD"
@@ -8040,7 +8217,7 @@ if test -n "$ac_tool_prefix"; then
do
# Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
set dummy $ac_tool_prefix$ac_prog; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_prog_AR+y}
then :
@@ -8061,7 +8238,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_prog_AR="$ac_tool_prefix$ac_prog"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -8073,11 +8250,11 @@ esac
fi
AR=$ac_cv_prog_AR
if test -n "$AR"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $AR" >&5
-printf "%s\n" "$AR" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $AR" >&5
+printf '%s\n' "$AR" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -8090,7 +8267,7 @@ if test -z "$AR"; then
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_prog_ac_ct_AR+y}
then :
@@ -8111,7 +8288,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_AR="$ac_prog"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -8123,11 +8300,11 @@ esac
fi
ac_ct_AR=$ac_cv_prog_ac_ct_AR
if test -n "$ac_ct_AR"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5
-printf "%s\n" "$ac_ct_AR" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5
+printf '%s\n' "$ac_ct_AR" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -8139,8 +8316,8 @@ done
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
AR=$ac_ct_AR
@@ -8178,7 +8355,7 @@ esac
# OS/2's system install, which has a completely different semantic
# ./install, which can be erroneously created by make from ./install.sh.
# Reject install programs that cannot install multiple files.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
printf %s "checking for a BSD-compatible install... " >&6; }
if test -z "$INSTALL"; then
if test ${ac_cv_path_install+y}
@@ -8201,8 +8378,8 @@ case $as_dir in #((
?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
/usr/ucb/* ) ;;
*)
- # OSF1 and SCO ODT 3.0 have their own names for install.
- # Don't use installbsd from OSF since it installs stuff as root
+ # OSF/1 and SCO ODT 3.0 have their own names for install.
+ # Don't use installbsd from OSF/1 since it installs stuff as root
# by default.
for ac_prog in ginstall scoinst install; do
for ac_exec_ext in '' $ac_executable_extensions; do
@@ -8252,8 +8429,8 @@ fi
INSTALL=$ac_install_sh
fi
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
-printf "%s\n" "$INSTALL" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
+printf '%s\n' "$INSTALL" >&6; }
# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
# It thinks the first close brace ends the variable substitution.
@@ -8264,7 +8441,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a race-free mkdir -p" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for a race-free mkdir -p" >&5
printf %s "checking for a race-free mkdir -p... " >&6; }
if test -z "$MKDIR_P"; then
if test ${ac_cv_path_mkdir+y}
@@ -8307,8 +8484,8 @@ fi
MKDIR_P='mkdir -p'
fi
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
-printf "%s\n" "$MKDIR_P" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
+printf '%s\n' "$MKDIR_P" >&6; }
# Not every filesystem supports hard links
@@ -8328,7 +8505,7 @@ ABI_THREAD=""
# Check for --disable-gil
# --disable-gil
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --disable-gil" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --disable-gil" >&5
printf %s "checking for --disable-gil... " >&6; }
# Check whether --enable-gil was given.
if test ${enable_gil+y}
@@ -8346,13 +8523,13 @@ else case e in #(
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $disable_gil" >&5
-printf "%s\n" "$disable_gil" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $disable_gil" >&5
+printf '%s\n' "$disable_gil" >&6; }
if test "$disable_gil" = "yes"
then
-printf "%s\n" "#define Py_GIL_DISABLED 1" >>confdefs.h
+printf '%s\n' "#define Py_GIL_DISABLED 1" >>confdefs.h
# Add "t" for "threaded"
ABIFLAGS="${ABIFLAGS}t"
@@ -8360,7 +8537,7 @@ printf "%s\n" "#define Py_GIL_DISABLED 1" >>confdefs.h
fi
# Check for --with-pydebug
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-pydebug" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-pydebug" >&5
printf %s "checking for --with-pydebug... " >&6; }
# Check whether --with-pydebug was given.
@@ -8370,25 +8547,25 @@ then :
if test "$withval" != no
then
-printf "%s\n" "#define Py_DEBUG 1" >>confdefs.h
+printf '%s\n' "#define Py_DEBUG 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; };
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; };
Py_DEBUG='true'
ABIFLAGS="${ABIFLAGS}d"
-else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }; Py_DEBUG='false'
+else { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }; Py_DEBUG='false'
fi
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; } ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; } ;;
esac
fi
# Check for --with-trace-refs
# --with-trace-refs
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-trace-refs" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-trace-refs" >&5
printf %s "checking for --with-trace-refs... " >&6; }
# Check whether --with-trace-refs was given.
@@ -8401,13 +8578,13 @@ else case e in #(
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $with_trace_refs" >&5
-printf "%s\n" "$with_trace_refs" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $with_trace_refs" >&5
+printf '%s\n' "$with_trace_refs" >&6; }
if test "$with_trace_refs" = "yes"
then
-printf "%s\n" "#define Py_TRACE_REFS 1" >>confdefs.h
+printf '%s\n' "#define Py_TRACE_REFS 1" >>confdefs.h
fi
@@ -8417,7 +8594,7 @@ then
fi
# Check for --enable-pystats
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --enable-pystats" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --enable-pystats" >&5
printf %s "checking for --enable-pystats... " >&6; }
# Check whether --enable-pystats was given.
if test ${enable_pystats+y}
@@ -8429,14 +8606,14 @@ else case e in #(
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $enable_pystats" >&5
-printf "%s\n" "$enable_pystats" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $enable_pystats" >&5
+printf '%s\n' "$enable_pystats" >&6; }
if test "x$enable_pystats" = xyes
then :
-printf "%s\n" "#define Py_STATS 1" >>confdefs.h
+printf '%s\n' "#define Py_STATS 1" >>confdefs.h
fi
@@ -8444,7 +8621,7 @@ fi
# Check for --with-assertions.
# This allows enabling assertions without Py_DEBUG.
assertions='false'
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-assertions" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-assertions" >&5
printf %s "checking for --with-assertions... " >&6; }
# Check whether --with-assertions was given.
@@ -8458,22 +8635,22 @@ fi
fi
if test "$assertions" = 'true'; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
elif test "$Py_DEBUG" = 'true'; then
assertions='true'
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: implied by --with-pydebug" >&5
-printf "%s\n" "implied by --with-pydebug" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: implied by --with-pydebug" >&5
+printf '%s\n' "implied by --with-pydebug" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
# Enable optimization flags
Py_OPT='false'
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --enable-optimizations" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --enable-optimizations" >&5
printf %s "checking for --enable-optimizations... " >&6; }
# Check whether --enable-optimizations was given.
if test ${enable_optimizations+y}
@@ -8482,16 +8659,16 @@ then :
if test "$enableval" != no
then
Py_OPT='true'
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; };
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; };
else
Py_OPT='false'
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; };
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; };
fi
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; } ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; } ;;
esac
fi
@@ -8500,8 +8677,8 @@ if test "$Py_OPT" = 'true' ; then
# Check for conflicting CFLAGS=-O0 and --enable-optimizations
case "$CFLAGS" in
*-O0*)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: CFLAGS contains -O0 which may conflict with --enable-optimizations. Consider removing -O0 from CFLAGS for optimal performance." >&5
-printf "%s\n" "$as_me: WARNING: CFLAGS contains -O0 which may conflict with --enable-optimizations. Consider removing -O0 from CFLAGS for optimal performance." >&2;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: CFLAGS contains -O0 which may conflict with --enable-optimizations. Consider removing -O0 from CFLAGS for optimal performance." >&5
+printf '%s\n' "$as_me: WARNING: CFLAGS contains -O0 which may conflict with --enable-optimizations. Consider removing -O0 from CFLAGS for optimal performance." >&2;}
;;
esac
# Intentionally not forcing Py_LTO='true' here. Too many toolchains do not
@@ -8514,7 +8691,7 @@ printf "%s\n" "$as_me: WARNING: CFLAGS contains -O0 which may conflict with --en
if test "x$ac_cv_gcc_compat" = xyes
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -fno-semantic-interposition" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -fno-semantic-interposition" >&5
printf %s "checking whether C compiler accepts -fno-semantic-interposition... " >&6; }
if test ${ax_cv_check_cflags__Werror__fno_semantic_interposition+y}
then :
@@ -8545,8 +8722,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
CFLAGS=$ax_check_save_flags ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__fno_semantic_interposition" >&5
-printf "%s\n" "$ax_cv_check_cflags__Werror__fno_semantic_interposition" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__fno_semantic_interposition" >&5
+printf '%s\n' "$ax_cv_check_cflags__Werror__fno_semantic_interposition" >&6; }
if test "x$ax_cv_check_cflags__Werror__fno_semantic_interposition" = xyes
then :
@@ -8575,14 +8752,14 @@ else
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking PROFILE_TASK" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking PROFILE_TASK" >&5
printf %s "checking PROFILE_TASK... " >&6; }
if test -z "$PROFILE_TASK"
then
PROFILE_TASK='-m test --pgo --timeout=$(TESTTIMEOUT)'
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $PROFILE_TASK" >&5
-printf "%s\n" "$PROFILE_TASK" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $PROFILE_TASK" >&5
+printf '%s\n' "$PROFILE_TASK" >&6; }
# Make llvm-related checks work on systems where llvm tools are not installed with their
# normal names in the default $PATH (ie: Ubuntu). They exist under the
@@ -8605,7 +8782,7 @@ then
fi
# Enable LTO flags
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-lto" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-lto" >&5
printf %s "checking for --with-lto... " >&6; }
# Check whether --with-lto was given.
@@ -8616,25 +8793,25 @@ case "$withval" in
full)
Py_LTO='true'
Py_LTO_POLICY='full'
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
;;
thin)
Py_LTO='true'
Py_LTO_POLICY='thin'
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
;;
yes)
Py_LTO='true'
Py_LTO_POLICY='default'
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
;;
no)
Py_LTO='false'
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
;;
*)
Py_LTO='false'
@@ -8643,8 +8820,8 @@ printf "%s\n" "no" >&6; }
esac
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; } ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; } ;;
esac
fi
@@ -8652,7 +8829,7 @@ if test "$Py_LTO" = 'true' ; then
case $ac_cv_cc_name in
clang)
LDFLAGS_NOLTO="-fno-lto"
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -flto=thin" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -flto=thin" >&5
printf %s "checking whether C compiler accepts -flto=thin... " >&6; }
if test ${ax_cv_check_cflags___flto_thin+y}
then :
@@ -8683,8 +8860,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
CFLAGS=$ax_check_save_flags ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___flto_thin" >&5
-printf "%s\n" "$ax_cv_check_cflags___flto_thin" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___flto_thin" >&5
+printf '%s\n' "$ax_cv_check_cflags___flto_thin" >&6; }
if test "x$ax_cv_check_cflags___flto_thin" = xyes
then :
LDFLAGS_NOLTO="-flto=thin"
@@ -8697,7 +8874,7 @@ fi
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}llvm-ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}llvm-ar; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_LLVM_AR+y}
then :
@@ -8720,7 +8897,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_LLVM_AR="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -8733,11 +8910,11 @@ esac
fi
LLVM_AR=$ac_cv_path_LLVM_AR
if test -n "$LLVM_AR"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LLVM_AR" >&5
-printf "%s\n" "$LLVM_AR" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $LLVM_AR" >&5
+printf '%s\n' "$LLVM_AR" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -8746,7 +8923,7 @@ if test -z "$ac_cv_path_LLVM_AR"; then
ac_pt_LLVM_AR=$LLVM_AR
# Extract the first word of "llvm-ar", so it can be a program name with args.
set dummy llvm-ar; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_ac_pt_LLVM_AR+y}
then :
@@ -8769,7 +8946,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_ac_pt_LLVM_AR="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -8782,11 +8959,11 @@ esac
fi
ac_pt_LLVM_AR=$ac_cv_path_ac_pt_LLVM_AR
if test -n "$ac_pt_LLVM_AR"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_pt_LLVM_AR" >&5
-printf "%s\n" "$ac_pt_LLVM_AR" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_pt_LLVM_AR" >&5
+printf '%s\n' "$ac_pt_LLVM_AR" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
if test "x$ac_pt_LLVM_AR" = x; then
@@ -8794,8 +8971,8 @@ fi
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
LLVM_AR=$ac_pt_LLVM_AR
@@ -8819,8 +8996,8 @@ fi
then
LLVM_AR='/usr/bin/xcrun ar'
LLVM_AR_FOUND=found
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: llvm-ar found via xcrun: ${LLVM_AR}" >&5
-printf "%s\n" "$as_me: llvm-ar found via xcrun: ${LLVM_AR}" >&6;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: llvm-ar found via xcrun: ${LLVM_AR}" >&5
+printf '%s\n' "$as_me: llvm-ar found via xcrun: ${LLVM_AR}" >&6;}
fi
fi
if test $LLVM_AR_FOUND = not-found
@@ -8837,7 +9014,7 @@ printf "%s\n" "$as_me: llvm-ar found via xcrun: ${LLVM_AR}" >&6;}
if test $Py_LTO_POLICY = default
then
# Check that ThinLTO is accepted.
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -flto=thin" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -flto=thin" >&5
printf %s "checking whether C compiler accepts -flto=thin... " >&6; }
if test ${ax_cv_check_cflags___flto_thin+y}
then :
@@ -8868,8 +9045,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
CFLAGS=$ax_check_save_flags ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___flto_thin" >&5
-printf "%s\n" "$ax_cv_check_cflags___flto_thin" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___flto_thin" >&5
+printf '%s\n' "$ax_cv_check_cflags___flto_thin" >&6; }
if test "x$ax_cv_check_cflags___flto_thin" = xyes
then :
@@ -8894,7 +9071,7 @@ fi
if test $Py_LTO_POLICY = default
then
# Check that ThinLTO is accepted
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -flto=thin" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -flto=thin" >&5
printf %s "checking whether C compiler accepts -flto=thin... " >&6; }
if test ${ax_cv_check_cflags___flto_thin+y}
then :
@@ -8925,8 +9102,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
CFLAGS=$ax_check_save_flags ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___flto_thin" >&5
-printf "%s\n" "$ax_cv_check_cflags___flto_thin" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___flto_thin" >&5
+printf '%s\n' "$ax_cv_check_cflags___flto_thin" >&6; }
if test "x$ax_cv_check_cflags___flto_thin" = xyes
then :
LTOFLAGS="-flto=thin"
@@ -8987,7 +9164,7 @@ fi
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}llvm-profdata", so it can be a program name with args.
set dummy ${ac_tool_prefix}llvm-profdata; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_LLVM_PROFDATA+y}
then :
@@ -9010,7 +9187,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_LLVM_PROFDATA="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -9023,11 +9200,11 @@ esac
fi
LLVM_PROFDATA=$ac_cv_path_LLVM_PROFDATA
if test -n "$LLVM_PROFDATA"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LLVM_PROFDATA" >&5
-printf "%s\n" "$LLVM_PROFDATA" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $LLVM_PROFDATA" >&5
+printf '%s\n' "$LLVM_PROFDATA" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -9036,7 +9213,7 @@ if test -z "$ac_cv_path_LLVM_PROFDATA"; then
ac_pt_LLVM_PROFDATA=$LLVM_PROFDATA
# Extract the first word of "llvm-profdata", so it can be a program name with args.
set dummy llvm-profdata; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_ac_pt_LLVM_PROFDATA+y}
then :
@@ -9059,7 +9236,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_ac_pt_LLVM_PROFDATA="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -9072,11 +9249,11 @@ esac
fi
ac_pt_LLVM_PROFDATA=$ac_cv_path_ac_pt_LLVM_PROFDATA
if test -n "$ac_pt_LLVM_PROFDATA"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_pt_LLVM_PROFDATA" >&5
-printf "%s\n" "$ac_pt_LLVM_PROFDATA" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_pt_LLVM_PROFDATA" >&5
+printf '%s\n' "$ac_pt_LLVM_PROFDATA" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
if test "x$ac_pt_LLVM_PROFDATA" = x; then
@@ -9084,8 +9261,8 @@ fi
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
LLVM_PROFDATA=$ac_pt_LLVM_PROFDATA
@@ -9110,8 +9287,8 @@ then
# https://apple.stackexchange.com/questions/197053/
LLVM_PROFDATA='/usr/bin/xcrun llvm-profdata'
LLVM_PROF_FOUND=found
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: llvm-profdata found via xcrun: ${LLVM_PROFDATA}" >&5
-printf "%s\n" "$as_me: llvm-profdata found via xcrun: ${LLVM_PROFDATA}" >&6;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: llvm-profdata found via xcrun: ${LLVM_PROFDATA}" >&5
+printf '%s\n' "$as_me: llvm-profdata found via xcrun: ${LLVM_PROFDATA}" >&6;}
fi
fi
LLVM_PROF_ERR=no
@@ -9134,7 +9311,7 @@ case "$ac_cv_cc_name" in
;;
gcc)
# Check for 32-bit x86 ISA
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for i686" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for i686" >&5
printf %s "checking for i686... " >&6; }
if test ${ac_cv_i686+y}
then :
@@ -9169,8 +9346,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_i686" >&5
-printf "%s\n" "$ac_cv_i686" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_i686" >&5
+printf '%s\n' "$ac_cv_i686" >&6; }
PGO_PROF_GEN_FLAG="-fprofile-generate"
@@ -9183,7 +9360,7 @@ printf "%s\n" "$ac_cv_i686" >&6; }
if test "x$ac_cv_i686" = xno
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -fprofile-update=atomic" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -fprofile-update=atomic" >&5
printf %s "checking whether C compiler accepts -fprofile-update=atomic... " >&6; }
if test ${ax_cv_check_cflags___fprofile_update_atomic+y}
then :
@@ -9214,8 +9391,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
CFLAGS=$ax_check_save_flags ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___fprofile_update_atomic" >&5
-printf "%s\n" "$ax_cv_check_cflags___fprofile_update_atomic" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___fprofile_update_atomic" >&5
+printf '%s\n' "$ax_cv_check_cflags___fprofile_update_atomic" >&6; }
if test "x$ax_cv_check_cflags___fprofile_update_atomic" = xyes
then :
PGO_PROF_GEN_FLAG="$PGO_PROF_GEN_FLAG -fprofile-update=atomic"
@@ -9241,7 +9418,7 @@ esac
# BOLT optimization. Always configured after PGO since it always runs after PGO.
Py_BOLT='false'
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --enable-bolt" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --enable-bolt" >&5
printf %s "checking for --enable-bolt... " >&6; }
# Check whether --enable-bolt was given.
if test ${enable_bolt+y}
@@ -9250,16 +9427,16 @@ then :
if test "$enableval" != no
then
Py_BOLT='true'
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; };
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; };
else
Py_BOLT='false'
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; };
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; };
fi
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; } ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; } ;;
esac
fi
@@ -9272,7 +9449,7 @@ if test "$Py_BOLT" = 'true' ; then
# -fno-reorder-blocks-and-partition is required for bolt to work.
# Possibly GCC only.
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -fno-reorder-blocks-and-partition" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -fno-reorder-blocks-and-partition" >&5
printf %s "checking whether C compiler accepts -fno-reorder-blocks-and-partition... " >&6; }
if test ${ax_cv_check_cflags___fno_reorder_blocks_and_partition+y}
then :
@@ -9303,8 +9480,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
CFLAGS=$ax_check_save_flags ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___fno_reorder_blocks_and_partition" >&5
-printf "%s\n" "$ax_cv_check_cflags___fno_reorder_blocks_and_partition" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___fno_reorder_blocks_and_partition" >&5
+printf '%s\n' "$ax_cv_check_cflags___fno_reorder_blocks_and_partition" >&6; }
if test "x$ax_cv_check_cflags___fno_reorder_blocks_and_partition" = xyes
then :
@@ -9327,7 +9504,7 @@ fi
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}llvm-bolt", so it can be a program name with args.
set dummy ${ac_tool_prefix}llvm-bolt; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_LLVM_BOLT+y}
then :
@@ -9350,7 +9527,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_LLVM_BOLT="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -9363,11 +9540,11 @@ esac
fi
LLVM_BOLT=$ac_cv_path_LLVM_BOLT
if test -n "$LLVM_BOLT"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LLVM_BOLT" >&5
-printf "%s\n" "$LLVM_BOLT" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $LLVM_BOLT" >&5
+printf '%s\n' "$LLVM_BOLT" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -9376,7 +9553,7 @@ if test -z "$ac_cv_path_LLVM_BOLT"; then
ac_pt_LLVM_BOLT=$LLVM_BOLT
# Extract the first word of "llvm-bolt", so it can be a program name with args.
set dummy llvm-bolt; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_ac_pt_LLVM_BOLT+y}
then :
@@ -9399,7 +9576,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_ac_pt_LLVM_BOLT="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -9412,11 +9589,11 @@ esac
fi
ac_pt_LLVM_BOLT=$ac_cv_path_ac_pt_LLVM_BOLT
if test -n "$ac_pt_LLVM_BOLT"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_pt_LLVM_BOLT" >&5
-printf "%s\n" "$ac_pt_LLVM_BOLT" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_pt_LLVM_BOLT" >&5
+printf '%s\n' "$ac_pt_LLVM_BOLT" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
if test "x$ac_pt_LLVM_BOLT" = x; then
@@ -9424,8 +9601,8 @@ fi
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
LLVM_BOLT=$ac_pt_LLVM_BOLT
@@ -9436,8 +9613,8 @@ fi
if test -n "${LLVM_BOLT}" -a -x "${LLVM_BOLT}"
then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: \"Found llvm-bolt\"" >&5
-printf "%s\n" "\"Found llvm-bolt\"" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: \"Found llvm-bolt\"" >&5
+printf '%s\n' "\"Found llvm-bolt\"" >&6; }
else
as_fn_error $? "llvm-bolt is required for a --enable-bolt build but could not be found." "$LINENO" 5
fi
@@ -9446,7 +9623,7 @@ printf "%s\n" "\"Found llvm-bolt\"" >&6; }
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}merge-fdata", so it can be a program name with args.
set dummy ${ac_tool_prefix}merge-fdata; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_MERGE_FDATA+y}
then :
@@ -9469,7 +9646,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_MERGE_FDATA="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -9482,11 +9659,11 @@ esac
fi
MERGE_FDATA=$ac_cv_path_MERGE_FDATA
if test -n "$MERGE_FDATA"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MERGE_FDATA" >&5
-printf "%s\n" "$MERGE_FDATA" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $MERGE_FDATA" >&5
+printf '%s\n' "$MERGE_FDATA" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -9495,7 +9672,7 @@ if test -z "$ac_cv_path_MERGE_FDATA"; then
ac_pt_MERGE_FDATA=$MERGE_FDATA
# Extract the first word of "merge-fdata", so it can be a program name with args.
set dummy merge-fdata; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_ac_pt_MERGE_FDATA+y}
then :
@@ -9518,7 +9695,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_ac_pt_MERGE_FDATA="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -9531,11 +9708,11 @@ esac
fi
ac_pt_MERGE_FDATA=$ac_cv_path_ac_pt_MERGE_FDATA
if test -n "$ac_pt_MERGE_FDATA"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_pt_MERGE_FDATA" >&5
-printf "%s\n" "$ac_pt_MERGE_FDATA" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_pt_MERGE_FDATA" >&5
+printf '%s\n' "$ac_pt_MERGE_FDATA" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
if test "x$ac_pt_MERGE_FDATA" = x; then
@@ -9543,8 +9720,8 @@ fi
else
case $cross_compiling:$ac_tool_warned in
yes:)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+printf '%s\n' "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
MERGE_FDATA=$ac_pt_MERGE_FDATA
@@ -9555,8 +9732,8 @@ fi
if test -n "${MERGE_FDATA}" -a -x "${MERGE_FDATA}"
then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: \"Found merge-fdata\"" >&5
-printf "%s\n" "\"Found merge-fdata\"" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: \"Found merge-fdata\"" >&5
+printf '%s\n' "\"Found merge-fdata\"" >&6; }
else
as_fn_error $? "merge-fdata is required for a --enable-bolt build but could not be found." "$LINENO" 5
fi
@@ -9578,7 +9755,7 @@ fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking BOLT_COMMON_FLAGS" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking BOLT_COMMON_FLAGS" >&5
printf %s "checking BOLT_COMMON_FLAGS... " >&6; }
if test -z "${BOLT_COMMON_FLAGS}"
then
@@ -9587,25 +9764,25 @@ then
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking BOLT_INSTRUMENT_FLAGS" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking BOLT_INSTRUMENT_FLAGS" >&5
printf %s "checking BOLT_INSTRUMENT_FLAGS... " >&6; }
if test -z "${BOLT_INSTRUMENT_FLAGS}"
then
BOLT_INSTRUMENT_FLAGS="${BOLT_COMMON_FLAGS}"
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $BOLT_INSTRUMENT_FLAGS" >&5
-printf "%s\n" "$BOLT_INSTRUMENT_FLAGS" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $BOLT_INSTRUMENT_FLAGS" >&5
+printf '%s\n' "$BOLT_INSTRUMENT_FLAGS" >&6; }
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking BOLT_APPLY_FLAGS" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking BOLT_APPLY_FLAGS" >&5
printf %s "checking BOLT_APPLY_FLAGS... " >&6; }
if test -z "${BOLT_APPLY_FLAGS}"
then
BOLT_APPLY_FLAGS=" ${BOLT_COMMON_FLAGS} -reorder-blocks=ext-tsp -reorder-functions=cdsort -split-functions -icf=0 -inline-all -split-eh -reorder-functions-use-hot-size -peepholes=none -jump-tables=aggressive -inline-ap -indirect-call-promotion=all -dyno-stats -use-gnu-stack -frame-opt=hot "
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $BOLT_APPLY_FLAGS" >&5
-printf "%s\n" "$BOLT_APPLY_FLAGS" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $BOLT_APPLY_FLAGS" >&5
+printf '%s\n' "$BOLT_APPLY_FLAGS" >&6; }
# XXX Shouldn't the code above that fiddles with BASECFLAGS and OPT be
# merged with this chunk of code?
@@ -9622,7 +9799,7 @@ printf "%s\n" "$BOLT_APPLY_FLAGS" >&6; }
save_CFLAGS=$CFLAGS
CFLAGS="-fstrict-overflow -fno-strict-overflow"
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -fstrict-overflow and -fno-strict-overflow" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking if $CC supports -fstrict-overflow and -fno-strict-overflow" >&5
printf %s "checking if $CC supports -fstrict-overflow and -fno-strict-overflow... " >&6; }
if test ${ac_cv_cc_supports_fstrict_overflow+y}
then :
@@ -9651,8 +9828,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cc_supports_fstrict_overflow" >&5
-printf "%s\n" "$ac_cv_cc_supports_fstrict_overflow" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cc_supports_fstrict_overflow" >&5
+printf '%s\n' "$ac_cv_cc_supports_fstrict_overflow" >&6; }
CFLAGS=$save_CFLAGS
if test "x$ac_cv_cc_supports_fstrict_overflow" = xyes
@@ -9665,7 +9842,7 @@ else case e in #(
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-strict-overflow" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-strict-overflow" >&5
printf %s "checking for --with-strict-overflow... " >&6; }
# Check whether --with-strict-overflow was given.
@@ -9674,8 +9851,8 @@ then :
withval=$with_strict_overflow;
if test "x$ac_cv_cc_supports_fstrict_overflow" = xno
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: --with-strict-overflow=yes requires a compiler that supports -fstrict-overflow" >&5
-printf "%s\n" "$as_me: WARNING: --with-strict-overflow=yes requires a compiler that supports -fstrict-overflow" >&2;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: --with-strict-overflow=yes requires a compiler that supports -fstrict-overflow" >&5
+printf '%s\n' "$as_me: WARNING: --with-strict-overflow=yes requires a compiler that supports -fstrict-overflow" >&2;}
fi
else case e in #(
@@ -9684,13 +9861,13 @@ else case e in #(
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $with_strict_overflow" >&5
-printf "%s\n" "$with_strict_overflow" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $with_strict_overflow" >&5
+printf '%s\n' "$with_strict_overflow" >&6; }
# Check if CC supports -Og optimization level
save_CFLAGS=$CFLAGS
CFLAGS="-Og"
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Og optimization level" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Og optimization level" >&5
printf %s "checking if $CC supports -Og optimization level... " >&6; }
if test ${ac_cv_cc_supports_og+y}
then :
@@ -9724,8 +9901,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cc_supports_og" >&5
-printf "%s\n" "$ac_cv_cc_supports_og" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cc_supports_og" >&5
+printf '%s\n' "$ac_cv_cc_supports_og" >&6; }
CFLAGS=$save_CFLAGS
# Optimization messes up debuggers, so turn it off for
@@ -9839,13 +10016,13 @@ fi
WASI) :
-printf "%s\n" "#define _WASI_EMULATED_SIGNAL 1" >>confdefs.h
+printf '%s\n' "#define _WASI_EMULATED_SIGNAL 1" >>confdefs.h
-printf "%s\n" "#define _WASI_EMULATED_GETPID 1" >>confdefs.h
+printf '%s\n' "#define _WASI_EMULATED_GETPID 1" >>confdefs.h
-printf "%s\n" "#define _WASI_EMULATED_PROCESS_CLOCKS 1" >>confdefs.h
+printf '%s\n' "#define _WASI_EMULATED_PROCESS_CLOCKS 1" >>confdefs.h
LIBS="$LIBS -lwasi-emulated-signal -lwasi-emulated-getpid -lwasi-emulated-process-clocks"
echo "#define _WASI_EMULATED_SIGNAL 1" >> confdefs.h
@@ -9878,7 +10055,7 @@ fi
esac
if test "$ac_sys_system" = "Linux" -a "$cross_compiling" = no; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for thread stack size" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for thread stack size" >&5
printf %s "checking for thread stack size... " >&6; }
if test ${ac_cv_thread_stack_size+y}
then :
@@ -9924,14 +10101,14 @@ EOF
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_thread_stack_size" >&5
-printf "%s\n" "$ac_cv_thread_stack_size" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_thread_stack_size" >&5
+printf '%s\n' "$ac_cv_thread_stack_size" >&6; }
if test "$ac_cv_thread_stack_size" != "default" -a "$ac_cv_thread_stack_size" != "unknown"; then
LDFLAGS="$LDFLAGS -Wl,-z,stack-size=$ac_cv_thread_stack_size"
# Stack size used by Python/ceval.c to set Py_C_STACK_SIZE
-printf "%s\n" "#define _Py_LINKER_THREAD_STACK_SIZE $ac_cv_thread_stack_size" >>confdefs.h
+printf '%s\n' "#define _Py_LINKER_THREAD_STACK_SIZE $ac_cv_thread_stack_size" >>confdefs.h
fi
fi
@@ -9974,7 +10151,7 @@ fi
# Enable flags that warn and protect for potential security vulnerabilities.
# These flags should be enabled by default for all builds.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --enable-safety" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --enable-safety" >&5
printf %s "checking for --enable-safety... " >&6; }
# Check whether --enable-safety was given.
if test ${enable_safety+y}
@@ -9991,12 +10168,12 @@ else case e in #(
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $enable_safety" >&5
-printf "%s\n" "$enable_safety" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $enable_safety" >&5
+printf '%s\n' "$enable_safety" >&6; }
if test "$enable_safety" = "yes"
then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -fstack-protector-strong" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -fstack-protector-strong" >&5
printf %s "checking whether C compiler accepts -fstack-protector-strong... " >&6; }
if test ${ax_cv_check_cflags__Werror__fstack_protector_strong+y}
then :
@@ -10027,18 +10204,18 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
CFLAGS=$ax_check_save_flags ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__fstack_protector_strong" >&5
-printf "%s\n" "$ax_cv_check_cflags__Werror__fstack_protector_strong" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__fstack_protector_strong" >&5
+printf '%s\n' "$ax_cv_check_cflags__Werror__fstack_protector_strong" >&6; }
if test "x$ax_cv_check_cflags__Werror__fstack_protector_strong" = xyes
then :
CFLAGS_NODIST="$CFLAGS_NODIST -fstack-protector-strong"
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: -fstack-protector-strong not supported" >&5
-printf "%s\n" "$as_me: WARNING: -fstack-protector-strong not supported" >&2;} ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: -fstack-protector-strong not supported" >&5
+printf '%s\n' "$as_me: WARNING: -fstack-protector-strong not supported" >&2;} ;;
esac
fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Wtrampolines" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Wtrampolines" >&5
printf %s "checking whether C compiler accepts -Wtrampolines... " >&6; }
if test ${ax_cv_check_cflags__Werror__Wtrampolines+y}
then :
@@ -10069,18 +10246,18 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
CFLAGS=$ax_check_save_flags ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__Wtrampolines" >&5
-printf "%s\n" "$ax_cv_check_cflags__Werror__Wtrampolines" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__Wtrampolines" >&5
+printf '%s\n' "$ax_cv_check_cflags__Werror__Wtrampolines" >&6; }
if test "x$ax_cv_check_cflags__Werror__Wtrampolines" = xyes
then :
CFLAGS_NODIST="$CFLAGS_NODIST -Wtrampolines"
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: -Wtrampolines not supported" >&5
-printf "%s\n" "$as_me: WARNING: -Wtrampolines not supported" >&2;} ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: -Wtrampolines not supported" >&5
+printf '%s\n' "$as_me: WARNING: -Wtrampolines not supported" >&2;} ;;
esac
fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Wimplicit-fallthrough" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Wimplicit-fallthrough" >&5
printf %s "checking whether C compiler accepts -Wimplicit-fallthrough... " >&6; }
if test ${ax_cv_check_cflags__Werror__Wimplicit_fallthrough+y}
then :
@@ -10111,18 +10288,18 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
CFLAGS=$ax_check_save_flags ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__Wimplicit_fallthrough" >&5
-printf "%s\n" "$ax_cv_check_cflags__Werror__Wimplicit_fallthrough" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__Wimplicit_fallthrough" >&5
+printf '%s\n' "$ax_cv_check_cflags__Werror__Wimplicit_fallthrough" >&6; }
if test "x$ax_cv_check_cflags__Werror__Wimplicit_fallthrough" = xyes
then :
CFLAGS_NODIST="$CFLAGS_NODIST -Wimplicit-fallthrough"
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: -Wimplicit-fallthrough not supported" >&5
-printf "%s\n" "$as_me: WARNING: -Wimplicit-fallthrough not supported" >&2;} ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: -Wimplicit-fallthrough not supported" >&5
+printf '%s\n' "$as_me: WARNING: -Wimplicit-fallthrough not supported" >&2;} ;;
esac
fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Werror=format-security" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Werror=format-security" >&5
printf %s "checking whether C compiler accepts -Werror=format-security... " >&6; }
if test ${ax_cv_check_cflags__Werror__Werror_format_security+y}
then :
@@ -10153,18 +10330,18 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
CFLAGS=$ax_check_save_flags ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__Werror_format_security" >&5
-printf "%s\n" "$ax_cv_check_cflags__Werror__Werror_format_security" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__Werror_format_security" >&5
+printf '%s\n' "$ax_cv_check_cflags__Werror__Werror_format_security" >&6; }
if test "x$ax_cv_check_cflags__Werror__Werror_format_security" = xyes
then :
CFLAGS_NODIST="$CFLAGS_NODIST -Werror=format-security"
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: -Werror=format-security not supported" >&5
-printf "%s\n" "$as_me: WARNING: -Werror=format-security not supported" >&2;} ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: -Werror=format-security not supported" >&5
+printf '%s\n' "$as_me: WARNING: -Werror=format-security not supported" >&2;} ;;
esac
fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Wbidi-chars=any" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Wbidi-chars=any" >&5
printf %s "checking whether C compiler accepts -Wbidi-chars=any... " >&6; }
if test ${ax_cv_check_cflags__Werror__Wbidi_chars_any+y}
then :
@@ -10195,18 +10372,18 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
CFLAGS=$ax_check_save_flags ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__Wbidi_chars_any" >&5
-printf "%s\n" "$ax_cv_check_cflags__Werror__Wbidi_chars_any" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__Wbidi_chars_any" >&5
+printf '%s\n' "$ax_cv_check_cflags__Werror__Wbidi_chars_any" >&6; }
if test "x$ax_cv_check_cflags__Werror__Wbidi_chars_any" = xyes
then :
CFLAGS_NODIST="$CFLAGS_NODIST -Wbidi-chars=any"
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: -Wbidi-chars=any not supported" >&5
-printf "%s\n" "$as_me: WARNING: -Wbidi-chars=any not supported" >&2;} ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: -Wbidi-chars=any not supported" >&5
+printf '%s\n' "$as_me: WARNING: -Wbidi-chars=any not supported" >&2;} ;;
esac
fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Wall" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Wall" >&5
printf %s "checking whether C compiler accepts -Wall... " >&6; }
if test ${ax_cv_check_cflags__Werror__Wall+y}
then :
@@ -10237,20 +10414,20 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
CFLAGS=$ax_check_save_flags ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__Wall" >&5
-printf "%s\n" "$ax_cv_check_cflags__Werror__Wall" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__Wall" >&5
+printf '%s\n' "$ax_cv_check_cflags__Werror__Wall" >&6; }
if test "x$ax_cv_check_cflags__Werror__Wall" = xyes
then :
CFLAGS_NODIST="$CFLAGS_NODIST -Wall"
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: -Wall not supported" >&5
-printf "%s\n" "$as_me: WARNING: -Wall not supported" >&2;} ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: -Wall not supported" >&5
+printf '%s\n' "$as_me: WARNING: -Wall not supported" >&2;} ;;
esac
fi
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --enable-slower-safety" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --enable-slower-safety" >&5
printf %s "checking for --enable-slower-safety... " >&6; }
# Check whether --enable-slower-safety was given.
if test ${enable_slower_safety+y}
@@ -10267,12 +10444,12 @@ else case e in #(
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $enable_slower_safety" >&5
-printf "%s\n" "$enable_slower_safety" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $enable_slower_safety" >&5
+printf '%s\n' "$enable_slower_safety" >&6; }
if test "$enable_slower_safety" = "yes"
then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -D_FORTIFY_SOURCE=3" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -D_FORTIFY_SOURCE=3" >&5
printf %s "checking whether C compiler accepts -D_FORTIFY_SOURCE=3... " >&6; }
if test ${ax_cv_check_cflags__Werror__D_FORTIFY_SOURCE_3+y}
then :
@@ -10303,20 +10480,20 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
CFLAGS=$ax_check_save_flags ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__D_FORTIFY_SOURCE_3" >&5
-printf "%s\n" "$ax_cv_check_cflags__Werror__D_FORTIFY_SOURCE_3" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__D_FORTIFY_SOURCE_3" >&5
+printf '%s\n' "$ax_cv_check_cflags__Werror__D_FORTIFY_SOURCE_3" >&6; }
if test "x$ax_cv_check_cflags__Werror__D_FORTIFY_SOURCE_3" = xyes
then :
CFLAGS_NODIST="$CFLAGS_NODIST -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3"
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: -D_FORTIFY_SOURCE=3 not supported" >&5
-printf "%s\n" "$as_me: WARNING: -D_FORTIFY_SOURCE=3 not supported" >&2;} ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: -D_FORTIFY_SOURCE=3 not supported" >&5
+printf '%s\n' "$as_me: WARNING: -D_FORTIFY_SOURCE=3 not supported" >&2;} ;;
esac
fi
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to build with frame pointers" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether to build with frame pointers" >&5
printf %s "checking whether to build with frame pointers... " >&6; }
# Check whether --with-frame-pointers was given.
@@ -10328,14 +10505,14 @@ else case e in #(
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $with_frame_pointers" >&5
-printf "%s\n" "$with_frame_pointers" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $with_frame_pointers" >&5
+printf '%s\n' "$with_frame_pointers" >&6; }
if test "x$ac_cv_gcc_compat" = xyes
then :
frame_pointer_cflags=
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -fno-omit-frame-pointer" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -fno-omit-frame-pointer" >&5
printf %s "checking whether C compiler accepts -fno-omit-frame-pointer... " >&6; }
if test ${ax_cv_check_cflags__Werror__fno_omit_frame_pointer+y}
then :
@@ -10366,13 +10543,13 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
CFLAGS=$ax_check_save_flags ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__fno_omit_frame_pointer" >&5
-printf "%s\n" "$ax_cv_check_cflags__Werror__fno_omit_frame_pointer" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__fno_omit_frame_pointer" >&5
+printf '%s\n' "$ax_cv_check_cflags__Werror__fno_omit_frame_pointer" >&6; }
if test "x$ax_cv_check_cflags__Werror__fno_omit_frame_pointer" = xyes
then :
frame_pointer_cflags="-fno-omit-frame-pointer"
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -mno-omit-leaf-frame-pointer" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -mno-omit-leaf-frame-pointer" >&5
printf %s "checking whether C compiler accepts -mno-omit-leaf-frame-pointer... " >&6; }
if test ${ax_cv_check_cflags__Werror__mno_omit_leaf_frame_pointer+y}
then :
@@ -10403,8 +10580,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
CFLAGS=$ax_check_save_flags ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__mno_omit_leaf_frame_pointer" >&5
-printf "%s\n" "$ax_cv_check_cflags__Werror__mno_omit_leaf_frame_pointer" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__mno_omit_leaf_frame_pointer" >&5
+printf '%s\n' "$ax_cv_check_cflags__Werror__mno_omit_leaf_frame_pointer" >&6; }
if test "x$ax_cv_check_cflags__Werror__mno_omit_leaf_frame_pointer" = xyes
then :
@@ -10418,7 +10595,7 @@ fi
case $host_cpu in #(
arm|armv*) :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -marm" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -marm" >&5
printf %s "checking whether C compiler accepts -marm... " >&6; }
if test ${ax_cv_check_cflags__Werror__marm+y}
then :
@@ -10449,8 +10626,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
CFLAGS=$ax_check_save_flags ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__marm" >&5
-printf "%s\n" "$ax_cv_check_cflags__Werror__marm" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__marm" >&5
+printf '%s\n' "$ax_cv_check_cflags__Werror__marm" >&6; }
if test "x$ax_cv_check_cflags__Werror__marm" = xyes
then :
@@ -10461,7 +10638,7 @@ else case e in #(
esac
fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -mno-thumb" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -mno-thumb" >&5
printf %s "checking whether C compiler accepts -mno-thumb... " >&6; }
if test ${ax_cv_check_cflags__Werror__mno_thumb+y}
then :
@@ -10492,8 +10669,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
CFLAGS=$ax_check_save_flags ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__mno_thumb" >&5
-printf "%s\n" "$ax_cv_check_cflags__Werror__mno_thumb" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__mno_thumb" >&5
+printf '%s\n' "$ax_cv_check_cflags__Werror__mno_thumb" >&6; }
if test "x$ax_cv_check_cflags__Werror__mno_thumb" = xyes
then :
@@ -10519,7 +10696,7 @@ esac
case $host_cpu in #(
s390*) :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -mbackchain" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -mbackchain" >&5
printf %s "checking whether C compiler accepts -mbackchain... " >&6; }
if test ${ax_cv_check_cflags__Werror__mbackchain+y}
then :
@@ -10550,8 +10727,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
CFLAGS=$ax_check_save_flags ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__mbackchain" >&5
-printf "%s\n" "$ax_cv_check_cflags__Werror__mbackchain" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__mbackchain" >&5
+printf '%s\n' "$ax_cv_check_cflags__Werror__mbackchain" >&6; }
if test "x$ax_cv_check_cflags__Werror__mbackchain" = xyes
then :
@@ -10575,7 +10752,7 @@ fi
if test -n "$frame_pointer_cflags" && test "x$with_frame_pointers" != xno; then
BASECFLAGS="$frame_pointer_cflags $BASECFLAGS"
-printf "%s\n" "#define _Py_WITH_FRAME_POINTERS 1" >>confdefs.h
+printf '%s\n' "#define _Py_WITH_FRAME_POINTERS 1" >>confdefs.h
fi
@@ -10583,7 +10760,7 @@ printf "%s\n" "#define _Py_WITH_FRAME_POINTERS 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if we can add -Wextra" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking if we can add -Wextra" >&5
printf %s "checking if we can add -Wextra... " >&6; }
if test ${ac_cv_enable_extra_warning+y}
then :
@@ -10615,8 +10792,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_enable_extra_warning" >&5
-printf "%s\n" "$ac_cv_enable_extra_warning" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_enable_extra_warning" >&5
+printf '%s\n' "$ac_cv_enable_extra_warning" >&6; }
if test "x$ac_cv_enable_extra_warning" = xyes
@@ -10631,7 +10808,7 @@ fi
ac_save_cc="$CC"
CC="$CC -fno-strict-aliasing"
save_CFLAGS="$CFLAGS"
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts and needs -fno-strict-aliasing" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts and needs -fno-strict-aliasing" >&5
printf %s "checking whether $CC accepts and needs -fno-strict-aliasing... " >&6; }
if test ${ac_cv_no_strict_aliasing+y}
then :
@@ -10690,8 +10867,8 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_no_strict_aliasing" >&5
-printf "%s\n" "$ac_cv_no_strict_aliasing" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_no_strict_aliasing" >&5
+printf '%s\n' "$ac_cv_no_strict_aliasing" >&6; }
CFLAGS="$save_CFLAGS"
CC="$ac_save_cc"
if test "x$ac_cv_no_strict_aliasing" = xyes
@@ -10706,7 +10883,7 @@ fi
ac_cv_disable_unused_result_warning=no
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if we can disable $CC unused-result warning" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking if we can disable $CC unused-result warning" >&5
printf %s "checking if we can disable $CC unused-result warning... " >&6; }
if test ${ac_cv_disable_unused_result_warning+y}
then :
@@ -10738,8 +10915,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_disable_unused_result_warning" >&5
-printf "%s\n" "$ac_cv_disable_unused_result_warning" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_disable_unused_result_warning" >&5
+printf '%s\n' "$ac_cv_disable_unused_result_warning" >&6; }
;; #(
*) :
@@ -10753,7 +10930,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if we can disable $CC unused-parameter warning" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking if we can disable $CC unused-parameter warning" >&5
printf %s "checking if we can disable $CC unused-parameter warning... " >&6; }
if test ${ac_cv_disable_unused_parameter_warning+y}
then :
@@ -10785,8 +10962,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_disable_unused_parameter_warning" >&5
-printf "%s\n" "$ac_cv_disable_unused_parameter_warning" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_disable_unused_parameter_warning" >&5
+printf '%s\n' "$ac_cv_disable_unused_parameter_warning" >&6; }
if test "x$ac_cv_disable_unused_parameter_warning" = xyes
@@ -10796,7 +10973,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if we can disable $CC int-conversion warning" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking if we can disable $CC int-conversion warning" >&5
printf %s "checking if we can disable $CC int-conversion warning... " >&6; }
if test ${ac_cv_disable_int_conversion_warning+y}
then :
@@ -10828,8 +11005,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_disable_int_conversion_warning" >&5
-printf "%s\n" "$ac_cv_disable_int_conversion_warning" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_disable_int_conversion_warning" >&5
+printf '%s\n' "$ac_cv_disable_int_conversion_warning" >&6; }
if test "x$ac_cv_disable_int_conversion" = xyes
@@ -10839,7 +11016,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if we can disable $CC missing-field-initializers warning" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking if we can disable $CC missing-field-initializers warning" >&5
printf %s "checking if we can disable $CC missing-field-initializers warning... " >&6; }
if test ${ac_cv_disable_missing_field_initializers_warning+y}
then :
@@ -10871,8 +11048,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_disable_missing_field_initializers_warning" >&5
-printf "%s\n" "$ac_cv_disable_missing_field_initializers_warning" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_disable_missing_field_initializers_warning" >&5
+printf '%s\n' "$ac_cv_disable_missing_field_initializers_warning" >&6; }
if test "x$ac_cv_disable_missing_field_initializers_warning" = xyes
@@ -10882,7 +11059,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if we can enable $CC sign-compare warning" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking if we can enable $CC sign-compare warning" >&5
printf %s "checking if we can enable $CC sign-compare warning... " >&6; }
if test ${ac_cv_enable_sign_compare_warning+y}
then :
@@ -10914,8 +11091,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_enable_sign_compare_warning" >&5
-printf "%s\n" "$ac_cv_enable_sign_compare_warning" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_enable_sign_compare_warning" >&5
+printf '%s\n' "$ac_cv_enable_sign_compare_warning" >&6; }
if test "x$ac_cv_enable_sign_compare_warning" = xyes
@@ -10925,7 +11102,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if we can enable $CC unreachable-code warning" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking if we can enable $CC unreachable-code warning" >&5
printf %s "checking if we can enable $CC unreachable-code warning... " >&6; }
if test ${ac_cv_enable_unreachable_code_warning+y}
then :
@@ -10957,8 +11134,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_enable_unreachable_code_warning" >&5
-printf "%s\n" "$ac_cv_enable_unreachable_code_warning" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_enable_unreachable_code_warning" >&5
+printf '%s\n' "$ac_cv_enable_unreachable_code_warning" >&6; }
# Don't enable unreachable code warning in debug mode, since it usually
@@ -10979,7 +11156,7 @@ printf "%s\n" "$ac_cv_enable_unreachable_code_warning" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if we can enable $CC strict-prototypes warning" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking if we can enable $CC strict-prototypes warning" >&5
printf %s "checking if we can enable $CC strict-prototypes warning... " >&6; }
if test ${ac_cv_enable_strict_prototypes_warning+y}
then :
@@ -11011,8 +11188,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_enable_strict_prototypes_warning" >&5
-printf "%s\n" "$ac_cv_enable_strict_prototypes_warning" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_enable_strict_prototypes_warning" >&5
+printf '%s\n' "$ac_cv_enable_strict_prototypes_warning" >&6; }
if test "x$ac_cv_enable_strict_prototypes_warning" = xyes
@@ -11022,7 +11199,7 @@ fi
ac_save_cc="$CC"
CC="$CC -Werror=implicit-function-declaration"
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if we can make implicit function declaration an error in $CC" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking if we can make implicit function declaration an error in $CC" >&5
printf %s "checking if we can make implicit function declaration an error in $CC... " >&6; }
if test ${ac_cv_enable_implicit_function_declaration_error+y}
then :
@@ -11055,8 +11232,8 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_enable_implicit_function_declaration_error" >&5
-printf "%s\n" "$ac_cv_enable_implicit_function_declaration_error" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_enable_implicit_function_declaration_error" >&5
+printf '%s\n' "$ac_cv_enable_implicit_function_declaration_error" >&6; }
CC="$ac_save_cc"
if test "x$ac_cv_enable_implicit_function_declaration_error" = xyes
@@ -11066,7 +11243,7 @@ fi
ac_save_cc="$CC"
CC="$CC -fvisibility=hidden"
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if we can use visibility in $CC" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking if we can use visibility in $CC" >&5
printf %s "checking if we can use visibility in $CC... " >&6; }
if test ${ac_cv_enable_visibility+y}
then :
@@ -11099,8 +11276,8 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_enable_visibility" >&5
-printf "%s\n" "$ac_cv_enable_visibility" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_enable_visibility" >&5
+printf '%s\n' "$ac_cv_enable_visibility" >&6; }
CC="$ac_save_cc"
if test "x$ac_cv_enable_visibility" = xyes
@@ -11125,7 +11302,7 @@ fi
Darwin*)
# -Wno-long-double, -no-cpp-precomp, and -mno-fused-madd
# used to be here, but non-Apple gcc doesn't accept them.
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking which compiler should be used" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking which compiler should be used" >&5
printf %s "checking which compiler should be used... " >&6; }
case "${UNIVERSALSDK}" in
*/MacOSX10.4u.sdk)
@@ -11136,12 +11313,12 @@ printf %s "checking which compiler should be used... " >&6; }
CPP=cpp-4.0
;;
esac
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
-printf "%s\n" "$CC" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
+printf '%s\n' "$CC" >&6; }
# Error on unguarded use of new symbols, which will fail at runtime for
# users on older versions of macOS
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Wunguarded-availability" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -Wunguarded-availability" >&5
printf %s "checking whether C compiler accepts -Wunguarded-availability... " >&6; }
if test ${ax_cv_check_cflags__Werror__Wunguarded_availability+y}
then :
@@ -11172,8 +11349,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
CFLAGS=$ax_check_save_flags ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__Wunguarded_availability" >&5
-printf "%s\n" "$ax_cv_check_cflags__Werror__Wunguarded_availability" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags__Werror__Wunguarded_availability" >&5
+printf '%s\n' "$ax_cv_check_cflags__Werror__Wunguarded_availability" >&6; }
if test "x$ax_cv_check_cflags__Werror__Wunguarded_availability" = xyes
then :
as_fn_append CFLAGS_NODIST " -Werror=unguarded-availability"
@@ -11265,7 +11442,7 @@ fi
# below to pick either 10.3, 10.4, or 10.5 as the target.
# 4. If we are running on OS X 10.2 or earlier, good luck!
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking which MACOSX_DEPLOYMENT_TARGET to use" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking which MACOSX_DEPLOYMENT_TARGET to use" >&5
printf %s "checking which MACOSX_DEPLOYMENT_TARGET to use... " >&6; }
cur_target_major=`sw_vers -productVersion | \
sed 's/\([0-9]*\)\.\([0-9]*\).*/\1/'`
@@ -11303,10 +11480,10 @@ printf %s "checking which MACOSX_DEPLOYMENT_TARGET to use... " >&6; }
MACOSX_DEPLOYMENT_TARGET="$CONFIGURE_MACOSX_DEPLOYMENT_TARGET"
export MACOSX_DEPLOYMENT_TARGET
EXPORT_MACOSX_DEPLOYMENT_TARGET=''
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MACOSX_DEPLOYMENT_TARGET" >&5
-printf "%s\n" "$MACOSX_DEPLOYMENT_TARGET" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $MACOSX_DEPLOYMENT_TARGET" >&5
+printf '%s\n' "$MACOSX_DEPLOYMENT_TARGET" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if specified universal architectures work" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking if specified universal architectures work" >&5
printf %s "checking if specified universal architectures work... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -11321,11 +11498,11 @@ printf("%d", 42);
_ACEOF
if ac_fn_c_try_link "$LINENO"
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
as_fn_error $? "check config.log and use the '--with-universal-archs' option" "$LINENO" 5
;;
esac
@@ -11352,7 +11529,7 @@ esac
fi
# Check for --enable-experimental-jit:
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --enable-experimental-jit" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --enable-experimental-jit" >&5
printf %s "checking for --enable-experimental-jit... " >&6; }
# Check whether --enable-experimental-jit was given.
if test ${enable_experimental_jit+y}
@@ -11391,14 +11568,14 @@ fi ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $tier2_flags $jit_flags" >&5
-printf "%s\n" "$tier2_flags $jit_flags" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $tier2_flags $jit_flags" >&5
+printf '%s\n' "$tier2_flags $jit_flags" >&6; }
if test "$disable_gil" = "yes" -a "$enable_experimental_jit" != "no"; then
# GH-133171: This configuration builds the JIT but never actually uses it,
# which is surprising (and strictly worse than not building it at all):
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: --enable-experimental-jit does not work correctly with --disable-gil." >&5
-printf "%s\n" "$as_me: WARNING: --enable-experimental-jit does not work correctly with --disable-gil." >&2;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: --enable-experimental-jit does not work correctly with --disable-gil." >&5
+printf '%s\n' "$as_me: WARNING: --enable-experimental-jit does not work correctly with --disable-gil." >&2;}
fi
case "$ac_cv_cc_name" in
@@ -11430,7 +11607,7 @@ fi
# complain if unaccepted options are passed (e.g. gcc on Mac OS X).
# So we have to see first whether pthreads are available without
# options before we can check whether -Kpthread improves anything.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether pthreads are available without options" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether pthreads are available without options" >&5
printf %s "checking whether pthreads are available without options... " >&6; }
if test ${ac_cv_pthread_is_default+y}
then :
@@ -11476,8 +11653,8 @@ fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_pthread_is_default" >&5
-printf "%s\n" "$ac_cv_pthread_is_default" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_pthread_is_default" >&5
+printf '%s\n' "$ac_cv_pthread_is_default" >&6; }
if test $ac_cv_pthread_is_default = yes
@@ -11489,7 +11666,7 @@ else
# Some compilers won't report that they do not support -Kpthread,
# so we need to run a program to see whether it really made the
# function available.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -Kpthread" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -Kpthread" >&5
printf %s "checking whether $CC accepts -Kpthread... " >&6; }
if test ${ac_cv_kpthread+y}
then :
@@ -11533,8 +11710,8 @@ fi
CC="$ac_save_cc" ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_kpthread" >&5
-printf "%s\n" "$ac_cv_kpthread" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_kpthread" >&5
+printf '%s\n' "$ac_cv_kpthread" >&6; }
fi
if test $ac_cv_kpthread = no -a $ac_cv_pthread_is_default = no
@@ -11544,7 +11721,7 @@ then
# Some compilers won't report that they do not support -Kthread,
# so we need to run a program to see whether it really made the
# function available.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -Kthread" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -Kthread" >&5
printf %s "checking whether $CC accepts -Kthread... " >&6; }
if test ${ac_cv_kthread+y}
then :
@@ -11588,8 +11765,8 @@ fi
CC="$ac_save_cc" ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_kthread" >&5
-printf "%s\n" "$ac_cv_kthread" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_kthread" >&5
+printf '%s\n' "$ac_cv_kthread" >&6; }
fi
if test $ac_cv_kthread = no -a $ac_cv_pthread_is_default = no
@@ -11599,7 +11776,7 @@ then
# Some compilers won't report that they do not support -pthread,
# so we need to run a program to see whether it really made the
# function available.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -pthread" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -pthread" >&5
printf %s "checking whether $CC accepts -pthread... " >&6; }
if test ${ac_cv_pthread+y}
then :
@@ -11643,15 +11820,15 @@ fi
CC="$ac_save_cc" ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_pthread" >&5
-printf "%s\n" "$ac_cv_pthread" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_pthread" >&5
+printf '%s\n' "$ac_cv_pthread" >&6; }
fi
# If we have set a CC compiler flag for thread support then
# check if it works for CXX, too.
if test ! -z "$CXX"
then
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CXX also accepts flags for thread support" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether $CXX also accepts flags for thread support" >&5
printf %s "checking whether $CXX also accepts flags for thread support... " >&6; }
if test ${ac_cv_cxx_thread+y}
then :
@@ -11691,533 +11868,533 @@ fi
CXX="$ac_save_cxx" ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_thread" >&5
-printf "%s\n" "$ac_cv_cxx_thread" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_thread" >&5
+printf '%s\n' "$ac_cv_cxx_thread" >&6; }
else
ac_cv_cxx_thread=no
fi
-printf "%s\n" "#define STDC_HEADERS 1" >>confdefs.h
+printf '%s\n' "#define STDC_HEADERS 1" >>confdefs.h
# checks for header files
ac_fn_c_check_header_compile "$LINENO" "alloca.h" "ac_cv_header_alloca_h" "$ac_includes_default"
if test "x$ac_cv_header_alloca_h" = xyes
then :
- printf "%s\n" "#define HAVE_ALLOCA_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_ALLOCA_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "asm/types.h" "ac_cv_header_asm_types_h" "$ac_includes_default"
if test "x$ac_cv_header_asm_types_h" = xyes
then :
- printf "%s\n" "#define HAVE_ASM_TYPES_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_ASM_TYPES_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "bluetooth.h" "ac_cv_header_bluetooth_h" "$ac_includes_default"
if test "x$ac_cv_header_bluetooth_h" = xyes
then :
- printf "%s\n" "#define HAVE_BLUETOOTH_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_BLUETOOTH_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "conio.h" "ac_cv_header_conio_h" "$ac_includes_default"
if test "x$ac_cv_header_conio_h" = xyes
then :
- printf "%s\n" "#define HAVE_CONIO_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_CONIO_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "direct.h" "ac_cv_header_direct_h" "$ac_includes_default"
if test "x$ac_cv_header_direct_h" = xyes
then :
- printf "%s\n" "#define HAVE_DIRECT_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_DIRECT_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default"
if test "x$ac_cv_header_dlfcn_h" = xyes
then :
- printf "%s\n" "#define HAVE_DLFCN_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_DLFCN_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "endian.h" "ac_cv_header_endian_h" "$ac_includes_default"
if test "x$ac_cv_header_endian_h" = xyes
then :
- printf "%s\n" "#define HAVE_ENDIAN_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_ENDIAN_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "errno.h" "ac_cv_header_errno_h" "$ac_includes_default"
if test "x$ac_cv_header_errno_h" = xyes
then :
- printf "%s\n" "#define HAVE_ERRNO_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_ERRNO_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "fcntl.h" "ac_cv_header_fcntl_h" "$ac_includes_default"
if test "x$ac_cv_header_fcntl_h" = xyes
then :
- printf "%s\n" "#define HAVE_FCNTL_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FCNTL_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "grp.h" "ac_cv_header_grp_h" "$ac_includes_default"
if test "x$ac_cv_header_grp_h" = xyes
then :
- printf "%s\n" "#define HAVE_GRP_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GRP_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "io.h" "ac_cv_header_io_h" "$ac_includes_default"
if test "x$ac_cv_header_io_h" = xyes
then :
- printf "%s\n" "#define HAVE_IO_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_IO_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "langinfo.h" "ac_cv_header_langinfo_h" "$ac_includes_default"
if test "x$ac_cv_header_langinfo_h" = xyes
then :
- printf "%s\n" "#define HAVE_LANGINFO_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LANGINFO_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "libintl.h" "ac_cv_header_libintl_h" "$ac_includes_default"
if test "x$ac_cv_header_libintl_h" = xyes
then :
- printf "%s\n" "#define HAVE_LIBINTL_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LIBINTL_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "libutil.h" "ac_cv_header_libutil_h" "$ac_includes_default"
if test "x$ac_cv_header_libutil_h" = xyes
then :
- printf "%s\n" "#define HAVE_LIBUTIL_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LIBUTIL_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "linux/auxvec.h" "ac_cv_header_linux_auxvec_h" "$ac_includes_default"
if test "x$ac_cv_header_linux_auxvec_h" = xyes
then :
- printf "%s\n" "#define HAVE_LINUX_AUXVEC_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LINUX_AUXVEC_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/auxv.h" "ac_cv_header_sys_auxv_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_auxv_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_AUXV_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_AUXV_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "linux/fs.h" "ac_cv_header_linux_fs_h" "$ac_includes_default"
if test "x$ac_cv_header_linux_fs_h" = xyes
then :
- printf "%s\n" "#define HAVE_LINUX_FS_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LINUX_FS_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "linux/limits.h" "ac_cv_header_linux_limits_h" "$ac_includes_default"
if test "x$ac_cv_header_linux_limits_h" = xyes
then :
- printf "%s\n" "#define HAVE_LINUX_LIMITS_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LINUX_LIMITS_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "linux/memfd.h" "ac_cv_header_linux_memfd_h" "$ac_includes_default"
if test "x$ac_cv_header_linux_memfd_h" = xyes
then :
- printf "%s\n" "#define HAVE_LINUX_MEMFD_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LINUX_MEMFD_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "linux/netfilter_ipv4.h" "ac_cv_header_linux_netfilter_ipv4_h" "$ac_includes_default"
if test "x$ac_cv_header_linux_netfilter_ipv4_h" = xyes
then :
- printf "%s\n" "#define HAVE_LINUX_NETFILTER_IPV4_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LINUX_NETFILTER_IPV4_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "linux/random.h" "ac_cv_header_linux_random_h" "$ac_includes_default"
if test "x$ac_cv_header_linux_random_h" = xyes
then :
- printf "%s\n" "#define HAVE_LINUX_RANDOM_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LINUX_RANDOM_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "linux/soundcard.h" "ac_cv_header_linux_soundcard_h" "$ac_includes_default"
if test "x$ac_cv_header_linux_soundcard_h" = xyes
then :
- printf "%s\n" "#define HAVE_LINUX_SOUNDCARD_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LINUX_SOUNDCARD_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "linux/sched.h" "ac_cv_header_linux_sched_h" "$ac_includes_default"
if test "x$ac_cv_header_linux_sched_h" = xyes
then :
- printf "%s\n" "#define HAVE_LINUX_SCHED_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LINUX_SCHED_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "linux/tipc.h" "ac_cv_header_linux_tipc_h" "$ac_includes_default"
if test "x$ac_cv_header_linux_tipc_h" = xyes
then :
- printf "%s\n" "#define HAVE_LINUX_TIPC_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LINUX_TIPC_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "linux/wait.h" "ac_cv_header_linux_wait_h" "$ac_includes_default"
if test "x$ac_cv_header_linux_wait_h" = xyes
then :
- printf "%s\n" "#define HAVE_LINUX_WAIT_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LINUX_WAIT_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "netdb.h" "ac_cv_header_netdb_h" "$ac_includes_default"
if test "x$ac_cv_header_netdb_h" = xyes
then :
- printf "%s\n" "#define HAVE_NETDB_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_NETDB_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "net/ethernet.h" "ac_cv_header_net_ethernet_h" "$ac_includes_default"
if test "x$ac_cv_header_net_ethernet_h" = xyes
then :
- printf "%s\n" "#define HAVE_NET_ETHERNET_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_NET_ETHERNET_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "netinet/in.h" "ac_cv_header_netinet_in_h" "$ac_includes_default"
if test "x$ac_cv_header_netinet_in_h" = xyes
then :
- printf "%s\n" "#define HAVE_NETINET_IN_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_NETINET_IN_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "netpacket/packet.h" "ac_cv_header_netpacket_packet_h" "$ac_includes_default"
if test "x$ac_cv_header_netpacket_packet_h" = xyes
then :
- printf "%s\n" "#define HAVE_NETPACKET_PACKET_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_NETPACKET_PACKET_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "poll.h" "ac_cv_header_poll_h" "$ac_includes_default"
if test "x$ac_cv_header_poll_h" = xyes
then :
- printf "%s\n" "#define HAVE_POLL_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_POLL_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "process.h" "ac_cv_header_process_h" "$ac_includes_default"
if test "x$ac_cv_header_process_h" = xyes
then :
- printf "%s\n" "#define HAVE_PROCESS_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PROCESS_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "pthread.h" "ac_cv_header_pthread_h" "$ac_includes_default"
if test "x$ac_cv_header_pthread_h" = xyes
then :
- printf "%s\n" "#define HAVE_PTHREAD_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PTHREAD_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "pty.h" "ac_cv_header_pty_h" "$ac_includes_default"
if test "x$ac_cv_header_pty_h" = xyes
then :
- printf "%s\n" "#define HAVE_PTY_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PTY_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sched.h" "ac_cv_header_sched_h" "$ac_includes_default"
if test "x$ac_cv_header_sched_h" = xyes
then :
- printf "%s\n" "#define HAVE_SCHED_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SCHED_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "setjmp.h" "ac_cv_header_setjmp_h" "$ac_includes_default"
if test "x$ac_cv_header_setjmp_h" = xyes
then :
- printf "%s\n" "#define HAVE_SETJMP_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SETJMP_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "shadow.h" "ac_cv_header_shadow_h" "$ac_includes_default"
if test "x$ac_cv_header_shadow_h" = xyes
then :
- printf "%s\n" "#define HAVE_SHADOW_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SHADOW_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "signal.h" "ac_cv_header_signal_h" "$ac_includes_default"
if test "x$ac_cv_header_signal_h" = xyes
then :
- printf "%s\n" "#define HAVE_SIGNAL_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SIGNAL_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "spawn.h" "ac_cv_header_spawn_h" "$ac_includes_default"
if test "x$ac_cv_header_spawn_h" = xyes
then :
- printf "%s\n" "#define HAVE_SPAWN_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SPAWN_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/audioio.h" "ac_cv_header_sys_audioio_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_audioio_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_AUDIOIO_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_AUDIOIO_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/bsdtty.h" "ac_cv_header_sys_bsdtty_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_bsdtty_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_BSDTTY_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_BSDTTY_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/devpoll.h" "ac_cv_header_sys_devpoll_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_devpoll_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_DEVPOLL_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_DEVPOLL_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/endian.h" "ac_cv_header_sys_endian_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_endian_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_ENDIAN_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_ENDIAN_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/epoll.h" "ac_cv_header_sys_epoll_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_epoll_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_EPOLL_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_EPOLL_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/event.h" "ac_cv_header_sys_event_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_event_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_EVENT_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_EVENT_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/eventfd.h" "ac_cv_header_sys_eventfd_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_eventfd_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_EVENTFD_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_EVENTFD_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/file.h" "ac_cv_header_sys_file_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_file_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_FILE_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_FILE_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/ioctl.h" "ac_cv_header_sys_ioctl_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_ioctl_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_IOCTL_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_IOCTL_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/kern_control.h" "ac_cv_header_sys_kern_control_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_kern_control_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_KERN_CONTROL_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_KERN_CONTROL_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/loadavg.h" "ac_cv_header_sys_loadavg_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_loadavg_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_LOADAVG_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_LOADAVG_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/lock.h" "ac_cv_header_sys_lock_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_lock_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_LOCK_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_LOCK_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/memfd.h" "ac_cv_header_sys_memfd_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_memfd_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_MEMFD_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_MEMFD_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/mkdev.h" "ac_cv_header_sys_mkdev_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_mkdev_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_MKDEV_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_MKDEV_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/mman.h" "ac_cv_header_sys_mman_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_mman_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_MMAN_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_MMAN_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/modem.h" "ac_cv_header_sys_modem_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_modem_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_MODEM_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_MODEM_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/param.h" "ac_cv_header_sys_param_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_param_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_PARAM_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_PARAM_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/pidfd.h" "ac_cv_header_sys_pidfd_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_pidfd_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_PIDFD_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_PIDFD_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/poll.h" "ac_cv_header_sys_poll_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_poll_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_POLL_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_POLL_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/random.h" "ac_cv_header_sys_random_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_random_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_RANDOM_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_RANDOM_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/resource.h" "ac_cv_header_sys_resource_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_resource_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_RESOURCE_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_RESOURCE_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/select.h" "ac_cv_header_sys_select_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_select_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_SELECT_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_SELECT_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/sendfile.h" "ac_cv_header_sys_sendfile_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_sendfile_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_SENDFILE_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_SENDFILE_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/socket.h" "ac_cv_header_sys_socket_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_socket_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_SOCKET_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_SOCKET_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/soundcard.h" "ac_cv_header_sys_soundcard_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_soundcard_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_SOUNDCARD_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_SOUNDCARD_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/stat.h" "ac_cv_header_sys_stat_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_stat_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_STAT_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_STAT_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/statvfs.h" "ac_cv_header_sys_statvfs_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_statvfs_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_STATVFS_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_STATVFS_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/sys_domain.h" "ac_cv_header_sys_sys_domain_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_sys_domain_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_SYS_DOMAIN_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_SYS_DOMAIN_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/syscall.h" "ac_cv_header_sys_syscall_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_syscall_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_SYSCALL_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_SYSCALL_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/sysctl.h" "ac_cv_header_sys_sysctl_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_sysctl_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_SYSCTL_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_SYSCTL_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/sysmacros.h" "ac_cv_header_sys_sysmacros_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_sysmacros_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_SYSMACROS_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_SYSMACROS_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/termio.h" "ac_cv_header_sys_termio_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_termio_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_TERMIO_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_TERMIO_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/time.h" "ac_cv_header_sys_time_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_time_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_TIME_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_TIME_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/times.h" "ac_cv_header_sys_times_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_times_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_TIMES_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_TIMES_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/timerfd.h" "ac_cv_header_sys_timerfd_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_timerfd_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_TIMERFD_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_TIMERFD_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/types.h" "ac_cv_header_sys_types_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_types_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_TYPES_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_TYPES_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/uio.h" "ac_cv_header_sys_uio_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_uio_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_UIO_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_UIO_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/un.h" "ac_cv_header_sys_un_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_un_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_UN_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_UN_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/utsname.h" "ac_cv_header_sys_utsname_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_utsname_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_UTSNAME_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_UTSNAME_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/wait.h" "ac_cv_header_sys_wait_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_wait_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_WAIT_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_WAIT_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sys/xattr.h" "ac_cv_header_sys_xattr_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_xattr_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYS_XATTR_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYS_XATTR_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "sysexits.h" "ac_cv_header_sysexits_h" "$ac_includes_default"
if test "x$ac_cv_header_sysexits_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYSEXITS_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYSEXITS_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "syslog.h" "ac_cv_header_syslog_h" "$ac_includes_default"
if test "x$ac_cv_header_syslog_h" = xyes
then :
- printf "%s\n" "#define HAVE_SYSLOG_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYSLOG_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "termios.h" "ac_cv_header_termios_h" "$ac_includes_default"
if test "x$ac_cv_header_termios_h" = xyes
then :
- printf "%s\n" "#define HAVE_TERMIOS_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_TERMIOS_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "util.h" "ac_cv_header_util_h" "$ac_includes_default"
if test "x$ac_cv_header_util_h" = xyes
then :
- printf "%s\n" "#define HAVE_UTIL_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_UTIL_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "utime.h" "ac_cv_header_utime_h" "$ac_includes_default"
if test "x$ac_cv_header_utime_h" = xyes
then :
- printf "%s\n" "#define HAVE_UTIME_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_UTIME_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "utmp.h" "ac_cv_header_utmp_h" "$ac_includes_default"
if test "x$ac_cv_header_utmp_h" = xyes
then :
- printf "%s\n" "#define HAVE_UTMP_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_UTMP_H 1" >>confdefs.h
fi
ac_header_dirent=no
for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do
- as_ac_Header=`printf "%s\n" "ac_cv_header_dirent_$ac_hdr" | sed "$as_sed_sh"`
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_hdr that defines DIR" >&5
+ as_ac_Header=`printf '%s\n' "ac_cv_header_dirent_$ac_hdr" | sed "$as_sed_sh"`
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_hdr that defines DIR" >&5
printf %s "checking for $ac_hdr that defines DIR... " >&6; }
if eval test \${$as_ac_Header+y}
then :
@@ -12248,12 +12425,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
eval ac_res=\$$as_ac_Header
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-printf "%s\n" "$ac_res" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+printf '%s\n' "$ac_res" >&6; }
if eval test \"x\$"$as_ac_Header"\" = x"yes"
then :
cat >>confdefs.h <<_ACEOF
-#define `printf "%s\n" "HAVE_$ac_hdr" | sed "$as_sed_cpp"` 1
+#define `printf '%s\n' "HAVE_$ac_hdr" | sed "$as_sed_cpp"` 1
_ACEOF
ac_header_dirent=$ac_hdr; break
@@ -12262,7 +12439,7 @@ fi
done
# Two versions of opendir et al. are in -ldir and -lx on SCO Xenix.
if test $ac_header_dirent = dirent.h; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing opendir" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for library containing opendir" >&5
printf %s "checking for library containing opendir... " >&6; }
if test ${ac_cv_search_opendir+y}
then :
@@ -12320,8 +12497,8 @@ rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_opendir" >&5
-printf "%s\n" "$ac_cv_search_opendir" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_opendir" >&5
+printf '%s\n' "$ac_cv_search_opendir" >&6; }
ac_res=$ac_cv_search_opendir
if test "$ac_res" != no
then :
@@ -12330,7 +12507,7 @@ then :
fi
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing opendir" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for library containing opendir" >&5
printf %s "checking for library containing opendir... " >&6; }
if test ${ac_cv_search_opendir+y}
then :
@@ -12388,8 +12565,8 @@ rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_opendir" >&5
-printf "%s\n" "$ac_cv_search_opendir" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_opendir" >&5
+printf '%s\n' "$ac_cv_search_opendir" >&6; }
ac_res=$ac_cv_search_opendir
if test "$ac_res" != no
then :
@@ -12404,7 +12581,7 @@ ac_fn_c_check_header_compile "$LINENO" "sys/mkdev.h" "ac_cv_header_sys_mkdev_h"
if test "x$ac_cv_header_sys_mkdev_h" = xyes
then :
-printf "%s\n" "#define MAJOR_IN_MKDEV 1" >>confdefs.h
+printf '%s\n' "#define MAJOR_IN_MKDEV 1" >>confdefs.h
fi
@@ -12413,7 +12590,7 @@ if test $ac_cv_header_sys_mkdev_h = no; then
if test "x$ac_cv_header_sys_sysmacros_h" = xyes
then :
-printf "%s\n" "#define MAJOR_IN_SYSMACROS 1" >>confdefs.h
+printf '%s\n' "#define MAJOR_IN_SYSMACROS 1" >>confdefs.h
fi
@@ -12421,8 +12598,8 @@ fi
# On Linux, stropts.h may be empty
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC options needed to detect all undeclared functions" >&5
-printf %s "checking for $CC options needed to detect all undeclared functions... " >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $CC options to detect undeclared functions" >&5
+printf %s "checking for $CC options to detect undeclared functions... " >&6; }
if test ${ac_cv_c_undeclared_builtin_options+y}
then :
printf %s "(cached) " >&6
@@ -12490,12 +12667,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_undeclared_builtin_options" >&5
-printf "%s\n" "$ac_cv_c_undeclared_builtin_options" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_undeclared_builtin_options" >&5
+printf '%s\n' "$ac_cv_c_undeclared_builtin_options" >&6; }
case $ac_cv_c_undeclared_builtin_options in #(
'cannot detect') :
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
+printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
as_fn_error $? "cannot make $CC report undeclared builtins
See 'config.log' for more details" "$LINENO" 5; } ;; #(
'none needed') :
@@ -12504,18 +12681,61 @@ See 'config.log' for more details" "$LINENO" 5; } ;; #(
ac_c_undeclared_builtin_options=$ac_cv_c_undeclared_builtin_options ;;
esac
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $CC options to ignore future-version functions" >&5
+printf %s "checking for $CC options to ignore future-version functions... " >&6; }
+if test ${ac_cv_c_future_darwin_options+y}
+then :
+ printf %s "(cached) " >&6
+else case e in #(
+ e) ac_compile_saved="$ac_compile"
+ ac_compile="$ac_compile -Werror=unguarded-availability-new"
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+#if ! (defined __APPLE__ && defined __MACH__)
+ #error "-Werror=unguarded-availability-new not needed here"
+ #endif
+
+int
+main (void)
+{
+
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_compile "$LINENO"
+then :
+ ac_cv_c_future_darwin_options='-Werror=unguarded-availability-new'
+else case e in #(
+ e) ac_cv_c_future_darwin_options='none needed' ;;
+esac
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
+ ac_compile="$ac_compile_saved"
+ ;;
+esac
+fi
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_future_darwin_options" >&5
+printf '%s\n' "$ac_cv_c_future_darwin_options" >&6; }
+ case $ac_cv_c_future_darwin_options in #(
+ 'none needed') :
+ ac_c_future_darwin_options='' ;; #(
+ *) :
+ ac_c_future_darwin_options=$ac_cv_c_future_darwin_options ;;
+esac
+
ac_fn_check_decl "$LINENO" "I_PUSH" "ac_cv_have_decl_I_PUSH" "
#ifdef HAVE_SYS_TYPES_H
# include
#endif
#include
-" "$ac_c_undeclared_builtin_options" "CFLAGS"
+" "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
if test "x$ac_cv_have_decl_I_PUSH" = xyes
then :
-printf "%s\n" "#define HAVE_STROPTS_H 1" >>confdefs.h
+printf '%s\n' "#define HAVE_STROPTS_H 1" >>confdefs.h
fi
@@ -12526,7 +12746,7 @@ CFLAGS="-std=c99 $CFLAGS"
ac_fn_c_check_header_compile "$LINENO" "bluetooth/bluetooth.h" "ac_cv_header_bluetooth_bluetooth_h" "$ac_includes_default"
if test "x$ac_cv_header_bluetooth_bluetooth_h" = xyes
then :
- printf "%s\n" "#define HAVE_BLUETOOTH_BLUETOOTH_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_BLUETOOTH_BLUETOOTH_H 1" >>confdefs.h
fi
@@ -12543,7 +12763,7 @@ ac_fn_c_check_header_compile "$LINENO" "net/if.h" "ac_cv_header_net_if_h" "#incl
"
if test "x$ac_cv_header_net_if_h" = xyes
then :
- printf "%s\n" "#define HAVE_NET_IF_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_NET_IF_H 1" >>confdefs.h
fi
@@ -12561,7 +12781,7 @@ ac_fn_c_check_header_compile "$LINENO" "linux/netlink.h" "ac_cv_header_linux_net
"
if test "x$ac_cv_header_linux_netlink_h" = xyes
then :
- printf "%s\n" "#define HAVE_LINUX_NETLINK_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LINUX_NETLINK_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "netlink/netlink.h" "ac_cv_header_netlink_netlink_h" "
@@ -12575,7 +12795,7 @@ ac_fn_c_check_header_compile "$LINENO" "netlink/netlink.h" "ac_cv_header_netlink
"
if test "x$ac_cv_header_netlink_netlink_h" = xyes
then :
- printf "%s\n" "#define HAVE_NETLINK_NETLINK_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_NETLINK_NETLINK_H 1" >>confdefs.h
fi
@@ -12592,7 +12812,7 @@ ac_fn_c_check_header_compile "$LINENO" "linux/qrtr.h" "ac_cv_header_linux_qrtr_h
"
if test "x$ac_cv_header_linux_qrtr_h" = xyes
then :
- printf "%s\n" "#define HAVE_LINUX_QRTR_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LINUX_QRTR_H 1" >>confdefs.h
fi
@@ -12605,7 +12825,7 @@ ac_fn_c_check_header_compile "$LINENO" "linux/vm_sockets.h" "ac_cv_header_linux_
"
if test "x$ac_cv_header_linux_vm_sockets_h" = xyes
then :
- printf "%s\n" "#define HAVE_LINUX_VM_SOCKETS_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LINUX_VM_SOCKETS_H 1" >>confdefs.h
fi
@@ -12620,7 +12840,7 @@ ac_fn_c_check_header_compile "$LINENO" "linux/can.h" "ac_cv_header_linux_can_h"
"
if test "x$ac_cv_header_linux_can_h" = xyes
then :
- printf "%s\n" "#define HAVE_LINUX_CAN_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LINUX_CAN_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "linux/can/bcm.h" "ac_cv_header_linux_can_bcm_h" "
@@ -12631,7 +12851,7 @@ ac_fn_c_check_header_compile "$LINENO" "linux/can/bcm.h" "ac_cv_header_linux_can
"
if test "x$ac_cv_header_linux_can_bcm_h" = xyes
then :
- printf "%s\n" "#define HAVE_LINUX_CAN_BCM_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LINUX_CAN_BCM_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "linux/can/isotp.h" "ac_cv_header_linux_can_isotp_h" "
@@ -12642,7 +12862,7 @@ ac_fn_c_check_header_compile "$LINENO" "linux/can/isotp.h" "ac_cv_header_linux_c
"
if test "x$ac_cv_header_linux_can_isotp_h" = xyes
then :
- printf "%s\n" "#define HAVE_LINUX_CAN_ISOTP_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LINUX_CAN_ISOTP_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "linux/can/j1939.h" "ac_cv_header_linux_can_j1939_h" "
@@ -12653,7 +12873,7 @@ ac_fn_c_check_header_compile "$LINENO" "linux/can/j1939.h" "ac_cv_header_linux_c
"
if test "x$ac_cv_header_linux_can_j1939_h" = xyes
then :
- printf "%s\n" "#define HAVE_LINUX_CAN_J1939_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LINUX_CAN_J1939_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "linux/can/raw.h" "ac_cv_header_linux_can_raw_h" "
@@ -12664,7 +12884,7 @@ ac_fn_c_check_header_compile "$LINENO" "linux/can/raw.h" "ac_cv_header_linux_can
"
if test "x$ac_cv_header_linux_can_raw_h" = xyes
then :
- printf "%s\n" "#define HAVE_LINUX_CAN_RAW_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LINUX_CAN_RAW_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "netcan/can.h" "ac_cv_header_netcan_can_h" "
@@ -12675,7 +12895,7 @@ ac_fn_c_check_header_compile "$LINENO" "netcan/can.h" "ac_cv_header_netcan_can_h
"
if test "x$ac_cv_header_netcan_can_h" = xyes
then :
- printf "%s\n" "#define HAVE_NETCAN_CAN_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_NETCAN_CAN_H 1" >>confdefs.h
fi
@@ -12686,18 +12906,18 @@ ac_fn_c_check_type "$LINENO" "clock_t" "ac_cv_type_clock_t" "#include
if test "x$ac_cv_type_clock_t" = xyes
then :
-printf "%s\n" "#define HAVE_CLOCK_T 1" >>confdefs.h
+printf '%s\n' "#define HAVE_CLOCK_T 1" >>confdefs.h
else case e in #(
e)
-printf "%s\n" "#define clock_t long" >>confdefs.h
+printf '%s\n' "#define clock_t long" >>confdefs.h
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for makedev" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for makedev" >&5
printf %s "checking for makedev... " >&6; }
if test ${ac_cv_func_makedev+y}
then :
@@ -12737,20 +12957,20 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_makedev" >&5
-printf "%s\n" "$ac_cv_func_makedev" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_makedev" >&5
+printf '%s\n' "$ac_cv_func_makedev" >&6; }
if test "x$ac_cv_func_makedev" = xyes
then :
-printf "%s\n" "#define HAVE_MAKEDEV 1" >>confdefs.h
+printf '%s\n' "#define HAVE_MAKEDEV 1" >>confdefs.h
fi
# byte swapping
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for le64toh" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for le64toh" >&5
printf %s "checking for le64toh... " >&6; }
if test ${ac_cv_func_le64toh+y}
then :
@@ -12788,14 +13008,14 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_le64toh" >&5
-printf "%s\n" "$ac_cv_func_le64toh" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_le64toh" >&5
+printf '%s\n' "$ac_cv_func_le64toh" >&6; }
if test "x$ac_cv_func_le64toh" = xyes
then :
-printf "%s\n" "#define HAVE_HTOLE64 1" >>confdefs.h
+printf '%s\n' "#define HAVE_HTOLE64 1" >>confdefs.h
fi
@@ -12812,15 +13032,15 @@ if test "$use_lfs" = "yes"; then
case $ac_sys_system/$ac_sys_release in
AIX*)
-printf "%s\n" "#define _LARGE_FILES 1" >>confdefs.h
+printf '%s\n' "#define _LARGE_FILES 1" >>confdefs.h
;;
esac
-printf "%s\n" "#define _LARGEFILE_SOURCE 1" >>confdefs.h
+printf '%s\n' "#define _LARGEFILE_SOURCE 1" >>confdefs.h
-printf "%s\n" "#define _FILE_OFFSET_BITS 64" >>confdefs.h
+printf '%s\n' "#define _FILE_OFFSET_BITS 64" >>confdefs.h
fi
@@ -12838,7 +13058,7 @@ then :
else case e in #(
e)
-printf "%s\n" "#define mode_t int" >>confdefs.h
+printf '%s\n' "#define mode_t int" >>confdefs.h
;;
esac
fi
@@ -12849,7 +13069,7 @@ then :
else case e in #(
e)
-printf "%s\n" "#define off_t long int" >>confdefs.h
+printf '%s\n' "#define off_t long int" >>confdefs.h
;;
esac
fi
@@ -12886,7 +13106,7 @@ esac
fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
-printf "%s\n" "#define pid_t $ac_pid_type" >>confdefs.h
+printf '%s\n' "#define pid_t $ac_pid_type" >>confdefs.h
;;
esac
@@ -12894,7 +13114,7 @@ fi
-printf "%s\n" "#define RETSIGTYPE void" >>confdefs.h
+printf '%s\n' "#define RETSIGTYPE void" >>confdefs.h
ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default"
if test "x$ac_cv_type_size_t" = xyes
@@ -12902,7 +13122,7 @@ then :
else case e in #(
e)
-printf "%s\n" "#define size_t unsigned int" >>confdefs.h
+printf '%s\n' "#define size_t unsigned int" >>confdefs.h
;;
esac
fi
@@ -12913,7 +13133,7 @@ then :
else case e in #(
e)
-printf "%s\n" "#define uid_t int" >>confdefs.h
+printf '%s\n' "#define uid_t int" >>confdefs.h
;;
esac
fi
@@ -12924,7 +13144,7 @@ then :
else case e in #(
e)
-printf "%s\n" "#define gid_t int" >>confdefs.h
+printf '%s\n' "#define gid_t int" >>confdefs.h
;;
esac
fi
@@ -12934,7 +13154,7 @@ ac_fn_c_check_type "$LINENO" "ssize_t" "ac_cv_type_ssize_t" "$ac_includes_defaul
if test "x$ac_cv_type_ssize_t" = xyes
then :
-printf "%s\n" "#define HAVE_SSIZE_T 1" >>confdefs.h
+printf '%s\n' "#define HAVE_SSIZE_T 1" >>confdefs.h
fi
@@ -12943,10 +13163,10 @@ ac_fn_c_check_type "$LINENO" "__uint128_t" "ac_cv_type___uint128_t" "$ac_include
if test "x$ac_cv_type___uint128_t" = xyes
then :
-printf "%s\n" "#define HAVE___UINT128_T 1" >>confdefs.h
+printf '%s\n' "#define HAVE___UINT128_T 1" >>confdefs.h
-printf "%s\n" "#define HAVE_GCC_UINT128_T 1" >>confdefs.h
+printf '%s\n' "#define HAVE_GCC_UINT128_T 1" >>confdefs.h
fi
@@ -12957,7 +13177,7 @@ fi
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like 'int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking size of int" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking size of int" >&5
printf %s "checking size of int... " >&6; }
if test ${ac_cv_sizeof_int+y}
then :
@@ -12967,32 +13187,25 @@ else case e in #(
then :
else case e in #(
- e) if test "$ac_cv_type_int" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute sizeof (int)
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_sizeof_int=0
- fi ;;
+ e) ac_cv_sizeof_int=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_int" >&5
-printf "%s\n" "$ac_cv_sizeof_int" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_int" >&5
+printf '%s\n' "$ac_cv_sizeof_int" >&6; }
-printf "%s\n" "#define SIZEOF_INT $ac_cv_sizeof_int" >>confdefs.h
+printf '%s\n' "#define SIZEOF_INT $ac_cv_sizeof_int" >>confdefs.h
# The cast to long int works around a bug in the HP C Compiler
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like 'int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking size of long" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking size of long" >&5
printf %s "checking size of long... " >&6; }
if test ${ac_cv_sizeof_long+y}
then :
@@ -13002,30 +13215,23 @@ else case e in #(
then :
else case e in #(
- e) if test "$ac_cv_type_long" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute sizeof (long)
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_sizeof_long=0
- fi ;;
+ e) ac_cv_sizeof_long=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_long" >&5
-printf "%s\n" "$ac_cv_sizeof_long" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_long" >&5
+printf '%s\n' "$ac_cv_sizeof_long" >&6; }
-printf "%s\n" "#define SIZEOF_LONG $ac_cv_sizeof_long" >>confdefs.h
+printf '%s\n' "#define SIZEOF_LONG $ac_cv_sizeof_long" >>confdefs.h
# The cast to long int works around a bug in the HP C Compiler,
# see AC_CHECK_SIZEOF for more information.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking alignment of long" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking alignment of long" >&5
printf %s "checking alignment of long... " >&6; }
if test ${ac_cv_alignof_long+y}
then :
@@ -13036,32 +13242,25 @@ typedef struct { char x; long y; } ac__type_alignof_;"
then :
else case e in #(
- e) if test "$ac_cv_type_long" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute alignment of long
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_alignof_long=0
- fi ;;
+ e) ac_cv_alignof_long=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_alignof_long" >&5
-printf "%s\n" "$ac_cv_alignof_long" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_alignof_long" >&5
+printf '%s\n' "$ac_cv_alignof_long" >&6; }
-printf "%s\n" "#define ALIGNOF_LONG $ac_cv_alignof_long" >>confdefs.h
+printf '%s\n' "#define ALIGNOF_LONG $ac_cv_alignof_long" >>confdefs.h
# The cast to long int works around a bug in the HP C Compiler
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like 'int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking size of long long" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking size of long long" >&5
printf %s "checking size of long long... " >&6; }
if test ${ac_cv_sizeof_long_long+y}
then :
@@ -13071,32 +13270,25 @@ else case e in #(
then :
else case e in #(
- e) if test "$ac_cv_type_long_long" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute sizeof (long long)
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_sizeof_long_long=0
- fi ;;
+ e) ac_cv_sizeof_long_long=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_long_long" >&5
-printf "%s\n" "$ac_cv_sizeof_long_long" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_long_long" >&5
+printf '%s\n' "$ac_cv_sizeof_long_long" >&6; }
-printf "%s\n" "#define SIZEOF_LONG_LONG $ac_cv_sizeof_long_long" >>confdefs.h
+printf '%s\n' "#define SIZEOF_LONG_LONG $ac_cv_sizeof_long_long" >>confdefs.h
# The cast to long int works around a bug in the HP C Compiler
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like 'int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking size of void *" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking size of void *" >&5
printf %s "checking size of void *... " >&6; }
if test ${ac_cv_sizeof_void_p+y}
then :
@@ -13106,32 +13298,25 @@ else case e in #(
then :
else case e in #(
- e) if test "$ac_cv_type_void_p" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute sizeof (void *)
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_sizeof_void_p=0
- fi ;;
+ e) ac_cv_sizeof_void_p=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_void_p" >&5
-printf "%s\n" "$ac_cv_sizeof_void_p" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_void_p" >&5
+printf '%s\n' "$ac_cv_sizeof_void_p" >&6; }
-printf "%s\n" "#define SIZEOF_VOID_P $ac_cv_sizeof_void_p" >>confdefs.h
+printf '%s\n' "#define SIZEOF_VOID_P $ac_cv_sizeof_void_p" >>confdefs.h
# The cast to long int works around a bug in the HP C Compiler
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like 'int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking size of short" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking size of short" >&5
printf %s "checking size of short... " >&6; }
if test ${ac_cv_sizeof_short+y}
then :
@@ -13141,32 +13326,25 @@ else case e in #(
then :
else case e in #(
- e) if test "$ac_cv_type_short" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute sizeof (short)
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_sizeof_short=0
- fi ;;
+ e) ac_cv_sizeof_short=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_short" >&5
-printf "%s\n" "$ac_cv_sizeof_short" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_short" >&5
+printf '%s\n' "$ac_cv_sizeof_short" >&6; }
-printf "%s\n" "#define SIZEOF_SHORT $ac_cv_sizeof_short" >>confdefs.h
+printf '%s\n' "#define SIZEOF_SHORT $ac_cv_sizeof_short" >>confdefs.h
# The cast to long int works around a bug in the HP C Compiler
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like 'int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking size of float" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking size of float" >&5
printf %s "checking size of float... " >&6; }
if test ${ac_cv_sizeof_float+y}
then :
@@ -13176,32 +13354,25 @@ else case e in #(
then :
else case e in #(
- e) if test "$ac_cv_type_float" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute sizeof (float)
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_sizeof_float=0
- fi ;;
+ e) ac_cv_sizeof_float=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_float" >&5
-printf "%s\n" "$ac_cv_sizeof_float" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_float" >&5
+printf '%s\n' "$ac_cv_sizeof_float" >&6; }
-printf "%s\n" "#define SIZEOF_FLOAT $ac_cv_sizeof_float" >>confdefs.h
+printf '%s\n' "#define SIZEOF_FLOAT $ac_cv_sizeof_float" >>confdefs.h
# The cast to long int works around a bug in the HP C Compiler
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like 'int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking size of double" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking size of double" >&5
printf %s "checking size of double... " >&6; }
if test ${ac_cv_sizeof_double+y}
then :
@@ -13211,32 +13382,25 @@ else case e in #(
then :
else case e in #(
- e) if test "$ac_cv_type_double" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute sizeof (double)
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_sizeof_double=0
- fi ;;
+ e) ac_cv_sizeof_double=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_double" >&5
-printf "%s\n" "$ac_cv_sizeof_double" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_double" >&5
+printf '%s\n' "$ac_cv_sizeof_double" >&6; }
-printf "%s\n" "#define SIZEOF_DOUBLE $ac_cv_sizeof_double" >>confdefs.h
+printf '%s\n' "#define SIZEOF_DOUBLE $ac_cv_sizeof_double" >>confdefs.h
# The cast to long int works around a bug in the HP C Compiler
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like 'int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking size of fpos_t" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking size of fpos_t" >&5
printf %s "checking size of fpos_t... " >&6; }
if test ${ac_cv_sizeof_fpos_t+y}
then :
@@ -13246,32 +13410,25 @@ else case e in #(
then :
else case e in #(
- e) if test "$ac_cv_type_fpos_t" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute sizeof (fpos_t)
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_sizeof_fpos_t=0
- fi ;;
+ e) ac_cv_sizeof_fpos_t=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_fpos_t" >&5
-printf "%s\n" "$ac_cv_sizeof_fpos_t" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_fpos_t" >&5
+printf '%s\n' "$ac_cv_sizeof_fpos_t" >&6; }
-printf "%s\n" "#define SIZEOF_FPOS_T $ac_cv_sizeof_fpos_t" >>confdefs.h
+printf '%s\n' "#define SIZEOF_FPOS_T $ac_cv_sizeof_fpos_t" >>confdefs.h
# The cast to long int works around a bug in the HP C Compiler
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like 'int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking size of size_t" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking size of size_t" >&5
printf %s "checking size of size_t... " >&6; }
if test ${ac_cv_sizeof_size_t+y}
then :
@@ -13281,30 +13438,23 @@ else case e in #(
then :
else case e in #(
- e) if test "$ac_cv_type_size_t" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute sizeof (size_t)
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_sizeof_size_t=0
- fi ;;
+ e) ac_cv_sizeof_size_t=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_size_t" >&5
-printf "%s\n" "$ac_cv_sizeof_size_t" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_size_t" >&5
+printf '%s\n' "$ac_cv_sizeof_size_t" >&6; }
-printf "%s\n" "#define SIZEOF_SIZE_T $ac_cv_sizeof_size_t" >>confdefs.h
+printf '%s\n' "#define SIZEOF_SIZE_T $ac_cv_sizeof_size_t" >>confdefs.h
# The cast to long int works around a bug in the HP C Compiler,
# see AC_CHECK_SIZEOF for more information.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking alignment of size_t" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking alignment of size_t" >&5
printf %s "checking alignment of size_t... " >&6; }
if test ${ac_cv_alignof_size_t+y}
then :
@@ -13315,32 +13465,25 @@ typedef struct { char x; size_t y; } ac__type_alignof_;"
then :
else case e in #(
- e) if test "$ac_cv_type_size_t" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute alignment of size_t
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_alignof_size_t=0
- fi ;;
+ e) ac_cv_alignof_size_t=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_alignof_size_t" >&5
-printf "%s\n" "$ac_cv_alignof_size_t" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_alignof_size_t" >&5
+printf '%s\n' "$ac_cv_alignof_size_t" >&6; }
-printf "%s\n" "#define ALIGNOF_SIZE_T $ac_cv_alignof_size_t" >>confdefs.h
+printf '%s\n' "#define ALIGNOF_SIZE_T $ac_cv_alignof_size_t" >>confdefs.h
# The cast to long int works around a bug in the HP C Compiler
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like 'int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking size of pid_t" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking size of pid_t" >&5
printf %s "checking size of pid_t... " >&6; }
if test ${ac_cv_sizeof_pid_t+y}
then :
@@ -13350,32 +13493,25 @@ else case e in #(
then :
else case e in #(
- e) if test "$ac_cv_type_pid_t" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute sizeof (pid_t)
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_sizeof_pid_t=0
- fi ;;
+ e) ac_cv_sizeof_pid_t=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_pid_t" >&5
-printf "%s\n" "$ac_cv_sizeof_pid_t" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_pid_t" >&5
+printf '%s\n' "$ac_cv_sizeof_pid_t" >&6; }
-printf "%s\n" "#define SIZEOF_PID_T $ac_cv_sizeof_pid_t" >>confdefs.h
+printf '%s\n' "#define SIZEOF_PID_T $ac_cv_sizeof_pid_t" >>confdefs.h
# The cast to long int works around a bug in the HP C Compiler
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like 'int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking size of uintptr_t" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking size of uintptr_t" >&5
printf %s "checking size of uintptr_t... " >&6; }
if test ${ac_cv_sizeof_uintptr_t+y}
then :
@@ -13385,30 +13521,23 @@ else case e in #(
then :
else case e in #(
- e) if test "$ac_cv_type_uintptr_t" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute sizeof (uintptr_t)
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_sizeof_uintptr_t=0
- fi ;;
+ e) ac_cv_sizeof_uintptr_t=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_uintptr_t" >&5
-printf "%s\n" "$ac_cv_sizeof_uintptr_t" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_uintptr_t" >&5
+printf '%s\n' "$ac_cv_sizeof_uintptr_t" >&6; }
-printf "%s\n" "#define SIZEOF_UINTPTR_T $ac_cv_sizeof_uintptr_t" >>confdefs.h
+printf '%s\n' "#define SIZEOF_UINTPTR_T $ac_cv_sizeof_uintptr_t" >>confdefs.h
# The cast to long int works around a bug in the HP C Compiler,
# see AC_CHECK_SIZEOF for more information.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking alignment of max_align_t" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking alignment of max_align_t" >&5
printf %s "checking alignment of max_align_t... " >&6; }
if test ${ac_cv_alignof_max_align_t+y}
then :
@@ -13419,30 +13548,23 @@ typedef struct { char x; max_align_t y; } ac__type_alignof_;"
then :
else case e in #(
- e) if test "$ac_cv_type_max_align_t" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute alignment of max_align_t
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_alignof_max_align_t=0
- fi ;;
+ e) ac_cv_alignof_max_align_t=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_alignof_max_align_t" >&5
-printf "%s\n" "$ac_cv_alignof_max_align_t" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_alignof_max_align_t" >&5
+printf '%s\n' "$ac_cv_alignof_max_align_t" >&6; }
-printf "%s\n" "#define ALIGNOF_MAX_ALIGN_T $ac_cv_alignof_max_align_t" >>confdefs.h
+printf '%s\n' "#define ALIGNOF_MAX_ALIGN_T $ac_cv_alignof_max_align_t" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for long double" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for long double" >&5
printf %s "checking for long double... " >&6; }
if test ${ac_cv_type_long_double+y}
then :
@@ -13479,11 +13601,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
fi ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_long_double" >&5
-printf "%s\n" "$ac_cv_type_long_double" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_long_double" >&5
+printf '%s\n' "$ac_cv_type_long_double" >&6; }
if test $ac_cv_type_long_double = yes; then
-printf "%s\n" "#define HAVE_LONG_DOUBLE 1" >>confdefs.h
+printf '%s\n' "#define HAVE_LONG_DOUBLE 1" >>confdefs.h
fi
@@ -13491,7 +13613,7 @@ printf "%s\n" "#define HAVE_LONG_DOUBLE 1" >>confdefs.h
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like 'int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking size of long double" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking size of long double" >&5
printf %s "checking size of long double... " >&6; }
if test ${ac_cv_sizeof_long_double+y}
then :
@@ -13501,25 +13623,18 @@ else case e in #(
then :
else case e in #(
- e) if test "$ac_cv_type_long_double" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute sizeof (long double)
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_sizeof_long_double=0
- fi ;;
+ e) ac_cv_sizeof_long_double=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_long_double" >&5
-printf "%s\n" "$ac_cv_sizeof_long_double" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_long_double" >&5
+printf '%s\n' "$ac_cv_sizeof_long_double" >&6; }
-printf "%s\n" "#define SIZEOF_LONG_DOUBLE $ac_cv_sizeof_long_double" >>confdefs.h
+printf '%s\n' "#define SIZEOF_LONG_DOUBLE $ac_cv_sizeof_long_double" >>confdefs.h
@@ -13527,7 +13642,7 @@ printf "%s\n" "#define SIZEOF_LONG_DOUBLE $ac_cv_sizeof_long_double" >>confdefs.
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like 'int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking size of _Bool" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking size of _Bool" >&5
printf %s "checking size of _Bool... " >&6; }
if test ${ac_cv_sizeof__Bool+y}
then :
@@ -13537,25 +13652,18 @@ else case e in #(
then :
else case e in #(
- e) if test "$ac_cv_type__Bool" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute sizeof (_Bool)
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_sizeof__Bool=0
- fi ;;
+ e) ac_cv_sizeof__Bool=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof__Bool" >&5
-printf "%s\n" "$ac_cv_sizeof__Bool" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof__Bool" >&5
+printf '%s\n' "$ac_cv_sizeof__Bool" >&6; }
-printf "%s\n" "#define SIZEOF__BOOL $ac_cv_sizeof__Bool" >>confdefs.h
+printf '%s\n' "#define SIZEOF__BOOL $ac_cv_sizeof__Bool" >>confdefs.h
@@ -13563,7 +13671,7 @@ printf "%s\n" "#define SIZEOF__BOOL $ac_cv_sizeof__Bool" >>confdefs.h
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like 'int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking size of off_t" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking size of off_t" >&5
printf %s "checking size of off_t... " >&6; }
if test ${ac_cv_sizeof_off_t+y}
then :
@@ -13578,29 +13686,22 @@ else case e in #(
then :
else case e in #(
- e) if test "$ac_cv_type_off_t" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute sizeof (off_t)
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_sizeof_off_t=0
- fi ;;
+ e) ac_cv_sizeof_off_t=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_off_t" >&5
-printf "%s\n" "$ac_cv_sizeof_off_t" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_off_t" >&5
+printf '%s\n' "$ac_cv_sizeof_off_t" >&6; }
-printf "%s\n" "#define SIZEOF_OFF_T $ac_cv_sizeof_off_t" >>confdefs.h
+printf '%s\n' "#define SIZEOF_OFF_T $ac_cv_sizeof_off_t" >>confdefs.h
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to enable large file support" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether to enable large file support" >&5
printf %s "checking whether to enable large file support... " >&6; }
if test "$ac_cv_sizeof_off_t" -gt "$ac_cv_sizeof_long" -a \
"$ac_cv_sizeof_long_long" -ge "$ac_cv_sizeof_off_t"; then
@@ -13612,15 +13713,15 @@ if test "x$have_largefile_support" = xyes
then :
-printf "%s\n" "#define HAVE_LARGEFILE_SUPPORT 1" >>confdefs.h
+printf '%s\n' "#define HAVE_LARGEFILE_SUPPORT 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
;;
esac
fi
@@ -13629,7 +13730,7 @@ fi
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like 'int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking size of time_t" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking size of time_t" >&5
printf %s "checking size of time_t... " >&6; }
if test ${ac_cv_sizeof_time_t+y}
then :
@@ -13647,25 +13748,18 @@ else case e in #(
then :
else case e in #(
- e) if test "$ac_cv_type_time_t" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute sizeof (time_t)
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_sizeof_time_t=0
- fi ;;
+ e) ac_cv_sizeof_time_t=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_time_t" >&5
-printf "%s\n" "$ac_cv_sizeof_time_t" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_time_t" >&5
+printf '%s\n' "$ac_cv_sizeof_time_t" >&6; }
-printf "%s\n" "#define SIZEOF_TIME_T $ac_cv_sizeof_time_t" >>confdefs.h
+printf '%s\n' "#define SIZEOF_TIME_T $ac_cv_sizeof_time_t" >>confdefs.h
@@ -13679,7 +13773,7 @@ elif test "$ac_cv_pthread" = "yes"
then CC="$CC -pthread"
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for pthread_t" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for pthread_t" >&5
printf %s "checking for pthread_t... " >&6; }
if test ${ac_cv_have_pthread_t+y}
then :
@@ -13710,8 +13804,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_pthread_t" >&5
-printf "%s\n" "$ac_cv_have_pthread_t" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_pthread_t" >&5
+printf '%s\n' "$ac_cv_have_pthread_t" >&6; }
if test "x$ac_cv_have_pthread_t" = xyes
then :
@@ -13719,7 +13813,7 @@ then :
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like 'int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking size of pthread_t" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking size of pthread_t" >&5
printf %s "checking size of pthread_t... " >&6; }
if test ${ac_cv_sizeof_pthread_t+y}
then :
@@ -13734,25 +13828,18 @@ else case e in #(
then :
else case e in #(
- e) if test "$ac_cv_type_pthread_t" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute sizeof (pthread_t)
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_sizeof_pthread_t=0
- fi ;;
+ e) ac_cv_sizeof_pthread_t=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_pthread_t" >&5
-printf "%s\n" "$ac_cv_sizeof_pthread_t" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_pthread_t" >&5
+printf '%s\n' "$ac_cv_sizeof_pthread_t" >&6; }
-printf "%s\n" "#define SIZEOF_PTHREAD_T $ac_cv_sizeof_pthread_t" >>confdefs.h
+printf '%s\n' "#define SIZEOF_PTHREAD_T $ac_cv_sizeof_pthread_t" >>confdefs.h
@@ -13764,7 +13851,7 @@ fi
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like 'int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking size of pthread_key_t" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking size of pthread_key_t" >&5
printf %s "checking size of pthread_key_t... " >&6; }
if test ${ac_cv_sizeof_pthread_key_t+y}
then :
@@ -13775,28 +13862,21 @@ else case e in #(
then :
else case e in #(
- e) if test "$ac_cv_type_pthread_key_t" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute sizeof (pthread_key_t)
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_sizeof_pthread_key_t=0
- fi ;;
+ e) ac_cv_sizeof_pthread_key_t=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_pthread_key_t" >&5
-printf "%s\n" "$ac_cv_sizeof_pthread_key_t" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_pthread_key_t" >&5
+printf '%s\n' "$ac_cv_sizeof_pthread_key_t" >&6; }
-printf "%s\n" "#define SIZEOF_PTHREAD_KEY_T $ac_cv_sizeof_pthread_key_t" >>confdefs.h
+printf '%s\n' "#define SIZEOF_PTHREAD_KEY_T $ac_cv_sizeof_pthread_key_t" >>confdefs.h
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether pthread_key_t is compatible with int" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether pthread_key_t is compatible with int" >&5
printf %s "checking whether pthread_key_t is compatible with int... " >&6; }
if test ${ac_cv_pthread_key_t_is_arithmetic_type+y}
then :
@@ -13830,20 +13910,20 @@ fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_pthread_key_t_is_arithmetic_type" >&5
-printf "%s\n" "$ac_cv_pthread_key_t_is_arithmetic_type" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_pthread_key_t_is_arithmetic_type" >&5
+printf '%s\n' "$ac_cv_pthread_key_t_is_arithmetic_type" >&6; }
if test "x$ac_cv_pthread_key_t_is_arithmetic_type" = xyes
then :
-printf "%s\n" "#define PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT 1" >>confdefs.h
+printf '%s\n' "#define PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT 1" >>confdefs.h
fi
CC="$ac_save_cc"
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --enable-framework" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --enable-framework" >&5
printf %s "checking for --enable-framework... " >&6; }
if test "$enable_framework"
then
@@ -13851,17 +13931,17 @@ then
# -F. is needed to allow linking to the framework while
# in the build location.
-printf "%s\n" "#define WITH_NEXT_FRAMEWORK 1" >>confdefs.h
+printf '%s\n' "#define WITH_NEXT_FRAMEWORK 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
if test $enable_shared = "yes"
then
as_fn_error $? "Specifying both --enable-shared and --enable-framework is not supported, use only --enable-framework instead" "$LINENO" 5
fi
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
# Check for --with-dsymutil
@@ -13869,7 +13949,7 @@ fi
DSYMUTIL=
DSYMUTIL_PATH=
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-dsymutil" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-dsymutil" >&5
printf %s "checking for --with-dsymutil... " >&6; }
# Check whether --with-dsymutil was given.
@@ -13881,15 +13961,15 @@ then
if test "$MACHDEP" != "darwin"; then
as_fn_error $? "dsymutil debug linking is only available in macOS." "$LINENO" 5
fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; };
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; };
DSYMUTIL='true'
-else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }; DSYMUTIL=
+else { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }; DSYMUTIL=
fi
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; } ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; } ;;
esac
fi
@@ -13897,7 +13977,7 @@ fi
if test "$DSYMUTIL"; then
# Extract the first word of "dsymutil", so it can be a program name with args.
set dummy dsymutil; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_DSYMUTIL_PATH+y}
then :
@@ -13920,7 +14000,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_DSYMUTIL_PATH="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -13934,11 +14014,11 @@ esac
fi
DSYMUTIL_PATH=$ac_cv_path_DSYMUTIL_PATH
if test -n "$DSYMUTIL_PATH"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL_PATH" >&5
-printf "%s\n" "$DSYMUTIL_PATH" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL_PATH" >&5
+printf '%s\n' "$DSYMUTIL_PATH" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -13947,53 +14027,53 @@ fi
fi
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for dyld" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for dyld" >&5
printf %s "checking for dyld... " >&6; }
case $ac_sys_system/$ac_sys_release in
Darwin/*)
-printf "%s\n" "#define WITH_DYLD 1" >>confdefs.h
+printf '%s\n' "#define WITH_DYLD 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: always on for Darwin" >&5
-printf "%s\n" "always on for Darwin" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: always on for Darwin" >&5
+printf '%s\n' "always on for Darwin" >&6; }
;;
*)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
;;
esac
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-address-sanitizer" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-address-sanitizer" >&5
printf %s "checking for --with-address-sanitizer... " >&6; }
# Check whether --with-address_sanitizer was given.
if test ${with_address_sanitizer+y}
then :
withval=$with_address_sanitizer;
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $withval" >&5
-printf "%s\n" "$withval" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $withval" >&5
+printf '%s\n' "$withval" >&6; }
BASECFLAGS="-fsanitize=address -fno-omit-frame-pointer $BASECFLAGS"
LDFLAGS="-fsanitize=address $LDFLAGS"
# ASan works by controlling memory allocation, our own malloc interferes.
with_pymalloc="no"
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; } ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; } ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-memory-sanitizer" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-memory-sanitizer" >&5
printf %s "checking for --with-memory-sanitizer... " >&6; }
# Check whether --with-memory_sanitizer was given.
if test ${with_memory_sanitizer+y}
then :
withval=$with_memory_sanitizer;
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $withval" >&5
-printf "%s\n" "$withval" >&6; }
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -fsanitize=memory" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $withval" >&5
+printf '%s\n' "$withval" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -fsanitize=memory" >&5
printf %s "checking whether C compiler accepts -fsanitize=memory... " >&6; }
if test ${ax_cv_check_cflags___fsanitize_memory+y}
then :
@@ -14024,8 +14104,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
CFLAGS=$ax_check_save_flags ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___fsanitize_memory" >&5
-printf "%s\n" "$ax_cv_check_cflags___fsanitize_memory" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___fsanitize_memory" >&5
+printf '%s\n' "$ax_cv_check_cflags___fsanitize_memory" >&6; }
if test "x$ax_cv_check_cflags___fsanitize_memory" = xyes
then :
@@ -14041,52 +14121,52 @@ fi
with_pymalloc="no"
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; } ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; } ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-undefined-behavior-sanitizer" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-undefined-behavior-sanitizer" >&5
printf %s "checking for --with-undefined-behavior-sanitizer... " >&6; }
# Check whether --with-undefined_behavior_sanitizer was given.
if test ${with_undefined_behavior_sanitizer+y}
then :
withval=$with_undefined_behavior_sanitizer;
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $withval" >&5
-printf "%s\n" "$withval" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $withval" >&5
+printf '%s\n' "$withval" >&6; }
BASECFLAGS="-fsanitize=undefined $BASECFLAGS"
LDFLAGS="-fsanitize=undefined $LDFLAGS"
with_ubsan="yes"
else case e in #(
e)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
with_ubsan="no"
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-thread-sanitizer" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-thread-sanitizer" >&5
printf %s "checking for --with-thread-sanitizer... " >&6; }
# Check whether --with-thread_sanitizer was given.
if test ${with_thread_sanitizer+y}
then :
withval=$with_thread_sanitizer;
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $withval" >&5
-printf "%s\n" "$withval" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $withval" >&5
+printf '%s\n' "$withval" >&6; }
BASECFLAGS="-fsanitize=thread $BASECFLAGS"
LDFLAGS="-fsanitize=thread $LDFLAGS"
with_tsan="yes"
else case e in #(
e)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
with_tsan="no"
;;
esac
@@ -14103,7 +14183,7 @@ fi
# SHLIB_SUFFIX is the extension of shared libraries `(including the dot!)
# -- usually .so, .sl on HP-UX, .dll on Cygwin
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking the extension of shared libraries" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking the extension of shared libraries" >&5
printf %s "checking the extension of shared libraries... " >&6; }
if test -z "$SHLIB_SUFFIX"; then
case $ac_sys_system in
@@ -14117,14 +14197,14 @@ if test -z "$SHLIB_SUFFIX"; then
*) SHLIB_SUFFIX=.so;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $SHLIB_SUFFIX" >&5
-printf "%s\n" "$SHLIB_SUFFIX" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $SHLIB_SUFFIX" >&5
+printf '%s\n' "$SHLIB_SUFFIX" >&6; }
# LDSHARED is the ld *command* used to create shared library
# -- "cc -G" on SunOS 5.x.
# (Shared libraries in this instance are shared modules to be loaded into
# Python, as opposed to building Python itself as a shared library.)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking LDSHARED" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking LDSHARED" >&5
printf %s "checking LDSHARED... " >&6; }
if test -z "$LDSHARED"
then
@@ -14262,19 +14342,19 @@ if test "$enable_wasm_dynamic_linking" = "yes" -a "$ac_sys_system" = "Emscripten
BLDSHARED='$(CC) -shared -sSIDE_MODULE=1'
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LDSHARED" >&5
-printf "%s\n" "$LDSHARED" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $LDSHARED" >&5
+printf '%s\n' "$LDSHARED" >&6; }
LDCXXSHARED=${LDCXXSHARED-$LDSHARED}
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking BLDSHARED flags" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking BLDSHARED flags" >&5
printf %s "checking BLDSHARED flags... " >&6; }
BLDSHARED=${BLDSHARED-$LDSHARED}
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $BLDSHARED" >&5
-printf "%s\n" "$BLDSHARED" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $BLDSHARED" >&5
+printf '%s\n' "$BLDSHARED" >&6; }
# CCSHARED are the C *flags* used to create objects to go into a shared
# library (module) -- this is only needed for a few systems
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking CCSHARED" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking CCSHARED" >&5
printf %s "checking CCSHARED... " >&6; }
if test -z "$CCSHARED"
then
@@ -14313,11 +14393,11 @@ fi;;
CCSHARED="-fpic -D__SO_PICABILINUX__ -ftls-model=global-dynamic"
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CCSHARED" >&5
-printf "%s\n" "$CCSHARED" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CCSHARED" >&5
+printf '%s\n' "$CCSHARED" >&6; }
# LINKFORSHARED are the flags passed to the $(CC) command that links
# the python executable -- this is only needed for a few systems
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking LINKFORSHARED" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking LINKFORSHARED" >&5
printf %s "checking LINKFORSHARED... " >&6; }
if test -z "$LINKFORSHARED"
then
@@ -14343,7 +14423,7 @@ then
fi
-printf "%s\n" "#define THREAD_STACK_SIZE 0x$stack_size" >>confdefs.h
+printf '%s\n' "#define THREAD_STACK_SIZE 0x$stack_size" >>confdefs.h
if test $ac_sys_system = "Darwin"; then
@@ -14388,12 +14468,12 @@ printf "%s\n" "#define THREAD_STACK_SIZE 0x$stack_size" >>confdefs.h
LINKFORSHARED='-Wl,-export-dynamic';;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LINKFORSHARED" >&5
-printf "%s\n" "$LINKFORSHARED" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $LINKFORSHARED" >&5
+printf '%s\n' "$LINKFORSHARED" >&6; }
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking CFLAGSFORSHARED" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking CFLAGSFORSHARED" >&5
printf %s "checking CFLAGSFORSHARED... " >&6; }
if test ! "$LIBRARY" = "$LDLIBRARY"
then
@@ -14414,8 +14494,8 @@ then :
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CFLAGSFORSHARED" >&5
-printf "%s\n" "$CFLAGSFORSHARED" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $CFLAGSFORSHARED" >&5
+printf '%s\n' "$CFLAGSFORSHARED" >&6; }
# SHLIBS are libraries (except -lc and -lm) to link to the python shared
# library (with --enable-shared).
@@ -14426,16 +14506,16 @@ printf "%s\n" "$CFLAGSFORSHARED" >&6; }
# don't need to link LIBS explicitly. The default should be only changed
# on systems where this approach causes problems.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking SHLIBS" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking SHLIBS" >&5
printf %s "checking SHLIBS... " >&6; }
case "$ac_sys_system" in
*)
SHLIBS='$(LIBS)';;
esac
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $SHLIBS" >&5
-printf "%s\n" "$SHLIBS" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $SHLIBS" >&5
+printf '%s\n' "$SHLIBS" >&6; }
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking perf trampoline" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking perf trampoline" >&5
printf %s "checking perf trampoline... " >&6; }
PERF_TRAMPOLINE_OBJ=""
case $PLATFORM_TRIPLET in #(
@@ -14472,21 +14552,21 @@ esac ;; #(
perf_trampoline=no
;;
esac
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $perf_trampoline" >&5
-printf "%s\n" "$perf_trampoline" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $perf_trampoline" >&5
+printf '%s\n' "$perf_trampoline" >&6; }
if test "x$perf_trampoline" = xyes
then :
-printf "%s\n" "#define PY_HAVE_PERF_TRAMPOLINE 1" >>confdefs.h
+printf '%s\n' "#define PY_HAVE_PERF_TRAMPOLINE 1" >>confdefs.h
fi
# checks for libraries
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sendfile in -lsendfile" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for sendfile in -lsendfile" >&5
printf %s "checking for sendfile in -lsendfile... " >&6; }
if test ${ac_cv_lib_sendfile_sendfile+y}
then :
@@ -14527,17 +14607,17 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sendfile_sendfile" >&5
-printf "%s\n" "$ac_cv_lib_sendfile_sendfile" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sendfile_sendfile" >&5
+printf '%s\n' "$ac_cv_lib_sendfile_sendfile" >&6; }
if test "x$ac_cv_lib_sendfile_sendfile" = xyes
then :
- printf "%s\n" "#define HAVE_LIBSENDFILE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LIBSENDFILE 1" >>confdefs.h
LIBS="-lsendfile $LIBS"
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
printf %s "checking for dlopen in -ldl... " >&6; }
if test ${ac_cv_lib_dl_dlopen+y}
then :
@@ -14578,17 +14658,17 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
-printf "%s\n" "$ac_cv_lib_dl_dlopen" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
+printf '%s\n' "$ac_cv_lib_dl_dlopen" >&6; }
if test "x$ac_cv_lib_dl_dlopen" = xyes
then :
- printf "%s\n" "#define HAVE_LIBDL 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LIBDL 1" >>confdefs.h
LIBS="-ldl $LIBS"
fi
# Dynamic linking for SunOS/Solaris and SYSV
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5
printf %s "checking for shl_load in -ldld... " >&6; }
if test ${ac_cv_lib_dld_shl_load+y}
then :
@@ -14629,11 +14709,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5
-printf "%s\n" "$ac_cv_lib_dld_shl_load" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5
+printf '%s\n' "$ac_cv_lib_dld_shl_load" >&6; }
if test "x$ac_cv_lib_dld_shl_load" = xyes
then :
- printf "%s\n" "#define HAVE_LIBDLD 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LIBDLD 1" >>confdefs.h
LIBS="-ldld $LIBS"
@@ -14643,23 +14723,23 @@ fi
for ac_header in execinfo.h link.h dlfcn.h
do :
- as_ac_Header=`printf "%s\n" "ac_cv_header_$ac_header" | sed "$as_sed_sh"`
+ as_ac_Header=`printf '%s\n' "ac_cv_header_$ac_header" | sed "$as_sed_sh"`
ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
if eval test \"x\$"$as_ac_Header"\" = x"yes"
then :
cat >>confdefs.h <<_ACEOF
-#define `printf "%s\n" "HAVE_$ac_header" | sed "$as_sed_cpp"` 1
+#define `printf '%s\n' "HAVE_$ac_header" | sed "$as_sed_cpp"` 1
_ACEOF
for ac_func in backtrace dladdr1
do :
- as_ac_var=`printf "%s\n" "ac_cv_func_$ac_func" | sed "$as_sed_sh"`
+ as_ac_var=`printf '%s\n' "ac_cv_func_$ac_func" | sed "$as_sed_sh"`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
if eval test \"x\$"$as_ac_var"\" = x"yes"
then :
cat >>confdefs.h <<_ACEOF
-#define `printf "%s\n" "HAVE_$ac_func" | sed "$as_sed_cpp"` 1
+#define `printf '%s\n' "HAVE_$ac_func" | sed "$as_sed_cpp"` 1
_ACEOF
# dladdr1 requires -ldl
@@ -14673,7 +14753,7 @@ fi
done
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for libgcc frame registration functions" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for libgcc frame registration functions" >&5
printf %s "checking for libgcc frame registration functions... " >&6; }
if test ${ac_cv_have_libgcc_eh_frame_registration+y}
then :
@@ -14708,13 +14788,13 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_libgcc_eh_frame_registration" >&5
-printf "%s\n" "$ac_cv_have_libgcc_eh_frame_registration" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_libgcc_eh_frame_registration" >&5
+printf '%s\n' "$ac_cv_have_libgcc_eh_frame_registration" >&6; }
if test "x$ac_cv_have_libgcc_eh_frame_registration" = xyes
then :
-printf "%s\n" "#define _Py_HAVE_LIBGCC_EH_FRAME_REGISTRATION 1" >>confdefs.h
+printf '%s\n' "#define _Py_HAVE_LIBGCC_EH_FRAME_REGISTRATION 1" >>confdefs.h
fi
@@ -14746,17 +14826,17 @@ do :
ac_fn_c_check_header_compile "$LINENO" "uuid.h" "ac_cv_header_uuid_h" "$ac_includes_default"
if test "x$ac_cv_header_uuid_h" = xyes
then :
- printf "%s\n" "#define HAVE_UUID_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_UUID_H 1" >>confdefs.h
for ac_func in uuid_create uuid_enc_be
do :
- as_ac_var=`printf "%s\n" "ac_cv_func_$ac_func" | sed "$as_sed_sh"`
+ as_ac_var=`printf '%s\n' "ac_cv_func_$ac_func" | sed "$as_sed_sh"`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
if eval test \"x\$"$as_ac_var"\" = x"yes"
then :
cat >>confdefs.h <<_ACEOF
-#define `printf "%s\n" "HAVE_$ac_func" | sed "$as_sed_cpp"` 1
+#define `printf '%s\n' "HAVE_$ac_func" | sed "$as_sed_cpp"` 1
_ACEOF
have_uuid=yes
@@ -14777,17 +14857,17 @@ then :
pkg_failed=no
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for uuid >= 2.20" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for uuid >= 2.20" >&5
printf %s "checking for uuid >= 2.20... " >&6; }
if test -n "$LIBUUID_CFLAGS"; then
pkg_cv_LIBUUID_CFLAGS="$LIBUUID_CFLAGS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"uuid >= 2.20\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"uuid >= 2.20\""; } >&5
($PKG_CONFIG --exists --print-errors "uuid >= 2.20") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_LIBUUID_CFLAGS=`$PKG_CONFIG --cflags "uuid >= 2.20" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -14801,10 +14881,10 @@ if test -n "$LIBUUID_LIBS"; then
pkg_cv_LIBUUID_LIBS="$LIBUUID_LIBS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"uuid >= 2.20\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"uuid >= 2.20\""; } >&5
($PKG_CONFIG --exists --print-errors "uuid >= 2.20") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_LIBUUID_LIBS=`$PKG_CONFIG --libs "uuid >= 2.20" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -14818,8 +14898,8 @@ fi
if test $pkg_failed = yes; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
_pkg_short_errors_supported=yes
@@ -14848,11 +14928,11 @@ do :
ac_fn_c_check_header_compile "$LINENO" "uuid/uuid.h" "ac_cv_header_uuid_uuid_h" "$ac_includes_default"
if test "x$ac_cv_header_uuid_uuid_h" = xyes
then :
- printf "%s\n" "#define HAVE_UUID_UUID_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_UUID_UUID_H 1" >>confdefs.h
ac_cv_have_uuid_uuid_h=yes
py_check_lib_save_LIBS=$LIBS
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for uuid_generate_time in -luuid" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for uuid_generate_time in -luuid" >&5
printf %s "checking for uuid_generate_time in -luuid... " >&6; }
if test ${ac_cv_lib_uuid_uuid_generate_time+y}
then :
@@ -14893,8 +14973,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_uuid_uuid_generate_time" >&5
-printf "%s\n" "$ac_cv_lib_uuid_uuid_generate_time" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_uuid_uuid_generate_time" >&5
+printf '%s\n' "$ac_cv_lib_uuid_uuid_generate_time" >&6; }
if test "x$ac_cv_lib_uuid_uuid_generate_time" = xyes
then :
have_uuid=yes
@@ -14903,7 +14983,7 @@ fi
LIBS=$py_check_lib_save_LIBS
py_check_lib_save_LIBS=$LIBS
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for uuid_generate_time_safe in -luuid" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for uuid_generate_time_safe in -luuid" >&5
printf %s "checking for uuid_generate_time_safe in -luuid... " >&6; }
if test ${ac_cv_lib_uuid_uuid_generate_time_safe+y}
then :
@@ -14944,8 +15024,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_uuid_uuid_generate_time_safe" >&5
-printf "%s\n" "$ac_cv_lib_uuid_uuid_generate_time_safe" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_uuid_uuid_generate_time_safe" >&5
+printf '%s\n' "$ac_cv_lib_uuid_uuid_generate_time_safe" >&6; }
if test "x$ac_cv_lib_uuid_uuid_generate_time_safe" = xyes
then :
@@ -14976,8 +15056,8 @@ LIBS=$save_LIBS
elif test $pkg_failed = untried; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
save_CFLAGS=$CFLAGS
save_CPPFLAGS=$CPPFLAGS
@@ -14992,11 +15072,11 @@ do :
ac_fn_c_check_header_compile "$LINENO" "uuid/uuid.h" "ac_cv_header_uuid_uuid_h" "$ac_includes_default"
if test "x$ac_cv_header_uuid_uuid_h" = xyes
then :
- printf "%s\n" "#define HAVE_UUID_UUID_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_UUID_UUID_H 1" >>confdefs.h
ac_cv_have_uuid_uuid_h=yes
py_check_lib_save_LIBS=$LIBS
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for uuid_generate_time in -luuid" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for uuid_generate_time in -luuid" >&5
printf %s "checking for uuid_generate_time in -luuid... " >&6; }
if test ${ac_cv_lib_uuid_uuid_generate_time+y}
then :
@@ -15037,8 +15117,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_uuid_uuid_generate_time" >&5
-printf "%s\n" "$ac_cv_lib_uuid_uuid_generate_time" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_uuid_uuid_generate_time" >&5
+printf '%s\n' "$ac_cv_lib_uuid_uuid_generate_time" >&6; }
if test "x$ac_cv_lib_uuid_uuid_generate_time" = xyes
then :
have_uuid=yes
@@ -15047,7 +15127,7 @@ fi
LIBS=$py_check_lib_save_LIBS
py_check_lib_save_LIBS=$LIBS
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for uuid_generate_time_safe in -luuid" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for uuid_generate_time_safe in -luuid" >&5
printf %s "checking for uuid_generate_time_safe in -luuid... " >&6; }
if test ${ac_cv_lib_uuid_uuid_generate_time_safe+y}
then :
@@ -15088,8 +15168,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_uuid_uuid_generate_time_safe" >&5
-printf "%s\n" "$ac_cv_lib_uuid_uuid_generate_time_safe" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_uuid_uuid_generate_time_safe" >&5
+printf '%s\n' "$ac_cv_lib_uuid_uuid_generate_time_safe" >&6; }
if test "x$ac_cv_lib_uuid_uuid_generate_time_safe" = xyes
then :
@@ -15122,8 +15202,8 @@ LIBS=$save_LIBS
else
LIBUUID_CFLAGS=$pkg_cv_LIBUUID_CFLAGS
LIBUUID_LIBS=$pkg_cv_LIBUUID_LIBS
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
have_uuid=yes
ac_cv_have_uuid_generate_time_safe=yes
# The uuid.h file to include may be *or* .
@@ -15148,7 +15228,7 @@ do :
ac_fn_c_check_header_compile "$LINENO" "uuid/uuid.h" "ac_cv_header_uuid_uuid_h" "$ac_includes_default"
if test "x$ac_cv_header_uuid_uuid_h" = xyes
then :
- printf "%s\n" "#define HAVE_UUID_UUID_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_UUID_UUID_H 1" >>confdefs.h
ac_fn_c_check_func "$LINENO" "uuid_generate_time" "ac_cv_func_uuid_generate_time"
if test "x$ac_cv_func_uuid_generate_time" = xyes
@@ -15170,18 +15250,18 @@ fi
if test "x$ac_cv_have_uuid_h" = xyes
then :
- printf "%s\n" "#define HAVE_UUID_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_UUID_H 1" >>confdefs.h
fi
if test "x$ac_cv_have_uuid_uuid_h" = xyes
then :
- printf "%s\n" "#define HAVE_UUID_UUID_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_UUID_UUID_H 1" >>confdefs.h
fi
if test "x$ac_cv_have_uuid_generate_time_safe" = xyes
then :
- printf "%s\n" "#define HAVE_UUID_GENERATE_TIME_SAFE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_UUID_GENERATE_TIME_SAFE 1" >>confdefs.h
fi
@@ -15190,7 +15270,7 @@ fi
# This restriction inhibits the proper generation of time-based UUIDs.
if test "$ac_sys_system" = "NetBSD"; then
have_uuid=missing
- printf "%s\n" "#define HAVE_UUID_H 0" >>confdefs.h
+ printf '%s\n' "#define HAVE_UUID_H 0" >>confdefs.h
fi
@@ -15211,7 +15291,7 @@ fi
if test "$have_uuid" = "yes" -a "$HAVE_UUID_GENERATE_TIME_SAFE" = "1"
then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if uuid_generate_time_safe() node value is stable" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking if uuid_generate_time_safe() node value is stable" >&5
printf %s "checking if uuid_generate_time_safe() node value is stable... " >&6; }
save_CFLAGS=$CFLAGS
save_CPPFLAGS=$CPPFLAGS
@@ -15347,20 +15427,20 @@ LIBS=$save_LIBS
if test -n "$py_cv_uuid_node1" -a "$py_cv_uuid_node1" = "$py_cv_uuid_node2"
then
- printf "%s\n" "#define HAVE_UUID_GENERATE_TIME_SAFE_STABLE_MAC 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_UUID_GENERATE_TIME_SAFE_STABLE_MAC 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: stable" >&5
-printf "%s\n" "stable" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: stable" >&5
+printf '%s\n' "stable" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unstable" >&5
-printf "%s\n" "unstable" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: unstable" >&5
+printf '%s\n' "unstable" >&6; }
fi
fi
# 'Real Time' functions on Solaris
# posix4 on Solaris 2.6
# pthread (first!) on Linux
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing sem_init" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for library containing sem_init" >&5
printf %s "checking for library containing sem_init... " >&6; }
if test ${ac_cv_search_sem_init+y}
then :
@@ -15418,8 +15498,8 @@ rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_sem_init" >&5
-printf "%s\n" "$ac_cv_search_sem_init" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_sem_init" >&5
+printf '%s\n' "$ac_cv_search_sem_init" >&6; }
ac_res=$ac_cv_search_sem_init
if test "$ac_res" != no
then :
@@ -15429,7 +15509,7 @@ fi
# check if we need libintl for locale functions
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for textdomain in -lintl" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for textdomain in -lintl" >&5
printf %s "checking for textdomain in -lintl... " >&6; }
if test ${ac_cv_lib_intl_textdomain+y}
then :
@@ -15470,12 +15550,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_textdomain" >&5
-printf "%s\n" "$ac_cv_lib_intl_textdomain" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_textdomain" >&5
+printf '%s\n' "$ac_cv_lib_intl_textdomain" >&6; }
if test "x$ac_cv_lib_intl_textdomain" = xyes
then :
-printf "%s\n" "#define WITH_LIBINTL 1" >>confdefs.h
+printf '%s\n' "#define WITH_LIBINTL 1" >>confdefs.h
LIBS="-lintl $LIBS"
fi
@@ -15483,7 +15563,7 @@ fi
# checks for system dependent C++ extensions support
case "$ac_sys_system" in
- AIX*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for genuine AIX C++ extensions support" >&5
+ AIX*) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for genuine AIX C++ extensions support" >&5
printf %s "checking for genuine AIX C++ extensions support... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -15502,15 +15582,15 @@ if ac_fn_c_try_link "$LINENO"
then :
-printf "%s\n" "#define AIX_GENUINE_CPLUSPLUS 1" >>confdefs.h
+printf '%s\n' "#define AIX_GENUINE_CPLUSPLUS 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
;;
esac
fi
@@ -15519,20 +15599,20 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
# BUILD_GNU_TYPE + AIX_BUILDDATE are used to construct the platform_tag
# of the AIX system used to build/package Python executable. This tag serves
# as a baseline for bdist module packages
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for the system builddate" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for the system builddate" >&5
printf %s "checking for the system builddate... " >&6; }
AIX_BUILDDATE=$(lslpp -Lcq bos.mp64 | awk -F: '{ print $NF }')
-printf "%s\n" "#define AIX_BUILDDATE $AIX_BUILDDATE" >>confdefs.h
+printf '%s\n' "#define AIX_BUILDDATE $AIX_BUILDDATE" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $AIX_BUILDDATE" >&5
-printf "%s\n" "$AIX_BUILDDATE" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $AIX_BUILDDATE" >&5
+printf '%s\n' "$AIX_BUILDDATE" >&6; }
;;
*) ;;
esac
# check for systems that require aligned memory access
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking aligned memory access is required" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking aligned memory access is required" >&5
printf %s "checking aligned memory access is required... " >&6; }
if test ${ac_cv_aligned_required+y}
then :
@@ -15580,37 +15660,37 @@ fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_aligned_required" >&5
-printf "%s\n" "$ac_cv_aligned_required" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_aligned_required" >&5
+printf '%s\n' "$ac_cv_aligned_required" >&6; }
if test "$ac_cv_aligned_required" = yes ; then
-printf "%s\n" "#define HAVE_ALIGNED_REQUIRED 1" >>confdefs.h
+printf '%s\n' "#define HAVE_ALIGNED_REQUIRED 1" >>confdefs.h
fi
# str, bytes and memoryview hash algorithm
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-hash-algorithm" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-hash-algorithm" >&5
printf %s "checking for --with-hash-algorithm... " >&6; }
# Check whether --with-hash_algorithm was given.
if test ${with_hash_algorithm+y}
then :
withval=$with_hash_algorithm;
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $withval" >&5
-printf "%s\n" "$withval" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $withval" >&5
+printf '%s\n' "$withval" >&6; }
case "$withval" in
siphash13)
- printf "%s\n" "#define Py_HASH_ALGORITHM 3" >>confdefs.h
+ printf '%s\n' "#define Py_HASH_ALGORITHM 3" >>confdefs.h
;;
siphash24)
- printf "%s\n" "#define Py_HASH_ALGORITHM 1" >>confdefs.h
+ printf '%s\n' "#define Py_HASH_ALGORITHM 1" >>confdefs.h
;;
fnv)
- printf "%s\n" "#define Py_HASH_ALGORITHM 2" >>confdefs.h
+ printf '%s\n' "#define Py_HASH_ALGORITHM 2" >>confdefs.h
;;
*)
@@ -15619,8 +15699,8 @@ case "$withval" in
esac
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: default" >&5
-printf "%s\n" "default" >&6; } ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: default" >&5
+printf '%s\n' "default" >&6; } ;;
esac
fi
@@ -15640,7 +15720,7 @@ validate_tzpath() {
}
TZPATH="/usr/share/zoneinfo:/usr/lib/zoneinfo:/usr/share/lib/zoneinfo:/etc/zoneinfo"
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-tzpath" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-tzpath" >&5
printf %s "checking for --with-tzpath... " >&6; }
# Check whether --with-tzpath was given.
@@ -15654,22 +15734,22 @@ case "$withval" in
*)
validate_tzpath "$withval"
TZPATH="$withval"
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: \"$withval\"" >&5
-printf "%s\n" "\"$withval\"" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: \"$withval\"" >&5
+printf '%s\n' "\"$withval\"" >&6; }
;;
esac
else case e in #(
e) validate_tzpath "$TZPATH"
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: \"$TZPATH\"" >&5
-printf "%s\n" "\"$TZPATH\"" >&6; } ;;
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: \"$TZPATH\"" >&5
+printf '%s\n' "\"$TZPATH\"" >&6; } ;;
esac
fi
# Most SVR4 platforms (e.g. Solaris) need -lsocket and -lnsl.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for t_open in -lnsl" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for t_open in -lnsl" >&5
printf %s "checking for t_open in -lnsl... " >&6; }
if test ${ac_cv_lib_nsl_t_open+y}
then :
@@ -15710,14 +15790,14 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_t_open" >&5
-printf "%s\n" "$ac_cv_lib_nsl_t_open" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_t_open" >&5
+printf '%s\n' "$ac_cv_lib_nsl_t_open" >&6; }
if test "x$ac_cv_lib_nsl_t_open" = xyes
then :
LIBS="-lnsl $LIBS"
fi
# SVR4
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for socket in -lsocket" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for socket in -lsocket" >&5
printf %s "checking for socket in -lsocket... " >&6; }
if test ${ac_cv_lib_socket_socket+y}
then :
@@ -15758,8 +15838,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_socket" >&5
-printf "%s\n" "$ac_cv_lib_socket_socket" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_socket" >&5
+printf '%s\n' "$ac_cv_lib_socket_socket" >&6; }
if test "x$ac_cv_lib_socket_socket" = xyes
then :
LIBS="-lsocket $LIBS"
@@ -15768,7 +15848,7 @@ fi
case $ac_sys_system/$ac_sys_release in
Haiku*)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for socket in -lnetwork" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for socket in -lnetwork" >&5
printf %s "checking for socket in -lnetwork... " >&6; }
if test ${ac_cv_lib_network_socket+y}
then :
@@ -15809,8 +15889,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_network_socket" >&5
-printf "%s\n" "$ac_cv_lib_network_socket" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_network_socket" >&5
+printf '%s\n' "$ac_cv_lib_network_socket" >&6; }
if test "x$ac_cv_lib_network_socket" = xyes
then :
LIBS="-lnetwork $LIBS"
@@ -15819,26 +15899,26 @@ fi
;;
esac
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-libs" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-libs" >&5
printf %s "checking for --with-libs... " >&6; }
# Check whether --with-libs was given.
if test ${with_libs+y}
then :
withval=$with_libs;
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $withval" >&5
-printf "%s\n" "$withval" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $withval" >&5
+printf '%s\n' "$withval" >&6; }
LIBS="$withval $LIBS"
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; } ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; } ;;
esac
fi
# Check for use of the system expat library
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-system-expat" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-system-expat" >&5
printf %s "checking for --with-system-expat... " >&6; }
# Check whether --with-system_expat was given.
@@ -15851,8 +15931,8 @@ esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $with_system_expat" >&5
-printf "%s\n" "$with_system_expat" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $with_system_expat" >&5
+printf '%s\n' "$with_system_expat" >&6; }
if test "x$with_system_expat" = xyes
then :
@@ -15888,7 +15968,7 @@ save_LIBS=$LIBS
if test "x$ac_cv_header_ffi_h" = xyes
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ffi_call in -lffi" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for ffi_call in -lffi" >&5
printf %s "checking for ffi_call in -lffi... " >&6; }
if test ${ac_cv_lib_ffi_ffi_call+y}
then :
@@ -15929,8 +16009,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ffi_ffi_call" >&5
-printf "%s\n" "$ac_cv_lib_ffi_ffi_call" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ffi_ffi_call" >&5
+printf '%s\n' "$ac_cv_lib_ffi_ffi_call" >&6; }
if test "x$ac_cv_lib_ffi_ffi_call" = xyes
then :
@@ -15957,17 +16037,17 @@ then :
pkg_failed=no
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for libffi" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for libffi" >&5
printf %s "checking for libffi... " >&6; }
if test -n "$LIBFFI_CFLAGS"; then
pkg_cv_LIBFFI_CFLAGS="$LIBFFI_CFLAGS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libffi\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libffi\""; } >&5
($PKG_CONFIG --exists --print-errors "libffi") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_LIBFFI_CFLAGS=`$PKG_CONFIG --cflags "libffi" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -15981,10 +16061,10 @@ if test -n "$LIBFFI_LIBS"; then
pkg_cv_LIBFFI_LIBS="$LIBFFI_LIBS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libffi\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libffi\""; } >&5
($PKG_CONFIG --exists --print-errors "libffi") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_LIBFFI_LIBS=`$PKG_CONFIG --libs "libffi" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -15998,8 +16078,8 @@ fi
if test $pkg_failed = yes; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
_pkg_short_errors_supported=yes
@@ -16027,7 +16107,7 @@ save_LIBS=$LIBS
if test "x$ac_cv_header_ffi_h" = xyes
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ffi_call in -lffi" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for ffi_call in -lffi" >&5
printf %s "checking for ffi_call in -lffi... " >&6; }
if test ${ac_cv_lib_ffi_ffi_call+y}
then :
@@ -16068,8 +16148,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ffi_ffi_call" >&5
-printf "%s\n" "$ac_cv_lib_ffi_ffi_call" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ffi_ffi_call" >&5
+printf '%s\n' "$ac_cv_lib_ffi_ffi_call" >&6; }
if test "x$ac_cv_lib_ffi_ffi_call" = xyes
then :
@@ -16094,8 +16174,8 @@ LIBS=$save_LIBS
elif test $pkg_failed = untried; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
save_CFLAGS=$CFLAGS
save_CPPFLAGS=$CPPFLAGS
@@ -16109,7 +16189,7 @@ save_LIBS=$LIBS
if test "x$ac_cv_header_ffi_h" = xyes
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ffi_call in -lffi" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for ffi_call in -lffi" >&5
printf %s "checking for ffi_call in -lffi... " >&6; }
if test ${ac_cv_lib_ffi_ffi_call+y}
then :
@@ -16150,8 +16230,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ffi_ffi_call" >&5
-printf "%s\n" "$ac_cv_lib_ffi_ffi_call" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ffi_ffi_call" >&5
+printf '%s\n' "$ac_cv_lib_ffi_ffi_call" >&6; }
if test "x$ac_cv_lib_ffi_ffi_call" = xyes
then :
@@ -16178,8 +16258,8 @@ LIBS=$save_LIBS
else
LIBFFI_CFLAGS=$pkg_cv_LIBFFI_CFLAGS
LIBFFI_LIBS=$pkg_cv_LIBFFI_LIBS
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
have_libffi=yes
fi
@@ -16229,7 +16309,7 @@ save_LIBS=$LIBS
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ffi_prep_cif_var" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for ffi_prep_cif_var" >&5
printf %s "checking for ffi_prep_cif_var... " >&6; }
if test ${ac_cv_func_ffi_prep_cif_var+y}
then :
@@ -16257,12 +16337,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_ffi_prep_cif_var" >&5
-printf "%s\n" "$ac_cv_func_ffi_prep_cif_var" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_ffi_prep_cif_var" >&5
+printf '%s\n' "$ac_cv_func_ffi_prep_cif_var" >&6; }
if test "x$ac_cv_func_ffi_prep_cif_var" = xyes
then :
-printf "%s\n" "#define HAVE_FFI_PREP_CIF_VAR 1" >>confdefs.h
+printf '%s\n' "#define HAVE_FFI_PREP_CIF_VAR 1" >>confdefs.h
fi
@@ -16270,7 +16350,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ffi_prep_closure_loc" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for ffi_prep_closure_loc" >&5
printf %s "checking for ffi_prep_closure_loc... " >&6; }
if test ${ac_cv_func_ffi_prep_closure_loc+y}
then :
@@ -16298,12 +16378,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_ffi_prep_closure_loc" >&5
-printf "%s\n" "$ac_cv_func_ffi_prep_closure_loc" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_ffi_prep_closure_loc" >&5
+printf '%s\n' "$ac_cv_func_ffi_prep_closure_loc" >&6; }
if test "x$ac_cv_func_ffi_prep_closure_loc" = xyes
then :
-printf "%s\n" "#define HAVE_FFI_PREP_CLOSURE_LOC 1" >>confdefs.h
+printf '%s\n' "#define HAVE_FFI_PREP_CLOSURE_LOC 1" >>confdefs.h
fi
@@ -16311,7 +16391,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ffi_closure_alloc" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for ffi_closure_alloc" >&5
printf %s "checking for ffi_closure_alloc... " >&6; }
if test ${ac_cv_func_ffi_closure_alloc+y}
then :
@@ -16339,12 +16419,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_ffi_closure_alloc" >&5
-printf "%s\n" "$ac_cv_func_ffi_closure_alloc" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_ffi_closure_alloc" >&5
+printf '%s\n' "$ac_cv_func_ffi_closure_alloc" >&6; }
if test "x$ac_cv_func_ffi_closure_alloc" = xyes
then :
-printf "%s\n" "#define HAVE_FFI_CLOSURE_ALLOC 1" >>confdefs.h
+printf '%s\n' "#define HAVE_FFI_CLOSURE_ALLOC 1" >>confdefs.h
fi
@@ -16365,7 +16445,7 @@ fi
# but real support was provided only in libffi v3.3.0.
# See https://github.com/python/cpython/issues/125206 for more details.
#
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking libffi has complex type support" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking libffi has complex type support" >&5
printf %s "checking libffi has complex type support... " >&6; }
if test ${ac_cv_ffi_complex_double_supported+y}
then :
@@ -16431,27 +16511,27 @@ LIBS=$save_LIBS
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_ffi_complex_double_supported" >&5
-printf "%s\n" "$ac_cv_ffi_complex_double_supported" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_ffi_complex_double_supported" >&5
+printf '%s\n' "$ac_cv_ffi_complex_double_supported" >&6; }
if test "$ac_cv_ffi_complex_double_supported" = "yes"; then
-printf "%s\n" "#define _Py_FFI_SUPPORT_C_COMPLEX 1" >>confdefs.h
+printf '%s\n' "#define _Py_FFI_SUPPORT_C_COMPLEX 1" >>confdefs.h
fi
pkg_failed=no
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for libmpdec >= 2.5.0" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for libmpdec >= 2.5.0" >&5
printf %s "checking for libmpdec >= 2.5.0... " >&6; }
if test -n "$LIBMPDEC_CFLAGS"; then
pkg_cv_LIBMPDEC_CFLAGS="$LIBMPDEC_CFLAGS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libmpdec >= 2.5.0\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libmpdec >= 2.5.0\""; } >&5
($PKG_CONFIG --exists --print-errors "libmpdec >= 2.5.0") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_LIBMPDEC_CFLAGS=`$PKG_CONFIG --cflags "libmpdec >= 2.5.0" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -16465,10 +16545,10 @@ if test -n "$LIBMPDEC_LIBS"; then
pkg_cv_LIBMPDEC_LIBS="$LIBMPDEC_LIBS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libmpdec >= 2.5.0\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libmpdec >= 2.5.0\""; } >&5
($PKG_CONFIG --exists --print-errors "libmpdec >= 2.5.0") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_LIBMPDEC_LIBS=`$PKG_CONFIG --libs "libmpdec >= 2.5.0" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -16482,8 +16562,8 @@ fi
if test $pkg_failed = yes; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
_pkg_short_errors_supported=yes
@@ -16511,7 +16591,7 @@ save_LIBS=$LIBS
if test "x$ac_cv_header_mpdecimal_h" = xyes
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for mpd_version in -lmpdec" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for mpd_version in -lmpdec" >&5
printf %s "checking for mpd_version in -lmpdec... " >&6; }
if test ${ac_cv_lib_mpdec_mpd_version+y}
then :
@@ -16552,8 +16632,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mpdec_mpd_version" >&5
-printf "%s\n" "$ac_cv_lib_mpdec_mpd_version" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mpdec_mpd_version" >&5
+printf '%s\n' "$ac_cv_lib_mpdec_mpd_version" >&6; }
if test "x$ac_cv_lib_mpdec_mpd_version" = xyes
then :
@@ -16611,8 +16691,8 @@ LIBS=$save_LIBS
elif test $pkg_failed = untried; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
save_CFLAGS=$CFLAGS
save_CPPFLAGS=$CPPFLAGS
@@ -16626,7 +16706,7 @@ save_LIBS=$LIBS
if test "x$ac_cv_header_mpdecimal_h" = xyes
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for mpd_version in -lmpdec" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for mpd_version in -lmpdec" >&5
printf %s "checking for mpd_version in -lmpdec... " >&6; }
if test ${ac_cv_lib_mpdec_mpd_version+y}
then :
@@ -16667,8 +16747,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mpdec_mpd_version" >&5
-printf "%s\n" "$ac_cv_lib_mpdec_mpd_version" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mpdec_mpd_version" >&5
+printf '%s\n' "$ac_cv_lib_mpdec_mpd_version" >&6; }
if test "x$ac_cv_lib_mpdec_mpd_version" = xyes
then :
@@ -16728,13 +16808,13 @@ LIBS=$save_LIBS
else
LIBMPDEC_CFLAGS=$pkg_cv_LIBMPDEC_CFLAGS
LIBMPDEC_LIBS=$pkg_cv_LIBMPDEC_LIBS
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
have_mpdec=yes
fi
# Check whether _decimal should use a coroutine-local or thread-local context
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-decimal-contextvar" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-decimal-contextvar" >&5
printf %s "checking for --with-decimal-contextvar... " >&6; }
# Check whether --with-decimal_contextvar was given.
@@ -16750,12 +16830,12 @@ fi
if test "$with_decimal_contextvar" != "no"
then
-printf "%s\n" "#define WITH_DECIMAL_CONTEXTVAR 1" >>confdefs.h
+printf '%s\n' "#define WITH_DECIMAL_CONTEXTVAR 1" >>confdefs.h
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $with_decimal_contextvar" >&5
-printf "%s\n" "$with_decimal_contextvar" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $with_decimal_contextvar" >&5
+printf '%s\n' "$with_decimal_contextvar" >&6; }
@@ -16773,17 +16853,17 @@ fi
pkg_failed=no
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sqlite3 >= 3.15.2" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for sqlite3 >= 3.15.2" >&5
printf %s "checking for sqlite3 >= 3.15.2... " >&6; }
if test -n "$LIBSQLITE3_CFLAGS"; then
pkg_cv_LIBSQLITE3_CFLAGS="$LIBSQLITE3_CFLAGS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"sqlite3 >= 3.15.2\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"sqlite3 >= 3.15.2\""; } >&5
($PKG_CONFIG --exists --print-errors "sqlite3 >= 3.15.2") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_LIBSQLITE3_CFLAGS=`$PKG_CONFIG --cflags "sqlite3 >= 3.15.2" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -16797,10 +16877,10 @@ if test -n "$LIBSQLITE3_LIBS"; then
pkg_cv_LIBSQLITE3_LIBS="$LIBSQLITE3_LIBS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"sqlite3 >= 3.15.2\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"sqlite3 >= 3.15.2\""; } >&5
($PKG_CONFIG --exists --print-errors "sqlite3 >= 3.15.2") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_LIBSQLITE3_LIBS=`$PKG_CONFIG --libs "sqlite3 >= 3.15.2" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -16814,8 +16894,8 @@ fi
if test $pkg_failed = yes; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
_pkg_short_errors_supported=yes
@@ -16836,8 +16916,8 @@ fi
elif test $pkg_failed = untried; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
LIBSQLITE3_CFLAGS=${LIBSQLITE3_CFLAGS-""}
LIBSQLITE3_LIBS=${LIBSQLITE3_LIBS-"-lsqlite3"}
@@ -16846,8 +16926,8 @@ printf "%s\n" "no" >&6; }
else
LIBSQLITE3_CFLAGS=$pkg_cv_LIBSQLITE3_CFLAGS
LIBSQLITE3_LIBS=$pkg_cv_LIBSQLITE3_LIBS
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
fi
as_fn_append LIBSQLITE3_CFLAGS ' -I$(srcdir)/Modules/_sqlite'
@@ -16892,7 +16972,7 @@ then :
have_supported_sqlite3=yes
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sqlite3_bind_double in -lsqlite3" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for sqlite3_bind_double in -lsqlite3" >&5
printf %s "checking for sqlite3_bind_double in -lsqlite3... " >&6; }
if test ${ac_cv_lib_sqlite3_sqlite3_bind_double+y}
then :
@@ -16933,11 +17013,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_bind_double" >&5
-printf "%s\n" "$ac_cv_lib_sqlite3_sqlite3_bind_double" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_bind_double" >&5
+printf '%s\n' "$ac_cv_lib_sqlite3_sqlite3_bind_double" >&6; }
if test "x$ac_cv_lib_sqlite3_sqlite3_bind_double" = xyes
then :
- printf "%s\n" "#define HAVE_LIBSQLITE3 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LIBSQLITE3 1" >>confdefs.h
LIBS="-lsqlite3 $LIBS"
@@ -16950,7 +17030,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sqlite3_column_decltype in -lsqlite3" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for sqlite3_column_decltype in -lsqlite3" >&5
printf %s "checking for sqlite3_column_decltype in -lsqlite3... " >&6; }
if test ${ac_cv_lib_sqlite3_sqlite3_column_decltype+y}
then :
@@ -16991,11 +17071,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_column_decltype" >&5
-printf "%s\n" "$ac_cv_lib_sqlite3_sqlite3_column_decltype" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_column_decltype" >&5
+printf '%s\n' "$ac_cv_lib_sqlite3_sqlite3_column_decltype" >&6; }
if test "x$ac_cv_lib_sqlite3_sqlite3_column_decltype" = xyes
then :
- printf "%s\n" "#define HAVE_LIBSQLITE3 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LIBSQLITE3 1" >>confdefs.h
LIBS="-lsqlite3 $LIBS"
@@ -17008,7 +17088,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sqlite3_column_double in -lsqlite3" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for sqlite3_column_double in -lsqlite3" >&5
printf %s "checking for sqlite3_column_double in -lsqlite3... " >&6; }
if test ${ac_cv_lib_sqlite3_sqlite3_column_double+y}
then :
@@ -17049,11 +17129,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_column_double" >&5
-printf "%s\n" "$ac_cv_lib_sqlite3_sqlite3_column_double" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_column_double" >&5
+printf '%s\n' "$ac_cv_lib_sqlite3_sqlite3_column_double" >&6; }
if test "x$ac_cv_lib_sqlite3_sqlite3_column_double" = xyes
then :
- printf "%s\n" "#define HAVE_LIBSQLITE3 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LIBSQLITE3 1" >>confdefs.h
LIBS="-lsqlite3 $LIBS"
@@ -17066,7 +17146,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sqlite3_complete in -lsqlite3" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for sqlite3_complete in -lsqlite3" >&5
printf %s "checking for sqlite3_complete in -lsqlite3... " >&6; }
if test ${ac_cv_lib_sqlite3_sqlite3_complete+y}
then :
@@ -17107,11 +17187,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_complete" >&5
-printf "%s\n" "$ac_cv_lib_sqlite3_sqlite3_complete" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_complete" >&5
+printf '%s\n' "$ac_cv_lib_sqlite3_sqlite3_complete" >&6; }
if test "x$ac_cv_lib_sqlite3_sqlite3_complete" = xyes
then :
- printf "%s\n" "#define HAVE_LIBSQLITE3 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LIBSQLITE3 1" >>confdefs.h
LIBS="-lsqlite3 $LIBS"
@@ -17124,7 +17204,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sqlite3_progress_handler in -lsqlite3" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for sqlite3_progress_handler in -lsqlite3" >&5
printf %s "checking for sqlite3_progress_handler in -lsqlite3... " >&6; }
if test ${ac_cv_lib_sqlite3_sqlite3_progress_handler+y}
then :
@@ -17165,11 +17245,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_progress_handler" >&5
-printf "%s\n" "$ac_cv_lib_sqlite3_sqlite3_progress_handler" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_progress_handler" >&5
+printf '%s\n' "$ac_cv_lib_sqlite3_sqlite3_progress_handler" >&6; }
if test "x$ac_cv_lib_sqlite3_sqlite3_progress_handler" = xyes
then :
- printf "%s\n" "#define HAVE_LIBSQLITE3 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LIBSQLITE3 1" >>confdefs.h
LIBS="-lsqlite3 $LIBS"
@@ -17182,7 +17262,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sqlite3_result_double in -lsqlite3" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for sqlite3_result_double in -lsqlite3" >&5
printf %s "checking for sqlite3_result_double in -lsqlite3... " >&6; }
if test ${ac_cv_lib_sqlite3_sqlite3_result_double+y}
then :
@@ -17223,11 +17303,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_result_double" >&5
-printf "%s\n" "$ac_cv_lib_sqlite3_sqlite3_result_double" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_result_double" >&5
+printf '%s\n' "$ac_cv_lib_sqlite3_sqlite3_result_double" >&6; }
if test "x$ac_cv_lib_sqlite3_sqlite3_result_double" = xyes
then :
- printf "%s\n" "#define HAVE_LIBSQLITE3 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LIBSQLITE3 1" >>confdefs.h
LIBS="-lsqlite3 $LIBS"
@@ -17240,7 +17320,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sqlite3_set_authorizer in -lsqlite3" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for sqlite3_set_authorizer in -lsqlite3" >&5
printf %s "checking for sqlite3_set_authorizer in -lsqlite3... " >&6; }
if test ${ac_cv_lib_sqlite3_sqlite3_set_authorizer+y}
then :
@@ -17281,11 +17361,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_set_authorizer" >&5
-printf "%s\n" "$ac_cv_lib_sqlite3_sqlite3_set_authorizer" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_set_authorizer" >&5
+printf '%s\n' "$ac_cv_lib_sqlite3_sqlite3_set_authorizer" >&6; }
if test "x$ac_cv_lib_sqlite3_sqlite3_set_authorizer" = xyes
then :
- printf "%s\n" "#define HAVE_LIBSQLITE3 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LIBSQLITE3 1" >>confdefs.h
LIBS="-lsqlite3 $LIBS"
@@ -17298,7 +17378,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sqlite3_trace_v2 in -lsqlite3" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for sqlite3_trace_v2 in -lsqlite3" >&5
printf %s "checking for sqlite3_trace_v2 in -lsqlite3... " >&6; }
if test ${ac_cv_lib_sqlite3_sqlite3_trace_v2+y}
then :
@@ -17339,11 +17419,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_trace_v2" >&5
-printf "%s\n" "$ac_cv_lib_sqlite3_sqlite3_trace_v2" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_trace_v2" >&5
+printf '%s\n' "$ac_cv_lib_sqlite3_sqlite3_trace_v2" >&6; }
if test "x$ac_cv_lib_sqlite3_sqlite3_trace_v2" = xyes
then :
- printf "%s\n" "#define HAVE_LIBSQLITE3 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LIBSQLITE3 1" >>confdefs.h
LIBS="-lsqlite3 $LIBS"
@@ -17351,7 +17431,7 @@ else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sqlite3_trace in -lsqlite3" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for sqlite3_trace in -lsqlite3" >&5
printf %s "checking for sqlite3_trace in -lsqlite3... " >&6; }
if test ${ac_cv_lib_sqlite3_sqlite3_trace+y}
then :
@@ -17392,11 +17472,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_trace" >&5
-printf "%s\n" "$ac_cv_lib_sqlite3_sqlite3_trace" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_trace" >&5
+printf '%s\n' "$ac_cv_lib_sqlite3_sqlite3_trace" >&6; }
if test "x$ac_cv_lib_sqlite3_sqlite3_trace" = xyes
then :
- printf "%s\n" "#define HAVE_LIBSQLITE3 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LIBSQLITE3 1" >>confdefs.h
LIBS="-lsqlite3 $LIBS"
@@ -17415,7 +17495,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sqlite3_value_double in -lsqlite3" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for sqlite3_value_double in -lsqlite3" >&5
printf %s "checking for sqlite3_value_double in -lsqlite3... " >&6; }
if test ${ac_cv_lib_sqlite3_sqlite3_value_double+y}
then :
@@ -17456,11 +17536,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_value_double" >&5
-printf "%s\n" "$ac_cv_lib_sqlite3_sqlite3_value_double" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_value_double" >&5
+printf '%s\n' "$ac_cv_lib_sqlite3_sqlite3_value_double" >&6; }
if test "x$ac_cv_lib_sqlite3_sqlite3_value_double" = xyes
then :
- printf "%s\n" "#define HAVE_LIBSQLITE3 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LIBSQLITE3 1" >>confdefs.h
LIBS="-lsqlite3 $LIBS"
@@ -17472,7 +17552,7 @@ esac
fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sqlite3_load_extension in -lsqlite3" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for sqlite3_load_extension in -lsqlite3" >&5
printf %s "checking for sqlite3_load_extension in -lsqlite3... " >&6; }
if test ${ac_cv_lib_sqlite3_sqlite3_load_extension+y}
then :
@@ -17513,8 +17593,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_load_extension" >&5
-printf "%s\n" "$ac_cv_lib_sqlite3_sqlite3_load_extension" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_load_extension" >&5
+printf '%s\n' "$ac_cv_lib_sqlite3_sqlite3_load_extension" >&6; }
if test "x$ac_cv_lib_sqlite3_sqlite3_load_extension" = xyes
then :
have_sqlite3_load_extension=yes
@@ -17524,7 +17604,7 @@ else case e in #(
esac
fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sqlite3_serialize in -lsqlite3" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for sqlite3_serialize in -lsqlite3" >&5
printf %s "checking for sqlite3_serialize in -lsqlite3... " >&6; }
if test ${ac_cv_lib_sqlite3_sqlite3_serialize+y}
then :
@@ -17565,13 +17645,13 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_serialize" >&5
-printf "%s\n" "$ac_cv_lib_sqlite3_sqlite3_serialize" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_serialize" >&5
+printf '%s\n' "$ac_cv_lib_sqlite3_sqlite3_serialize" >&6; }
if test "x$ac_cv_lib_sqlite3_sqlite3_serialize" = xyes
then :
-printf "%s\n" "#define PY_SQLITE_HAVE_SERIALIZE 1" >>confdefs.h
+printf '%s\n' "#define PY_SQLITE_HAVE_SERIALIZE 1" >>confdefs.h
fi
@@ -17595,7 +17675,7 @@ LIBS=$save_LIBS
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --enable-loadable-sqlite-extensions" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --enable-loadable-sqlite-extensions" >&5
printf %s "checking for --enable-loadable-sqlite-extensions... " >&6; }
# Check whether --enable-loadable-sqlite-extensions was given.
if test ${enable_loadable_sqlite_extensions+y}
@@ -17604,17 +17684,17 @@ then :
if test "x$have_sqlite3_load_extension" = xno
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: n/a" >&5
-printf "%s\n" "n/a" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: Your version of SQLite does not support loadable extensions" >&5
-printf "%s\n" "$as_me: WARNING: Your version of SQLite does not support loadable extensions" >&2;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: n/a" >&5
+printf '%s\n' "n/a" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: Your version of SQLite does not support loadable extensions" >&5
+printf '%s\n' "$as_me: WARNING: Your version of SQLite does not support loadable extensions" >&2;}
else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
-printf "%s\n" "#define PY_SQLITE_ENABLE_LOAD_EXTENSION 1" >>confdefs.h
+printf '%s\n' "#define PY_SQLITE_ENABLE_LOAD_EXTENSION 1" >>confdefs.h
;;
esac
@@ -17622,8 +17702,8 @@ fi
else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
;;
esac
@@ -17639,25 +17719,25 @@ for _QUERY in \
"tcl85 >= 8.5.12 tk85 >= 8.5.12" \
; do
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$_QUERY\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$_QUERY\""; } >&5
($PKG_CONFIG --exists --print-errors "$_QUERY") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_failed=no
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $_QUERY" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $_QUERY" >&5
printf %s "checking for $_QUERY... " >&6; }
if test -n "$TCLTK_CFLAGS"; then
pkg_cv_TCLTK_CFLAGS="$TCLTK_CFLAGS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$_QUERY\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$_QUERY\""; } >&5
($PKG_CONFIG --exists --print-errors "$_QUERY") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_TCLTK_CFLAGS=`$PKG_CONFIG --cflags "$_QUERY" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -17671,10 +17751,10 @@ if test -n "$TCLTK_LIBS"; then
pkg_cv_TCLTK_LIBS="$TCLTK_LIBS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$_QUERY\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$_QUERY\""; } >&5
($PKG_CONFIG --exists --print-errors "$_QUERY") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_TCLTK_LIBS=`$PKG_CONFIG --libs "$_QUERY" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -17688,8 +17768,8 @@ fi
if test $pkg_failed = yes; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
_pkg_short_errors_supported=yes
@@ -17706,14 +17786,14 @@ fi
found_tcltk=no
elif test $pkg_failed = untried; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
found_tcltk=no
else
TCLTK_CFLAGS=$pkg_cv_TCLTK_CFLAGS
TCLTK_LIBS=$pkg_cv_TCLTK_LIBS
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
found_tcltk=yes
fi
@@ -17736,25 +17816,25 @@ case $ac_sys_system in #(
FreeBSD*) :
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"x11\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"x11\""; } >&5
($PKG_CONFIG --exists --print-errors "x11") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_failed=no
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for x11" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for x11" >&5
printf %s "checking for x11... " >&6; }
if test -n "$X11_CFLAGS"; then
pkg_cv_X11_CFLAGS="$X11_CFLAGS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"x11\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"x11\""; } >&5
($PKG_CONFIG --exists --print-errors "x11") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_X11_CFLAGS=`$PKG_CONFIG --cflags "x11" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -17768,10 +17848,10 @@ if test -n "$X11_LIBS"; then
pkg_cv_X11_LIBS="$X11_LIBS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"x11\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"x11\""; } >&5
($PKG_CONFIG --exists --print-errors "x11") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_X11_LIBS=`$PKG_CONFIG --libs "x11" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -17785,8 +17865,8 @@ fi
if test $pkg_failed = yes; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
_pkg_short_errors_supported=yes
@@ -17812,10 +17892,10 @@ Alternatively, you may set the environment variables X11_CFLAGS
and X11_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details." "$LINENO" 5
elif test $pkg_failed = untried; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
+printf '%s\n' "$as_me: error: in '$ac_pwd':" >&2;}
as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it
is in your PATH or set the PKG_CONFIG environment variable to the full
path to pkg-config.
@@ -17829,8 +17909,8 @@ See 'config.log' for more details" "$LINENO" 5; }
else
X11_CFLAGS=$pkg_cv_X11_CFLAGS
X11_LIBS=$pkg_cv_X11_LIBS
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
TCLTK_CFLAGS="$TCLTK_CFLAGS $X11_CFLAGS"
TCLTK_LIBS="$TCLTK_LIBS $X11_LIBS"
@@ -17924,9 +18004,9 @@ do :
ac_fn_c_check_header_compile "$LINENO" "gdbm.h" "ac_cv_header_gdbm_h" "$ac_includes_default"
if test "x$ac_cv_header_gdbm_h" = xyes
then :
- printf "%s\n" "#define HAVE_GDBM_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GDBM_H 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gdbm_open in -lgdbm" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for gdbm_open in -lgdbm" >&5
printf %s "checking for gdbm_open in -lgdbm... " >&6; }
if test ${ac_cv_lib_gdbm_gdbm_open+y}
then :
@@ -17967,8 +18047,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gdbm_gdbm_open" >&5
-printf "%s\n" "$ac_cv_lib_gdbm_gdbm_open" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gdbm_gdbm_open" >&5
+printf '%s\n' "$ac_cv_lib_gdbm_gdbm_open" >&6; }
if test "x$ac_cv_lib_gdbm_gdbm_open" = xyes
then :
@@ -18000,7 +18080,7 @@ do :
ac_fn_c_check_header_compile "$LINENO" "ndbm.h" "ac_cv_header_ndbm_h" "$ac_includes_default"
if test "x$ac_cv_header_ndbm_h" = xyes
then :
- printf "%s\n" "#define HAVE_NDBM_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_NDBM_H 1" >>confdefs.h
save_CFLAGS=$CFLAGS
save_CPPFLAGS=$CPPFLAGS
@@ -18008,7 +18088,7 @@ save_LDFLAGS=$LDFLAGS
save_LIBS=$LIBS
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing dbm_open" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for library containing dbm_open" >&5
printf %s "checking for library containing dbm_open... " >&6; }
if test ${ac_cv_search_dbm_open+y}
then :
@@ -18066,8 +18146,8 @@ rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_dbm_open" >&5
-printf "%s\n" "$ac_cv_search_dbm_open" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_dbm_open" >&5
+printf '%s\n' "$ac_cv_search_dbm_open" >&6; }
ac_res=$ac_cv_search_dbm_open
if test "$ac_res" != no
then :
@@ -18087,7 +18167,7 @@ fi
done
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ndbm presence and linker args" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for ndbm presence and linker args" >&5
printf %s "checking for ndbm presence and linker args... " >&6; }
case $ac_cv_search_dbm_open in #(
*ndbm*|*gdbm_compat*) :
@@ -18106,10 +18186,10 @@ case $ac_cv_search_dbm_open in #(
*) :
;;
esac
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $have_ndbm ($dbm_ndbm)" >&5
-printf "%s\n" "$have_ndbm ($dbm_ndbm)" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $have_ndbm ($dbm_ndbm)" >&5
+printf '%s\n' "$have_ndbm ($dbm_ndbm)" >&6; }
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gdbm/ndbm.h" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for gdbm/ndbm.h" >&5
printf %s "checking for gdbm/ndbm.h... " >&6; }
if test ${ac_cv_header_gdbm_slash_ndbm_h+y}
then :
@@ -18129,18 +18209,18 @@ fi
rm -f conftest.err conftest.i conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_gdbm_slash_ndbm_h" >&5
-printf "%s\n" "$ac_cv_header_gdbm_slash_ndbm_h" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_gdbm_slash_ndbm_h" >&5
+printf '%s\n' "$ac_cv_header_gdbm_slash_ndbm_h" >&6; }
if test "x$ac_cv_header_gdbm_slash_ndbm_h" = xyes
then :
-printf "%s\n" "#define HAVE_GDBM_NDBM_H 1" >>confdefs.h
+printf '%s\n' "#define HAVE_GDBM_NDBM_H 1" >>confdefs.h
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gdbm-ndbm.h" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for gdbm-ndbm.h" >&5
printf %s "checking for gdbm-ndbm.h... " >&6; }
if test ${ac_cv_header_gdbm_dash_ndbm_h+y}
then :
@@ -18160,13 +18240,13 @@ fi
rm -f conftest.err conftest.i conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_gdbm_dash_ndbm_h" >&5
-printf "%s\n" "$ac_cv_header_gdbm_dash_ndbm_h" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_gdbm_dash_ndbm_h" >&5
+printf '%s\n' "$ac_cv_header_gdbm_dash_ndbm_h" >&6; }
if test "x$ac_cv_header_gdbm_dash_ndbm_h" = xyes
then :
-printf "%s\n" "#define HAVE_GDBM_DASH_NDBM_H 1" >>confdefs.h
+printf '%s\n' "#define HAVE_GDBM_DASH_NDBM_H 1" >>confdefs.h
fi
@@ -18179,7 +18259,7 @@ save_LDFLAGS=$LDFLAGS
save_LIBS=$LIBS
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing dbm_open" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for library containing dbm_open" >&5
printf %s "checking for library containing dbm_open... " >&6; }
if test ${ac_cv_search_dbm_open+y}
then :
@@ -18237,8 +18317,8 @@ rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_dbm_open" >&5
-printf "%s\n" "$ac_cv_search_dbm_open" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_dbm_open" >&5
+printf '%s\n' "$ac_cv_search_dbm_open" >&6; }
ac_res=$ac_cv_search_dbm_open
if test "$ac_res" != no
then :
@@ -18265,9 +18345,9 @@ do :
ac_fn_c_check_header_compile "$LINENO" "db.h" "ac_cv_header_db_h" "$ac_includes_default"
if test "x$ac_cv_header_db_h" = xyes
then :
- printf "%s\n" "#define HAVE_DB_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_DB_H 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for libdb" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for libdb" >&5
printf %s "checking for libdb... " >&6; }
if test ${ac_cv_have_libdb+y}
then :
@@ -18318,13 +18398,13 @@ LIBS=$save_LIBS
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_libdb" >&5
-printf "%s\n" "$ac_cv_have_libdb" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_libdb" >&5
+printf '%s\n' "$ac_cv_have_libdb" >&6; }
if test "x$ac_cv_have_libdb" = xyes
then :
-printf "%s\n" "#define HAVE_LIBDB 1" >>confdefs.h
+printf '%s\n' "#define HAVE_LIBDB 1" >>confdefs.h
fi
@@ -18334,7 +18414,7 @@ fi
done
# Check for --with-dbmliborder
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-dbmliborder" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-dbmliborder" >&5
printf %s "checking for --with-dbmliborder... " >&6; }
# Check whether --with-dbmliborder was given.
@@ -18370,10 +18450,10 @@ then :
as_fn_error $? "proper usage is --with-dbmliborder=db1:db2:... (gdbm:ndbm:bdb)" "$LINENO" 5
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $with_dbmliborder" >&5
-printf "%s\n" "$with_dbmliborder" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $with_dbmliborder" >&5
+printf '%s\n' "$with_dbmliborder" >&6; }
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for _dbm module CFLAGS and LIBS" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for _dbm module CFLAGS and LIBS" >&5
printf %s "checking for _dbm module CFLAGS and LIBS... " >&6; }
have_dbm=no
as_save_IFS=$IFS
@@ -18407,8 +18487,8 @@ for db in $with_dbmliborder; do
esac
done
IFS=$as_save_IFS
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $DBM_CFLAGS $DBM_LIBS" >&5
-printf "%s\n" "$DBM_CFLAGS $DBM_LIBS" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $DBM_CFLAGS $DBM_LIBS" >&5
+printf '%s\n' "$DBM_CFLAGS $DBM_LIBS" >&6; }
# Templates for things AC_DEFINEd more than once.
# For a single AC_DEFINE, no template is needed.
@@ -18417,7 +18497,7 @@ printf "%s\n" "$DBM_CFLAGS $DBM_LIBS" >&6; }
if test "$ac_cv_pthread_is_default" = yes
then
# Defining _REENTRANT on system with POSIX threads should not hurt.
- printf "%s\n" "#define _REENTRANT 1" >>confdefs.h
+ printf '%s\n' "#define _REENTRANT 1" >>confdefs.h
posix_threads=yes
if test "$ac_sys_system" = "SunOS"; then
@@ -18452,10 +18532,10 @@ else
# According to the POSIX spec, a pthreads implementation must
# define _POSIX_THREADS in unistd.h. Some apparently don't
# (e.g. gnu pth with pthread emulation)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for _POSIX_THREADS in unistd.h" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for _POSIX_THREADS in unistd.h" >&5
printf %s "checking for _POSIX_THREADS in unistd.h... " >&6; }
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for _POSIX_THREADS defined in unistd.h" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for _POSIX_THREADS defined in unistd.h" >&5
printf %s "checking for _POSIX_THREADS defined in unistd.h... " >&6; }
if test ${ac_cv_defined__POSIX_THREADS_unistd_h+y}
then :
@@ -18489,8 +18569,8 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_defined__POSIX_THREADS_unistd_h" >&5
-printf "%s\n" "$ac_cv_defined__POSIX_THREADS_unistd_h" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_defined__POSIX_THREADS_unistd_h" >&5
+printf '%s\n' "$ac_cv_defined__POSIX_THREADS_unistd_h" >&6; }
if test $ac_cv_defined__POSIX_THREADS_unistd_h != "no"
then :
unistd_defines_pthreads=yes
@@ -18498,17 +18578,17 @@ else case e in #(
e) unistd_defines_pthreads=no ;;
esac
fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $unistd_defines_pthreads" >&5
-printf "%s\n" "$unistd_defines_pthreads" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $unistd_defines_pthreads" >&5
+printf '%s\n' "$unistd_defines_pthreads" >&6; }
- printf "%s\n" "#define _REENTRANT 1" >>confdefs.h
+ printf '%s\n' "#define _REENTRANT 1" >>confdefs.h
# Just looking for pthread_create in libpthread is not enough:
# on HP/UX, pthread.h renames pthread_create to a different symbol name.
# So we really have to include pthread.h, and then link.
_libs=$LIBS
LIBS="$LIBS -lpthread"
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for pthread_create in -lpthread" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for pthread_create in -lpthread" >&5
printf %s "checking for pthread_create in -lpthread... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -18530,8 +18610,8 @@ _ACEOF
if ac_fn_c_try_link "$LINENO"
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
posix_threads=yes
else case e in #(
@@ -18545,7 +18625,7 @@ then :
else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for pthread_create in -lpthreads" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for pthread_create in -lpthreads" >&5
printf %s "checking for pthread_create in -lpthreads... " >&6; }
if test ${ac_cv_lib_pthreads_pthread_create+y}
then :
@@ -18586,8 +18666,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthreads_pthread_create" >&5
-printf "%s\n" "$ac_cv_lib_pthreads_pthread_create" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthreads_pthread_create" >&5
+printf '%s\n' "$ac_cv_lib_pthreads_pthread_create" >&6; }
if test "x$ac_cv_lib_pthreads_pthread_create" = xyes
then :
@@ -18596,7 +18676,7 @@ then :
else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for pthread_create in -lc_r" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for pthread_create in -lc_r" >&5
printf %s "checking for pthread_create in -lc_r... " >&6; }
if test ${ac_cv_lib_c_r_pthread_create+y}
then :
@@ -18637,8 +18717,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_c_r_pthread_create" >&5
-printf "%s\n" "$ac_cv_lib_c_r_pthread_create" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_c_r_pthread_create" >&5
+printf '%s\n' "$ac_cv_lib_c_r_pthread_create" >&6; }
if test "x$ac_cv_lib_c_r_pthread_create" = xyes
then :
@@ -18647,7 +18727,7 @@ then :
else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for __pthread_create_system in -lpthread" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for __pthread_create_system in -lpthread" >&5
printf %s "checking for __pthread_create_system in -lpthread... " >&6; }
if test ${ac_cv_lib_pthread___pthread_create_system+y}
then :
@@ -18688,8 +18768,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread___pthread_create_system" >&5
-printf "%s\n" "$ac_cv_lib_pthread___pthread_create_system" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread___pthread_create_system" >&5
+printf '%s\n' "$ac_cv_lib_pthread___pthread_create_system" >&6; }
if test "x$ac_cv_lib_pthread___pthread_create_system" = xyes
then :
@@ -18698,7 +18778,7 @@ then :
else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for pthread_create in -lcma" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for pthread_create in -lcma" >&5
printf %s "checking for pthread_create in -lcma... " >&6; }
if test ${ac_cv_lib_cma_pthread_create+y}
then :
@@ -18739,8 +18819,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_cma_pthread_create" >&5
-printf "%s\n" "$ac_cv_lib_cma_pthread_create" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_cma_pthread_create" >&5
+printf '%s\n' "$ac_cv_lib_cma_pthread_create" >&6; }
if test "x$ac_cv_lib_cma_pthread_create" = xyes
then :
@@ -18777,7 +18857,7 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam \
conftest$ac_exeext conftest.$ac_ext
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for usconfig in -lmpc" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for usconfig in -lmpc" >&5
printf %s "checking for usconfig in -lmpc... " >&6; }
if test ${ac_cv_lib_mpc_usconfig+y}
then :
@@ -18818,8 +18898,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mpc_usconfig" >&5
-printf "%s\n" "$ac_cv_lib_mpc_usconfig" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mpc_usconfig" >&5
+printf '%s\n' "$ac_cv_lib_mpc_usconfig" >&6; }
if test "x$ac_cv_lib_mpc_usconfig" = xyes
then :
@@ -18833,31 +18913,31 @@ fi
if test "$posix_threads" = "yes"; then
if test "$unistd_defines_pthreads" = "no"; then
-printf "%s\n" "#define _POSIX_THREADS 1" >>confdefs.h
+printf '%s\n' "#define _POSIX_THREADS 1" >>confdefs.h
fi
# Bug 662787: Using semaphores causes unexplicable hangs on Solaris 8.
case $ac_sys_system/$ac_sys_release in
SunOS/5.6)
-printf "%s\n" "#define HAVE_PTHREAD_DESTRUCTOR 1" >>confdefs.h
+printf '%s\n' "#define HAVE_PTHREAD_DESTRUCTOR 1" >>confdefs.h
;;
SunOS/5.8)
-printf "%s\n" "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
+printf '%s\n' "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
;;
AIX/*)
-printf "%s\n" "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
+printf '%s\n' "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
;;
NetBSD/*)
-printf "%s\n" "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
+printf '%s\n' "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
;;
esac
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if PTHREAD_SCOPE_SYSTEM is supported" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking if PTHREAD_SCOPE_SYSTEM is supported" >&5
printf %s "checking if PTHREAD_SCOPE_SYSTEM is supported... " >&6; }
if test ${ac_cv_pthread_system_supported+y}
then :
@@ -18900,11 +18980,11 @@ fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_pthread_system_supported" >&5
-printf "%s\n" "$ac_cv_pthread_system_supported" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_pthread_system_supported" >&5
+printf '%s\n' "$ac_cv_pthread_system_supported" >&6; }
if test "$ac_cv_pthread_system_supported" = "yes"; then
-printf "%s\n" "#define PTHREAD_SYSTEM_SCHED_SUPPORTED 1" >>confdefs.h
+printf '%s\n' "#define PTHREAD_SYSTEM_SCHED_SUPPORTED 1" >>confdefs.h
fi
@@ -18913,11 +18993,11 @@ do :
ac_fn_c_check_func "$LINENO" "pthread_sigmask" "ac_cv_func_pthread_sigmask"
if test "x$ac_cv_func_pthread_sigmask" = xyes
then :
- printf "%s\n" "#define HAVE_PTHREAD_SIGMASK 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PTHREAD_SIGMASK 1" >>confdefs.h
case $ac_sys_system in
CYGWIN*)
-printf "%s\n" "#define HAVE_BROKEN_PTHREAD_SIGMASK 1" >>confdefs.h
+printf '%s\n' "#define HAVE_BROKEN_PTHREAD_SIGMASK 1" >>confdefs.h
;;
esac
@@ -18927,7 +19007,7 @@ done
ac_fn_c_check_func "$LINENO" "pthread_getcpuclockid" "ac_cv_func_pthread_getcpuclockid"
if test "x$ac_cv_func_pthread_getcpuclockid" = xyes
then :
- printf "%s\n" "#define HAVE_PTHREAD_GETCPUCLOCKID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PTHREAD_GETCPUCLOCKID 1" >>confdefs.h
fi
@@ -18937,27 +19017,27 @@ if test "x$posix_threads" = xstub
then :
-printf "%s\n" "#define HAVE_PTHREAD_STUBS 1" >>confdefs.h
+printf '%s\n' "#define HAVE_PTHREAD_STUBS 1" >>confdefs.h
fi
# Check for enable-ipv6
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if --enable-ipv6 is specified" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking if --enable-ipv6 is specified" >&5
printf %s "checking if --enable-ipv6 is specified... " >&6; }
# Check whether --enable-ipv6 was given.
if test ${enable_ipv6+y}
then :
enableval=$enable_ipv6; case "$enableval" in
no)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
ipv6=no
;;
- *) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
- printf "%s\n" "#define ENABLE_IPV6 1" >>confdefs.h
+ *) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
+ printf '%s\n' "#define ENABLE_IPV6 1" >>confdefs.h
ipv6=yes
;;
@@ -18998,11 +19078,11 @@ case $ac_sys_system in #(
;;
esac
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ipv6" >&5
-printf "%s\n" "$ipv6" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ipv6" >&5
+printf '%s\n' "$ipv6" >&6; }
if test "$ipv6" = "yes"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if RFC2553 API is available" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking if RFC2553 API is available" >&5
printf %s "checking if RFC2553 API is available... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -19022,14 +19102,14 @@ _ACEOF
if ac_fn_c_try_compile "$LINENO"
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
ipv6=yes
else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
ipv6=no
;;
esac
@@ -19038,7 +19118,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
fi
if test "$ipv6" = "yes"; then
- printf "%s\n" "#define ENABLE_IPV6 1" >>confdefs.h
+ printf '%s\n' "#define ENABLE_IPV6 1" >>confdefs.h
fi
;;
@@ -19056,7 +19136,7 @@ if test "$ipv6" = yes -a "$cross_compiling" = no; then
case $i in
inria)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for IPV6_INRIA_VERSION defined in netinet/in.h" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for IPV6_INRIA_VERSION defined in netinet/in.h" >&5
printf %s "checking for IPV6_INRIA_VERSION defined in netinet/in.h... " >&6; }
if test ${ac_cv_defined_IPV6_INRIA_VERSION_netinet_in_h+y}
then :
@@ -19090,8 +19170,8 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_defined_IPV6_INRIA_VERSION_netinet_in_h" >&5
-printf "%s\n" "$ac_cv_defined_IPV6_INRIA_VERSION_netinet_in_h" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_defined_IPV6_INRIA_VERSION_netinet_in_h" >&5
+printf '%s\n' "$ac_cv_defined_IPV6_INRIA_VERSION_netinet_in_h" >&6; }
if test $ac_cv_defined_IPV6_INRIA_VERSION_netinet_in_h != "no"
then :
ipv6type=$i
@@ -19099,7 +19179,7 @@ fi
;;
kame)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for __KAME__ defined in netinet/in.h" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for __KAME__ defined in netinet/in.h" >&5
printf %s "checking for __KAME__ defined in netinet/in.h... " >&6; }
if test ${ac_cv_defined___KAME___netinet_in_h+y}
then :
@@ -19133,8 +19213,8 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_defined___KAME___netinet_in_h" >&5
-printf "%s\n" "$ac_cv_defined___KAME___netinet_in_h" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_defined___KAME___netinet_in_h" >&5
+printf '%s\n' "$ac_cv_defined___KAME___netinet_in_h" >&6; }
if test $ac_cv_defined___KAME___netinet_in_h != "no"
then :
ipv6type=$i
@@ -19145,7 +19225,7 @@ fi
;;
linux-glibc)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for __GLIBC__ defined in features.h" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for __GLIBC__ defined in features.h" >&5
printf %s "checking for __GLIBC__ defined in features.h... " >&6; }
if test ${ac_cv_defined___GLIBC___features_h+y}
then :
@@ -19179,8 +19259,8 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_defined___GLIBC___features_h" >&5
-printf "%s\n" "$ac_cv_defined___GLIBC___features_h" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_defined___GLIBC___features_h" >&5
+printf '%s\n' "$ac_cv_defined___GLIBC___features_h" >&6; }
if test $ac_cv_defined___GLIBC___features_h != "no"
then :
ipv6type=$i
@@ -19205,7 +19285,7 @@ fi
;;
toshiba)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for _TOSHIBA_INET6 defined in sys/param.h" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for _TOSHIBA_INET6 defined in sys/param.h" >&5
printf %s "checking for _TOSHIBA_INET6 defined in sys/param.h... " >&6; }
if test ${ac_cv_defined__TOSHIBA_INET6_sys_param_h+y}
then :
@@ -19239,8 +19319,8 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_defined__TOSHIBA_INET6_sys_param_h" >&5
-printf "%s\n" "$ac_cv_defined__TOSHIBA_INET6_sys_param_h" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_defined__TOSHIBA_INET6_sys_param_h" >&5
+printf '%s\n' "$ac_cv_defined__TOSHIBA_INET6_sys_param_h" >&6; }
if test $ac_cv_defined__TOSHIBA_INET6_sys_param_h != "no"
then :
ipv6type=$i
@@ -19250,7 +19330,7 @@ fi
;;
v6d)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for __V6D__ defined in /usr/local/v6/include/sys/v6config.h" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for __V6D__ defined in /usr/local/v6/include/sys/v6config.h" >&5
printf %s "checking for __V6D__ defined in /usr/local/v6/include/sys/v6config.h... " >&6; }
if test ${ac_cv_defined___V6D____usr_local_v6_include_sys_v6config_h+y}
then :
@@ -19284,8 +19364,8 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_defined___V6D____usr_local_v6_include_sys_v6config_h" >&5
-printf "%s\n" "$ac_cv_defined___V6D____usr_local_v6_include_sys_v6config_h" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_defined___V6D____usr_local_v6_include_sys_v6config_h" >&5
+printf '%s\n' "$ac_cv_defined___V6D____usr_local_v6_include_sys_v6config_h" >&6; }
if test $ac_cv_defined___V6D____usr_local_v6_include_sys_v6config_h != "no"
then :
ipv6type=$i
@@ -19296,7 +19376,7 @@ fi
;;
zeta)
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for _ZETA_MINAMI_INET6 defined in sys/param.h" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for _ZETA_MINAMI_INET6 defined in sys/param.h" >&5
printf %s "checking for _ZETA_MINAMI_INET6 defined in sys/param.h... " >&6; }
if test ${ac_cv_defined__ZETA_MINAMI_INET6_sys_param_h+y}
then :
@@ -19330,8 +19410,8 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_defined__ZETA_MINAMI_INET6_sys_param_h" >&5
-printf "%s\n" "$ac_cv_defined__ZETA_MINAMI_INET6_sys_param_h" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_defined__ZETA_MINAMI_INET6_sys_param_h" >&5
+printf '%s\n' "$ac_cv_defined__ZETA_MINAMI_INET6_sys_param_h" >&6; }
if test $ac_cv_defined__ZETA_MINAMI_INET6_sys_param_h != "no"
then :
ipv6type=$i
@@ -19344,25 +19424,25 @@ fi
break
fi
done
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking ipv6 stack type" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking ipv6 stack type" >&5
printf %s "checking ipv6 stack type... " >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ipv6type" >&5
-printf "%s\n" "$ipv6type" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ipv6type" >&5
+printf '%s\n' "$ipv6type" >&6; }
fi
if test "$ipv6" = "yes" -a "$ipv6lib" != "none"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking ipv6 library" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking ipv6 library" >&5
printf %s "checking ipv6 library... " >&6; }
if test -d $ipv6libdir -a -f $ipv6libdir/lib$ipv6lib.a; then
LIBS="-L$ipv6libdir -l$ipv6lib $LIBS"
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: lib$ipv6lib" >&5
-printf "%s\n" "lib$ipv6lib" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: lib$ipv6lib" >&5
+printf '%s\n' "lib$ipv6lib" >&6; }
else
if test "x$ipv6trylibc" = xyes
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: libc" >&5
-printf "%s\n" "libc" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: libc" >&5
+printf '%s\n' "libc" >&6; }
else case e in #(
e)
@@ -19374,7 +19454,7 @@ fi
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking CAN_RAW_FD_FRAMES" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking CAN_RAW_FD_FRAMES" >&5
printf %s "checking CAN_RAW_FD_FRAMES... " >&6; }
if test ${ac_cv_can_raw_fd_frames+y}
then :
@@ -19404,18 +19484,18 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_can_raw_fd_frames" >&5
-printf "%s\n" "$ac_cv_can_raw_fd_frames" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_can_raw_fd_frames" >&5
+printf '%s\n' "$ac_cv_can_raw_fd_frames" >&6; }
if test "x$ac_cv_can_raw_fd_frames" = xyes
then :
-printf "%s\n" "#define HAVE_LINUX_CAN_RAW_FD_FRAMES 1" >>confdefs.h
+printf '%s\n' "#define HAVE_LINUX_CAN_RAW_FD_FRAMES 1" >>confdefs.h
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for CAN_RAW_JOIN_FILTERS" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for CAN_RAW_JOIN_FILTERS" >&5
printf %s "checking for CAN_RAW_JOIN_FILTERS... " >&6; }
if test ${ac_cv_can_raw_join_filters+y}
then :
@@ -19445,19 +19525,19 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_can_raw_join_filters" >&5
-printf "%s\n" "$ac_cv_can_raw_join_filters" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_can_raw_join_filters" >&5
+printf '%s\n' "$ac_cv_can_raw_join_filters" >&6; }
if test "x$ac_cv_can_raw_join_filters" = xyes
then :
-printf "%s\n" "#define HAVE_LINUX_CAN_RAW_JOIN_FILTERS 1" >>confdefs.h
+printf '%s\n' "#define HAVE_LINUX_CAN_RAW_JOIN_FILTERS 1" >>confdefs.h
fi
# Check for --with-doc-strings
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-doc-strings" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-doc-strings" >&5
printf %s "checking for --with-doc-strings... " >&6; }
# Check whether --with-doc-strings was given.
@@ -19473,14 +19553,14 @@ fi
if test "$with_doc_strings" != "no"
then
-printf "%s\n" "#define WITH_DOC_STRINGS 1" >>confdefs.h
+printf '%s\n' "#define WITH_DOC_STRINGS 1" >>confdefs.h
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $with_doc_strings" >&5
-printf "%s\n" "$with_doc_strings" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $with_doc_strings" >&5
+printf '%s\n' "$with_doc_strings" >&6; }
# Check for stdatomic.h, required for mimalloc.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for stdatomic.h" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for stdatomic.h" >&5
printf %s "checking for stdatomic.h... " >&6; }
if test ${ac_cv_header_stdatomic_h+y}
then :
@@ -19515,20 +19595,20 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdatomic_h" >&5
-printf "%s\n" "$ac_cv_header_stdatomic_h" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdatomic_h" >&5
+printf '%s\n' "$ac_cv_header_stdatomic_h" >&6; }
if test "x$ac_cv_header_stdatomic_h" = xyes
then :
-printf "%s\n" "#define HAVE_STD_ATOMIC 1" >>confdefs.h
+printf '%s\n' "#define HAVE_STD_ATOMIC 1" >>confdefs.h
fi
# Check for GCC >= 4.7 and clang __atomic builtin functions
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for builtin __atomic_load_n and __atomic_store_n functions" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for builtin __atomic_load_n and __atomic_store_n functions" >&5
printf %s "checking for builtin __atomic_load_n and __atomic_store_n functions... " >&6; }
if test ${ac_cv_builtin_atomic+y}
then :
@@ -19560,14 +19640,14 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_builtin_atomic" >&5
-printf "%s\n" "$ac_cv_builtin_atomic" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_builtin_atomic" >&5
+printf '%s\n' "$ac_cv_builtin_atomic" >&6; }
if test "x$ac_cv_builtin_atomic" = xyes
then :
-printf "%s\n" "#define HAVE_BUILTIN_ATOMIC 1" >>confdefs.h
+printf '%s\n' "#define HAVE_BUILTIN_ATOMIC 1" >>confdefs.h
fi
@@ -19575,7 +19655,7 @@ fi
# Check for __builtin_shufflevector with 128-bit vector support on an
# architecture where it compiles to worthwhile native SIMD instructions.
# Used for SIMD-accelerated bytes.hex() in Python/pystrhex.c.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for __builtin_shufflevector" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for __builtin_shufflevector" >&5
printf %s "checking for __builtin_shufflevector... " >&6; }
if test ${ac_cv_efficient_builtin_shufflevector+y}
then :
@@ -19626,20 +19706,20 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_efficient_builtin_shufflevector" >&5
-printf "%s\n" "$ac_cv_efficient_builtin_shufflevector" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_efficient_builtin_shufflevector" >&5
+printf '%s\n' "$ac_cv_efficient_builtin_shufflevector" >&6; }
if test "x$ac_cv_efficient_builtin_shufflevector" = xyes
then :
-printf "%s\n" "#define _Py_HAVE_EFFICIENT_BUILTIN_SHUFFLEVECTOR 1" >>confdefs.h
+printf '%s\n' "#define _Py_HAVE_EFFICIENT_BUILTIN_SHUFFLEVECTOR 1" >>confdefs.h
fi
# --with-mimalloc
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-mimalloc" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-mimalloc" >&5
printf %s "checking for --with-mimalloc... " >&6; }
# Check whether --with-mimalloc was given.
@@ -19660,7 +19740,7 @@ if test "$with_mimalloc" != no; then
fi
with_mimalloc=yes
-printf "%s\n" "#define WITH_MIMALLOC 1" >>confdefs.h
+printf '%s\n' "#define WITH_MIMALLOC 1" >>confdefs.h
MIMALLOC_HEADERS='$(MIMALLOC_HEADERS)'
@@ -19668,14 +19748,14 @@ elif test "$disable_gil" = "yes"; then
as_fn_error $? "--disable-gil requires mimalloc memory allocator (--with-mimalloc)." "$LINENO" 5
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $with_mimalloc" >&5
-printf "%s\n" "$with_mimalloc" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $with_mimalloc" >&5
+printf '%s\n' "$with_mimalloc" >&6; }
INSTALL_MIMALLOC=$with_mimalloc
# Check for Python-specific malloc support
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-pymalloc" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-pymalloc" >&5
printf %s "checking for --with-pymalloc... " >&6; }
# Check whether --with-pymalloc was given.
@@ -19700,13 +19780,13 @@ fi
if test "$with_pymalloc" != "no"
then
-printf "%s\n" "#define WITH_PYMALLOC 1" >>confdefs.h
+printf '%s\n' "#define WITH_PYMALLOC 1" >>confdefs.h
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $with_pymalloc" >&5
-printf "%s\n" "$with_pymalloc" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $with_pymalloc" >&5
+printf '%s\n' "$with_pymalloc" >&6; }
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-pymalloc-hugepages" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-pymalloc-hugepages" >&5
printf %s "checking for --with-pymalloc-hugepages... " >&6; }
# Check whether --with-pymalloc-hugepages was given.
@@ -19736,21 +19816,21 @@ _ACEOF
if ac_fn_c_try_compile "$LINENO"
then :
-printf "%s\n" "#define PYMALLOC_USE_HUGEPAGES 1" >>confdefs.h
+printf '%s\n' "#define PYMALLOC_USE_HUGEPAGES 1" >>confdefs.h
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: --with-pymalloc-hugepages requested but MAP_HUGETLB not found" >&5
-printf "%s\n" "$as_me: WARNING: --with-pymalloc-hugepages requested but MAP_HUGETLB not found" >&2;}
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: WARNING: --with-pymalloc-hugepages requested but MAP_HUGETLB not found" >&5
+printf '%s\n' "$as_me: WARNING: --with-pymalloc-hugepages requested but MAP_HUGETLB not found" >&2;}
with_pymalloc_hugepages=no ;;
esac
fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: ${with_pymalloc_hugepages:-no}" >&5
-printf "%s\n" "${with_pymalloc_hugepages:-no}" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: ${with_pymalloc_hugepages:-no}" >&5
+printf '%s\n' "${with_pymalloc_hugepages:-no}" >&6; }
# Check for --with-c-locale-coercion
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-c-locale-coercion" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-c-locale-coercion" >&5
printf %s "checking for --with-c-locale-coercion... " >&6; }
# Check whether --with-c-locale-coercion was given.
@@ -19767,14 +19847,14 @@ fi
if test "$with_c_locale_coercion" != "no"
then
-printf "%s\n" "#define PY_COERCE_C_LOCALE 1" >>confdefs.h
+printf '%s\n' "#define PY_COERCE_C_LOCALE 1" >>confdefs.h
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $with_c_locale_coercion" >&5
-printf "%s\n" "$with_c_locale_coercion" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $with_c_locale_coercion" >&5
+printf '%s\n' "$with_c_locale_coercion" >&6; }
# Check for Valgrind support
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-valgrind" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-valgrind" >&5
printf %s "checking for --with-valgrind... " >&6; }
# Check whether --with-valgrind was given.
@@ -19787,14 +19867,14 @@ else case e in #(
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $with_valgrind" >&5
-printf "%s\n" "$with_valgrind" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $with_valgrind" >&5
+printf '%s\n' "$with_valgrind" >&6; }
if test "$with_valgrind" != no; then
ac_fn_c_check_header_compile "$LINENO" "valgrind/valgrind.h" "ac_cv_header_valgrind_valgrind_h" "$ac_includes_default"
if test "x$ac_cv_header_valgrind_valgrind_h" = xyes
then :
-printf "%s\n" "#define WITH_VALGRIND 1" >>confdefs.h
+printf '%s\n' "#define WITH_VALGRIND 1" >>confdefs.h
else case e in #(
e) as_fn_error $? "Valgrind support requested but headers not available" "$LINENO" 5
@@ -19806,7 +19886,7 @@ fi
fi
# Check for DTrace support
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-dtrace" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-dtrace" >&5
printf %s "checking for --with-dtrace... " >&6; }
# Check whether --with-dtrace was given.
@@ -19818,8 +19898,8 @@ else case e in #(
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $with_dtrace" >&5
-printf "%s\n" "$with_dtrace" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $with_dtrace" >&5
+printf '%s\n' "$with_dtrace" >&6; }
@@ -19833,7 +19913,7 @@ if test "$with_dtrace" = "yes"
then
# Extract the first word of "dtrace", so it can be a program name with args.
set dummy dtrace; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_path_DTRACE+y}
then :
@@ -19856,7 +19936,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_path_DTRACE="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -19870,11 +19950,11 @@ esac
fi
DTRACE=$ac_cv_path_DTRACE
if test -n "$DTRACE"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $DTRACE" >&5
-printf "%s\n" "$DTRACE" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $DTRACE" >&5
+printf '%s\n' "$DTRACE" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -19882,7 +19962,7 @@ fi
as_fn_error $? "dtrace command not found on \$PATH" "$LINENO" 5
fi
-printf "%s\n" "#define WITH_DTRACE 1" >>confdefs.h
+printf '%s\n' "#define WITH_DTRACE 1" >>confdefs.h
DTRACE_HEADERS="Include/pydtrace_probes.h"
@@ -19893,7 +19973,7 @@ printf "%s\n" "#define WITH_DTRACE 1" >>confdefs.h
#
# NetBSD DTrace requires the -x nolibs flag to avoid system library conflicts
# and uses header generation for testing instead of object generation.
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether DTrace probes require linking" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether DTrace probes require linking" >&5
printf %s "checking whether DTrace probes require linking... " >&6; }
if test ${ac_cv_dtrace_link+y}
then :
@@ -19915,8 +19995,8 @@ else case e in #(
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_dtrace_link" >&5
-printf "%s\n" "$ac_cv_dtrace_link" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_dtrace_link" >&5
+printf '%s\n' "$ac_cv_dtrace_link" >&6; }
if test "$ac_cv_dtrace_link" = "yes"; then
DTRACE_OBJS="Python/pydtrace.o"
fi
@@ -19952,7 +20032,7 @@ DLINCLDIR=.
ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen"
if test "x$ac_cv_func_dlopen" = xyes
then :
- printf "%s\n" "#define HAVE_DLOPEN 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_DLOPEN 1" >>confdefs.h
fi
@@ -19960,7 +20040,7 @@ fi
# DYNLOADFILE specifies which dynload_*.o file we will use for dynamic
# loading of modules.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking DYNLOADFILE" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking DYNLOADFILE" >&5
printf %s "checking DYNLOADFILE... " >&6; }
if test -z "$DYNLOADFILE"
then
@@ -19976,19 +20056,19 @@ then
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $DYNLOADFILE" >&5
-printf "%s\n" "$DYNLOADFILE" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $DYNLOADFILE" >&5
+printf '%s\n' "$DYNLOADFILE" >&6; }
if test "$DYNLOADFILE" != "dynload_stub.o"
then
-printf "%s\n" "#define HAVE_DYNAMIC_LOADING 1" >>confdefs.h
+printf '%s\n' "#define HAVE_DYNAMIC_LOADING 1" >>confdefs.h
fi
# MACHDEP_OBJS can be set to platform-specific object files needed by Python
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking MACHDEP_OBJS" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking MACHDEP_OBJS" >&5
printf %s "checking MACHDEP_OBJS... " >&6; }
if test -z "$MACHDEP_OBJS"
then
@@ -19997,11 +20077,11 @@ else
MACHDEP_OBJS="$MACHDEP_OBJS $extra_machdep_objs"
fi
if test -z "$MACHDEP_OBJS"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none" >&5
-printf "%s\n" "none" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: none" >&5
+printf '%s\n' "none" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MACHDEP_OBJS" >&5
-printf "%s\n" "$MACHDEP_OBJS" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $MACHDEP_OBJS" >&5
+printf '%s\n' "$MACHDEP_OBJS" >&6; }
fi
if test "$ac_sys_system" = "Linux-android"; then
@@ -20022,7 +20102,7 @@ if test "$ac_sys_system" = "Linux-android"; then
fi
for name in $blocked_funcs; do
- as_func_var=`printf "%s\n" "ac_cv_func_$name" | sed "$as_sed_sh"`
+ as_func_var=`printf '%s\n' "ac_cv_func_$name" | sed "$as_sed_sh"`
eval "$as_func_var=no"
@@ -20033,1195 +20113,1195 @@ fi
ac_fn_c_check_func "$LINENO" "accept4" "ac_cv_func_accept4"
if test "x$ac_cv_func_accept4" = xyes
then :
- printf "%s\n" "#define HAVE_ACCEPT4 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_ACCEPT4 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "alarm" "ac_cv_func_alarm"
if test "x$ac_cv_func_alarm" = xyes
then :
- printf "%s\n" "#define HAVE_ALARM 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_ALARM 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset"
if test "x$ac_cv_func_bind_textdomain_codeset" = xyes
then :
- printf "%s\n" "#define HAVE_BIND_TEXTDOMAIN_CODESET 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_BIND_TEXTDOMAIN_CODESET 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "chmod" "ac_cv_func_chmod"
if test "x$ac_cv_func_chmod" = xyes
then :
- printf "%s\n" "#define HAVE_CHMOD 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_CHMOD 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "chown" "ac_cv_func_chown"
if test "x$ac_cv_func_chown" = xyes
then :
- printf "%s\n" "#define HAVE_CHOWN 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_CHOWN 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "clearenv" "ac_cv_func_clearenv"
if test "x$ac_cv_func_clearenv" = xyes
then :
- printf "%s\n" "#define HAVE_CLEARENV 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_CLEARENV 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "clock" "ac_cv_func_clock"
if test "x$ac_cv_func_clock" = xyes
then :
- printf "%s\n" "#define HAVE_CLOCK 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_CLOCK 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "closefrom" "ac_cv_func_closefrom"
if test "x$ac_cv_func_closefrom" = xyes
then :
- printf "%s\n" "#define HAVE_CLOSEFROM 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_CLOSEFROM 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "close_range" "ac_cv_func_close_range"
if test "x$ac_cv_func_close_range" = xyes
then :
- printf "%s\n" "#define HAVE_CLOSE_RANGE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_CLOSE_RANGE 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "confstr" "ac_cv_func_confstr"
if test "x$ac_cv_func_confstr" = xyes
then :
- printf "%s\n" "#define HAVE_CONFSTR 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_CONFSTR 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "copy_file_range" "ac_cv_func_copy_file_range"
if test "x$ac_cv_func_copy_file_range" = xyes
then :
- printf "%s\n" "#define HAVE_COPY_FILE_RANGE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_COPY_FILE_RANGE 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "ctermid" "ac_cv_func_ctermid"
if test "x$ac_cv_func_ctermid" = xyes
then :
- printf "%s\n" "#define HAVE_CTERMID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_CTERMID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "dladdr" "ac_cv_func_dladdr"
if test "x$ac_cv_func_dladdr" = xyes
then :
- printf "%s\n" "#define HAVE_DLADDR 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_DLADDR 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "dup" "ac_cv_func_dup"
if test "x$ac_cv_func_dup" = xyes
then :
- printf "%s\n" "#define HAVE_DUP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_DUP 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "execv" "ac_cv_func_execv"
if test "x$ac_cv_func_execv" = xyes
then :
- printf "%s\n" "#define HAVE_EXECV 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_EXECV 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "explicit_bzero" "ac_cv_func_explicit_bzero"
if test "x$ac_cv_func_explicit_bzero" = xyes
then :
- printf "%s\n" "#define HAVE_EXPLICIT_BZERO 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_EXPLICIT_BZERO 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "explicit_memset" "ac_cv_func_explicit_memset"
if test "x$ac_cv_func_explicit_memset" = xyes
then :
- printf "%s\n" "#define HAVE_EXPLICIT_MEMSET 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_EXPLICIT_MEMSET 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "faccessat" "ac_cv_func_faccessat"
if test "x$ac_cv_func_faccessat" = xyes
then :
- printf "%s\n" "#define HAVE_FACCESSAT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FACCESSAT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "fchmod" "ac_cv_func_fchmod"
if test "x$ac_cv_func_fchmod" = xyes
then :
- printf "%s\n" "#define HAVE_FCHMOD 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FCHMOD 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "fchmodat" "ac_cv_func_fchmodat"
if test "x$ac_cv_func_fchmodat" = xyes
then :
- printf "%s\n" "#define HAVE_FCHMODAT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FCHMODAT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "fchown" "ac_cv_func_fchown"
if test "x$ac_cv_func_fchown" = xyes
then :
- printf "%s\n" "#define HAVE_FCHOWN 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FCHOWN 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "fchownat" "ac_cv_func_fchownat"
if test "x$ac_cv_func_fchownat" = xyes
then :
- printf "%s\n" "#define HAVE_FCHOWNAT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FCHOWNAT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "fdopendir" "ac_cv_func_fdopendir"
if test "x$ac_cv_func_fdopendir" = xyes
then :
- printf "%s\n" "#define HAVE_FDOPENDIR 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FDOPENDIR 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "fdwalk" "ac_cv_func_fdwalk"
if test "x$ac_cv_func_fdwalk" = xyes
then :
- printf "%s\n" "#define HAVE_FDWALK 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FDWALK 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "fexecve" "ac_cv_func_fexecve"
if test "x$ac_cv_func_fexecve" = xyes
then :
- printf "%s\n" "#define HAVE_FEXECVE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FEXECVE 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "fork" "ac_cv_func_fork"
if test "x$ac_cv_func_fork" = xyes
then :
- printf "%s\n" "#define HAVE_FORK 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FORK 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "fork1" "ac_cv_func_fork1"
if test "x$ac_cv_func_fork1" = xyes
then :
- printf "%s\n" "#define HAVE_FORK1 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FORK1 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "fpathconf" "ac_cv_func_fpathconf"
if test "x$ac_cv_func_fpathconf" = xyes
then :
- printf "%s\n" "#define HAVE_FPATHCONF 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FPATHCONF 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "fstatat" "ac_cv_func_fstatat"
if test "x$ac_cv_func_fstatat" = xyes
then :
- printf "%s\n" "#define HAVE_FSTATAT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FSTATAT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "ftime" "ac_cv_func_ftime"
if test "x$ac_cv_func_ftime" = xyes
then :
- printf "%s\n" "#define HAVE_FTIME 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FTIME 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "ftruncate" "ac_cv_func_ftruncate"
if test "x$ac_cv_func_ftruncate" = xyes
then :
- printf "%s\n" "#define HAVE_FTRUNCATE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FTRUNCATE 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "futimens" "ac_cv_func_futimens"
if test "x$ac_cv_func_futimens" = xyes
then :
- printf "%s\n" "#define HAVE_FUTIMENS 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FUTIMENS 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "futimes" "ac_cv_func_futimes"
if test "x$ac_cv_func_futimes" = xyes
then :
- printf "%s\n" "#define HAVE_FUTIMES 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FUTIMES 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "futimesat" "ac_cv_func_futimesat"
if test "x$ac_cv_func_futimesat" = xyes
then :
- printf "%s\n" "#define HAVE_FUTIMESAT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FUTIMESAT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "gai_strerror" "ac_cv_func_gai_strerror"
if test "x$ac_cv_func_gai_strerror" = xyes
then :
- printf "%s\n" "#define HAVE_GAI_STRERROR 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GAI_STRERROR 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getegid" "ac_cv_func_getegid"
if test "x$ac_cv_func_getegid" = xyes
then :
- printf "%s\n" "#define HAVE_GETEGID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETEGID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "geteuid" "ac_cv_func_geteuid"
if test "x$ac_cv_func_geteuid" = xyes
then :
- printf "%s\n" "#define HAVE_GETEUID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETEUID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getgid" "ac_cv_func_getgid"
if test "x$ac_cv_func_getgid" = xyes
then :
- printf "%s\n" "#define HAVE_GETGID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETGID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getgrent" "ac_cv_func_getgrent"
if test "x$ac_cv_func_getgrent" = xyes
then :
- printf "%s\n" "#define HAVE_GETGRENT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETGRENT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getgrgid" "ac_cv_func_getgrgid"
if test "x$ac_cv_func_getgrgid" = xyes
then :
- printf "%s\n" "#define HAVE_GETGRGID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETGRGID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getgrgid_r" "ac_cv_func_getgrgid_r"
if test "x$ac_cv_func_getgrgid_r" = xyes
then :
- printf "%s\n" "#define HAVE_GETGRGID_R 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETGRGID_R 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getgrnam_r" "ac_cv_func_getgrnam_r"
if test "x$ac_cv_func_getgrnam_r" = xyes
then :
- printf "%s\n" "#define HAVE_GETGRNAM_R 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETGRNAM_R 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getgrouplist" "ac_cv_func_getgrouplist"
if test "x$ac_cv_func_getgrouplist" = xyes
then :
- printf "%s\n" "#define HAVE_GETGROUPLIST 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETGROUPLIST 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "gethostname" "ac_cv_func_gethostname"
if test "x$ac_cv_func_gethostname" = xyes
then :
- printf "%s\n" "#define HAVE_GETHOSTNAME 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETHOSTNAME 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getitimer" "ac_cv_func_getitimer"
if test "x$ac_cv_func_getitimer" = xyes
then :
- printf "%s\n" "#define HAVE_GETITIMER 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETITIMER 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getloadavg" "ac_cv_func_getloadavg"
if test "x$ac_cv_func_getloadavg" = xyes
then :
- printf "%s\n" "#define HAVE_GETLOADAVG 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETLOADAVG 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getlogin" "ac_cv_func_getlogin"
if test "x$ac_cv_func_getlogin" = xyes
then :
- printf "%s\n" "#define HAVE_GETLOGIN 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETLOGIN 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getlogin_r" "ac_cv_func_getlogin_r"
if test "x$ac_cv_func_getlogin_r" = xyes
then :
- printf "%s\n" "#define HAVE_GETLOGIN_R 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETLOGIN_R 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getpeername" "ac_cv_func_getpeername"
if test "x$ac_cv_func_getpeername" = xyes
then :
- printf "%s\n" "#define HAVE_GETPEERNAME 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETPEERNAME 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getpgid" "ac_cv_func_getpgid"
if test "x$ac_cv_func_getpgid" = xyes
then :
- printf "%s\n" "#define HAVE_GETPGID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETPGID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getpid" "ac_cv_func_getpid"
if test "x$ac_cv_func_getpid" = xyes
then :
- printf "%s\n" "#define HAVE_GETPID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETPID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getppid" "ac_cv_func_getppid"
if test "x$ac_cv_func_getppid" = xyes
then :
- printf "%s\n" "#define HAVE_GETPPID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETPPID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getpriority" "ac_cv_func_getpriority"
if test "x$ac_cv_func_getpriority" = xyes
then :
- printf "%s\n" "#define HAVE_GETPRIORITY 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETPRIORITY 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "_getpty" "ac_cv_func__getpty"
if test "x$ac_cv_func__getpty" = xyes
then :
- printf "%s\n" "#define HAVE__GETPTY 1" >>confdefs.h
+ printf '%s\n' "#define HAVE__GETPTY 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getpwent" "ac_cv_func_getpwent"
if test "x$ac_cv_func_getpwent" = xyes
then :
- printf "%s\n" "#define HAVE_GETPWENT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETPWENT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getpwnam_r" "ac_cv_func_getpwnam_r"
if test "x$ac_cv_func_getpwnam_r" = xyes
then :
- printf "%s\n" "#define HAVE_GETPWNAM_R 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETPWNAM_R 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getpwuid" "ac_cv_func_getpwuid"
if test "x$ac_cv_func_getpwuid" = xyes
then :
- printf "%s\n" "#define HAVE_GETPWUID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETPWUID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getpwuid_r" "ac_cv_func_getpwuid_r"
if test "x$ac_cv_func_getpwuid_r" = xyes
then :
- printf "%s\n" "#define HAVE_GETPWUID_R 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETPWUID_R 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getresgid" "ac_cv_func_getresgid"
if test "x$ac_cv_func_getresgid" = xyes
then :
- printf "%s\n" "#define HAVE_GETRESGID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETRESGID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getresuid" "ac_cv_func_getresuid"
if test "x$ac_cv_func_getresuid" = xyes
then :
- printf "%s\n" "#define HAVE_GETRESUID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETRESUID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getrusage" "ac_cv_func_getrusage"
if test "x$ac_cv_func_getrusage" = xyes
then :
- printf "%s\n" "#define HAVE_GETRUSAGE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETRUSAGE 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getsid" "ac_cv_func_getsid"
if test "x$ac_cv_func_getsid" = xyes
then :
- printf "%s\n" "#define HAVE_GETSID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETSID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getspent" "ac_cv_func_getspent"
if test "x$ac_cv_func_getspent" = xyes
then :
- printf "%s\n" "#define HAVE_GETSPENT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETSPENT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getspnam" "ac_cv_func_getspnam"
if test "x$ac_cv_func_getspnam" = xyes
then :
- printf "%s\n" "#define HAVE_GETSPNAM 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETSPNAM 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getuid" "ac_cv_func_getuid"
if test "x$ac_cv_func_getuid" = xyes
then :
- printf "%s\n" "#define HAVE_GETUID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETUID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getwd" "ac_cv_func_getwd"
if test "x$ac_cv_func_getwd" = xyes
then :
- printf "%s\n" "#define HAVE_GETWD 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETWD 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "grantpt" "ac_cv_func_grantpt"
if test "x$ac_cv_func_grantpt" = xyes
then :
- printf "%s\n" "#define HAVE_GRANTPT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GRANTPT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "if_nameindex" "ac_cv_func_if_nameindex"
if test "x$ac_cv_func_if_nameindex" = xyes
then :
- printf "%s\n" "#define HAVE_IF_NAMEINDEX 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_IF_NAMEINDEX 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "initgroups" "ac_cv_func_initgroups"
if test "x$ac_cv_func_initgroups" = xyes
then :
- printf "%s\n" "#define HAVE_INITGROUPS 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_INITGROUPS 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "kill" "ac_cv_func_kill"
if test "x$ac_cv_func_kill" = xyes
then :
- printf "%s\n" "#define HAVE_KILL 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_KILL 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "killpg" "ac_cv_func_killpg"
if test "x$ac_cv_func_killpg" = xyes
then :
- printf "%s\n" "#define HAVE_KILLPG 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_KILLPG 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "lchown" "ac_cv_func_lchown"
if test "x$ac_cv_func_lchown" = xyes
then :
- printf "%s\n" "#define HAVE_LCHOWN 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LCHOWN 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "linkat" "ac_cv_func_linkat"
if test "x$ac_cv_func_linkat" = xyes
then :
- printf "%s\n" "#define HAVE_LINKAT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LINKAT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "lockf" "ac_cv_func_lockf"
if test "x$ac_cv_func_lockf" = xyes
then :
- printf "%s\n" "#define HAVE_LOCKF 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LOCKF 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "lstat" "ac_cv_func_lstat"
if test "x$ac_cv_func_lstat" = xyes
then :
- printf "%s\n" "#define HAVE_LSTAT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LSTAT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "lutimes" "ac_cv_func_lutimes"
if test "x$ac_cv_func_lutimes" = xyes
then :
- printf "%s\n" "#define HAVE_LUTIMES 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LUTIMES 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "madvise" "ac_cv_func_madvise"
if test "x$ac_cv_func_madvise" = xyes
then :
- printf "%s\n" "#define HAVE_MADVISE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_MADVISE 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "mbrtowc" "ac_cv_func_mbrtowc"
if test "x$ac_cv_func_mbrtowc" = xyes
then :
- printf "%s\n" "#define HAVE_MBRTOWC 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_MBRTOWC 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "memrchr" "ac_cv_func_memrchr"
if test "x$ac_cv_func_memrchr" = xyes
then :
- printf "%s\n" "#define HAVE_MEMRCHR 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_MEMRCHR 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "mkdirat" "ac_cv_func_mkdirat"
if test "x$ac_cv_func_mkdirat" = xyes
then :
- printf "%s\n" "#define HAVE_MKDIRAT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_MKDIRAT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "mkfifo" "ac_cv_func_mkfifo"
if test "x$ac_cv_func_mkfifo" = xyes
then :
- printf "%s\n" "#define HAVE_MKFIFO 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_MKFIFO 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "mkfifoat" "ac_cv_func_mkfifoat"
if test "x$ac_cv_func_mkfifoat" = xyes
then :
- printf "%s\n" "#define HAVE_MKFIFOAT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_MKFIFOAT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "mknod" "ac_cv_func_mknod"
if test "x$ac_cv_func_mknod" = xyes
then :
- printf "%s\n" "#define HAVE_MKNOD 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_MKNOD 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "mknodat" "ac_cv_func_mknodat"
if test "x$ac_cv_func_mknodat" = xyes
then :
- printf "%s\n" "#define HAVE_MKNODAT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_MKNODAT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "mktime" "ac_cv_func_mktime"
if test "x$ac_cv_func_mktime" = xyes
then :
- printf "%s\n" "#define HAVE_MKTIME 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_MKTIME 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "mmap" "ac_cv_func_mmap"
if test "x$ac_cv_func_mmap" = xyes
then :
- printf "%s\n" "#define HAVE_MMAP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_MMAP 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "mremap" "ac_cv_func_mremap"
if test "x$ac_cv_func_mremap" = xyes
then :
- printf "%s\n" "#define HAVE_MREMAP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_MREMAP 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "nice" "ac_cv_func_nice"
if test "x$ac_cv_func_nice" = xyes
then :
- printf "%s\n" "#define HAVE_NICE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_NICE 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "openat" "ac_cv_func_openat"
if test "x$ac_cv_func_openat" = xyes
then :
- printf "%s\n" "#define HAVE_OPENAT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_OPENAT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "opendir" "ac_cv_func_opendir"
if test "x$ac_cv_func_opendir" = xyes
then :
- printf "%s\n" "#define HAVE_OPENDIR 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_OPENDIR 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "pathconf" "ac_cv_func_pathconf"
if test "x$ac_cv_func_pathconf" = xyes
then :
- printf "%s\n" "#define HAVE_PATHCONF 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PATHCONF 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "pause" "ac_cv_func_pause"
if test "x$ac_cv_func_pause" = xyes
then :
- printf "%s\n" "#define HAVE_PAUSE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PAUSE 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "pipe" "ac_cv_func_pipe"
if test "x$ac_cv_func_pipe" = xyes
then :
- printf "%s\n" "#define HAVE_PIPE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PIPE 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "plock" "ac_cv_func_plock"
if test "x$ac_cv_func_plock" = xyes
then :
- printf "%s\n" "#define HAVE_PLOCK 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PLOCK 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "poll" "ac_cv_func_poll"
if test "x$ac_cv_func_poll" = xyes
then :
- printf "%s\n" "#define HAVE_POLL 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_POLL 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "ppoll" "ac_cv_func_ppoll"
if test "x$ac_cv_func_ppoll" = xyes
then :
- printf "%s\n" "#define HAVE_PPOLL 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PPOLL 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "posix_fadvise" "ac_cv_func_posix_fadvise"
if test "x$ac_cv_func_posix_fadvise" = xyes
then :
- printf "%s\n" "#define HAVE_POSIX_FADVISE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_POSIX_FADVISE 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "posix_fallocate" "ac_cv_func_posix_fallocate"
if test "x$ac_cv_func_posix_fallocate" = xyes
then :
- printf "%s\n" "#define HAVE_POSIX_FALLOCATE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_POSIX_FALLOCATE 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "posix_openpt" "ac_cv_func_posix_openpt"
if test "x$ac_cv_func_posix_openpt" = xyes
then :
- printf "%s\n" "#define HAVE_POSIX_OPENPT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_POSIX_OPENPT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "posix_spawn" "ac_cv_func_posix_spawn"
if test "x$ac_cv_func_posix_spawn" = xyes
then :
- printf "%s\n" "#define HAVE_POSIX_SPAWN 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_POSIX_SPAWN 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "posix_spawnp" "ac_cv_func_posix_spawnp"
if test "x$ac_cv_func_posix_spawnp" = xyes
then :
- printf "%s\n" "#define HAVE_POSIX_SPAWNP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_POSIX_SPAWNP 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "posix_spawn_file_actions_addclosefrom_np" "ac_cv_func_posix_spawn_file_actions_addclosefrom_np"
if test "x$ac_cv_func_posix_spawn_file_actions_addclosefrom_np" = xyes
then :
- printf "%s\n" "#define HAVE_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSEFROM_NP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSEFROM_NP 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "pread" "ac_cv_func_pread"
if test "x$ac_cv_func_pread" = xyes
then :
- printf "%s\n" "#define HAVE_PREAD 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PREAD 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "preadv" "ac_cv_func_preadv"
if test "x$ac_cv_func_preadv" = xyes
then :
- printf "%s\n" "#define HAVE_PREADV 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PREADV 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "preadv2" "ac_cv_func_preadv2"
if test "x$ac_cv_func_preadv2" = xyes
then :
- printf "%s\n" "#define HAVE_PREADV2 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PREADV2 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "process_vm_readv" "ac_cv_func_process_vm_readv"
if test "x$ac_cv_func_process_vm_readv" = xyes
then :
- printf "%s\n" "#define HAVE_PROCESS_VM_READV 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PROCESS_VM_READV 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "pthread_cond_timedwait_relative_np" "ac_cv_func_pthread_cond_timedwait_relative_np"
if test "x$ac_cv_func_pthread_cond_timedwait_relative_np" = xyes
then :
- printf "%s\n" "#define HAVE_PTHREAD_COND_TIMEDWAIT_RELATIVE_NP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PTHREAD_COND_TIMEDWAIT_RELATIVE_NP 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "pthread_condattr_setclock" "ac_cv_func_pthread_condattr_setclock"
if test "x$ac_cv_func_pthread_condattr_setclock" = xyes
then :
- printf "%s\n" "#define HAVE_PTHREAD_CONDATTR_SETCLOCK 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PTHREAD_CONDATTR_SETCLOCK 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "pthread_init" "ac_cv_func_pthread_init"
if test "x$ac_cv_func_pthread_init" = xyes
then :
- printf "%s\n" "#define HAVE_PTHREAD_INIT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PTHREAD_INIT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "pthread_kill" "ac_cv_func_pthread_kill"
if test "x$ac_cv_func_pthread_kill" = xyes
then :
- printf "%s\n" "#define HAVE_PTHREAD_KILL 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PTHREAD_KILL 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "pthread_get_name_np" "ac_cv_func_pthread_get_name_np"
if test "x$ac_cv_func_pthread_get_name_np" = xyes
then :
- printf "%s\n" "#define HAVE_PTHREAD_GET_NAME_NP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PTHREAD_GET_NAME_NP 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "pthread_getname_np" "ac_cv_func_pthread_getname_np"
if test "x$ac_cv_func_pthread_getname_np" = xyes
then :
- printf "%s\n" "#define HAVE_PTHREAD_GETNAME_NP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PTHREAD_GETNAME_NP 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "pthread_set_name_np" "ac_cv_func_pthread_set_name_np"
if test "x$ac_cv_func_pthread_set_name_np" = xyes
then :
- printf "%s\n" "#define HAVE_PTHREAD_SET_NAME_NP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PTHREAD_SET_NAME_NP 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "pthread_setname_np" "ac_cv_func_pthread_setname_np"
if test "x$ac_cv_func_pthread_setname_np" = xyes
then :
- printf "%s\n" "#define HAVE_PTHREAD_SETNAME_NP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PTHREAD_SETNAME_NP 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "pthread_getattr_np" "ac_cv_func_pthread_getattr_np"
if test "x$ac_cv_func_pthread_getattr_np" = xyes
then :
- printf "%s\n" "#define HAVE_PTHREAD_GETATTR_NP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PTHREAD_GETATTR_NP 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "ptsname" "ac_cv_func_ptsname"
if test "x$ac_cv_func_ptsname" = xyes
then :
- printf "%s\n" "#define HAVE_PTSNAME 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PTSNAME 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "ptsname_r" "ac_cv_func_ptsname_r"
if test "x$ac_cv_func_ptsname_r" = xyes
then :
- printf "%s\n" "#define HAVE_PTSNAME_R 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PTSNAME_R 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "pwrite" "ac_cv_func_pwrite"
if test "x$ac_cv_func_pwrite" = xyes
then :
- printf "%s\n" "#define HAVE_PWRITE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PWRITE 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "pwritev" "ac_cv_func_pwritev"
if test "x$ac_cv_func_pwritev" = xyes
then :
- printf "%s\n" "#define HAVE_PWRITEV 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PWRITEV 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "pwritev2" "ac_cv_func_pwritev2"
if test "x$ac_cv_func_pwritev2" = xyes
then :
- printf "%s\n" "#define HAVE_PWRITEV2 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PWRITEV2 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "readlink" "ac_cv_func_readlink"
if test "x$ac_cv_func_readlink" = xyes
then :
- printf "%s\n" "#define HAVE_READLINK 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_READLINK 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "readlinkat" "ac_cv_func_readlinkat"
if test "x$ac_cv_func_readlinkat" = xyes
then :
- printf "%s\n" "#define HAVE_READLINKAT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_READLINKAT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "readv" "ac_cv_func_readv"
if test "x$ac_cv_func_readv" = xyes
then :
- printf "%s\n" "#define HAVE_READV 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_READV 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "realpath" "ac_cv_func_realpath"
if test "x$ac_cv_func_realpath" = xyes
then :
- printf "%s\n" "#define HAVE_REALPATH 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_REALPATH 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "renameat" "ac_cv_func_renameat"
if test "x$ac_cv_func_renameat" = xyes
then :
- printf "%s\n" "#define HAVE_RENAMEAT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_RENAMEAT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "rtpSpawn" "ac_cv_func_rtpSpawn"
if test "x$ac_cv_func_rtpSpawn" = xyes
then :
- printf "%s\n" "#define HAVE_RTPSPAWN 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_RTPSPAWN 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sched_get_priority_max" "ac_cv_func_sched_get_priority_max"
if test "x$ac_cv_func_sched_get_priority_max" = xyes
then :
- printf "%s\n" "#define HAVE_SCHED_GET_PRIORITY_MAX 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SCHED_GET_PRIORITY_MAX 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sched_rr_get_interval" "ac_cv_func_sched_rr_get_interval"
if test "x$ac_cv_func_sched_rr_get_interval" = xyes
then :
- printf "%s\n" "#define HAVE_SCHED_RR_GET_INTERVAL 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SCHED_RR_GET_INTERVAL 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sched_setaffinity" "ac_cv_func_sched_setaffinity"
if test "x$ac_cv_func_sched_setaffinity" = xyes
then :
- printf "%s\n" "#define HAVE_SCHED_SETAFFINITY 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SCHED_SETAFFINITY 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sched_setparam" "ac_cv_func_sched_setparam"
if test "x$ac_cv_func_sched_setparam" = xyes
then :
- printf "%s\n" "#define HAVE_SCHED_SETPARAM 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SCHED_SETPARAM 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sched_setscheduler" "ac_cv_func_sched_setscheduler"
if test "x$ac_cv_func_sched_setscheduler" = xyes
then :
- printf "%s\n" "#define HAVE_SCHED_SETSCHEDULER 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SCHED_SETSCHEDULER 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sem_clockwait" "ac_cv_func_sem_clockwait"
if test "x$ac_cv_func_sem_clockwait" = xyes
then :
- printf "%s\n" "#define HAVE_SEM_CLOCKWAIT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SEM_CLOCKWAIT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sem_getvalue" "ac_cv_func_sem_getvalue"
if test "x$ac_cv_func_sem_getvalue" = xyes
then :
- printf "%s\n" "#define HAVE_SEM_GETVALUE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SEM_GETVALUE 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sem_open" "ac_cv_func_sem_open"
if test "x$ac_cv_func_sem_open" = xyes
then :
- printf "%s\n" "#define HAVE_SEM_OPEN 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SEM_OPEN 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sem_timedwait" "ac_cv_func_sem_timedwait"
if test "x$ac_cv_func_sem_timedwait" = xyes
then :
- printf "%s\n" "#define HAVE_SEM_TIMEDWAIT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SEM_TIMEDWAIT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sem_unlink" "ac_cv_func_sem_unlink"
if test "x$ac_cv_func_sem_unlink" = xyes
then :
- printf "%s\n" "#define HAVE_SEM_UNLINK 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SEM_UNLINK 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sendfile" "ac_cv_func_sendfile"
if test "x$ac_cv_func_sendfile" = xyes
then :
- printf "%s\n" "#define HAVE_SENDFILE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SENDFILE 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "setegid" "ac_cv_func_setegid"
if test "x$ac_cv_func_setegid" = xyes
then :
- printf "%s\n" "#define HAVE_SETEGID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SETEGID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "seteuid" "ac_cv_func_seteuid"
if test "x$ac_cv_func_seteuid" = xyes
then :
- printf "%s\n" "#define HAVE_SETEUID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SETEUID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "setgid" "ac_cv_func_setgid"
if test "x$ac_cv_func_setgid" = xyes
then :
- printf "%s\n" "#define HAVE_SETGID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SETGID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sethostname" "ac_cv_func_sethostname"
if test "x$ac_cv_func_sethostname" = xyes
then :
- printf "%s\n" "#define HAVE_SETHOSTNAME 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SETHOSTNAME 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "setitimer" "ac_cv_func_setitimer"
if test "x$ac_cv_func_setitimer" = xyes
then :
- printf "%s\n" "#define HAVE_SETITIMER 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SETITIMER 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "setlocale" "ac_cv_func_setlocale"
if test "x$ac_cv_func_setlocale" = xyes
then :
- printf "%s\n" "#define HAVE_SETLOCALE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SETLOCALE 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "setpgid" "ac_cv_func_setpgid"
if test "x$ac_cv_func_setpgid" = xyes
then :
- printf "%s\n" "#define HAVE_SETPGID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SETPGID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "setpgrp" "ac_cv_func_setpgrp"
if test "x$ac_cv_func_setpgrp" = xyes
then :
- printf "%s\n" "#define HAVE_SETPGRP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SETPGRP 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "setpriority" "ac_cv_func_setpriority"
if test "x$ac_cv_func_setpriority" = xyes
then :
- printf "%s\n" "#define HAVE_SETPRIORITY 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SETPRIORITY 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "setregid" "ac_cv_func_setregid"
if test "x$ac_cv_func_setregid" = xyes
then :
- printf "%s\n" "#define HAVE_SETREGID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SETREGID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "setresgid" "ac_cv_func_setresgid"
if test "x$ac_cv_func_setresgid" = xyes
then :
- printf "%s\n" "#define HAVE_SETRESGID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SETRESGID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "setresuid" "ac_cv_func_setresuid"
if test "x$ac_cv_func_setresuid" = xyes
then :
- printf "%s\n" "#define HAVE_SETRESUID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SETRESUID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "setreuid" "ac_cv_func_setreuid"
if test "x$ac_cv_func_setreuid" = xyes
then :
- printf "%s\n" "#define HAVE_SETREUID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SETREUID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "setsid" "ac_cv_func_setsid"
if test "x$ac_cv_func_setsid" = xyes
then :
- printf "%s\n" "#define HAVE_SETSID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SETSID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "setuid" "ac_cv_func_setuid"
if test "x$ac_cv_func_setuid" = xyes
then :
- printf "%s\n" "#define HAVE_SETUID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SETUID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "setvbuf" "ac_cv_func_setvbuf"
if test "x$ac_cv_func_setvbuf" = xyes
then :
- printf "%s\n" "#define HAVE_SETVBUF 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SETVBUF 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "shutdown" "ac_cv_func_shutdown"
if test "x$ac_cv_func_shutdown" = xyes
then :
- printf "%s\n" "#define HAVE_SHUTDOWN 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SHUTDOWN 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sigaction" "ac_cv_func_sigaction"
if test "x$ac_cv_func_sigaction" = xyes
then :
- printf "%s\n" "#define HAVE_SIGACTION 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SIGACTION 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sigaltstack" "ac_cv_func_sigaltstack"
if test "x$ac_cv_func_sigaltstack" = xyes
then :
- printf "%s\n" "#define HAVE_SIGALTSTACK 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SIGALTSTACK 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sigfillset" "ac_cv_func_sigfillset"
if test "x$ac_cv_func_sigfillset" = xyes
then :
- printf "%s\n" "#define HAVE_SIGFILLSET 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SIGFILLSET 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "siginterrupt" "ac_cv_func_siginterrupt"
if test "x$ac_cv_func_siginterrupt" = xyes
then :
- printf "%s\n" "#define HAVE_SIGINTERRUPT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SIGINTERRUPT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sigpending" "ac_cv_func_sigpending"
if test "x$ac_cv_func_sigpending" = xyes
then :
- printf "%s\n" "#define HAVE_SIGPENDING 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SIGPENDING 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sigrelse" "ac_cv_func_sigrelse"
if test "x$ac_cv_func_sigrelse" = xyes
then :
- printf "%s\n" "#define HAVE_SIGRELSE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SIGRELSE 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sigtimedwait" "ac_cv_func_sigtimedwait"
if test "x$ac_cv_func_sigtimedwait" = xyes
then :
- printf "%s\n" "#define HAVE_SIGTIMEDWAIT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SIGTIMEDWAIT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sigwait" "ac_cv_func_sigwait"
if test "x$ac_cv_func_sigwait" = xyes
then :
- printf "%s\n" "#define HAVE_SIGWAIT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SIGWAIT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sigwaitinfo" "ac_cv_func_sigwaitinfo"
if test "x$ac_cv_func_sigwaitinfo" = xyes
then :
- printf "%s\n" "#define HAVE_SIGWAITINFO 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SIGWAITINFO 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "snprintf" "ac_cv_func_snprintf"
if test "x$ac_cv_func_snprintf" = xyes
then :
- printf "%s\n" "#define HAVE_SNPRINTF 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SNPRINTF 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "splice" "ac_cv_func_splice"
if test "x$ac_cv_func_splice" = xyes
then :
- printf "%s\n" "#define HAVE_SPLICE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SPLICE 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "strftime" "ac_cv_func_strftime"
if test "x$ac_cv_func_strftime" = xyes
then :
- printf "%s\n" "#define HAVE_STRFTIME 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_STRFTIME 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "strlcpy" "ac_cv_func_strlcpy"
if test "x$ac_cv_func_strlcpy" = xyes
then :
- printf "%s\n" "#define HAVE_STRLCPY 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_STRLCPY 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "strsignal" "ac_cv_func_strsignal"
if test "x$ac_cv_func_strsignal" = xyes
then :
- printf "%s\n" "#define HAVE_STRSIGNAL 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_STRSIGNAL 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "symlinkat" "ac_cv_func_symlinkat"
if test "x$ac_cv_func_symlinkat" = xyes
then :
- printf "%s\n" "#define HAVE_SYMLINKAT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYMLINKAT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sync" "ac_cv_func_sync"
if test "x$ac_cv_func_sync" = xyes
then :
- printf "%s\n" "#define HAVE_SYNC 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYNC 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sysconf" "ac_cv_func_sysconf"
if test "x$ac_cv_func_sysconf" = xyes
then :
- printf "%s\n" "#define HAVE_SYSCONF 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYSCONF 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "sysctlbyname" "ac_cv_func_sysctlbyname"
if test "x$ac_cv_func_sysctlbyname" = xyes
then :
- printf "%s\n" "#define HAVE_SYSCTLBYNAME 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYSCTLBYNAME 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "tcgetpgrp" "ac_cv_func_tcgetpgrp"
if test "x$ac_cv_func_tcgetpgrp" = xyes
then :
- printf "%s\n" "#define HAVE_TCGETPGRP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_TCGETPGRP 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "tcsetpgrp" "ac_cv_func_tcsetpgrp"
if test "x$ac_cv_func_tcsetpgrp" = xyes
then :
- printf "%s\n" "#define HAVE_TCSETPGRP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_TCSETPGRP 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "tempnam" "ac_cv_func_tempnam"
if test "x$ac_cv_func_tempnam" = xyes
then :
- printf "%s\n" "#define HAVE_TEMPNAM 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_TEMPNAM 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "timegm" "ac_cv_func_timegm"
if test "x$ac_cv_func_timegm" = xyes
then :
- printf "%s\n" "#define HAVE_TIMEGM 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_TIMEGM 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "times" "ac_cv_func_times"
if test "x$ac_cv_func_times" = xyes
then :
- printf "%s\n" "#define HAVE_TIMES 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_TIMES 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "tmpfile" "ac_cv_func_tmpfile"
if test "x$ac_cv_func_tmpfile" = xyes
then :
- printf "%s\n" "#define HAVE_TMPFILE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_TMPFILE 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "tmpnam" "ac_cv_func_tmpnam"
if test "x$ac_cv_func_tmpnam" = xyes
then :
- printf "%s\n" "#define HAVE_TMPNAM 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_TMPNAM 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "tmpnam_r" "ac_cv_func_tmpnam_r"
if test "x$ac_cv_func_tmpnam_r" = xyes
then :
- printf "%s\n" "#define HAVE_TMPNAM_R 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_TMPNAM_R 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "truncate" "ac_cv_func_truncate"
if test "x$ac_cv_func_truncate" = xyes
then :
- printf "%s\n" "#define HAVE_TRUNCATE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_TRUNCATE 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "ttyname_r" "ac_cv_func_ttyname_r"
if test "x$ac_cv_func_ttyname_r" = xyes
then :
- printf "%s\n" "#define HAVE_TTYNAME_R 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_TTYNAME_R 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "umask" "ac_cv_func_umask"
if test "x$ac_cv_func_umask" = xyes
then :
- printf "%s\n" "#define HAVE_UMASK 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_UMASK 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "uname" "ac_cv_func_uname"
if test "x$ac_cv_func_uname" = xyes
then :
- printf "%s\n" "#define HAVE_UNAME 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_UNAME 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "unlinkat" "ac_cv_func_unlinkat"
if test "x$ac_cv_func_unlinkat" = xyes
then :
- printf "%s\n" "#define HAVE_UNLINKAT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_UNLINKAT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "unlockpt" "ac_cv_func_unlockpt"
if test "x$ac_cv_func_unlockpt" = xyes
then :
- printf "%s\n" "#define HAVE_UNLOCKPT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_UNLOCKPT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "utimensat" "ac_cv_func_utimensat"
if test "x$ac_cv_func_utimensat" = xyes
then :
- printf "%s\n" "#define HAVE_UTIMENSAT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_UTIMENSAT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "utimes" "ac_cv_func_utimes"
if test "x$ac_cv_func_utimes" = xyes
then :
- printf "%s\n" "#define HAVE_UTIMES 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_UTIMES 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "vfork" "ac_cv_func_vfork"
if test "x$ac_cv_func_vfork" = xyes
then :
- printf "%s\n" "#define HAVE_VFORK 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_VFORK 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "wait" "ac_cv_func_wait"
if test "x$ac_cv_func_wait" = xyes
then :
- printf "%s\n" "#define HAVE_WAIT 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_WAIT 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "wait3" "ac_cv_func_wait3"
if test "x$ac_cv_func_wait3" = xyes
then :
- printf "%s\n" "#define HAVE_WAIT3 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_WAIT3 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "wait4" "ac_cv_func_wait4"
if test "x$ac_cv_func_wait4" = xyes
then :
- printf "%s\n" "#define HAVE_WAIT4 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_WAIT4 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "waitid" "ac_cv_func_waitid"
if test "x$ac_cv_func_waitid" = xyes
then :
- printf "%s\n" "#define HAVE_WAITID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_WAITID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "waitpid" "ac_cv_func_waitpid"
if test "x$ac_cv_func_waitpid" = xyes
then :
- printf "%s\n" "#define HAVE_WAITPID 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_WAITPID 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "wcscoll" "ac_cv_func_wcscoll"
if test "x$ac_cv_func_wcscoll" = xyes
then :
- printf "%s\n" "#define HAVE_WCSCOLL 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_WCSCOLL 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "wcsftime" "ac_cv_func_wcsftime"
if test "x$ac_cv_func_wcsftime" = xyes
then :
- printf "%s\n" "#define HAVE_WCSFTIME 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_WCSFTIME 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "wcsxfrm" "ac_cv_func_wcsxfrm"
if test "x$ac_cv_func_wcsxfrm" = xyes
then :
- printf "%s\n" "#define HAVE_WCSXFRM 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_WCSXFRM 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "wmemcmp" "ac_cv_func_wmemcmp"
if test "x$ac_cv_func_wmemcmp" = xyes
then :
- printf "%s\n" "#define HAVE_WMEMCMP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_WMEMCMP 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "writev" "ac_cv_func_writev"
if test "x$ac_cv_func_writev" = xyes
then :
- printf "%s\n" "#define HAVE_WRITEV 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_WRITEV 1" >>confdefs.h
fi
@@ -21233,7 +21313,7 @@ case $ac_sys_system in #(
ac_fn_c_check_func "$LINENO" "statx" "ac_cv_func_statx"
if test "x$ac_cv_func_statx" = xyes
then :
- printf "%s\n" "#define HAVE_STATX 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_STATX 1" >>confdefs.h
fi
@@ -21249,7 +21329,7 @@ if test "$MACHDEP" != linux; then
ac_fn_c_check_func "$LINENO" "lchmod" "ac_cv_func_lchmod"
if test "x$ac_cv_func_lchmod" = xyes
then :
- printf "%s\n" "#define HAVE_LCHMOD 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LCHMOD 1" >>confdefs.h
fi
@@ -21263,31 +21343,31 @@ if test "$ac_sys_system" != "iOS" ; then
ac_fn_c_check_func "$LINENO" "dup3" "ac_cv_func_dup3"
if test "x$ac_cv_func_dup3" = xyes
then :
- printf "%s\n" "#define HAVE_DUP3 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_DUP3 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getentropy" "ac_cv_func_getentropy"
if test "x$ac_cv_func_getentropy" = xyes
then :
- printf "%s\n" "#define HAVE_GETENTROPY 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETENTROPY 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getgroups" "ac_cv_func_getgroups"
if test "x$ac_cv_func_getgroups" = xyes
then :
- printf "%s\n" "#define HAVE_GETGROUPS 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETGROUPS 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "pipe2" "ac_cv_func_pipe2"
if test "x$ac_cv_func_pipe2" = xyes
then :
- printf "%s\n" "#define HAVE_PIPE2 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PIPE2 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "system" "ac_cv_func_system"
if test "x$ac_cv_func_system" = xyes
then :
- printf "%s\n" "#define HAVE_SYSTEM 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SYSTEM 1" >>confdefs.h
fi
@@ -21295,11 +21375,11 @@ fi
ac_fn_check_decl "$LINENO" "dirfd" "ac_cv_have_decl_dirfd" "#include
#include
-" "$ac_c_undeclared_builtin_options" "CFLAGS"
+" "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
if test "x$ac_cv_have_decl_dirfd" = xyes
then :
-printf "%s\n" "#define HAVE_DIRFD 1" >>confdefs.h
+printf '%s\n' "#define HAVE_DIRFD 1" >>confdefs.h
fi
@@ -21307,7 +21387,7 @@ fi
# we want to take their address.
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for chroot" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for chroot" >&5
printf %s "checking for chroot... " >&6; }
if test ${ac_cv_func_chroot+y}
then :
@@ -21335,12 +21415,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_chroot" >&5
-printf "%s\n" "$ac_cv_func_chroot" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_chroot" >&5
+printf '%s\n' "$ac_cv_func_chroot" >&6; }
if test "x$ac_cv_func_chroot" = xyes
then :
-printf "%s\n" "#define HAVE_CHROOT 1" >>confdefs.h
+printf '%s\n' "#define HAVE_CHROOT 1" >>confdefs.h
fi
@@ -21348,7 +21428,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for link" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for link" >&5
printf %s "checking for link... " >&6; }
if test ${ac_cv_func_link+y}
then :
@@ -21376,12 +21456,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_link" >&5
-printf "%s\n" "$ac_cv_func_link" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_link" >&5
+printf '%s\n' "$ac_cv_func_link" >&6; }
if test "x$ac_cv_func_link" = xyes
then :
-printf "%s\n" "#define HAVE_LINK 1" >>confdefs.h
+printf '%s\n' "#define HAVE_LINK 1" >>confdefs.h
fi
@@ -21389,7 +21469,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for symlink" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for symlink" >&5
printf %s "checking for symlink... " >&6; }
if test ${ac_cv_func_symlink+y}
then :
@@ -21417,12 +21497,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_symlink" >&5
-printf "%s\n" "$ac_cv_func_symlink" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_symlink" >&5
+printf '%s\n' "$ac_cv_func_symlink" >&6; }
if test "x$ac_cv_func_symlink" = xyes
then :
-printf "%s\n" "#define HAVE_SYMLINK 1" >>confdefs.h
+printf '%s\n' "#define HAVE_SYMLINK 1" >>confdefs.h
fi
@@ -21430,7 +21510,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for fchdir" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for fchdir" >&5
printf %s "checking for fchdir... " >&6; }
if test ${ac_cv_func_fchdir+y}
then :
@@ -21458,12 +21538,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_fchdir" >&5
-printf "%s\n" "$ac_cv_func_fchdir" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_fchdir" >&5
+printf '%s\n' "$ac_cv_func_fchdir" >&6; }
if test "x$ac_cv_func_fchdir" = xyes
then :
-printf "%s\n" "#define HAVE_FCHDIR 1" >>confdefs.h
+printf '%s\n' "#define HAVE_FCHDIR 1" >>confdefs.h
fi
@@ -21471,7 +21551,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for fsync" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for fsync" >&5
printf %s "checking for fsync... " >&6; }
if test ${ac_cv_func_fsync+y}
then :
@@ -21499,12 +21579,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_fsync" >&5
-printf "%s\n" "$ac_cv_func_fsync" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_fsync" >&5
+printf '%s\n' "$ac_cv_func_fsync" >&6; }
if test "x$ac_cv_func_fsync" = xyes
then :
-printf "%s\n" "#define HAVE_FSYNC 1" >>confdefs.h
+printf '%s\n' "#define HAVE_FSYNC 1" >>confdefs.h
fi
@@ -21512,7 +21592,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for fdatasync" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for fdatasync" >&5
printf %s "checking for fdatasync... " >&6; }
if test ${ac_cv_func_fdatasync+y}
then :
@@ -21540,19 +21620,19 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_fdatasync" >&5
-printf "%s\n" "$ac_cv_func_fdatasync" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_fdatasync" >&5
+printf '%s\n' "$ac_cv_func_fdatasync" >&6; }
if test "x$ac_cv_func_fdatasync" = xyes
then :
-printf "%s\n" "#define HAVE_FDATASYNC 1" >>confdefs.h
+printf '%s\n' "#define HAVE_FDATASYNC 1" >>confdefs.h
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --disable-epoll" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --disable-epoll" >&5
printf %s "checking for --disable-epoll... " >&6; }
# Check whether --enable-epoll was given.
if test ${enable_epoll+y}
@@ -21570,13 +21650,13 @@ else case e in #(
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $disable_epoll" >&5
-printf "%s\n" "$disable_epoll" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $disable_epoll" >&5
+printf '%s\n' "$disable_epoll" >&6; }
if test "$disable_epoll" = "no"
then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for epoll_create" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for epoll_create" >&5
printf %s "checking for epoll_create... " >&6; }
if test ${ac_cv_func_epoll_create+y}
then :
@@ -21604,12 +21684,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_epoll_create" >&5
-printf "%s\n" "$ac_cv_func_epoll_create" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_epoll_create" >&5
+printf '%s\n' "$ac_cv_func_epoll_create" >&6; }
if test "x$ac_cv_func_epoll_create" = xyes
then :
-printf "%s\n" "#define HAVE_EPOLL 1" >>confdefs.h
+printf '%s\n' "#define HAVE_EPOLL 1" >>confdefs.h
fi
@@ -21617,7 +21697,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for epoll_create1" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for epoll_create1" >&5
printf %s "checking for epoll_create1... " >&6; }
if test ${ac_cv_func_epoll_create1+y}
then :
@@ -21645,12 +21725,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_epoll_create1" >&5
-printf "%s\n" "$ac_cv_func_epoll_create1" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_epoll_create1" >&5
+printf '%s\n' "$ac_cv_func_epoll_create1" >&6; }
if test "x$ac_cv_func_epoll_create1" = xyes
then :
-printf "%s\n" "#define HAVE_EPOLL_CREATE1 1" >>confdefs.h
+printf '%s\n' "#define HAVE_EPOLL_CREATE1 1" >>confdefs.h
fi
@@ -21660,7 +21740,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for kqueue" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for kqueue" >&5
printf %s "checking for kqueue... " >&6; }
if test ${ac_cv_func_kqueue+y}
then :
@@ -21691,12 +21771,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_kqueue" >&5
-printf "%s\n" "$ac_cv_func_kqueue" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_kqueue" >&5
+printf '%s\n' "$ac_cv_func_kqueue" >&6; }
if test "x$ac_cv_func_kqueue" = xyes
then :
-printf "%s\n" "#define HAVE_KQUEUE 1" >>confdefs.h
+printf '%s\n' "#define HAVE_KQUEUE 1" >>confdefs.h
fi
@@ -21704,7 +21784,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for prlimit" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for prlimit" >&5
printf %s "checking for prlimit... " >&6; }
if test ${ac_cv_func_prlimit+y}
then :
@@ -21735,12 +21815,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_prlimit" >&5
-printf "%s\n" "$ac_cv_func_prlimit" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_prlimit" >&5
+printf '%s\n' "$ac_cv_func_prlimit" >&6; }
if test "x$ac_cv_func_prlimit" = xyes
then :
-printf "%s\n" "#define HAVE_PRLIMIT 1" >>confdefs.h
+printf '%s\n' "#define HAVE_PRLIMIT 1" >>confdefs.h
fi
@@ -21749,7 +21829,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for _dyld_shared_cache_contains_path" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for _dyld_shared_cache_contains_path" >&5
printf %s "checking for _dyld_shared_cache_contains_path... " >&6; }
if test ${ac_cv_func__dyld_shared_cache_contains_path+y}
then :
@@ -21777,12 +21857,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func__dyld_shared_cache_contains_path" >&5
-printf "%s\n" "$ac_cv_func__dyld_shared_cache_contains_path" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func__dyld_shared_cache_contains_path" >&5
+printf '%s\n' "$ac_cv_func__dyld_shared_cache_contains_path" >&6; }
if test "x$ac_cv_func__dyld_shared_cache_contains_path" = xyes
then :
-printf "%s\n" "#define HAVE_DYLD_SHARED_CACHE_CONTAINS_PATH 1" >>confdefs.h
+printf '%s\n' "#define HAVE_DYLD_SHARED_CACHE_CONTAINS_PATH 1" >>confdefs.h
fi
@@ -21791,7 +21871,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for memfd_create" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for memfd_create" >&5
printf %s "checking for memfd_create... " >&6; }
if test ${ac_cv_func_memfd_create+y}
then :
@@ -21826,12 +21906,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_memfd_create" >&5
-printf "%s\n" "$ac_cv_func_memfd_create" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_memfd_create" >&5
+printf '%s\n' "$ac_cv_func_memfd_create" >&6; }
if test "x$ac_cv_func_memfd_create" = xyes
then :
-printf "%s\n" "#define HAVE_MEMFD_CREATE 1" >>confdefs.h
+printf '%s\n' "#define HAVE_MEMFD_CREATE 1" >>confdefs.h
fi
@@ -21840,7 +21920,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for eventfd" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for eventfd" >&5
printf %s "checking for eventfd... " >&6; }
if test ${ac_cv_func_eventfd+y}
then :
@@ -21872,12 +21952,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_eventfd" >&5
-printf "%s\n" "$ac_cv_func_eventfd" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_eventfd" >&5
+printf '%s\n' "$ac_cv_func_eventfd" >&6; }
if test "x$ac_cv_func_eventfd" = xyes
then :
-printf "%s\n" "#define HAVE_EVENTFD 1" >>confdefs.h
+printf '%s\n' "#define HAVE_EVENTFD 1" >>confdefs.h
fi
@@ -21886,7 +21966,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for timerfd_create" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for timerfd_create" >&5
printf %s "checking for timerfd_create... " >&6; }
if test ${ac_cv_func_timerfd_create+y}
then :
@@ -21918,12 +21998,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_timerfd_create" >&5
-printf "%s\n" "$ac_cv_func_timerfd_create" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_timerfd_create" >&5
+printf '%s\n' "$ac_cv_func_timerfd_create" >&6; }
if test "x$ac_cv_func_timerfd_create" = xyes
then :
-printf "%s\n" "#define HAVE_TIMERFD_CREATE 1" >>confdefs.h
+printf '%s\n' "#define HAVE_TIMERFD_CREATE 1" >>confdefs.h
fi
@@ -21938,7 +22018,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ctermid_r" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for ctermid_r" >&5
printf %s "checking for ctermid_r... " >&6; }
if test ${ac_cv_func_ctermid_r+y}
then :
@@ -21966,19 +22046,19 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_ctermid_r" >&5
-printf "%s\n" "$ac_cv_func_ctermid_r" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_ctermid_r" >&5
+printf '%s\n' "$ac_cv_func_ctermid_r" >&6; }
if test "x$ac_cv_func_ctermid_r" = xyes
then :
-printf "%s\n" "#define HAVE_CTERMID_R 1" >>confdefs.h
+printf '%s\n' "#define HAVE_CTERMID_R 1" >>confdefs.h
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for flock declaration" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for flock declaration" >&5
printf %s "checking for flock declaration... " >&6; }
if test ${ac_cv_flock_decl+y}
then :
@@ -22008,8 +22088,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_flock_decl" >&5
-printf "%s\n" "$ac_cv_flock_decl" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_flock_decl" >&5
+printf '%s\n' "$ac_cv_flock_decl" >&6; }
if test "x$ac_cv_flock_decl" = xyes
then :
@@ -22018,10 +22098,10 @@ do :
ac_fn_c_check_func "$LINENO" "flock" "ac_cv_func_flock"
if test "x$ac_cv_func_flock" = xyes
then :
- printf "%s\n" "#define HAVE_FLOCK 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FLOCK 1" >>confdefs.h
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for flock in -lbsd" >&5
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for flock in -lbsd" >&5
printf %s "checking for flock in -lbsd... " >&6; }
if test ${ac_cv_lib_bsd_flock+y}
then :
@@ -22062,8 +22142,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_flock" >&5
-printf "%s\n" "$ac_cv_lib_bsd_flock" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_flock" >&5
+printf '%s\n' "$ac_cv_lib_bsd_flock" >&6; }
if test "x$ac_cv_lib_bsd_flock" = xyes
then :
FCNTL_LIBS="-lbsd"
@@ -22077,7 +22157,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for getpagesize" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for getpagesize" >&5
printf %s "checking for getpagesize... " >&6; }
if test ${ac_cv_func_getpagesize+y}
then :
@@ -22105,19 +22185,19 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_getpagesize" >&5
-printf "%s\n" "$ac_cv_func_getpagesize" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_getpagesize" >&5
+printf '%s\n' "$ac_cv_func_getpagesize" >&6; }
if test "x$ac_cv_func_getpagesize" = xyes
then :
-printf "%s\n" "#define HAVE_GETPAGESIZE 1" >>confdefs.h
+printf '%s\n' "#define HAVE_GETPAGESIZE 1" >>confdefs.h
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for broken unsetenv" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for broken unsetenv" >&5
printf %s "checking for broken unsetenv... " >&6; }
if test ${ac_cv_broken_unsetenv+y}
then :
@@ -22146,13 +22226,13 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_broken_unsetenv" >&5
-printf "%s\n" "$ac_cv_broken_unsetenv" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_broken_unsetenv" >&5
+printf '%s\n' "$ac_cv_broken_unsetenv" >&6; }
if test "x$ac_cv_broken_unsetenv" = xyes
then :
-printf "%s\n" "#define HAVE_BROKEN_UNSETENV 1" >>confdefs.h
+printf '%s\n' "#define HAVE_BROKEN_UNSETENV 1" >>confdefs.h
fi
@@ -22161,7 +22241,7 @@ for ac_prog in true
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
printf %s "checking for $ac_word... " >&6; }
if test ${ac_cv_prog_TRUE+y}
then :
@@ -22182,7 +22262,7 @@ do
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_prog_TRUE="$ac_prog"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
break 2
fi
done
@@ -22194,11 +22274,11 @@ esac
fi
TRUE=$ac_cv_prog_TRUE
if test -n "$TRUE"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $TRUE" >&5
-printf "%s\n" "$TRUE" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $TRUE" >&5
+printf '%s\n' "$TRUE" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
@@ -22207,7 +22287,7 @@ done
test -n "$TRUE" || TRUE="/bin/true"
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for inet_aton in -lc" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for inet_aton in -lc" >&5
printf %s "checking for inet_aton in -lc... " >&6; }
if test ${ac_cv_lib_c_inet_aton+y}
then :
@@ -22248,13 +22328,13 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_c_inet_aton" >&5
-printf "%s\n" "$ac_cv_lib_c_inet_aton" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_c_inet_aton" >&5
+printf '%s\n' "$ac_cv_lib_c_inet_aton" >&6; }
if test "x$ac_cv_lib_c_inet_aton" = xyes
then :
$ac_cv_prog_TRUE
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for inet_aton in -lresolv" >&5
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for inet_aton in -lresolv" >&5
printf %s "checking for inet_aton in -lresolv... " >&6; }
if test ${ac_cv_lib_resolv_inet_aton+y}
then :
@@ -22295,8 +22375,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv_inet_aton" >&5
-printf "%s\n" "$ac_cv_lib_resolv_inet_aton" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv_inet_aton" >&5
+printf '%s\n' "$ac_cv_lib_resolv_inet_aton" >&6; }
if test "x$ac_cv_lib_resolv_inet_aton" = xyes
then :
SOCKET_LIBS="-lresolv"
@@ -22306,7 +22386,7 @@ fi
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for hstrerror in -lc" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for hstrerror in -lc" >&5
printf %s "checking for hstrerror in -lc... " >&6; }
if test ${ac_cv_lib_c_hstrerror+y}
then :
@@ -22347,13 +22427,13 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_c_hstrerror" >&5
-printf "%s\n" "$ac_cv_lib_c_hstrerror" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_c_hstrerror" >&5
+printf '%s\n' "$ac_cv_lib_c_hstrerror" >&6; }
if test "x$ac_cv_lib_c_hstrerror" = xyes
then :
$ac_cv_prog_TRUE
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for hstrerror in -lresolv" >&5
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for hstrerror in -lresolv" >&5
printf %s "checking for hstrerror in -lresolv... " >&6; }
if test ${ac_cv_lib_resolv_hstrerror+y}
then :
@@ -22394,8 +22474,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv_hstrerror" >&5
-printf "%s\n" "$ac_cv_lib_resolv_hstrerror" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv_hstrerror" >&5
+printf '%s\n' "$ac_cv_lib_resolv_hstrerror" >&6; }
if test "x$ac_cv_lib_resolv_hstrerror" = xyes
then :
SOCKET_LIBS="-lresolv"
@@ -22408,7 +22488,7 @@ fi
# On Tru64, chflags seems to be present, but calling it will
# exit Python
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for chflags" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for chflags" >&5
printf %s "checking for chflags... " >&6; }
if test ${ac_cv_have_chflags+y}
then :
@@ -22446,8 +22526,8 @@ fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_chflags" >&5
-printf "%s\n" "$ac_cv_have_chflags" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_chflags" >&5
+printf '%s\n' "$ac_cv_have_chflags" >&6; }
if test "$ac_cv_have_chflags" = cross ; then
ac_fn_c_check_func "$LINENO" "chflags" "ac_cv_func_chflags"
if test "x$ac_cv_func_chflags" = xyes
@@ -22461,11 +22541,11 @@ fi
fi
if test "$ac_cv_have_chflags" = yes ; then
-printf "%s\n" "#define HAVE_CHFLAGS 1" >>confdefs.h
+printf '%s\n' "#define HAVE_CHFLAGS 1" >>confdefs.h
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for lchflags" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for lchflags" >&5
printf %s "checking for lchflags... " >&6; }
if test ${ac_cv_have_lchflags+y}
then :
@@ -22503,8 +22583,8 @@ fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_lchflags" >&5
-printf "%s\n" "$ac_cv_have_lchflags" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_lchflags" >&5
+printf '%s\n' "$ac_cv_have_lchflags" >&6; }
if test "$ac_cv_have_lchflags" = cross ; then
ac_fn_c_check_func "$LINENO" "lchflags" "ac_cv_func_lchflags"
if test "x$ac_cv_func_lchflags" = xyes
@@ -22518,7 +22598,7 @@ fi
fi
if test "$ac_cv_have_lchflags" = yes ; then
-printf "%s\n" "#define HAVE_LCHFLAGS 1" >>confdefs.h
+printf '%s\n' "#define HAVE_LCHFLAGS 1" >>confdefs.h
fi
@@ -22540,17 +22620,17 @@ fi
pkg_failed=no
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for zlib >= 1.2.2.1" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for zlib >= 1.2.2.1" >&5
printf %s "checking for zlib >= 1.2.2.1... " >&6; }
if test -n "$ZLIB_CFLAGS"; then
pkg_cv_ZLIB_CFLAGS="$ZLIB_CFLAGS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"zlib >= 1.2.2.1\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"zlib >= 1.2.2.1\""; } >&5
($PKG_CONFIG --exists --print-errors "zlib >= 1.2.2.1") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_ZLIB_CFLAGS=`$PKG_CONFIG --cflags "zlib >= 1.2.2.1" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -22564,10 +22644,10 @@ if test -n "$ZLIB_LIBS"; then
pkg_cv_ZLIB_LIBS="$ZLIB_LIBS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"zlib >= 1.2.2.1\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"zlib >= 1.2.2.1\""; } >&5
($PKG_CONFIG --exists --print-errors "zlib >= 1.2.2.1") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_ZLIB_LIBS=`$PKG_CONFIG --libs "zlib >= 1.2.2.1" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -22581,8 +22661,8 @@ fi
if test $pkg_failed = yes; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
_pkg_short_errors_supported=yes
@@ -22611,10 +22691,10 @@ do :
ac_fn_c_check_header_compile "$LINENO" "zlib.h" "ac_cv_header_zlib_h" "$ac_includes_default"
if test "x$ac_cv_header_zlib_h" = xyes
then :
- printf "%s\n" "#define HAVE_ZLIB_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_ZLIB_H 1" >>confdefs.h
py_check_lib_save_LIBS=$LIBS
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gzread in -lz" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for gzread in -lz" >&5
printf %s "checking for gzread in -lz... " >&6; }
if test ${ac_cv_lib_z_gzread+y}
then :
@@ -22655,8 +22735,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_gzread" >&5
-printf "%s\n" "$ac_cv_lib_z_gzread" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_gzread" >&5
+printf '%s\n' "$ac_cv_lib_z_gzread" >&6; }
if test "x$ac_cv_lib_z_gzread" = xyes
then :
have_zlib=yes
@@ -22680,7 +22760,7 @@ then :
ZLIB_CFLAGS=${ZLIB_CFLAGS-""}
ZLIB_LIBS=${ZLIB_LIBS-"-lz"}
py_check_lib_save_LIBS=$LIBS
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for inflateCopy in -lz" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for inflateCopy in -lz" >&5
printf %s "checking for inflateCopy in -lz... " >&6; }
if test ${ac_cv_lib_z_inflateCopy+y}
then :
@@ -22721,11 +22801,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_inflateCopy" >&5
-printf "%s\n" "$ac_cv_lib_z_inflateCopy" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_inflateCopy" >&5
+printf '%s\n' "$ac_cv_lib_z_inflateCopy" >&6; }
if test "x$ac_cv_lib_z_inflateCopy" = xyes
then :
- printf "%s\n" "#define HAVE_ZLIB_COPY 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_ZLIB_COPY 1" >>confdefs.h
fi
@@ -22742,8 +22822,8 @@ LIBS=$save_LIBS
elif test $pkg_failed = untried; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
save_CFLAGS=$CFLAGS
save_CPPFLAGS=$CPPFLAGS
@@ -22758,10 +22838,10 @@ do :
ac_fn_c_check_header_compile "$LINENO" "zlib.h" "ac_cv_header_zlib_h" "$ac_includes_default"
if test "x$ac_cv_header_zlib_h" = xyes
then :
- printf "%s\n" "#define HAVE_ZLIB_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_ZLIB_H 1" >>confdefs.h
py_check_lib_save_LIBS=$LIBS
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gzread in -lz" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for gzread in -lz" >&5
printf %s "checking for gzread in -lz... " >&6; }
if test ${ac_cv_lib_z_gzread+y}
then :
@@ -22802,8 +22882,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_gzread" >&5
-printf "%s\n" "$ac_cv_lib_z_gzread" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_gzread" >&5
+printf '%s\n' "$ac_cv_lib_z_gzread" >&6; }
if test "x$ac_cv_lib_z_gzread" = xyes
then :
have_zlib=yes
@@ -22827,7 +22907,7 @@ then :
ZLIB_CFLAGS=${ZLIB_CFLAGS-""}
ZLIB_LIBS=${ZLIB_LIBS-"-lz"}
py_check_lib_save_LIBS=$LIBS
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for inflateCopy in -lz" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for inflateCopy in -lz" >&5
printf %s "checking for inflateCopy in -lz... " >&6; }
if test ${ac_cv_lib_z_inflateCopy+y}
then :
@@ -22868,11 +22948,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_inflateCopy" >&5
-printf "%s\n" "$ac_cv_lib_z_inflateCopy" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_inflateCopy" >&5
+printf '%s\n' "$ac_cv_lib_z_inflateCopy" >&6; }
if test "x$ac_cv_lib_z_inflateCopy" = xyes
then :
- printf "%s\n" "#define HAVE_ZLIB_COPY 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_ZLIB_COPY 1" >>confdefs.h
fi
@@ -22891,11 +22971,11 @@ LIBS=$save_LIBS
else
ZLIB_CFLAGS=$pkg_cv_ZLIB_CFLAGS
ZLIB_LIBS=$pkg_cv_ZLIB_LIBS
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
have_zlib=yes
- printf "%s\n" "#define HAVE_ZLIB_COPY 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_ZLIB_COPY 1" >>confdefs.h
fi
@@ -22924,17 +23004,17 @@ fi
pkg_failed=no
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for bzip2" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for bzip2" >&5
printf %s "checking for bzip2... " >&6; }
if test -n "$BZIP2_CFLAGS"; then
pkg_cv_BZIP2_CFLAGS="$BZIP2_CFLAGS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"bzip2\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"bzip2\""; } >&5
($PKG_CONFIG --exists --print-errors "bzip2") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_BZIP2_CFLAGS=`$PKG_CONFIG --cflags "bzip2" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -22948,10 +23028,10 @@ if test -n "$BZIP2_LIBS"; then
pkg_cv_BZIP2_LIBS="$BZIP2_LIBS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"bzip2\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"bzip2\""; } >&5
($PKG_CONFIG --exists --print-errors "bzip2") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_BZIP2_LIBS=`$PKG_CONFIG --libs "bzip2" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -22965,8 +23045,8 @@ fi
if test $pkg_failed = yes; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
_pkg_short_errors_supported=yes
@@ -22995,9 +23075,9 @@ do :
ac_fn_c_check_header_compile "$LINENO" "bzlib.h" "ac_cv_header_bzlib_h" "$ac_includes_default"
if test "x$ac_cv_header_bzlib_h" = xyes
then :
- printf "%s\n" "#define HAVE_BZLIB_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_BZLIB_H 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for BZ2_bzCompress in -lbz2" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for BZ2_bzCompress in -lbz2" >&5
printf %s "checking for BZ2_bzCompress in -lbz2... " >&6; }
if test ${ac_cv_lib_bz2_BZ2_bzCompress+y}
then :
@@ -23038,8 +23118,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bz2_BZ2_bzCompress" >&5
-printf "%s\n" "$ac_cv_lib_bz2_BZ2_bzCompress" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bz2_BZ2_bzCompress" >&5
+printf '%s\n' "$ac_cv_lib_bz2_BZ2_bzCompress" >&6; }
if test "x$ac_cv_lib_bz2_BZ2_bzCompress" = xyes
then :
have_bzip2=yes
@@ -23071,8 +23151,8 @@ LIBS=$save_LIBS
elif test $pkg_failed = untried; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
save_CFLAGS=$CFLAGS
save_CPPFLAGS=$CPPFLAGS
@@ -23087,9 +23167,9 @@ do :
ac_fn_c_check_header_compile "$LINENO" "bzlib.h" "ac_cv_header_bzlib_h" "$ac_includes_default"
if test "x$ac_cv_header_bzlib_h" = xyes
then :
- printf "%s\n" "#define HAVE_BZLIB_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_BZLIB_H 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for BZ2_bzCompress in -lbz2" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for BZ2_bzCompress in -lbz2" >&5
printf %s "checking for BZ2_bzCompress in -lbz2... " >&6; }
if test ${ac_cv_lib_bz2_BZ2_bzCompress+y}
then :
@@ -23130,8 +23210,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bz2_BZ2_bzCompress" >&5
-printf "%s\n" "$ac_cv_lib_bz2_BZ2_bzCompress" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bz2_BZ2_bzCompress" >&5
+printf '%s\n' "$ac_cv_lib_bz2_BZ2_bzCompress" >&6; }
if test "x$ac_cv_lib_bz2_BZ2_bzCompress" = xyes
then :
have_bzip2=yes
@@ -23165,24 +23245,24 @@ LIBS=$save_LIBS
else
BZIP2_CFLAGS=$pkg_cv_BZIP2_CFLAGS
BZIP2_LIBS=$pkg_cv_BZIP2_LIBS
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
have_bzip2=yes
fi
pkg_failed=no
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for liblzma" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for liblzma" >&5
printf %s "checking for liblzma... " >&6; }
if test -n "$LIBLZMA_CFLAGS"; then
pkg_cv_LIBLZMA_CFLAGS="$LIBLZMA_CFLAGS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"liblzma\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"liblzma\""; } >&5
($PKG_CONFIG --exists --print-errors "liblzma") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_LIBLZMA_CFLAGS=`$PKG_CONFIG --cflags "liblzma" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -23196,10 +23276,10 @@ if test -n "$LIBLZMA_LIBS"; then
pkg_cv_LIBLZMA_LIBS="$LIBLZMA_LIBS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"liblzma\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"liblzma\""; } >&5
($PKG_CONFIG --exists --print-errors "liblzma") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_LIBLZMA_LIBS=`$PKG_CONFIG --libs "liblzma" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -23213,8 +23293,8 @@ fi
if test $pkg_failed = yes; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
_pkg_short_errors_supported=yes
@@ -23243,9 +23323,9 @@ do :
ac_fn_c_check_header_compile "$LINENO" "lzma.h" "ac_cv_header_lzma_h" "$ac_includes_default"
if test "x$ac_cv_header_lzma_h" = xyes
then :
- printf "%s\n" "#define HAVE_LZMA_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LZMA_H 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for lzma_easy_encoder in -llzma" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for lzma_easy_encoder in -llzma" >&5
printf %s "checking for lzma_easy_encoder in -llzma... " >&6; }
if test ${ac_cv_lib_lzma_lzma_easy_encoder+y}
then :
@@ -23286,8 +23366,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lzma_lzma_easy_encoder" >&5
-printf "%s\n" "$ac_cv_lib_lzma_lzma_easy_encoder" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lzma_lzma_easy_encoder" >&5
+printf '%s\n' "$ac_cv_lib_lzma_lzma_easy_encoder" >&6; }
if test "x$ac_cv_lib_lzma_lzma_easy_encoder" = xyes
then :
have_liblzma=yes
@@ -23319,8 +23399,8 @@ LIBS=$save_LIBS
elif test $pkg_failed = untried; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
save_CFLAGS=$CFLAGS
save_CPPFLAGS=$CPPFLAGS
@@ -23335,9 +23415,9 @@ do :
ac_fn_c_check_header_compile "$LINENO" "lzma.h" "ac_cv_header_lzma_h" "$ac_includes_default"
if test "x$ac_cv_header_lzma_h" = xyes
then :
- printf "%s\n" "#define HAVE_LZMA_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LZMA_H 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for lzma_easy_encoder in -llzma" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for lzma_easy_encoder in -llzma" >&5
printf %s "checking for lzma_easy_encoder in -llzma... " >&6; }
if test ${ac_cv_lib_lzma_lzma_easy_encoder+y}
then :
@@ -23378,8 +23458,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lzma_lzma_easy_encoder" >&5
-printf "%s\n" "$ac_cv_lib_lzma_lzma_easy_encoder" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lzma_lzma_easy_encoder" >&5
+printf '%s\n' "$ac_cv_lib_lzma_lzma_easy_encoder" >&6; }
if test "x$ac_cv_lib_lzma_lzma_easy_encoder" = xyes
then :
have_liblzma=yes
@@ -23413,24 +23493,24 @@ LIBS=$save_LIBS
else
LIBLZMA_CFLAGS=$pkg_cv_LIBLZMA_CFLAGS
LIBLZMA_LIBS=$pkg_cv_LIBLZMA_LIBS
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
have_liblzma=yes
fi
pkg_failed=no
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for libzstd >= 1.4.5" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for libzstd >= 1.4.5" >&5
printf %s "checking for libzstd >= 1.4.5... " >&6; }
if test -n "$LIBZSTD_CFLAGS"; then
pkg_cv_LIBZSTD_CFLAGS="$LIBZSTD_CFLAGS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libzstd >= 1.4.5\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libzstd >= 1.4.5\""; } >&5
($PKG_CONFIG --exists --print-errors "libzstd >= 1.4.5") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_LIBZSTD_CFLAGS=`$PKG_CONFIG --cflags "libzstd >= 1.4.5" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -23444,10 +23524,10 @@ if test -n "$LIBZSTD_LIBS"; then
pkg_cv_LIBZSTD_LIBS="$LIBZSTD_LIBS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libzstd >= 1.4.5\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libzstd >= 1.4.5\""; } >&5
($PKG_CONFIG --exists --print-errors "libzstd >= 1.4.5") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_LIBZSTD_LIBS=`$PKG_CONFIG --libs "libzstd >= 1.4.5" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -23461,8 +23541,8 @@ fi
if test $pkg_failed = yes; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
_pkg_short_errors_supported=yes
@@ -23487,7 +23567,7 @@ save_LIBS=$LIBS
CPPFLAGS="$CPPFLAGS $LIBZSTD_CFLAGS"
CFLAGS="$CFLAGS $LIBZSTD_CFLAGS"
LIBS="$LIBS $LIBZSTD_LIBS"
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing ZDICT_finalizeDictionary" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for library containing ZDICT_finalizeDictionary" >&5
printf %s "checking for library containing ZDICT_finalizeDictionary... " >&6; }
if test ${ac_cv_search_ZDICT_finalizeDictionary+y}
then :
@@ -23545,14 +23625,14 @@ rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_ZDICT_finalizeDictionary" >&5
-printf "%s\n" "$ac_cv_search_ZDICT_finalizeDictionary" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_ZDICT_finalizeDictionary" >&5
+printf '%s\n' "$ac_cv_search_ZDICT_finalizeDictionary" >&6; }
ac_res=$ac_cv_search_ZDICT_finalizeDictionary
if test "$ac_res" != no
then :
test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking ZSTD_VERSION_NUMBER >= 1.4.5" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking ZSTD_VERSION_NUMBER >= 1.4.5" >&5
printf %s "checking ZSTD_VERSION_NUMBER >= 1.4.5... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -23574,16 +23654,16 @@ _ACEOF
if ac_fn_c_try_compile "$LINENO"
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
for ac_header in zstd.h zdict.h
do :
- as_ac_Header=`printf "%s\n" "ac_cv_header_$ac_header" | sed "$as_sed_sh"`
+ as_ac_Header=`printf '%s\n' "ac_cv_header_$ac_header" | sed "$as_sed_sh"`
ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
if eval test \"x\$"$as_ac_Header"\" = x"yes"
then :
cat >>confdefs.h <<_ACEOF
-#define `printf "%s\n" "HAVE_$ac_header" | sed "$as_sed_cpp"` 1
+#define `printf '%s\n' "HAVE_$ac_header" | sed "$as_sed_cpp"` 1
_ACEOF
have_libzstd=yes
else case e in #(
@@ -23595,8 +23675,8 @@ done
else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
have_libzstd=no
;;
esac
@@ -23624,8 +23704,8 @@ LIBS=$save_LIBS
elif test $pkg_failed = untried; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
save_CFLAGS=$CFLAGS
save_CPPFLAGS=$CPPFLAGS
@@ -23636,7 +23716,7 @@ save_LIBS=$LIBS
CPPFLAGS="$CPPFLAGS $LIBZSTD_CFLAGS"
CFLAGS="$CFLAGS $LIBZSTD_CFLAGS"
LIBS="$LIBS $LIBZSTD_LIBS"
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing ZDICT_finalizeDictionary" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for library containing ZDICT_finalizeDictionary" >&5
printf %s "checking for library containing ZDICT_finalizeDictionary... " >&6; }
if test ${ac_cv_search_ZDICT_finalizeDictionary+y}
then :
@@ -23694,14 +23774,14 @@ rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_ZDICT_finalizeDictionary" >&5
-printf "%s\n" "$ac_cv_search_ZDICT_finalizeDictionary" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_ZDICT_finalizeDictionary" >&5
+printf '%s\n' "$ac_cv_search_ZDICT_finalizeDictionary" >&6; }
ac_res=$ac_cv_search_ZDICT_finalizeDictionary
if test "$ac_res" != no
then :
test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking ZSTD_VERSION_NUMBER >= 1.4.5" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking ZSTD_VERSION_NUMBER >= 1.4.5" >&5
printf %s "checking ZSTD_VERSION_NUMBER >= 1.4.5... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -23723,16 +23803,16 @@ _ACEOF
if ac_fn_c_try_compile "$LINENO"
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
for ac_header in zstd.h zdict.h
do :
- as_ac_Header=`printf "%s\n" "ac_cv_header_$ac_header" | sed "$as_sed_sh"`
+ as_ac_Header=`printf '%s\n' "ac_cv_header_$ac_header" | sed "$as_sed_sh"`
ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
if eval test \"x\$"$as_ac_Header"\" = x"yes"
then :
cat >>confdefs.h <<_ACEOF
-#define `printf "%s\n" "HAVE_$ac_header" | sed "$as_sed_cpp"` 1
+#define `printf '%s\n' "HAVE_$ac_header" | sed "$as_sed_cpp"` 1
_ACEOF
have_libzstd=yes
else case e in #(
@@ -23744,8 +23824,8 @@ done
else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
have_libzstd=no
;;
esac
@@ -23775,8 +23855,8 @@ LIBS=$save_LIBS
else
LIBZSTD_CFLAGS=$pkg_cv_LIBZSTD_CFLAGS
LIBZSTD_LIBS=$pkg_cv_LIBZSTD_LIBS
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
have_libzstd=yes
fi
@@ -23800,7 +23880,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for hstrerror" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for hstrerror" >&5
printf %s "checking for hstrerror... " >&6; }
if test ${ac_cv_func_hstrerror+y}
then :
@@ -23828,12 +23908,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_hstrerror" >&5
-printf "%s\n" "$ac_cv_func_hstrerror" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_hstrerror" >&5
+printf '%s\n' "$ac_cv_func_hstrerror" >&6; }
if test "x$ac_cv_func_hstrerror" = xyes
then :
-printf "%s\n" "#define HAVE_HSTRERROR 1" >>confdefs.h
+printf '%s\n' "#define HAVE_HSTRERROR 1" >>confdefs.h
fi
@@ -23841,7 +23921,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for getservbyname" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for getservbyname" >&5
printf %s "checking for getservbyname... " >&6; }
if test ${ac_cv_func_getservbyname+y}
then :
@@ -23869,12 +23949,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_getservbyname" >&5
-printf "%s\n" "$ac_cv_func_getservbyname" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_getservbyname" >&5
+printf '%s\n' "$ac_cv_func_getservbyname" >&6; }
if test "x$ac_cv_func_getservbyname" = xyes
then :
-printf "%s\n" "#define HAVE_GETSERVBYNAME 1" >>confdefs.h
+printf '%s\n' "#define HAVE_GETSERVBYNAME 1" >>confdefs.h
fi
@@ -23882,7 +23962,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for getservbyport" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for getservbyport" >&5
printf %s "checking for getservbyport... " >&6; }
if test ${ac_cv_func_getservbyport+y}
then :
@@ -23910,12 +23990,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_getservbyport" >&5
-printf "%s\n" "$ac_cv_func_getservbyport" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_getservbyport" >&5
+printf '%s\n' "$ac_cv_func_getservbyport" >&6; }
if test "x$ac_cv_func_getservbyport" = xyes
then :
-printf "%s\n" "#define HAVE_GETSERVBYPORT 1" >>confdefs.h
+printf '%s\n' "#define HAVE_GETSERVBYPORT 1" >>confdefs.h
fi
@@ -23923,7 +24003,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gethostbyname" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for gethostbyname" >&5
printf %s "checking for gethostbyname... " >&6; }
if test ${ac_cv_func_gethostbyname+y}
then :
@@ -23951,12 +24031,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_gethostbyname" >&5
-printf "%s\n" "$ac_cv_func_gethostbyname" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_gethostbyname" >&5
+printf '%s\n' "$ac_cv_func_gethostbyname" >&6; }
if test "x$ac_cv_func_gethostbyname" = xyes
then :
-printf "%s\n" "#define HAVE_GETHOSTBYNAME 1" >>confdefs.h
+printf '%s\n' "#define HAVE_GETHOSTBYNAME 1" >>confdefs.h
fi
@@ -23964,7 +24044,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gethostbyaddr" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for gethostbyaddr" >&5
printf %s "checking for gethostbyaddr... " >&6; }
if test ${ac_cv_func_gethostbyaddr+y}
then :
@@ -23992,12 +24072,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_gethostbyaddr" >&5
-printf "%s\n" "$ac_cv_func_gethostbyaddr" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_gethostbyaddr" >&5
+printf '%s\n' "$ac_cv_func_gethostbyaddr" >&6; }
if test "x$ac_cv_func_gethostbyaddr" = xyes
then :
-printf "%s\n" "#define HAVE_GETHOSTBYADDR 1" >>confdefs.h
+printf '%s\n' "#define HAVE_GETHOSTBYADDR 1" >>confdefs.h
fi
@@ -24005,7 +24085,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for getprotobyname" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for getprotobyname" >&5
printf %s "checking for getprotobyname... " >&6; }
if test ${ac_cv_func_getprotobyname+y}
then :
@@ -24033,12 +24113,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_getprotobyname" >&5
-printf "%s\n" "$ac_cv_func_getprotobyname" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_getprotobyname" >&5
+printf '%s\n' "$ac_cv_func_getprotobyname" >&6; }
if test "x$ac_cv_func_getprotobyname" = xyes
then :
-printf "%s\n" "#define HAVE_GETPROTOBYNAME 1" >>confdefs.h
+printf '%s\n' "#define HAVE_GETPROTOBYNAME 1" >>confdefs.h
fi
@@ -24049,7 +24129,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for inet_aton" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for inet_aton" >&5
printf %s "checking for inet_aton... " >&6; }
if test ${ac_cv_func_inet_aton+y}
then :
@@ -24082,12 +24162,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_inet_aton" >&5
-printf "%s\n" "$ac_cv_func_inet_aton" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_inet_aton" >&5
+printf '%s\n' "$ac_cv_func_inet_aton" >&6; }
if test "x$ac_cv_func_inet_aton" = xyes
then :
-printf "%s\n" "#define HAVE_INET_ATON 1" >>confdefs.h
+printf '%s\n' "#define HAVE_INET_ATON 1" >>confdefs.h
fi
@@ -24095,7 +24175,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for inet_ntoa" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for inet_ntoa" >&5
printf %s "checking for inet_ntoa... " >&6; }
if test ${ac_cv_func_inet_ntoa+y}
then :
@@ -24128,12 +24208,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_inet_ntoa" >&5
-printf "%s\n" "$ac_cv_func_inet_ntoa" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_inet_ntoa" >&5
+printf '%s\n' "$ac_cv_func_inet_ntoa" >&6; }
if test "x$ac_cv_func_inet_ntoa" = xyes
then :
-printf "%s\n" "#define HAVE_INET_NTOA 1" >>confdefs.h
+printf '%s\n' "#define HAVE_INET_NTOA 1" >>confdefs.h
fi
@@ -24141,7 +24221,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for inet_pton" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for inet_pton" >&5
printf %s "checking for inet_pton... " >&6; }
if test ${ac_cv_func_inet_pton+y}
then :
@@ -24174,12 +24254,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_inet_pton" >&5
-printf "%s\n" "$ac_cv_func_inet_pton" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_inet_pton" >&5
+printf '%s\n' "$ac_cv_func_inet_pton" >&6; }
if test "x$ac_cv_func_inet_pton" = xyes
then :
-printf "%s\n" "#define HAVE_INET_PTON 1" >>confdefs.h
+printf '%s\n' "#define HAVE_INET_PTON 1" >>confdefs.h
fi
@@ -24187,7 +24267,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for getpeername" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for getpeername" >&5
printf %s "checking for getpeername... " >&6; }
if test ${ac_cv_func_getpeername+y}
then :
@@ -24220,12 +24300,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_getpeername" >&5
-printf "%s\n" "$ac_cv_func_getpeername" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_getpeername" >&5
+printf '%s\n' "$ac_cv_func_getpeername" >&6; }
if test "x$ac_cv_func_getpeername" = xyes
then :
-printf "%s\n" "#define HAVE_GETPEERNAME 1" >>confdefs.h
+printf '%s\n' "#define HAVE_GETPEERNAME 1" >>confdefs.h
fi
@@ -24233,7 +24313,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for getsockname" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for getsockname" >&5
printf %s "checking for getsockname... " >&6; }
if test ${ac_cv_func_getsockname+y}
then :
@@ -24266,12 +24346,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_getsockname" >&5
-printf "%s\n" "$ac_cv_func_getsockname" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_getsockname" >&5
+printf '%s\n' "$ac_cv_func_getsockname" >&6; }
if test "x$ac_cv_func_getsockname" = xyes
then :
-printf "%s\n" "#define HAVE_GETSOCKNAME 1" >>confdefs.h
+printf '%s\n' "#define HAVE_GETSOCKNAME 1" >>confdefs.h
fi
@@ -24279,7 +24359,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for accept" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for accept" >&5
printf %s "checking for accept... " >&6; }
if test ${ac_cv_func_accept+y}
then :
@@ -24312,12 +24392,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_accept" >&5
-printf "%s\n" "$ac_cv_func_accept" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_accept" >&5
+printf '%s\n' "$ac_cv_func_accept" >&6; }
if test "x$ac_cv_func_accept" = xyes
then :
-printf "%s\n" "#define HAVE_ACCEPT 1" >>confdefs.h
+printf '%s\n' "#define HAVE_ACCEPT 1" >>confdefs.h
fi
@@ -24325,7 +24405,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for bind" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for bind" >&5
printf %s "checking for bind... " >&6; }
if test ${ac_cv_func_bind+y}
then :
@@ -24358,12 +24438,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_bind" >&5
-printf "%s\n" "$ac_cv_func_bind" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_bind" >&5
+printf '%s\n' "$ac_cv_func_bind" >&6; }
if test "x$ac_cv_func_bind" = xyes
then :
-printf "%s\n" "#define HAVE_BIND 1" >>confdefs.h
+printf '%s\n' "#define HAVE_BIND 1" >>confdefs.h
fi
@@ -24371,7 +24451,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for connect" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for connect" >&5
printf %s "checking for connect... " >&6; }
if test ${ac_cv_func_connect+y}
then :
@@ -24404,12 +24484,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_connect" >&5
-printf "%s\n" "$ac_cv_func_connect" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_connect" >&5
+printf '%s\n' "$ac_cv_func_connect" >&6; }
if test "x$ac_cv_func_connect" = xyes
then :
-printf "%s\n" "#define HAVE_CONNECT 1" >>confdefs.h
+printf '%s\n' "#define HAVE_CONNECT 1" >>confdefs.h
fi
@@ -24417,7 +24497,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for listen" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for listen" >&5
printf %s "checking for listen... " >&6; }
if test ${ac_cv_func_listen+y}
then :
@@ -24450,12 +24530,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_listen" >&5
-printf "%s\n" "$ac_cv_func_listen" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_listen" >&5
+printf '%s\n' "$ac_cv_func_listen" >&6; }
if test "x$ac_cv_func_listen" = xyes
then :
-printf "%s\n" "#define HAVE_LISTEN 1" >>confdefs.h
+printf '%s\n' "#define HAVE_LISTEN 1" >>confdefs.h
fi
@@ -24463,7 +24543,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for recvfrom" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for recvfrom" >&5
printf %s "checking for recvfrom... " >&6; }
if test ${ac_cv_func_recvfrom+y}
then :
@@ -24496,12 +24576,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_recvfrom" >&5
-printf "%s\n" "$ac_cv_func_recvfrom" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_recvfrom" >&5
+printf '%s\n' "$ac_cv_func_recvfrom" >&6; }
if test "x$ac_cv_func_recvfrom" = xyes
then :
-printf "%s\n" "#define HAVE_RECVFROM 1" >>confdefs.h
+printf '%s\n' "#define HAVE_RECVFROM 1" >>confdefs.h
fi
@@ -24509,7 +24589,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sendto" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for sendto" >&5
printf %s "checking for sendto... " >&6; }
if test ${ac_cv_func_sendto+y}
then :
@@ -24542,12 +24622,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_sendto" >&5
-printf "%s\n" "$ac_cv_func_sendto" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_sendto" >&5
+printf '%s\n' "$ac_cv_func_sendto" >&6; }
if test "x$ac_cv_func_sendto" = xyes
then :
-printf "%s\n" "#define HAVE_SENDTO 1" >>confdefs.h
+printf '%s\n' "#define HAVE_SENDTO 1" >>confdefs.h
fi
@@ -24555,7 +24635,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for setsockopt" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for setsockopt" >&5
printf %s "checking for setsockopt... " >&6; }
if test ${ac_cv_func_setsockopt+y}
then :
@@ -24588,12 +24668,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_setsockopt" >&5
-printf "%s\n" "$ac_cv_func_setsockopt" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_setsockopt" >&5
+printf '%s\n' "$ac_cv_func_setsockopt" >&6; }
if test "x$ac_cv_func_setsockopt" = xyes
then :
-printf "%s\n" "#define HAVE_SETSOCKOPT 1" >>confdefs.h
+printf '%s\n' "#define HAVE_SETSOCKOPT 1" >>confdefs.h
fi
@@ -24601,7 +24681,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for socket" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for socket" >&5
printf %s "checking for socket... " >&6; }
if test ${ac_cv_func_socket+y}
then :
@@ -24634,12 +24714,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_socket" >&5
-printf "%s\n" "$ac_cv_func_socket" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_socket" >&5
+printf '%s\n' "$ac_cv_func_socket" >&6; }
if test "x$ac_cv_func_socket" = xyes
then :
-printf "%s\n" "#define HAVE_SOCKET 1" >>confdefs.h
+printf '%s\n' "#define HAVE_SOCKET 1" >>confdefs.h
fi
@@ -24649,7 +24729,7 @@ fi
# On some systems, setgroups is in unistd.h, on others, in grp.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for setgroups" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for setgroups" >&5
printf %s "checking for setgroups... " >&6; }
if test ${ac_cv_func_setgroups+y}
then :
@@ -24682,12 +24762,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_setgroups" >&5
-printf "%s\n" "$ac_cv_func_setgroups" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_setgroups" >&5
+printf '%s\n' "$ac_cv_func_setgroups" >&6; }
if test "x$ac_cv_func_setgroups" = xyes
then :
-printf "%s\n" "#define HAVE_SETGROUPS 1" >>confdefs.h
+printf '%s\n' "#define HAVE_SETGROUPS 1" >>confdefs.h
fi
@@ -24695,16 +24775,16 @@ fi
ac_fn_check_decl "$LINENO" "MAXLOGNAME" "ac_cv_have_decl_MAXLOGNAME" "#include
-" "$ac_c_undeclared_builtin_options" "CFLAGS"
+" "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
if test "x$ac_cv_have_decl_MAXLOGNAME" = xyes
then :
-printf "%s\n" "#define HAVE_MAXLOGNAME 1" >>confdefs.h
+printf '%s\n' "#define HAVE_MAXLOGNAME 1" >>confdefs.h
fi
ac_fn_check_decl "$LINENO" "UT_NAMESIZE" "ac_cv_have_decl_UT_NAMESIZE" "#include
-" "$ac_c_undeclared_builtin_options" "CFLAGS"
+" "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
if test "x$ac_cv_have_decl_UT_NAMESIZE" = xyes
then :
ac_have_decl=1
@@ -24712,11 +24792,11 @@ else case e in #(
e) ac_have_decl=0 ;;
esac
fi
-printf "%s\n" "#define HAVE_DECL_UT_NAMESIZE $ac_have_decl" >>confdefs.h
+printf '%s\n' "#define HAVE_DECL_UT_NAMESIZE $ac_have_decl" >>confdefs.h
if test $ac_have_decl = 1
then :
-printf "%s\n" "#define HAVE_UT_NAMESIZE 1" >>confdefs.h
+printf '%s\n' "#define HAVE_UT_NAMESIZE 1" >>confdefs.h
fi
@@ -24726,7 +24806,7 @@ then :
ac_fn_check_decl "$LINENO" "PR_SET_VMA_ANON_NAME" "ac_cv_have_decl_PR_SET_VMA_ANON_NAME" "#include
#include
-" "$ac_c_undeclared_builtin_options" "CFLAGS"
+" "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
if test "x$ac_cv_have_decl_PR_SET_VMA_ANON_NAME" = xyes
then :
ac_have_decl=1
@@ -24734,11 +24814,11 @@ else case e in #(
e) ac_have_decl=0 ;;
esac
fi
-printf "%s\n" "#define HAVE_DECL_PR_SET_VMA_ANON_NAME $ac_have_decl" >>confdefs.h
+printf '%s\n' "#define HAVE_DECL_PR_SET_VMA_ANON_NAME $ac_have_decl" >>confdefs.h
if test $ac_have_decl = 1
then :
-printf "%s\n" "#define _Py_HAVE_PR_SET_VMA_ANON_NAME 1" >>confdefs.h
+printf '%s\n' "#define _Py_HAVE_PR_SET_VMA_ANON_NAME 1" >>confdefs.h
fi
@@ -24752,10 +24832,10 @@ do :
ac_fn_c_check_func "$LINENO" "openpty" "ac_cv_func_openpty"
if test "x$ac_cv_func_openpty" = xyes
then :
- printf "%s\n" "#define HAVE_OPENPTY 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_OPENPTY 1" >>confdefs.h
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for openpty in -lutil" >&5
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for openpty in -lutil" >&5
printf %s "checking for openpty in -lutil... " >&6; }
if test ${ac_cv_lib_util_openpty+y}
then :
@@ -24796,14 +24876,14 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_util_openpty" >&5
-printf "%s\n" "$ac_cv_lib_util_openpty" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_util_openpty" >&5
+printf '%s\n' "$ac_cv_lib_util_openpty" >&6; }
if test "x$ac_cv_lib_util_openpty" = xyes
then :
- printf "%s\n" "#define HAVE_OPENPTY 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_OPENPTY 1" >>confdefs.h
LIBS="$LIBS -lutil"
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for openpty in -lbsd" >&5
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for openpty in -lbsd" >&5
printf %s "checking for openpty in -lbsd... " >&6; }
if test ${ac_cv_lib_bsd_openpty+y}
then :
@@ -24844,11 +24924,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_openpty" >&5
-printf "%s\n" "$ac_cv_lib_bsd_openpty" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_openpty" >&5
+printf '%s\n' "$ac_cv_lib_bsd_openpty" >&6; }
if test "x$ac_cv_lib_bsd_openpty" = xyes
then :
- printf "%s\n" "#define HAVE_OPENPTY 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_OPENPTY 1" >>confdefs.h
LIBS="$LIBS -lbsd"
fi
;;
@@ -24859,7 +24939,7 @@ esac
fi
done
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing login_tty" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for library containing login_tty" >&5
printf %s "checking for library containing login_tty... " >&6; }
if test ${ac_cv_search_login_tty+y}
then :
@@ -24917,14 +24997,14 @@ rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_login_tty" >&5
-printf "%s\n" "$ac_cv_search_login_tty" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_login_tty" >&5
+printf '%s\n' "$ac_cv_search_login_tty" >&6; }
ac_res=$ac_cv_search_login_tty
if test "$ac_res" != no
then :
test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
-printf "%s\n" "#define HAVE_LOGIN_TTY 1" >>confdefs.h
+printf '%s\n' "#define HAVE_LOGIN_TTY 1" >>confdefs.h
fi
@@ -24935,10 +25015,10 @@ do :
ac_fn_c_check_func "$LINENO" "forkpty" "ac_cv_func_forkpty"
if test "x$ac_cv_func_forkpty" = xyes
then :
- printf "%s\n" "#define HAVE_FORKPTY 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FORKPTY 1" >>confdefs.h
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for forkpty in -lutil" >&5
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for forkpty in -lutil" >&5
printf %s "checking for forkpty in -lutil... " >&6; }
if test ${ac_cv_lib_util_forkpty+y}
then :
@@ -24979,14 +25059,14 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_util_forkpty" >&5
-printf "%s\n" "$ac_cv_lib_util_forkpty" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_util_forkpty" >&5
+printf '%s\n' "$ac_cv_lib_util_forkpty" >&6; }
if test "x$ac_cv_lib_util_forkpty" = xyes
then :
- printf "%s\n" "#define HAVE_FORKPTY 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FORKPTY 1" >>confdefs.h
LIBS="$LIBS -lutil"
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for forkpty in -lbsd" >&5
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for forkpty in -lbsd" >&5
printf %s "checking for forkpty in -lbsd... " >&6; }
if test ${ac_cv_lib_bsd_forkpty+y}
then :
@@ -25027,11 +25107,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_forkpty" >&5
-printf "%s\n" "$ac_cv_lib_bsd_forkpty" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_forkpty" >&5
+printf '%s\n' "$ac_cv_lib_bsd_forkpty" >&6; }
if test "x$ac_cv_lib_bsd_forkpty" = xyes
then :
- printf "%s\n" "#define HAVE_FORKPTY 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FORKPTY 1" >>confdefs.h
LIBS="$LIBS -lbsd"
fi
;;
@@ -25047,37 +25127,37 @@ done
ac_fn_c_check_func "$LINENO" "fseek64" "ac_cv_func_fseek64"
if test "x$ac_cv_func_fseek64" = xyes
then :
- printf "%s\n" "#define HAVE_FSEEK64 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FSEEK64 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "fseeko" "ac_cv_func_fseeko"
if test "x$ac_cv_func_fseeko" = xyes
then :
- printf "%s\n" "#define HAVE_FSEEKO 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FSEEKO 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "fstatvfs" "ac_cv_func_fstatvfs"
if test "x$ac_cv_func_fstatvfs" = xyes
then :
- printf "%s\n" "#define HAVE_FSTATVFS 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FSTATVFS 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "ftell64" "ac_cv_func_ftell64"
if test "x$ac_cv_func_ftell64" = xyes
then :
- printf "%s\n" "#define HAVE_FTELL64 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FTELL64 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "ftello" "ac_cv_func_ftello"
if test "x$ac_cv_func_ftello" = xyes
then :
- printf "%s\n" "#define HAVE_FTELLO 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_FTELLO 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "statvfs" "ac_cv_func_statvfs"
if test "x$ac_cv_func_statvfs" = xyes
then :
- printf "%s\n" "#define HAVE_STATVFS 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_STATVFS 1" >>confdefs.h
fi
@@ -25085,7 +25165,7 @@ fi
ac_fn_c_check_func "$LINENO" "dup2" "ac_cv_func_dup2"
if test "x$ac_cv_func_dup2" = xyes
then :
- printf "%s\n" "#define HAVE_DUP2 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_DUP2 1" >>confdefs.h
else case e in #(
e) case " $LIBOBJS " in
@@ -25103,7 +25183,7 @@ do :
ac_fn_c_check_func "$LINENO" "getpgrp" "ac_cv_func_getpgrp"
if test "x$ac_cv_func_getpgrp" = xyes
then :
- printf "%s\n" "#define HAVE_GETPGRP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETPGRP 1" >>confdefs.h
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
#include
@@ -25118,7 +25198,7 @@ _ACEOF
if ac_fn_c_try_compile "$LINENO"
then :
-printf "%s\n" "#define GETPGRP_HAVE_ARG 1" >>confdefs.h
+printf '%s\n' "#define GETPGRP_HAVE_ARG 1" >>confdefs.h
fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
@@ -25131,7 +25211,7 @@ do :
ac_fn_c_check_func "$LINENO" "setpgrp" "ac_cv_func_setpgrp"
if test "x$ac_cv_func_setpgrp" = xyes
then :
- printf "%s\n" "#define HAVE_SETPGRP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SETPGRP 1" >>confdefs.h
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
#include
@@ -25146,7 +25226,7 @@ _ACEOF
if ac_fn_c_try_compile "$LINENO"
then :
-printf "%s\n" "#define SETPGRP_HAVE_ARG 1" >>confdefs.h
+printf '%s\n' "#define SETPGRP_HAVE_ARG 1" >>confdefs.h
fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
@@ -25158,13 +25238,13 @@ done
ac_fn_c_check_func "$LINENO" "setns" "ac_cv_func_setns"
if test "x$ac_cv_func_setns" = xyes
then :
- printf "%s\n" "#define HAVE_SETNS 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_SETNS 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "unshare" "ac_cv_func_unshare"
if test "x$ac_cv_func_unshare" = xyes
then :
- printf "%s\n" "#define HAVE_UNSHARE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_UNSHARE 1" >>confdefs.h
fi
@@ -25175,11 +25255,11 @@ do :
ac_fn_c_check_func "$LINENO" "clock_gettime" "ac_cv_func_clock_gettime"
if test "x$ac_cv_func_clock_gettime" = xyes
then :
- printf "%s\n" "#define HAVE_CLOCK_GETTIME 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_CLOCK_GETTIME 1" >>confdefs.h
else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for clock_gettime in -lrt" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for clock_gettime in -lrt" >&5
printf %s "checking for clock_gettime in -lrt... " >&6; }
if test ${ac_cv_lib_rt_clock_gettime+y}
then :
@@ -25220,16 +25300,16 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_clock_gettime" >&5
-printf "%s\n" "$ac_cv_lib_rt_clock_gettime" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_clock_gettime" >&5
+printf '%s\n' "$ac_cv_lib_rt_clock_gettime" >&6; }
if test "x$ac_cv_lib_rt_clock_gettime" = xyes
then :
LIBS="$LIBS -lrt"
- printf "%s\n" "#define HAVE_CLOCK_GETTIME 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_CLOCK_GETTIME 1" >>confdefs.h
-printf "%s\n" "#define TIMEMODULE_LIB rt" >>confdefs.h
+printf '%s\n' "#define TIMEMODULE_LIB rt" >>confdefs.h
fi
@@ -25246,11 +25326,11 @@ do :
ac_fn_c_check_func "$LINENO" "clock_getres" "ac_cv_func_clock_getres"
if test "x$ac_cv_func_clock_getres" = xyes
then :
- printf "%s\n" "#define HAVE_CLOCK_GETRES 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_CLOCK_GETRES 1" >>confdefs.h
else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for clock_getres in -lrt" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for clock_getres in -lrt" >&5
printf %s "checking for clock_getres in -lrt... " >&6; }
if test ${ac_cv_lib_rt_clock_getres+y}
then :
@@ -25291,12 +25371,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_clock_getres" >&5
-printf "%s\n" "$ac_cv_lib_rt_clock_getres" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_clock_getres" >&5
+printf '%s\n' "$ac_cv_lib_rt_clock_getres" >&6; }
if test "x$ac_cv_lib_rt_clock_getres" = xyes
then :
- printf "%s\n" "#define HAVE_CLOCK_GETRES 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_CLOCK_GETRES 1" >>confdefs.h
fi
@@ -25318,11 +25398,11 @@ do :
ac_fn_c_check_func "$LINENO" "clock_settime" "ac_cv_func_clock_settime"
if test "x$ac_cv_func_clock_settime" = xyes
then :
- printf "%s\n" "#define HAVE_CLOCK_SETTIME 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_CLOCK_SETTIME 1" >>confdefs.h
else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for clock_settime in -lrt" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for clock_settime in -lrt" >&5
printf %s "checking for clock_settime in -lrt... " >&6; }
if test ${ac_cv_lib_rt_clock_settime+y}
then :
@@ -25363,12 +25443,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_clock_settime" >&5
-printf "%s\n" "$ac_cv_lib_rt_clock_settime" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_clock_settime" >&5
+printf '%s\n' "$ac_cv_lib_rt_clock_settime" >&6; }
if test "x$ac_cv_lib_rt_clock_settime" = xyes
then :
- printf "%s\n" "#define HAVE_CLOCK_SETTIME 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_CLOCK_SETTIME 1" >>confdefs.h
fi
@@ -25390,11 +25470,11 @@ do :
ac_fn_c_check_func "$LINENO" "clock_nanosleep" "ac_cv_func_clock_nanosleep"
if test "x$ac_cv_func_clock_nanosleep" = xyes
then :
- printf "%s\n" "#define HAVE_CLOCK_NANOSLEEP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_CLOCK_NANOSLEEP 1" >>confdefs.h
else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for clock_nanosleep in -lrt" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for clock_nanosleep in -lrt" >&5
printf %s "checking for clock_nanosleep in -lrt... " >&6; }
if test ${ac_cv_lib_rt_clock_nanosleep+y}
then :
@@ -25435,12 +25515,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_clock_nanosleep" >&5
-printf "%s\n" "$ac_cv_lib_rt_clock_nanosleep" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_clock_nanosleep" >&5
+printf '%s\n' "$ac_cv_lib_rt_clock_nanosleep" >&6; }
if test "x$ac_cv_lib_rt_clock_nanosleep" = xyes
then :
- printf "%s\n" "#define HAVE_CLOCK_NANOSLEEP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_CLOCK_NANOSLEEP 1" >>confdefs.h
fi
@@ -25458,11 +25538,11 @@ do :
ac_fn_c_check_func "$LINENO" "nanosleep" "ac_cv_func_nanosleep"
if test "x$ac_cv_func_nanosleep" = xyes
then :
- printf "%s\n" "#define HAVE_NANOSLEEP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_NANOSLEEP 1" >>confdefs.h
else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for nanosleep in -lrt" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for nanosleep in -lrt" >&5
printf %s "checking for nanosleep in -lrt... " >&6; }
if test ${ac_cv_lib_rt_nanosleep+y}
then :
@@ -25503,12 +25583,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_nanosleep" >&5
-printf "%s\n" "$ac_cv_lib_rt_nanosleep" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_nanosleep" >&5
+printf '%s\n' "$ac_cv_lib_rt_nanosleep" >&6; }
if test "x$ac_cv_lib_rt_nanosleep" = xyes
then :
- printf "%s\n" "#define HAVE_NANOSLEEP 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_NANOSLEEP 1" >>confdefs.h
fi
@@ -25519,7 +25599,7 @@ fi
done
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for major, minor, and makedev" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for major, minor, and makedev" >&5
printf %s "checking for major, minor, and makedev... " >&6; }
if test ${ac_cv_device_macros+y}
then :
@@ -25560,24 +25640,24 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_device_macros" >&5
-printf "%s\n" "$ac_cv_device_macros" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_device_macros" >&5
+printf '%s\n' "$ac_cv_device_macros" >&6; }
if test "x$ac_cv_device_macros" = xyes
then :
-printf "%s\n" "#define HAVE_DEVICE_MACROS 1" >>confdefs.h
+printf '%s\n' "#define HAVE_DEVICE_MACROS 1" >>confdefs.h
fi
-printf "%s\n" "#define SYS_SELECT_WITH_SYS_TIME 1" >>confdefs.h
+printf '%s\n' "#define SYS_SELECT_WITH_SYS_TIME 1" >>confdefs.h
# On OSF/1 V5.1, getaddrinfo is available, but a define
# for [no]getaddrinfo in netdb.h.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for getaddrinfo" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for getaddrinfo" >&5
printf %s "checking for getaddrinfo... " >&6; }
if test ${ac_cv_func_getaddrinfo+y}
then :
@@ -25612,13 +25692,13 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_getaddrinfo" >&5
-printf "%s\n" "$ac_cv_func_getaddrinfo" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_getaddrinfo" >&5
+printf '%s\n' "$ac_cv_func_getaddrinfo" >&6; }
if test "x$ac_cv_func_getaddrinfo" = xyes
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking getaddrinfo bug" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking getaddrinfo bug" >&5
printf %s "checking getaddrinfo bug... " >&6; }
if test ${ac_cv_buggy_getaddrinfo+y}
then :
@@ -25742,8 +25822,8 @@ fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_buggy_getaddrinfo" >&5
-printf "%s\n" "$ac_cv_buggy_getaddrinfo" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_buggy_getaddrinfo" >&5
+printf '%s\n' "$ac_cv_buggy_getaddrinfo" >&6; }
fi
@@ -25758,20 +25838,20 @@ then :
fi
else
-printf "%s\n" "#define HAVE_GETADDRINFO 1" >>confdefs.h
+printf '%s\n' "#define HAVE_GETADDRINFO 1" >>confdefs.h
fi
ac_fn_c_check_func "$LINENO" "getnameinfo" "ac_cv_func_getnameinfo"
if test "x$ac_cv_func_getnameinfo" = xyes
then :
- printf "%s\n" "#define HAVE_GETNAMEINFO 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETNAMEINFO 1" >>confdefs.h
fi
# checks for structures
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether struct tm is in sys/time.h or time.h" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether struct tm is in sys/time.h or time.h" >&5
printf %s "checking whether struct tm is in sys/time.h or time.h... " >&6; }
if test ${ac_cv_struct_tm+y}
then :
@@ -25802,11 +25882,11 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_struct_tm" >&5
-printf "%s\n" "$ac_cv_struct_tm" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_struct_tm" >&5
+printf '%s\n' "$ac_cv_struct_tm" >&6; }
if test $ac_cv_struct_tm = sys/time.h; then
-printf "%s\n" "#define TM_IN_SYS_TIME 1" >>confdefs.h
+printf '%s\n' "#define TM_IN_SYS_TIME 1" >>confdefs.h
fi
@@ -25817,18 +25897,18 @@ ac_fn_c_check_member "$LINENO" "struct tm" "tm_zone" "ac_cv_member_struct_tm_tm_
if test "x$ac_cv_member_struct_tm_tm_zone" = xyes
then :
-printf "%s\n" "#define HAVE_STRUCT_TM_TM_ZONE 1" >>confdefs.h
+printf '%s\n' "#define HAVE_STRUCT_TM_TM_ZONE 1" >>confdefs.h
fi
if test "$ac_cv_member_struct_tm_tm_zone" = yes; then
-printf "%s\n" "#define HAVE_TM_ZONE 1" >>confdefs.h
+printf '%s\n' "#define HAVE_TM_ZONE 1" >>confdefs.h
else
ac_fn_check_decl "$LINENO" "tzname" "ac_cv_have_decl_tzname" "#include
-" "$ac_c_undeclared_builtin_options" "CFLAGS"
+" "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
if test "x$ac_cv_have_decl_tzname" = xyes
then :
ac_have_decl=1
@@ -25836,9 +25916,9 @@ else case e in #(
e) ac_have_decl=0 ;;
esac
fi
-printf "%s\n" "#define HAVE_DECL_TZNAME $ac_have_decl" >>confdefs.h
+printf '%s\n' "#define HAVE_DECL_TZNAME $ac_have_decl" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for tzname" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for tzname" >&5
printf %s "checking for tzname... " >&6; }
if test ${ac_cv_var_tzname+y}
then :
@@ -25870,11 +25950,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
conftest$ac_exeext conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_var_tzname" >&5
-printf "%s\n" "$ac_cv_var_tzname" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_var_tzname" >&5
+printf '%s\n' "$ac_cv_var_tzname" >&6; }
if test $ac_cv_var_tzname = yes; then
-printf "%s\n" "#define HAVE_TZNAME 1" >>confdefs.h
+printf '%s\n' "#define HAVE_TZNAME 1" >>confdefs.h
fi
fi
@@ -25883,7 +25963,7 @@ ac_fn_c_check_member "$LINENO" "struct stat" "st_rdev" "ac_cv_member_struct_stat
if test "x$ac_cv_member_struct_stat_st_rdev" = xyes
then :
-printf "%s\n" "#define HAVE_STRUCT_STAT_ST_RDEV 1" >>confdefs.h
+printf '%s\n' "#define HAVE_STRUCT_STAT_ST_RDEV 1" >>confdefs.h
fi
@@ -25892,7 +25972,7 @@ ac_fn_c_check_member "$LINENO" "struct stat" "st_blksize" "ac_cv_member_struct_s
if test "x$ac_cv_member_struct_stat_st_blksize" = xyes
then :
-printf "%s\n" "#define HAVE_STRUCT_STAT_ST_BLKSIZE 1" >>confdefs.h
+printf '%s\n' "#define HAVE_STRUCT_STAT_ST_BLKSIZE 1" >>confdefs.h
fi
@@ -25901,7 +25981,7 @@ ac_fn_c_check_member "$LINENO" "struct stat" "st_flags" "ac_cv_member_struct_sta
if test "x$ac_cv_member_struct_stat_st_flags" = xyes
then :
-printf "%s\n" "#define HAVE_STRUCT_STAT_ST_FLAGS 1" >>confdefs.h
+printf '%s\n' "#define HAVE_STRUCT_STAT_ST_FLAGS 1" >>confdefs.h
fi
@@ -25910,7 +25990,7 @@ ac_fn_c_check_member "$LINENO" "struct stat" "st_gen" "ac_cv_member_struct_stat_
if test "x$ac_cv_member_struct_stat_st_gen" = xyes
then :
-printf "%s\n" "#define HAVE_STRUCT_STAT_ST_GEN 1" >>confdefs.h
+printf '%s\n' "#define HAVE_STRUCT_STAT_ST_GEN 1" >>confdefs.h
fi
@@ -25919,7 +25999,7 @@ ac_fn_c_check_member "$LINENO" "struct stat" "st_birthtime" "ac_cv_member_struct
if test "x$ac_cv_member_struct_stat_st_birthtime" = xyes
then :
-printf "%s\n" "#define HAVE_STRUCT_STAT_ST_BIRTHTIME 1" >>confdefs.h
+printf '%s\n' "#define HAVE_STRUCT_STAT_ST_BIRTHTIME 1" >>confdefs.h
fi
@@ -25928,7 +26008,7 @@ ac_fn_c_check_member "$LINENO" "struct stat" "st_blocks" "ac_cv_member_struct_st
if test "x$ac_cv_member_struct_stat_st_blocks" = xyes
then :
-printf "%s\n" "#define HAVE_STRUCT_STAT_ST_BLOCKS 1" >>confdefs.h
+printf '%s\n' "#define HAVE_STRUCT_STAT_ST_BLOCKS 1" >>confdefs.h
fi
@@ -25941,7 +26021,7 @@ ac_fn_c_check_member "$LINENO" "struct passwd" "pw_gecos" "ac_cv_member_struct_p
if test "x$ac_cv_member_struct_passwd_pw_gecos" = xyes
then :
-printf "%s\n" "#define HAVE_STRUCT_PASSWD_PW_GECOS 1" >>confdefs.h
+printf '%s\n' "#define HAVE_STRUCT_PASSWD_PW_GECOS 1" >>confdefs.h
fi
@@ -25953,7 +26033,7 @@ ac_fn_c_check_member "$LINENO" "struct passwd" "pw_passwd" "ac_cv_member_struct_
if test "x$ac_cv_member_struct_passwd_pw_passwd" = xyes
then :
-printf "%s\n" "#define HAVE_STRUCT_PASSWD_PW_PASSWD 1" >>confdefs.h
+printf '%s\n' "#define HAVE_STRUCT_PASSWD_PW_PASSWD 1" >>confdefs.h
fi
@@ -25964,7 +26044,7 @@ ac_fn_c_check_member "$LINENO" "siginfo_t" "si_band" "ac_cv_member_siginfo_t_si_
if test "x$ac_cv_member_siginfo_t_si_band" = xyes
then :
-printf "%s\n" "#define HAVE_SIGINFO_T_SI_BAND 1" >>confdefs.h
+printf '%s\n' "#define HAVE_SIGINFO_T_SI_BAND 1" >>confdefs.h
fi
@@ -25978,7 +26058,7 @@ if test "$ac_cv_func_statx" = yes; then
if test "x$ac_cv_member_struct_statx_stx_mnt_id" = xyes
then :
-printf "%s\n" "#define HAVE_STRUCT_STATX_STX_MNT_ID 1" >>confdefs.h
+printf '%s\n' "#define HAVE_STRUCT_STATX_STX_MNT_ID 1" >>confdefs.h
fi
@@ -25987,7 +26067,7 @@ fi
if test "x$ac_cv_member_struct_statx_stx_dio_mem_align" = xyes
then :
-printf "%s\n" "#define HAVE_STRUCT_STATX_STX_DIO_MEM_ALIGN 1" >>confdefs.h
+printf '%s\n' "#define HAVE_STRUCT_STATX_STX_DIO_MEM_ALIGN 1" >>confdefs.h
fi
@@ -25997,7 +26077,7 @@ fi
if test "x$ac_cv_member_struct_statx_stx_subvol" = xyes
then :
-printf "%s\n" "#define HAVE_STRUCT_STATX_STX_SUBVOL 1" >>confdefs.h
+printf '%s\n' "#define HAVE_STRUCT_STATX_STX_SUBVOL 1" >>confdefs.h
fi
@@ -26006,7 +26086,7 @@ fi
if test "x$ac_cv_member_struct_statx_stx_atomic_write_unit_min" = xyes
then :
-printf "%s\n" "#define HAVE_STRUCT_STATX_STX_ATOMIC_WRITE_UNIT_MIN 1" >>confdefs.h
+printf '%s\n' "#define HAVE_STRUCT_STATX_STX_ATOMIC_WRITE_UNIT_MIN 1" >>confdefs.h
fi
@@ -26017,7 +26097,7 @@ fi
if test "x$ac_cv_member_struct_statx_stx_dio_read_offset_align" = xyes
then :
-printf "%s\n" "#define HAVE_STRUCT_STATX_STX_DIO_READ_OFFSET_ALIGN 1" >>confdefs.h
+printf '%s\n' "#define HAVE_STRUCT_STATX_STX_DIO_READ_OFFSET_ALIGN 1" >>confdefs.h
fi
@@ -26029,14 +26109,14 @@ fi
if test "x$ac_cv_member_struct_statx_stx_atomic_write_unit_max_opt" = xyes
then :
-printf "%s\n" "#define HAVE_STRUCT_STATX_STX_ATOMIC_WRITE_UNIT_MAX_OPT 1" >>confdefs.h
+printf '%s\n' "#define HAVE_STRUCT_STATX_STX_ATOMIC_WRITE_UNIT_MAX_OPT 1" >>confdefs.h
fi
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for time.h that defines altzone" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for time.h that defines altzone" >&5
printf %s "checking for time.h that defines altzone... " >&6; }
if test ${ac_cv_header_time_altzone+y}
then :
@@ -26065,15 +26145,15 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_time_altzone" >&5
-printf "%s\n" "$ac_cv_header_time_altzone" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_time_altzone" >&5
+printf '%s\n' "$ac_cv_header_time_altzone" >&6; }
if test $ac_cv_header_time_altzone = yes; then
-printf "%s\n" "#define HAVE_ALTZONE 1" >>confdefs.h
+printf '%s\n' "#define HAVE_ALTZONE 1" >>confdefs.h
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for addrinfo" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for addrinfo" >&5
printf %s "checking for addrinfo... " >&6; }
if test ${ac_cv_struct_addrinfo+y}
then :
@@ -26100,15 +26180,15 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_struct_addrinfo" >&5
-printf "%s\n" "$ac_cv_struct_addrinfo" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_struct_addrinfo" >&5
+printf '%s\n' "$ac_cv_struct_addrinfo" >&6; }
if test $ac_cv_struct_addrinfo = yes; then
-printf "%s\n" "#define HAVE_ADDRINFO 1" >>confdefs.h
+printf '%s\n' "#define HAVE_ADDRINFO 1" >>confdefs.h
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sockaddr_storage" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for sockaddr_storage" >&5
printf %s "checking for sockaddr_storage... " >&6; }
if test ${ac_cv_struct_sockaddr_storage+y}
then :
@@ -26137,15 +26217,15 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_struct_sockaddr_storage" >&5
-printf "%s\n" "$ac_cv_struct_sockaddr_storage" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_struct_sockaddr_storage" >&5
+printf '%s\n' "$ac_cv_struct_sockaddr_storage" >&6; }
if test $ac_cv_struct_sockaddr_storage = yes; then
-printf "%s\n" "#define HAVE_SOCKADDR_STORAGE 1" >>confdefs.h
+printf '%s\n' "#define HAVE_SOCKADDR_STORAGE 1" >>confdefs.h
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sockaddr_alg" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for sockaddr_alg" >&5
printf %s "checking for sockaddr_alg... " >&6; }
if test ${ac_cv_struct_sockaddr_alg+y}
then :
@@ -26175,17 +26255,17 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_struct_sockaddr_alg" >&5
-printf "%s\n" "$ac_cv_struct_sockaddr_alg" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_struct_sockaddr_alg" >&5
+printf '%s\n' "$ac_cv_struct_sockaddr_alg" >&6; }
if test $ac_cv_struct_sockaddr_alg = yes; then
-printf "%s\n" "#define HAVE_SOCKADDR_ALG 1" >>confdefs.h
+printf '%s\n' "#define HAVE_SOCKADDR_ALG 1" >>confdefs.h
fi
# checks for compiler characteristics
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5
printf %s "checking for an ANSI C-conforming const... " >&6; }
if test ${ac_cv_c_const+y}
then :
@@ -26226,15 +26306,12 @@ main (void)
*t++ = 0;
if (s) return 0;
}
- { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */
+ { /* Derived from code rejected by Sun C 1.0 and similar vintage. */
int x[] = {25, 17};
- const int *foo = &x[0];
+ typedef int const *iptr;
+ iptr foo = &x[0];
++foo;
- }
- { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */
- typedef const int *iptr;
- iptr p = 0;
- ++p;
+ if (!*foo) return 0;
}
{ /* IBM XL C 1.02.0.0 rejects this sort of thing, saying
"k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
@@ -26262,16 +26339,16 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5
-printf "%s\n" "$ac_cv_c_const" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5
+printf '%s\n' "$ac_cv_c_const" >&6; }
if test $ac_cv_c_const = no; then
-printf "%s\n" "#define const /**/" >>confdefs.h
+printf '%s\n' "#define const /**/" >>confdefs.h
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for working signed char" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for working signed char" >&5
printf %s "checking for working signed char... " >&6; }
if test ${ac_cv_working_signed_char_c+y}
then :
@@ -26300,18 +26377,18 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_working_signed_char_c" >&5
-printf "%s\n" "$ac_cv_working_signed_char_c" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_working_signed_char_c" >&5
+printf '%s\n' "$ac_cv_working_signed_char_c" >&6; }
if test "x$ac_cv_working_signed_char_c" = xno
then :
-printf "%s\n" "#define signed /**/" >>confdefs.h
+printf '%s\n' "#define signed /**/" >>confdefs.h
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for prototypes" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for prototypes" >&5
printf %s "checking for prototypes... " >&6; }
if test ${ac_cv_function_prototypes+y}
then :
@@ -26340,13 +26417,13 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_function_prototypes" >&5
-printf "%s\n" "$ac_cv_function_prototypes" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_function_prototypes" >&5
+printf '%s\n' "$ac_cv_function_prototypes" >&6; }
if test "x$ac_cv_function_prototypes" = xyes
then :
-printf "%s\n" "#define HAVE_PROTOTYPES 1" >>confdefs.h
+printf '%s\n' "#define HAVE_PROTOTYPES 1" >>confdefs.h
fi
@@ -26355,7 +26432,7 @@ fi
# check for socketpair
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for socketpair" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for socketpair" >&5
printf %s "checking for socketpair... " >&6; }
if test ${ac_cv_func_socketpair+y}
then :
@@ -26386,12 +26463,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_socketpair" >&5
-printf "%s\n" "$ac_cv_func_socketpair" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_socketpair" >&5
+printf '%s\n' "$ac_cv_func_socketpair" >&6; }
if test "x$ac_cv_func_socketpair" = xyes
then :
-printf "%s\n" "#define HAVE_SOCKETPAIR 1" >>confdefs.h
+printf '%s\n' "#define HAVE_SOCKETPAIR 1" >>confdefs.h
fi
@@ -26399,7 +26476,7 @@ fi
# check if sockaddr has sa_len member
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if sockaddr has sa_len member" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking if sockaddr has sa_len member" >&5
printf %s "checking if sockaddr has sa_len member... " >&6; }
if test ${ac_cv_struct_sockaddr_sa_len+y}
then :
@@ -26430,13 +26507,13 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_struct_sockaddr_sa_len" >&5
-printf "%s\n" "$ac_cv_struct_sockaddr_sa_len" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_struct_sockaddr_sa_len" >&5
+printf '%s\n' "$ac_cv_struct_sockaddr_sa_len" >&6; }
if test "x$ac_cv_struct_sockaddr_sa_len" = xyes
then :
-printf "%s\n" "#define HAVE_SOCKADDR_SA_LEN 1" >>confdefs.h
+printf '%s\n' "#define HAVE_SOCKADDR_SA_LEN 1" >>confdefs.h
fi
@@ -26447,9 +26524,9 @@ fi
ac_fn_c_check_func "$LINENO" "gethostbyname_r" "ac_cv_func_gethostbyname_r"
if test "x$ac_cv_func_gethostbyname_r" = xyes
then :
- printf "%s\n" "#define HAVE_GETHOSTBYNAME_R 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETHOSTBYNAME_R 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking gethostbyname_r with 6 args" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking gethostbyname_r with 6 args" >&5
printf %s "checking gethostbyname_r with 6 args... " >&6; }
OLD_CFLAGS=$CFLAGS
CFLAGS="$CFLAGS $MY_CPPFLAGS $MY_THREAD_CPPFLAGS $MY_CFLAGS"
@@ -26477,19 +26554,19 @@ _ACEOF
if ac_fn_c_try_compile "$LINENO"
then :
- printf "%s\n" "#define HAVE_GETHOSTBYNAME_R 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETHOSTBYNAME_R 1" >>confdefs.h
-printf "%s\n" "#define HAVE_GETHOSTBYNAME_R_6_ARG 1" >>confdefs.h
+printf '%s\n' "#define HAVE_GETHOSTBYNAME_R_6_ARG 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking gethostbyname_r with 5 args" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking gethostbyname_r with 5 args" >&5
printf %s "checking gethostbyname_r with 5 args... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -26515,19 +26592,19 @@ _ACEOF
if ac_fn_c_try_compile "$LINENO"
then :
- printf "%s\n" "#define HAVE_GETHOSTBYNAME_R 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETHOSTBYNAME_R 1" >>confdefs.h
-printf "%s\n" "#define HAVE_GETHOSTBYNAME_R_5_ARG 1" >>confdefs.h
+printf '%s\n' "#define HAVE_GETHOSTBYNAME_R_5_ARG 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking gethostbyname_r with 3 args" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking gethostbyname_r with 3 args" >&5
printf %s "checking gethostbyname_r with 3 args... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -26551,18 +26628,18 @@ _ACEOF
if ac_fn_c_try_compile "$LINENO"
then :
- printf "%s\n" "#define HAVE_GETHOSTBYNAME_R 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETHOSTBYNAME_R 1" >>confdefs.h
-printf "%s\n" "#define HAVE_GETHOSTBYNAME_R_3_ARG 1" >>confdefs.h
+printf '%s\n' "#define HAVE_GETHOSTBYNAME_R_3_ARG 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
;;
esac
fi
@@ -26582,7 +26659,7 @@ else case e in #(
ac_fn_c_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname"
if test "x$ac_cv_func_gethostbyname" = xyes
then :
- printf "%s\n" "#define HAVE_GETHOSTBYNAME 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_GETHOSTBYNAME 1" >>confdefs.h
fi
@@ -26605,7 +26682,7 @@ if test "x$ac_cv_func___fpu_control" = xyes
then :
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for __fpu_control in -lieee" >&5
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for __fpu_control in -lieee" >&5
printf %s "checking for __fpu_control in -lieee... " >&6; }
if test ${ac_cv_lib_ieee___fpu_control+y}
then :
@@ -26646,11 +26723,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ieee___fpu_control" >&5
-printf "%s\n" "$ac_cv_lib_ieee___fpu_control" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ieee___fpu_control" >&5
+printf '%s\n' "$ac_cv_lib_ieee___fpu_control" >&6; }
if test "x$ac_cv_lib_ieee___fpu_control" = xyes
then :
- printf "%s\n" "#define HAVE_LIBIEEE 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_LIBIEEE 1" >>confdefs.h
LIBS="-lieee $LIBS"
@@ -26667,7 +26744,7 @@ case $ac_sys_system in
Darwin) ;;
*) LIBM=-lm
esac
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-libm=STRING" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-libm=STRING" >&5
printf %s "checking for --with-libm=STRING... " >&6; }
# Check whether --with-libm was given.
@@ -26676,24 +26753,24 @@ then :
withval=$with_libm;
if test "$withval" = no
then LIBM=
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: force LIBM empty" >&5
-printf "%s\n" "force LIBM empty" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: force LIBM empty" >&5
+printf '%s\n' "force LIBM empty" >&6; }
elif test "$withval" != yes
then LIBM=$withval
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: set LIBM=\"$withval\"" >&5
-printf "%s\n" "set LIBM=\"$withval\"" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: set LIBM=\"$withval\"" >&5
+printf '%s\n' "set LIBM=\"$withval\"" >&6; }
else as_fn_error $? "proper usage is --with-libm=STRING" "$LINENO" 5
fi
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: default LIBM=\"$LIBM\"" >&5
-printf "%s\n" "default LIBM=\"$LIBM\"" >&6; } ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: default LIBM=\"$LIBM\"" >&5
+printf '%s\n' "default LIBM=\"$LIBM\"" >&6; } ;;
esac
fi
# check for --with-libc=...
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-libc=STRING" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-libc=STRING" >&5
printf %s "checking for --with-libc=STRING... " >&6; }
# Check whether --with-libc was given.
@@ -26702,17 +26779,17 @@ then :
withval=$with_libc;
if test "$withval" = no
then LIBC=
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: force LIBC empty" >&5
-printf "%s\n" "force LIBC empty" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: force LIBC empty" >&5
+printf '%s\n' "force LIBC empty" >&6; }
elif test "$withval" != yes
then LIBC=$withval
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: set LIBC=\"$withval\"" >&5
-printf "%s\n" "set LIBC=\"$withval\"" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: set LIBC=\"$withval\"" >&5
+printf '%s\n' "set LIBC=\"$withval\"" >&6; }
else as_fn_error $? "proper usage is --with-libc=STRING" "$LINENO" 5
fi
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: default LIBC=\"$LIBC\"" >&5
-printf "%s\n" "default LIBC=\"$LIBC\"" >&6; } ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: default LIBC=\"$LIBC\"" >&5
+printf '%s\n' "default LIBC=\"$LIBC\"" >&6; } ;;
esac
fi
@@ -26722,7 +26799,7 @@ fi
# **************************************
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for x64 gcc inline assembler" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for x64 gcc inline assembler" >&5
printf %s "checking for x64 gcc inline assembler... " >&6; }
if test ${ac_cv_gcc_asm_for_x64+y}
then :
@@ -26754,14 +26831,14 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_gcc_asm_for_x64" >&5
-printf "%s\n" "$ac_cv_gcc_asm_for_x64" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_gcc_asm_for_x64" >&5
+printf '%s\n' "$ac_cv_gcc_asm_for_x64" >&6; }
if test "x$ac_cv_gcc_asm_for_x64" = xyes
then :
-printf "%s\n" "#define HAVE_GCC_ASM_FOR_X64 1" >>confdefs.h
+printf '%s\n' "#define HAVE_GCC_ASM_FOR_X64 1" >>confdefs.h
fi
@@ -26770,7 +26847,7 @@ fi
# * Check for various properties of floating point *
# **************************************************
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether float word ordering is bigendian" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether float word ordering is bigendian" >&5
printf %s "checking whether float word ordering is bigendian... " >&6; }
if test ${ax_cv_c_float_words_bigendian+y}
then :
@@ -26816,17 +26893,17 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
conftest$ac_exeext conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_c_float_words_bigendian" >&5
-printf "%s\n" "$ax_cv_c_float_words_bigendian" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ax_cv_c_float_words_bigendian" >&5
+printf '%s\n' "$ax_cv_c_float_words_bigendian" >&6; }
case $ax_cv_c_float_words_bigendian in
yes)
-printf "%s\n" "#define DOUBLE_IS_BIG_ENDIAN_IEEE754 1" >>confdefs.h
+printf '%s\n' "#define DOUBLE_IS_BIG_ENDIAN_IEEE754 1" >>confdefs.h
;;
no)
-printf "%s\n" "#define DOUBLE_IS_LITTLE_ENDIAN_IEEE754 1" >>confdefs.h
+printf '%s\n' "#define DOUBLE_IS_LITTLE_ENDIAN_IEEE754 1" >>confdefs.h
;;
*)
as_fn_error $? "Unknown float word ordering. You need to manually preset ax_cv_c_float_words_bigendian=no (or yes) according to your system." "$LINENO" 5 ;;
@@ -26844,7 +26921,7 @@ esac
# This inline assembler syntax may also work for suncc and icc,
# so we try it on all platforms.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we can use gcc inline assembler to get and set x87 control word" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether we can use gcc inline assembler to get and set x87 control word" >&5
printf %s "checking whether we can use gcc inline assembler to get and set x87 control word... " >&6; }
if test ${ac_cv_gcc_asm_for_x87+y}
then :
@@ -26878,18 +26955,18 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_gcc_asm_for_x87" >&5
-printf "%s\n" "$ac_cv_gcc_asm_for_x87" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_gcc_asm_for_x87" >&5
+printf '%s\n' "$ac_cv_gcc_asm_for_x87" >&6; }
if test "x$ac_cv_gcc_asm_for_x87" = xyes
then :
-printf "%s\n" "#define HAVE_GCC_ASM_FOR_X87 1" >>confdefs.h
+printf '%s\n' "#define HAVE_GCC_ASM_FOR_X87 1" >>confdefs.h
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we can use gcc inline assembler to get and set mc68881 fpcr" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether we can use gcc inline assembler to get and set mc68881 fpcr" >&5
printf %s "checking whether we can use gcc inline assembler to get and set mc68881 fpcr... " >&6; }
if test ${ac_cv_gcc_asm_for_mc68881+y}
then :
@@ -26923,13 +27000,13 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_gcc_asm_for_mc68881" >&5
-printf "%s\n" "$ac_cv_gcc_asm_for_mc68881" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_gcc_asm_for_mc68881" >&5
+printf '%s\n' "$ac_cv_gcc_asm_for_mc68881" >&6; }
if test "x$ac_cv_gcc_asm_for_mc68881" = xyes
then :
-printf "%s\n" "#define HAVE_GCC_ASM_FOR_MC68881 1" >>confdefs.h
+printf '%s\n' "#define HAVE_GCC_ASM_FOR_MC68881 1" >>confdefs.h
fi
@@ -26939,7 +27016,7 @@ fi
# IEEE 754 platforms. On IEEE 754, test should return 1 if rounding
# mode is round-to-nearest and double rounding issues are present, and
# 0 otherwise. See https://github.com/python/cpython/issues/47186 for more info.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for x87-style double rounding" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for x87-style double rounding" >&5
printf %s "checking for x87-style double rounding... " >&6; }
if test ${ac_cv_x87_double_rounding+y}
then :
@@ -26992,14 +27069,14 @@ CC="$ac_save_cc"
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_x87_double_rounding" >&5
-printf "%s\n" "$ac_cv_x87_double_rounding" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_x87_double_rounding" >&5
+printf '%s\n' "$ac_cv_x87_double_rounding" >&6; }
if test "x$ac_cv_x87_double_rounding" = xyes
then :
-printf "%s\n" "#define X87_DOUBLE_ROUNDING 1" >>confdefs.h
+printf '%s\n' "#define X87_DOUBLE_ROUNDING 1" >>confdefs.h
fi
@@ -27014,12 +27091,12 @@ LIBS="$LIBS $LIBM"
for ac_func in acosh asinh atanh erf erfc expm1 log1p log2
do :
- as_ac_var=`printf "%s\n" "ac_cv_func_$ac_func" | sed "$as_sed_sh"`
+ as_ac_var=`printf '%s\n' "ac_cv_func_$ac_func" | sed "$as_sed_sh"`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
if eval test \"x\$"$as_ac_var"\" = x"yes"
then :
cat >>confdefs.h <<_ACEOF
-#define `printf "%s\n" "HAVE_$ac_func" | sed "$as_sed_cpp"` 1
+#define `printf '%s\n' "HAVE_$ac_func" | sed "$as_sed_cpp"` 1
_ACEOF
else case e in #(
@@ -27052,7 +27129,7 @@ done
LIBS=$LIBS_SAVE
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether POSIX semaphores are enabled" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether POSIX semaphores are enabled" >&5
printf %s "checking whether POSIX semaphores are enabled... " >&6; }
if test ${ac_cv_posix_semaphores_enabled+y}
then :
@@ -27100,18 +27177,18 @@ fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_posix_semaphores_enabled" >&5
-printf "%s\n" "$ac_cv_posix_semaphores_enabled" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_posix_semaphores_enabled" >&5
+printf '%s\n' "$ac_cv_posix_semaphores_enabled" >&6; }
if test "x$ac_cv_posix_semaphores_enabled" = xno
then :
-printf "%s\n" "#define POSIX_SEMAPHORES_NOT_ENABLED 1" >>confdefs.h
+printf '%s\n' "#define POSIX_SEMAPHORES_NOT_ENABLED 1" >>confdefs.h
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for broken sem_getvalue" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for broken sem_getvalue" >&5
printf %s "checking for broken sem_getvalue... " >&6; }
if test ${ac_cv_broken_sem_getvalue+y}
then :
@@ -27163,19 +27240,19 @@ fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_broken_sem_getvalue" >&5
-printf "%s\n" "$ac_cv_broken_sem_getvalue" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_broken_sem_getvalue" >&5
+printf '%s\n' "$ac_cv_broken_sem_getvalue" >&6; }
if test "x$ac_cv_broken_sem_getvalue" = xyes
then :
-printf "%s\n" "#define HAVE_BROKEN_SEM_GETVALUE 1" >>confdefs.h
+printf '%s\n' "#define HAVE_BROKEN_SEM_GETVALUE 1" >>confdefs.h
fi
ac_fn_check_decl "$LINENO" "RTLD_LAZY" "ac_cv_have_decl_RTLD_LAZY" "#include
-" "$ac_c_undeclared_builtin_options" "CFLAGS"
+" "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
if test "x$ac_cv_have_decl_RTLD_LAZY" = xyes
then :
ac_have_decl=1
@@ -27183,9 +27260,9 @@ else case e in #(
e) ac_have_decl=0 ;;
esac
fi
-printf "%s\n" "#define HAVE_DECL_RTLD_LAZY $ac_have_decl" >>confdefs.h
+printf '%s\n' "#define HAVE_DECL_RTLD_LAZY $ac_have_decl" >>confdefs.h
ac_fn_check_decl "$LINENO" "RTLD_NOW" "ac_cv_have_decl_RTLD_NOW" "#include
-" "$ac_c_undeclared_builtin_options" "CFLAGS"
+" "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
if test "x$ac_cv_have_decl_RTLD_NOW" = xyes
then :
ac_have_decl=1
@@ -27193,9 +27270,9 @@ else case e in #(
e) ac_have_decl=0 ;;
esac
fi
-printf "%s\n" "#define HAVE_DECL_RTLD_NOW $ac_have_decl" >>confdefs.h
+printf '%s\n' "#define HAVE_DECL_RTLD_NOW $ac_have_decl" >>confdefs.h
ac_fn_check_decl "$LINENO" "RTLD_GLOBAL" "ac_cv_have_decl_RTLD_GLOBAL" "#include
-" "$ac_c_undeclared_builtin_options" "CFLAGS"
+" "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
if test "x$ac_cv_have_decl_RTLD_GLOBAL" = xyes
then :
ac_have_decl=1
@@ -27203,9 +27280,9 @@ else case e in #(
e) ac_have_decl=0 ;;
esac
fi
-printf "%s\n" "#define HAVE_DECL_RTLD_GLOBAL $ac_have_decl" >>confdefs.h
+printf '%s\n' "#define HAVE_DECL_RTLD_GLOBAL $ac_have_decl" >>confdefs.h
ac_fn_check_decl "$LINENO" "RTLD_LOCAL" "ac_cv_have_decl_RTLD_LOCAL" "#include
-" "$ac_c_undeclared_builtin_options" "CFLAGS"
+" "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
if test "x$ac_cv_have_decl_RTLD_LOCAL" = xyes
then :
ac_have_decl=1
@@ -27213,9 +27290,9 @@ else case e in #(
e) ac_have_decl=0 ;;
esac
fi
-printf "%s\n" "#define HAVE_DECL_RTLD_LOCAL $ac_have_decl" >>confdefs.h
+printf '%s\n' "#define HAVE_DECL_RTLD_LOCAL $ac_have_decl" >>confdefs.h
ac_fn_check_decl "$LINENO" "RTLD_NODELETE" "ac_cv_have_decl_RTLD_NODELETE" "#include
-" "$ac_c_undeclared_builtin_options" "CFLAGS"
+" "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
if test "x$ac_cv_have_decl_RTLD_NODELETE" = xyes
then :
ac_have_decl=1
@@ -27223,9 +27300,9 @@ else case e in #(
e) ac_have_decl=0 ;;
esac
fi
-printf "%s\n" "#define HAVE_DECL_RTLD_NODELETE $ac_have_decl" >>confdefs.h
+printf '%s\n' "#define HAVE_DECL_RTLD_NODELETE $ac_have_decl" >>confdefs.h
ac_fn_check_decl "$LINENO" "RTLD_NOLOAD" "ac_cv_have_decl_RTLD_NOLOAD" "#include
-" "$ac_c_undeclared_builtin_options" "CFLAGS"
+" "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
if test "x$ac_cv_have_decl_RTLD_NOLOAD" = xyes
then :
ac_have_decl=1
@@ -27233,9 +27310,9 @@ else case e in #(
e) ac_have_decl=0 ;;
esac
fi
-printf "%s\n" "#define HAVE_DECL_RTLD_NOLOAD $ac_have_decl" >>confdefs.h
+printf '%s\n' "#define HAVE_DECL_RTLD_NOLOAD $ac_have_decl" >>confdefs.h
ac_fn_check_decl "$LINENO" "RTLD_DEEPBIND" "ac_cv_have_decl_RTLD_DEEPBIND" "#include
-" "$ac_c_undeclared_builtin_options" "CFLAGS"
+" "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
if test "x$ac_cv_have_decl_RTLD_DEEPBIND" = xyes
then :
ac_have_decl=1
@@ -27243,9 +27320,9 @@ else case e in #(
e) ac_have_decl=0 ;;
esac
fi
-printf "%s\n" "#define HAVE_DECL_RTLD_DEEPBIND $ac_have_decl" >>confdefs.h
+printf '%s\n' "#define HAVE_DECL_RTLD_DEEPBIND $ac_have_decl" >>confdefs.h
ac_fn_check_decl "$LINENO" "RTLD_MEMBER" "ac_cv_have_decl_RTLD_MEMBER" "#include
-" "$ac_c_undeclared_builtin_options" "CFLAGS"
+" "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
if test "x$ac_cv_have_decl_RTLD_MEMBER" = xyes
then :
ac_have_decl=1
@@ -27253,11 +27330,11 @@ else case e in #(
e) ac_have_decl=0 ;;
esac
fi
-printf "%s\n" "#define HAVE_DECL_RTLD_MEMBER $ac_have_decl" >>confdefs.h
+printf '%s\n' "#define HAVE_DECL_RTLD_MEMBER $ac_have_decl" >>confdefs.h
# determine what size digit to use for Python's longs
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking digit size for Python's longs" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking digit size for Python's longs" >&5
printf %s "checking digit size for Python's longs... " >&6; }
# Check whether --enable-big-digits was given.
if test ${enable_big_digits+y}
@@ -27272,15 +27349,15 @@ no)
*)
as_fn_error $? "bad value $enable_big_digits for --enable-big-digits; value should be 15 or 30" "$LINENO" 5 ;;
esac
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $enable_big_digits" >&5
-printf "%s\n" "$enable_big_digits" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $enable_big_digits" >&5
+printf '%s\n' "$enable_big_digits" >&6; }
-printf "%s\n" "#define PYLONG_BITS_IN_DIGIT $enable_big_digits" >>confdefs.h
+printf '%s\n' "#define PYLONG_BITS_IN_DIGIT $enable_big_digits" >>confdefs.h
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no value specified" >&5
-printf "%s\n" "no value specified" >&6; } ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no value specified" >&5
+printf '%s\n' "no value specified" >&6; } ;;
esac
fi
@@ -27291,7 +27368,7 @@ if test "x$ac_cv_header_wchar_h" = xyes
then :
-printf "%s\n" "#define HAVE_WCHAR_H 1" >>confdefs.h
+printf '%s\n' "#define HAVE_WCHAR_H 1" >>confdefs.h
wchar_h="yes"
@@ -27309,7 +27386,7 @@ then
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like 'int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking size of wchar_t" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking size of wchar_t" >&5
printf %s "checking size of wchar_t... " >&6; }
if test ${ac_cv_sizeof_wchar_t+y}
then :
@@ -27320,25 +27397,18 @@ else case e in #(
then :
else case e in #(
- e) if test "$ac_cv_type_wchar_t" = yes; then
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5
-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;}
-as_fn_error 77 "cannot compute sizeof (wchar_t)
-See 'config.log' for more details" "$LINENO" 5; }
- else
- ac_cv_sizeof_wchar_t=0
- fi ;;
+ e) ac_cv_sizeof_wchar_t=0 ;;
esac
fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_wchar_t" >&5
-printf "%s\n" "$ac_cv_sizeof_wchar_t" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_wchar_t" >&5
+printf '%s\n' "$ac_cv_sizeof_wchar_t" >&6; }
-printf "%s\n" "#define SIZEOF_WCHAR_T $ac_cv_sizeof_wchar_t" >>confdefs.h
+printf '%s\n' "#define SIZEOF_WCHAR_T $ac_cv_sizeof_wchar_t" >>confdefs.h
fi
@@ -27347,7 +27417,7 @@ fi
if test "$wchar_h" = yes
then
# check whether wchar_t is signed or not
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether wchar_t is signed" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether wchar_t is signed" >&5
printf %s "checking whether wchar_t is signed... " >&6; }
if test ${ac_cv_wchar_t_signed+y}
then :
@@ -27383,24 +27453,24 @@ fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_wchar_t_signed" >&5
-printf "%s\n" "$ac_cv_wchar_t_signed" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_wchar_t_signed" >&5
+printf '%s\n' "$ac_cv_wchar_t_signed" >&6; }
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether wchar_t is usable" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether wchar_t is usable" >&5
printf %s "checking whether wchar_t is usable... " >&6; }
# wchar_t is only usable if it maps to an unsigned type
if test "$ac_cv_sizeof_wchar_t" -ge 2 \
-a "$ac_cv_wchar_t_signed" = "no"
then
-printf "%s\n" "#define HAVE_USABLE_WCHAR_T 1" >>confdefs.h
+printf '%s\n' "#define HAVE_USABLE_WCHAR_T 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
case $ac_sys_system/$ac_sys_release in
@@ -27412,7 +27482,7 @@ SunOS/*)
# non-Unicode locales is not Unicode and hence cannot be used directly.
# https://docs.oracle.com/cd/E37838_01/html/E61053/gmwke.html
-printf "%s\n" "#define HAVE_NON_UNICODE_WCHAR_T_REPRESENTATION 1" >>confdefs.h
+printf '%s\n' "#define HAVE_NON_UNICODE_WCHAR_T_REPRESENTATION 1" >>confdefs.h
fi
fi
@@ -27420,7 +27490,7 @@ printf "%s\n" "#define HAVE_NON_UNICODE_WCHAR_T_REPRESENTATION 1" >>confdefs.h
esac
# check for endianness
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5
printf %s "checking whether byte ordering is bigendian... " >&6; }
if test ${ac_cv_c_bigendian+y}
then :
@@ -27642,17 +27712,17 @@ fi
fi ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_bigendian" >&5
-printf "%s\n" "$ac_cv_c_bigendian" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_bigendian" >&5
+printf '%s\n' "$ac_cv_c_bigendian" >&6; }
case $ac_cv_c_bigendian in #(
yes)
- printf "%s\n" "#define WORDS_BIGENDIAN 1" >>confdefs.h
+ printf '%s\n' "#define WORDS_BIGENDIAN 1" >>confdefs.h
;; #(
no)
;; #(
universal)
-printf "%s\n" "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
+printf '%s\n' "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
;; #(
*)
@@ -27678,15 +27748,15 @@ printf "%s\n" "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
# In Python 3.2 and older, --with-wide-unicode added a 'u' flag.
# In Python 3.7 and older, --with-pymalloc added a 'm' flag.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking ABIFLAGS" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking ABIFLAGS" >&5
printf %s "checking ABIFLAGS... " >&6; }
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ABIFLAGS" >&5
-printf "%s\n" "$ABIFLAGS" >&6; }
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking SOABI" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ABIFLAGS" >&5
+printf '%s\n' "$ABIFLAGS" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking SOABI" >&5
printf %s "checking SOABI... " >&6; }
SOABI='cpython-'`echo $VERSION | tr -d .`${ABIFLAGS}${SOABI_PLATFORM:+-$SOABI_PLATFORM}
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $SOABI" >&5
-printf "%s\n" "$SOABI" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $SOABI" >&5
+printf '%s\n' "$SOABI" >&6; }
# Release build, debug build (Py_DEBUG), and trace refs build (Py_TRACE_REFS)
# are ABI compatible
@@ -27695,18 +27765,20 @@ if test "$Py_DEBUG" = 'true'; then
ALT_SOABI='cpython-'`echo $VERSION | tr -d .``echo $ABIFLAGS | tr -d d`${SOABI_PLATFORM:+-$SOABI_PLATFORM}
-printf "%s\n" "#define ALT_SOABI \"${ALT_SOABI}\"" >>confdefs.h
+cat >>confdefs.h <<_ACEOF
+#define ALT_SOABI "${ALT_SOABI}"
+_ACEOF
fi
EXT_SUFFIX=.${SOABI}${SHLIB_SUFFIX}
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking LDVERSION" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking LDVERSION" >&5
printf %s "checking LDVERSION... " >&6; }
LDVERSION='$(VERSION)$(ABIFLAGS)'
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LDVERSION" >&5
-printf "%s\n" "$LDVERSION" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $LDVERSION" >&5
+printf '%s\n' "$LDVERSION" >&6; }
# Configure the flags and dependencies used when compiling shared modules.
# Do not rename LIBPYTHON - it's accessed via sysconfig by package build
@@ -27732,7 +27804,7 @@ fi
# /usr/$PLATLIBDIR/python$(VERSION)$(ABI_THREAD)
PLATLIBDIR="lib" # XXX: We should probably calculate the defauly from libdir, if defined.
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-platlibdir" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-platlibdir" >&5
printf %s "checking for --with-platlibdir... " >&6; }
# Check whether --with-platlibdir was given.
@@ -27745,16 +27817,16 @@ then :
# --without-platlibdir
if test -n "$withval" -a "$withval" != yes -a "$withval" != no
then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
PLATLIBDIR="$withval"
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; } ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; } ;;
esac
fi
@@ -27775,7 +27847,7 @@ fi
# Check for --with-wheel-pkg-dir=PATH
WHEEL_PKG_DIR=""
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-wheel-pkg-dir" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --with-wheel-pkg-dir" >&5
printf %s "checking for --with-wheel-pkg-dir... " >&6; }
# Check whether --with-wheel-pkg-dir was given.
@@ -27783,23 +27855,23 @@ if test ${with_wheel_pkg_dir+y}
then :
withval=$with_wheel_pkg_dir;
if test -n "$withval"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
WHEEL_PKG_DIR="$withval"
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
fi
else case e in #(
- e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; } ;;
+ e) { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; } ;;
esac
fi
# Check whether right shifting a negative integer extends the sign bit
# or fills with zeros (like the Cray J90, according to Tim Peters).
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether right shift extends the sign bit" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether right shift extends the sign bit" >&5
printf %s "checking whether right shift extends the sign bit... " >&6; }
if test ${ac_cv_rshift_extends_sign+y}
then :
@@ -27833,17 +27905,17 @@ fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_rshift_extends_sign" >&5
-printf "%s\n" "$ac_cv_rshift_extends_sign" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_rshift_extends_sign" >&5
+printf '%s\n' "$ac_cv_rshift_extends_sign" >&6; }
if test "$ac_cv_rshift_extends_sign" = no
then
-printf "%s\n" "#define SIGNED_RIGHT_SHIFT_ZERO_FILLS 1" >>confdefs.h
+printf '%s\n' "#define SIGNED_RIGHT_SHIFT_ZERO_FILLS 1" >>confdefs.h
fi
# check for getc_unlocked and related locking functions
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for getc_unlocked() and friends" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for getc_unlocked() and friends" >&5
printf %s "checking for getc_unlocked() and friends... " >&6; }
if test ${ac_cv_have_getc_unlocked+y}
then :
@@ -27877,12 +27949,12 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
conftest$ac_exeext conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_getc_unlocked" >&5
-printf "%s\n" "$ac_cv_have_getc_unlocked" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_getc_unlocked" >&5
+printf '%s\n' "$ac_cv_have_getc_unlocked" >&6; }
if test "$ac_cv_have_getc_unlocked" = yes
then
-printf "%s\n" "#define HAVE_GETC_UNLOCKED 1" >>confdefs.h
+printf '%s\n' "#define HAVE_GETC_UNLOCKED 1" >>confdefs.h
fi
@@ -27918,17 +27990,17 @@ then :
pkg_failed=no
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for readline" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for readline" >&5
printf %s "checking for readline... " >&6; }
if test -n "$LIBREADLINE_CFLAGS"; then
pkg_cv_LIBREADLINE_CFLAGS="$LIBREADLINE_CFLAGS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"readline\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"readline\""; } >&5
($PKG_CONFIG --exists --print-errors "readline") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_LIBREADLINE_CFLAGS=`$PKG_CONFIG --cflags "readline" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -27942,10 +28014,10 @@ if test -n "$LIBREADLINE_LIBS"; then
pkg_cv_LIBREADLINE_LIBS="$LIBREADLINE_LIBS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"readline\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"readline\""; } >&5
($PKG_CONFIG --exists --print-errors "readline") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_LIBREADLINE_LIBS=`$PKG_CONFIG --libs "readline" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -27959,8 +28031,8 @@ fi
if test $pkg_failed = yes; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
_pkg_short_errors_supported=yes
@@ -27989,9 +28061,9 @@ do :
ac_fn_c_check_header_compile "$LINENO" "readline/readline.h" "ac_cv_header_readline_readline_h" "$ac_includes_default"
if test "x$ac_cv_header_readline_readline_h" = xyes
then :
- printf "%s\n" "#define HAVE_READLINE_READLINE_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_READLINE_READLINE_H 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for readline in -lreadline" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for readline in -lreadline" >&5
printf %s "checking for readline in -lreadline... " >&6; }
if test ${ac_cv_lib_readline_readline+y}
then :
@@ -28032,8 +28104,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_readline" >&5
-printf "%s\n" "$ac_cv_lib_readline_readline" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_readline" >&5
+printf '%s\n' "$ac_cv_lib_readline_readline" >&6; }
if test "x$ac_cv_lib_readline_readline" = xyes
then :
@@ -28062,8 +28134,8 @@ LIBS=$save_LIBS
elif test $pkg_failed = untried; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
save_CFLAGS=$CFLAGS
save_CPPFLAGS=$CPPFLAGS
@@ -28078,9 +28150,9 @@ do :
ac_fn_c_check_header_compile "$LINENO" "readline/readline.h" "ac_cv_header_readline_readline_h" "$ac_includes_default"
if test "x$ac_cv_header_readline_readline_h" = xyes
then :
- printf "%s\n" "#define HAVE_READLINE_READLINE_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_READLINE_READLINE_H 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for readline in -lreadline" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for readline in -lreadline" >&5
printf %s "checking for readline in -lreadline... " >&6; }
if test ${ac_cv_lib_readline_readline+y}
then :
@@ -28121,8 +28193,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_readline" >&5
-printf "%s\n" "$ac_cv_lib_readline_readline" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_readline" >&5
+printf '%s\n' "$ac_cv_lib_readline_readline" >&6; }
if test "x$ac_cv_lib_readline_readline" = xyes
then :
@@ -28153,8 +28225,8 @@ LIBS=$save_LIBS
else
LIBREADLINE_CFLAGS=$pkg_cv_LIBREADLINE_CFLAGS
LIBREADLINE_LIBS=$pkg_cv_LIBREADLINE_LIBS
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
LIBREADLINE=readline
READLINE_CFLAGS=$LIBREADLINE_CFLAGS
@@ -28169,17 +28241,17 @@ then :
pkg_failed=no
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for libedit" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for libedit" >&5
printf %s "checking for libedit... " >&6; }
if test -n "$LIBEDIT_CFLAGS"; then
pkg_cv_LIBEDIT_CFLAGS="$LIBEDIT_CFLAGS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libedit\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libedit\""; } >&5
($PKG_CONFIG --exists --print-errors "libedit") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_LIBEDIT_CFLAGS=`$PKG_CONFIG --cflags "libedit" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -28193,10 +28265,10 @@ if test -n "$LIBEDIT_LIBS"; then
pkg_cv_LIBEDIT_LIBS="$LIBEDIT_LIBS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libedit\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libedit\""; } >&5
($PKG_CONFIG --exists --print-errors "libedit") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_LIBEDIT_LIBS=`$PKG_CONFIG --libs "libedit" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -28210,8 +28282,8 @@ fi
if test $pkg_failed = yes; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
_pkg_short_errors_supported=yes
@@ -28240,9 +28312,9 @@ do :
ac_fn_c_check_header_compile "$LINENO" "editline/readline.h" "ac_cv_header_editline_readline_h" "$ac_includes_default"
if test "x$ac_cv_header_editline_readline_h" = xyes
then :
- printf "%s\n" "#define HAVE_EDITLINE_READLINE_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_EDITLINE_READLINE_H 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for readline in -ledit" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for readline in -ledit" >&5
printf %s "checking for readline in -ledit... " >&6; }
if test ${ac_cv_lib_edit_readline+y}
then :
@@ -28283,13 +28355,13 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_edit_readline" >&5
-printf "%s\n" "$ac_cv_lib_edit_readline" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_edit_readline" >&5
+printf '%s\n' "$ac_cv_lib_edit_readline" >&6; }
if test "x$ac_cv_lib_edit_readline" = xyes
then :
LIBREADLINE=edit
- printf "%s\n" "#define WITH_EDITLINE 1" >>confdefs.h
+ printf '%s\n' "#define WITH_EDITLINE 1" >>confdefs.h
READLINE_CFLAGS=${LIBEDIT_CFLAGS-""}
READLINE_LIBS=${LIBEDIT_LIBS-"-ledit"}
@@ -28315,8 +28387,8 @@ LIBS=$save_LIBS
elif test $pkg_failed = untried; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
save_CFLAGS=$CFLAGS
save_CPPFLAGS=$CPPFLAGS
@@ -28331,9 +28403,9 @@ do :
ac_fn_c_check_header_compile "$LINENO" "editline/readline.h" "ac_cv_header_editline_readline_h" "$ac_includes_default"
if test "x$ac_cv_header_editline_readline_h" = xyes
then :
- printf "%s\n" "#define HAVE_EDITLINE_READLINE_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_EDITLINE_READLINE_H 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for readline in -ledit" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for readline in -ledit" >&5
printf %s "checking for readline in -ledit... " >&6; }
if test ${ac_cv_lib_edit_readline+y}
then :
@@ -28374,13 +28446,13 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
LIBS=$ac_check_lib_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_edit_readline" >&5
-printf "%s\n" "$ac_cv_lib_edit_readline" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_edit_readline" >&5
+printf '%s\n' "$ac_cv_lib_edit_readline" >&6; }
if test "x$ac_cv_lib_edit_readline" = xyes
then :
LIBREADLINE=edit
- printf "%s\n" "#define WITH_EDITLINE 1" >>confdefs.h
+ printf '%s\n' "#define WITH_EDITLINE 1" >>confdefs.h
READLINE_CFLAGS=${LIBEDIT_CFLAGS-""}
READLINE_LIBS=${LIBEDIT_LIBS-"-ledit"}
@@ -28408,10 +28480,10 @@ LIBS=$save_LIBS
else
LIBEDIT_CFLAGS=$pkg_cv_LIBEDIT_CFLAGS
LIBEDIT_LIBS=$pkg_cv_LIBEDIT_LIBS
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
- printf "%s\n" "#define WITH_EDITLINE 1" >>confdefs.h
+ printf '%s\n' "#define WITH_EDITLINE 1" >>confdefs.h
LIBREADLINE=edit
READLINE_CFLAGS=$LIBEDIT_CFLAGS
@@ -28423,18 +28495,18 @@ fi
READLINE_CFLAGS=$(echo $READLINE_CFLAGS | sed 's/-D_XOPEN_SOURCE=600//g')
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to link readline" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking how to link readline" >&5
printf %s "checking how to link readline... " >&6; }
if test "x$with_readline" = xno
then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
else case e in #(
e)
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $with_readline (CFLAGS: $READLINE_CFLAGS, LIBS: $READLINE_LIBS)" >&5
-printf "%s\n" "$with_readline (CFLAGS: $READLINE_CFLAGS, LIBS: $READLINE_LIBS)" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $with_readline (CFLAGS: $READLINE_CFLAGS, LIBS: $READLINE_LIBS)" >&5
+printf '%s\n' "$with_readline (CFLAGS: $READLINE_CFLAGS, LIBS: $READLINE_LIBS)" >&6; }
save_CFLAGS=$CFLAGS
save_CPPFLAGS=$CPPFLAGS
@@ -28458,12 +28530,12 @@ save_LIBS=$LIBS
# include
#endif
-" "$ac_c_undeclared_builtin_options" "CFLAGS"
+" "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
if test "x$ac_cv_have_decl_rl_completion_append_character" = xyes
then :
-printf "%s\n" "#define HAVE_RL_COMPLETION_APPEND_CHARACTER 1" >>confdefs.h
+printf '%s\n' "#define HAVE_RL_COMPLETION_APPEND_CHARACTER 1" >>confdefs.h
fi
@@ -28477,18 +28549,18 @@ fi
# include
#endif
-" "$ac_c_undeclared_builtin_options" "CFLAGS"
+" "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
if test "x$ac_cv_have_decl_rl_completion_suppress_append" = xyes
then :
-printf "%s\n" "#define HAVE_RL_COMPLETION_SUPPRESS_APPEND 1" >>confdefs.h
+printf '%s\n' "#define HAVE_RL_COMPLETION_SUPPRESS_APPEND 1" >>confdefs.h
fi
# check for readline 4.0
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for rl_pre_input_hook in -l$LIBREADLINE" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for rl_pre_input_hook in -l$LIBREADLINE" >&5
printf %s "checking for rl_pre_input_hook in -l$LIBREADLINE... " >&6; }
if test ${ac_cv_readline_rl_pre_input_hook+y}
then :
@@ -28527,19 +28599,19 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_readline_rl_pre_input_hook" >&5
-printf "%s\n" "$ac_cv_readline_rl_pre_input_hook" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_readline_rl_pre_input_hook" >&5
+printf '%s\n' "$ac_cv_readline_rl_pre_input_hook" >&6; }
if test "x$ac_cv_readline_rl_pre_input_hook" = xyes
then :
-printf "%s\n" "#define HAVE_RL_PRE_INPUT_HOOK 1" >>confdefs.h
+printf '%s\n' "#define HAVE_RL_PRE_INPUT_HOOK 1" >>confdefs.h
fi
# also in 4.0
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for rl_completion_display_matches_hook in -l$LIBREADLINE" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for rl_completion_display_matches_hook in -l$LIBREADLINE" >&5
printf %s "checking for rl_completion_display_matches_hook in -l$LIBREADLINE... " >&6; }
if test ${ac_cv_readline_rl_completion_display_matches_hook+y}
then :
@@ -28578,19 +28650,19 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_readline_rl_completion_display_matches_hook" >&5
-printf "%s\n" "$ac_cv_readline_rl_completion_display_matches_hook" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_readline_rl_completion_display_matches_hook" >&5
+printf '%s\n' "$ac_cv_readline_rl_completion_display_matches_hook" >&6; }
if test "x$ac_cv_readline_rl_completion_display_matches_hook" = xyes
then :
-printf "%s\n" "#define HAVE_RL_COMPLETION_DISPLAY_MATCHES_HOOK 1" >>confdefs.h
+printf '%s\n' "#define HAVE_RL_COMPLETION_DISPLAY_MATCHES_HOOK 1" >>confdefs.h
fi
# also in 4.0, but not in editline
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for rl_resize_terminal in -l$LIBREADLINE" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for rl_resize_terminal in -l$LIBREADLINE" >&5
printf %s "checking for rl_resize_terminal in -l$LIBREADLINE... " >&6; }
if test ${ac_cv_readline_rl_resize_terminal+y}
then :
@@ -28629,19 +28701,19 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_readline_rl_resize_terminal" >&5
-printf "%s\n" "$ac_cv_readline_rl_resize_terminal" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_readline_rl_resize_terminal" >&5
+printf '%s\n' "$ac_cv_readline_rl_resize_terminal" >&6; }
if test "x$ac_cv_readline_rl_resize_terminal" = xyes
then :
-printf "%s\n" "#define HAVE_RL_RESIZE_TERMINAL 1" >>confdefs.h
+printf '%s\n' "#define HAVE_RL_RESIZE_TERMINAL 1" >>confdefs.h
fi
# check for readline 4.2
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for rl_completion_matches in -l$LIBREADLINE" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for rl_completion_matches in -l$LIBREADLINE" >&5
printf %s "checking for rl_completion_matches in -l$LIBREADLINE... " >&6; }
if test ${ac_cv_readline_rl_completion_matches+y}
then :
@@ -28680,13 +28752,13 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_readline_rl_completion_matches" >&5
-printf "%s\n" "$ac_cv_readline_rl_completion_matches" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_readline_rl_completion_matches" >&5
+printf '%s\n' "$ac_cv_readline_rl_completion_matches" >&6; }
if test "x$ac_cv_readline_rl_completion_matches" = xyes
then :
-printf "%s\n" "#define HAVE_RL_COMPLETION_MATCHES 1" >>confdefs.h
+printf '%s\n' "#define HAVE_RL_COMPLETION_MATCHES 1" >>confdefs.h
fi
@@ -28701,17 +28773,17 @@ fi
# include
#endif
-" "$ac_c_undeclared_builtin_options" "CFLAGS"
+" "$ac_c_undeclared_builtin_options$ac_c_future_darwin_options" "CFLAGS"
if test "x$ac_cv_have_decl_rl_catch_signals" = xyes
then :
-printf "%s\n" "#define HAVE_RL_CATCH_SIGNAL 1" >>confdefs.h
+printf '%s\n' "#define HAVE_RL_CATCH_SIGNAL 1" >>confdefs.h
fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for append_history in -l$LIBREADLINE" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for append_history in -l$LIBREADLINE" >&5
printf %s "checking for append_history in -l$LIBREADLINE... " >&6; }
if test ${ac_cv_readline_append_history+y}
then :
@@ -28750,13 +28822,13 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_readline_append_history" >&5
-printf "%s\n" "$ac_cv_readline_append_history" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_readline_append_history" >&5
+printf '%s\n' "$ac_cv_readline_append_history" >&6; }
if test "x$ac_cv_readline_append_history" = xyes
then :
-printf "%s\n" "#define HAVE_RL_APPEND_HISTORY 1" >>confdefs.h
+printf '%s\n' "#define HAVE_RL_APPEND_HISTORY 1" >>confdefs.h
fi
@@ -28775,7 +28847,7 @@ fi
if test "x$ac_cv_type_rl_compdisp_func_t" = xyes
then :
-printf "%s\n" "#define HAVE_RL_COMPDISP_FUNC_T 1" >>confdefs.h
+printf '%s\n' "#define HAVE_RL_COMPDISP_FUNC_T 1" >>confdefs.h
fi
@@ -28783,7 +28855,7 @@ fi
# Some editline versions declare rl_startup_hook as taking no args, others
# declare it as taking 2.
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if rl_startup_hook takes arguments" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking if rl_startup_hook takes arguments" >&5
printf %s "checking if rl_startup_hook takes arguments... " >&6; }
if test ${ac_cv_readline_rl_startup_hook_takes_args+y}
then :
@@ -28822,13 +28894,13 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_readline_rl_startup_hook_takes_args" >&5
-printf "%s\n" "$ac_cv_readline_rl_startup_hook_takes_args" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_readline_rl_startup_hook_takes_args" >&5
+printf '%s\n' "$ac_cv_readline_rl_startup_hook_takes_args" >&6; }
if test "x$ac_cv_readline_rl_startup_hook_takes_args" = xyes
then :
-printf "%s\n" "#define Py_RL_STARTUP_HOOK_TAKES_ARGS 1" >>confdefs.h
+printf '%s\n' "#define Py_RL_STARTUP_HOOK_TAKES_ARGS 1" >>confdefs.h
fi
@@ -28844,7 +28916,7 @@ LIBS=$save_LIBS
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for broken nice()" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for broken nice()" >&5
printf %s "checking for broken nice()... " >&6; }
if test ${ac_cv_broken_nice+y}
then :
@@ -28883,16 +28955,16 @@ fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_broken_nice" >&5
-printf "%s\n" "$ac_cv_broken_nice" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_broken_nice" >&5
+printf '%s\n' "$ac_cv_broken_nice" >&6; }
if test "$ac_cv_broken_nice" = yes
then
-printf "%s\n" "#define HAVE_BROKEN_NICE 1" >>confdefs.h
+printf '%s\n' "#define HAVE_BROKEN_NICE 1" >>confdefs.h
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for broken poll()" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for broken poll()" >&5
printf %s "checking for broken poll()... " >&6; }
if test ${ac_cv_broken_poll+y}
then :
@@ -28939,17 +29011,17 @@ fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_broken_poll" >&5
-printf "%s\n" "$ac_cv_broken_poll" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_broken_poll" >&5
+printf '%s\n' "$ac_cv_broken_poll" >&6; }
if test "$ac_cv_broken_poll" = yes
then
-printf "%s\n" "#define HAVE_BROKEN_POLL 1" >>confdefs.h
+printf '%s\n' "#define HAVE_BROKEN_POLL 1" >>confdefs.h
fi
# check tzset(3) exists and works like we expect it to
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for working tzset()" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for working tzset()" >&5
printf %s "checking for working tzset()... " >&6; }
if test ${ac_cv_working_tzset+y}
then :
@@ -29041,17 +29113,17 @@ fi
;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_working_tzset" >&5
-printf "%s\n" "$ac_cv_working_tzset" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_working_tzset" >&5
+printf '%s\n' "$ac_cv_working_tzset" >&6; }
if test "$ac_cv_working_tzset" = yes
then
-printf "%s\n" "#define HAVE_WORKING_TZSET 1" >>confdefs.h
+printf '%s\n' "#define HAVE_WORKING_TZSET 1" >>confdefs.h
fi
# Look for subsecond timestamps in struct stat
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for tv_nsec in struct stat" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for tv_nsec in struct stat" >&5
printf %s "checking for tv_nsec in struct stat... " >&6; }
if test ${ac_cv_stat_tv_nsec+y}
then :
@@ -29081,17 +29153,17 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_stat_tv_nsec" >&5
-printf "%s\n" "$ac_cv_stat_tv_nsec" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_stat_tv_nsec" >&5
+printf '%s\n' "$ac_cv_stat_tv_nsec" >&6; }
if test "$ac_cv_stat_tv_nsec" = yes
then
-printf "%s\n" "#define HAVE_STAT_TV_NSEC 1" >>confdefs.h
+printf '%s\n' "#define HAVE_STAT_TV_NSEC 1" >>confdefs.h
fi
# Look for BSD style subsecond timestamps in struct stat
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for tv_nsec2 in struct stat" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for tv_nsec2 in struct stat" >&5
printf %s "checking for tv_nsec2 in struct stat... " >&6; }
if test ${ac_cv_stat_tv_nsec2+y}
then :
@@ -29121,36 +29193,59 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_stat_tv_nsec2" >&5
-printf "%s\n" "$ac_cv_stat_tv_nsec2" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_stat_tv_nsec2" >&5
+printf '%s\n' "$ac_cv_stat_tv_nsec2" >&6; }
if test "$ac_cv_stat_tv_nsec2" = yes
then
-printf "%s\n" "#define HAVE_STAT_TV_NSEC2 1" >>confdefs.h
+printf '%s\n' "#define HAVE_STAT_TV_NSEC2 1" >>confdefs.h
fi
have_curses=no
have_panel=no
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for --disable-curses" >&5
+printf %s "checking for --disable-curses... " >&6; }
+# Check whether --enable-curses was given.
+if test ${enable_curses+y}
+then :
+ enableval=$enable_curses;
+ if test "x$enable_curses" = xno
+then :
+
+else case e in #(
+ e) enable_curses=yes ;;
+esac
+fi
+
+else case e in #(
+ e) enable_curses=yes ;;
+esac
+fi
+
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $enable_curses" >&5
+printf '%s\n' "$enable_curses" >&6; }
+
+if test "$enable_curses" = 'yes' ; then
-# Check for ncursesw/panelw first. If that fails, try ncurses/panel.
+ # Check for ncursesw/panelw first. If that fails, try ncurses/panel.
pkg_failed=no
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ncursesw" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for ncursesw" >&5
printf %s "checking for ncursesw... " >&6; }
if test -n "$CURSES_CFLAGS"; then
pkg_cv_CURSES_CFLAGS="$CURSES_CFLAGS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"ncursesw\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"ncursesw\""; } >&5
($PKG_CONFIG --exists --print-errors "ncursesw") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_CURSES_CFLAGS=`$PKG_CONFIG --cflags "ncursesw" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -29164,10 +29259,10 @@ if test -n "$CURSES_LIBS"; then
pkg_cv_CURSES_LIBS="$CURSES_LIBS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"ncursesw\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"ncursesw\""; } >&5
($PKG_CONFIG --exists --print-errors "ncursesw") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_CURSES_LIBS=`$PKG_CONFIG --libs "ncursesw" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -29181,8 +29276,8 @@ fi
if test $pkg_failed = yes; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
_pkg_short_errors_supported=yes
@@ -29199,31 +29294,31 @@ fi
have_curses=no
elif test $pkg_failed = untried; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
have_curses=no
else
CURSES_CFLAGS=$pkg_cv_CURSES_CFLAGS
CURSES_LIBS=$pkg_cv_CURSES_LIBS
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
-printf "%s\n" "#define HAVE_NCURSESW 1" >>confdefs.h
+printf '%s\n' "#define HAVE_NCURSESW 1" >>confdefs.h
- have_curses=yes
+ have_curses=yes
pkg_failed=no
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for panelw" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for panelw" >&5
printf %s "checking for panelw... " >&6; }
if test -n "$PANEL_CFLAGS"; then
pkg_cv_PANEL_CFLAGS="$PANEL_CFLAGS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"panelw\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"panelw\""; } >&5
($PKG_CONFIG --exists --print-errors "panelw") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_PANEL_CFLAGS=`$PKG_CONFIG --cflags "panelw" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -29237,10 +29332,10 @@ if test -n "$PANEL_LIBS"; then
pkg_cv_PANEL_LIBS="$PANEL_LIBS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"panelw\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"panelw\""; } >&5
($PKG_CONFIG --exists --print-errors "panelw") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_PANEL_LIBS=`$PKG_CONFIG --libs "panelw" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -29254,8 +29349,8 @@ fi
if test $pkg_failed = yes; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
_pkg_short_errors_supported=yes
@@ -29272,39 +29367,39 @@ fi
have_panel=no
elif test $pkg_failed = untried; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
have_panel=no
else
PANEL_CFLAGS=$pkg_cv_PANEL_CFLAGS
PANEL_LIBS=$pkg_cv_PANEL_LIBS
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
-printf "%s\n" "#define HAVE_PANELW 1" >>confdefs.h
+printf '%s\n' "#define HAVE_PANELW 1" >>confdefs.h
- have_panel=yes
+ have_panel=yes
fi
fi
-if test "x$have_curses" = xno
+ if test "x$have_curses" = xno
then :
pkg_failed=no
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ncurses" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for ncurses" >&5
printf %s "checking for ncurses... " >&6; }
if test -n "$CURSES_CFLAGS"; then
pkg_cv_CURSES_CFLAGS="$CURSES_CFLAGS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"ncurses\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"ncurses\""; } >&5
($PKG_CONFIG --exists --print-errors "ncurses") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_CURSES_CFLAGS=`$PKG_CONFIG --cflags "ncurses" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -29318,10 +29413,10 @@ if test -n "$CURSES_LIBS"; then
pkg_cv_CURSES_LIBS="$CURSES_LIBS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"ncurses\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"ncurses\""; } >&5
($PKG_CONFIG --exists --print-errors "ncurses") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_CURSES_LIBS=`$PKG_CONFIG --libs "ncurses" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -29335,8 +29430,8 @@ fi
if test $pkg_failed = yes; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
_pkg_short_errors_supported=yes
@@ -29353,31 +29448,31 @@ fi
have_curses=no
elif test $pkg_failed = untried; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
have_curses=no
else
CURSES_CFLAGS=$pkg_cv_CURSES_CFLAGS
CURSES_LIBS=$pkg_cv_CURSES_LIBS
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
-printf "%s\n" "#define HAVE_NCURSES 1" >>confdefs.h
+printf '%s\n' "#define HAVE_NCURSES 1" >>confdefs.h
- have_curses=yes
+ have_curses=yes
pkg_failed=no
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for panel" >&5
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for panel" >&5
printf %s "checking for panel... " >&6; }
if test -n "$PANEL_CFLAGS"; then
pkg_cv_PANEL_CFLAGS="$PANEL_CFLAGS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"panel\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"panel\""; } >&5
($PKG_CONFIG --exists --print-errors "panel") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_PANEL_CFLAGS=`$PKG_CONFIG --cflags "panel" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -29391,10 +29486,10 @@ if test -n "$PANEL_LIBS"; then
pkg_cv_PANEL_LIBS="$PANEL_LIBS"
elif test -n "$PKG_CONFIG"; then
if test -n "$PKG_CONFIG" && \
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"panel\""; } >&5
+ { { printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"panel\""; } >&5
($PKG_CONFIG --exists --print-errors "panel") 2>&5
ac_status=$?
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ printf '%s\n' "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
test $ac_status = 0; }; then
pkg_cv_PANEL_LIBS=`$PKG_CONFIG --libs "panel" 2>/dev/null`
test "x$?" != "x0" && pkg_failed=yes
@@ -29408,8 +29503,8 @@ fi
if test $pkg_failed = yes; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
_pkg_short_errors_supported=yes
@@ -29426,92 +29521,92 @@ fi
have_panel=no
elif test $pkg_failed = untried; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
-printf "%s\n" "no" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf '%s\n' "no" >&6; }
have_panel=no
else
PANEL_CFLAGS=$pkg_cv_PANEL_CFLAGS
PANEL_LIBS=$pkg_cv_PANEL_LIBS
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-printf "%s\n" "yes" >&6; }
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf '%s\n' "yes" >&6; }
-printf "%s\n" "#define HAVE_PANEL 1" >>confdefs.h
+printf '%s\n' "#define HAVE_PANEL 1" >>confdefs.h
- have_panel=yes
+ have_panel=yes
fi
fi
fi
-save_CFLAGS=$CFLAGS
+ save_CFLAGS=$CFLAGS
save_CPPFLAGS=$CPPFLAGS
save_LDFLAGS=$LDFLAGS
save_LIBS=$LIBS
- # Make sure we've got the header defines.
- as_fn_append CPPFLAGS " $CURSES_CFLAGS $PANEL_CFLAGS"
- ac_fn_c_check_header_compile "$LINENO" "ncursesw/curses.h" "ac_cv_header_ncursesw_curses_h" "$ac_includes_default"
+ # Make sure we've got the header defines.
+ as_fn_append CPPFLAGS " $CURSES_CFLAGS $PANEL_CFLAGS"
+ ac_fn_c_check_header_compile "$LINENO" "ncursesw/curses.h" "ac_cv_header_ncursesw_curses_h" "$ac_includes_default"
if test "x$ac_cv_header_ncursesw_curses_h" = xyes
then :
- printf "%s\n" "#define HAVE_NCURSESW_CURSES_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_NCURSESW_CURSES_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "ncursesw/ncurses.h" "ac_cv_header_ncursesw_ncurses_h" "$ac_includes_default"
if test "x$ac_cv_header_ncursesw_ncurses_h" = xyes
then :
- printf "%s\n" "#define HAVE_NCURSESW_NCURSES_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_NCURSESW_NCURSES_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "ncursesw/panel.h" "ac_cv_header_ncursesw_panel_h" "$ac_includes_default"
if test "x$ac_cv_header_ncursesw_panel_h" = xyes
then :
- printf "%s\n" "#define HAVE_NCURSESW_PANEL_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_NCURSESW_PANEL_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "ncurses/curses.h" "ac_cv_header_ncurses_curses_h" "$ac_includes_default"
if test "x$ac_cv_header_ncurses_curses_h" = xyes
then :
- printf "%s\n" "#define HAVE_NCURSES_CURSES_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_NCURSES_CURSES_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "ncurses/ncurses.h" "ac_cv_header_ncurses_ncurses_h" "$ac_includes_default"
if test "x$ac_cv_header_ncurses_ncurses_h" = xyes
then :
- printf "%s\n" "#define HAVE_NCURSES_NCURSES_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_NCURSES_NCURSES_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "ncurses/panel.h" "ac_cv_header_ncurses_panel_h" "$ac_includes_default"
if test "x$ac_cv_header_ncurses_panel_h" = xyes
then :
- printf "%s\n" "#define HAVE_NCURSES_PANEL_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_NCURSES_PANEL_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "curses.h" "ac_cv_header_curses_h" "$ac_includes_default"
if test "x$ac_cv_header_curses_h" = xyes
then :
- printf "%s\n" "#define HAVE_CURSES_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_CURSES_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "ncurses.h" "ac_cv_header_ncurses_h" "$ac_includes_default"
if test "x$ac_cv_header_ncurses_h" = xyes
then :
- printf "%s\n" "#define HAVE_NCURSES_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_NCURSES_H 1" >>confdefs.h
fi
ac_fn_c_check_header_compile "$LINENO" "panel.h" "ac_cv_header_panel_h" "$ac_includes_default"
if test "x$ac_cv_header_panel_h" = xyes
then :
- printf "%s\n" "#define HAVE_PANEL_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_PANEL_H 1" >>confdefs.h
fi
- # Check that we're able to link with crucial curses/panel functions. This
- # also serves as a fallback in case pkg-config failed.
- as_fn_append LIBS " $CURSES_LIBS $PANEL_LIBS"
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing initscr" >&5
+ # Check that we're able to link with crucial curses/panel functions. This
+ # also serves as a fallback in case pkg-config failed.
+ as_fn_append LIBS " $CURSES_LIBS $PANEL_LIBS"
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for library containing initscr" >&5
printf %s "checking for library containing initscr... " >&6; }
if test ${ac_cv_search_initscr+y}
then :
@@ -29569,8 +29664,8 @@ rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_initscr" >&5
-printf "%s\n" "$ac_cv_search_initscr" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_initscr" >&5
+printf '%s\n' "$ac_cv_search_initscr" >&6; }
ac_res=$ac_cv_search_initscr
if test "$ac_res" != no
then :
@@ -29578,14 +29673,14 @@ then :
if test "x$have_curses" = xno
then :
have_curses=yes
- CURSES_LIBS=${CURSES_LIBS-"$ac_cv_search_initscr"}
+ CURSES_LIBS=${CURSES_LIBS-"$ac_cv_search_initscr"}
fi
else case e in #(
e) have_curses=no ;;
esac
fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing update_panels" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for library containing update_panels" >&5
printf %s "checking for library containing update_panels... " >&6; }
if test ${ac_cv_search_update_panels+y}
then :
@@ -29643,8 +29738,8 @@ rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_update_panels" >&5
-printf "%s\n" "$ac_cv_search_update_panels" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_update_panels" >&5
+printf '%s\n' "$ac_cv_search_update_panels" >&6; }
ac_res=$ac_cv_search_update_panels
if test "$ac_res" != no
then :
@@ -29652,7 +29747,7 @@ then :
if test "x$have_panel" = xno
then :
have_panel=yes
- PANEL_LIBS=${PANEL_LIBS-"$ac_cv_search_update_panels"}
+ PANEL_LIBS=${PANEL_LIBS-"$ac_cv_search_update_panels"}
fi
else case e in #(
e) have_panel=no ;;
@@ -29662,48 +29757,48 @@ fi
-if test "have_curses" != "no"
+ if test "have_curses" != "no"
then :
-CURSES_CFLAGS=$(echo $CURSES_CFLAGS | sed 's/-D_XOPEN_SOURCE=600//g')
+ CURSES_CFLAGS=$(echo $CURSES_CFLAGS | sed 's/-D_XOPEN_SOURCE=600//g')
-if test "x$ac_sys_system" = xDarwin
+ if test "x$ac_sys_system" = xDarwin
then :
- as_fn_append CURSES_CFLAGS " -D_XOPEN_SOURCE_EXTENDED=1"
+ as_fn_append CURSES_CFLAGS " -D_XOPEN_SOURCE_EXTENDED=1"
fi
-PANEL_CFLAGS=$(echo $PANEL_CFLAGS | sed 's/-D_XOPEN_SOURCE=600//g')
+ PANEL_CFLAGS=$(echo $PANEL_CFLAGS | sed 's/-D_XOPEN_SOURCE=600//g')
-# On Solaris, term.h requires curses.h
-ac_fn_c_check_header_compile "$LINENO" "term.h" "ac_cv_header_term_h" "
-#define NCURSES_OPAQUE 0
-#if defined(HAVE_NCURSESW_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSESW_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSES_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_H)
-# include
-#elif defined(HAVE_CURSES_H)
-# include
-#endif
+ # On Solaris, term.h requires curses.h
+ ac_fn_c_check_header_compile "$LINENO" "term.h" "ac_cv_header_term_h" "
+ #define NCURSES_OPAQUE 0
+ #if defined(HAVE_NCURSESW_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSESW_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_H)
+ # include
+ #elif defined(HAVE_CURSES_H)
+ # include
+ #endif
"
if test "x$ac_cv_header_term_h" = xyes
then :
- printf "%s\n" "#define HAVE_TERM_H 1" >>confdefs.h
+ printf '%s\n' "#define HAVE_TERM_H 1" >>confdefs.h
fi
-# On HP/UX 11.0, mvwdelch is a block with a return statement
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether mvwdelch is an expression" >&5
+ # On HP/UX 11.0, mvwdelch is a block with a return statement
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether mvwdelch is an expression" >&5
printf %s "checking whether mvwdelch is an expression... " >&6; }
if test ${ac_cv_mvwdelch_is_expression+y}
then :
@@ -29712,27 +29807,27 @@ else case e in #(
e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-#define NCURSES_OPAQUE 0
-#if defined(HAVE_NCURSESW_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSESW_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSES_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_H)
-# include
-#elif defined(HAVE_CURSES_H)
-# include
-#endif
+ #define NCURSES_OPAQUE 0
+ #if defined(HAVE_NCURSESW_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSESW_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_H)
+ # include
+ #elif defined(HAVE_CURSES_H)
+ # include
+ #endif
int
main (void)
{
- int rtn;
- rtn = mvwdelch(0,0,0);
+ int rtn;
+ rtn = mvwdelch(0,0,0);
;
return 0;
@@ -29748,17 +29843,17 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_mvwdelch_is_expression" >&5
-printf "%s\n" "$ac_cv_mvwdelch_is_expression" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_mvwdelch_is_expression" >&5
+printf '%s\n' "$ac_cv_mvwdelch_is_expression" >&6; }
-if test "$ac_cv_mvwdelch_is_expression" = yes
-then
+ if test "$ac_cv_mvwdelch_is_expression" = yes
+ then
-printf "%s\n" "#define MVWDELCH_IS_EXPRESSION 1" >>confdefs.h
+printf '%s\n' "#define MVWDELCH_IS_EXPRESSION 1" >>confdefs.h
-fi
+ fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether WINDOW has _flags" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking whether WINDOW has _flags" >&5
printf %s "checking whether WINDOW has _flags... " >&6; }
if test ${ac_cv_window_has_flags+y}
then :
@@ -29767,27 +29862,27 @@ else case e in #(
e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-#define NCURSES_OPAQUE 0
-#if defined(HAVE_NCURSESW_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSESW_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSES_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_H)
-# include
-#elif defined(HAVE_CURSES_H)
-# include
-#endif
+ #define NCURSES_OPAQUE 0
+ #if defined(HAVE_NCURSESW_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSESW_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_H)
+ # include
+ #elif defined(HAVE_CURSES_H)
+ # include
+ #endif
int
main (void)
{
- WINDOW *w;
- w->_flags = 0;
+ WINDOW *w;
+ w->_flags = 0;
;
return 0;
@@ -29803,16 +29898,16 @@ fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_window_has_flags" >&5
-printf "%s\n" "$ac_cv_window_has_flags" >&6; }
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_window_has_flags" >&5
+printf '%s\n' "$ac_cv_window_has_flags" >&6; }
-if test "$ac_cv_window_has_flags" = yes
-then
+ if test "$ac_cv_window_has_flags" = yes
+ then
-printf "%s\n" "#define WINDOW_HAS_FLAGS 1" >>confdefs.h
+printf '%s\n' "#define WINDOW_HAS_FLAGS 1" >>confdefs.h
-fi
+ fi
@@ -29820,7 +29915,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for curses function is_pad" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for curses function is_pad" >&5
printf %s "checking for curses function is_pad... " >&6; }
if test ${ac_cv_lib_curses_is_pad+y}
then :
@@ -29829,28 +29924,28 @@ else case e in #(
e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-#define NCURSES_OPAQUE 0
-#if defined(HAVE_NCURSESW_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSESW_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSES_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_H)
-# include
-#elif defined(HAVE_CURSES_H)
-# include
-#endif
+ #define NCURSES_OPAQUE 0
+ #if defined(HAVE_NCURSESW_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSESW_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_H)
+ # include
+ #elif defined(HAVE_CURSES_H)
+ # include
+ #endif
int
main (void)
{
- #ifndef is_pad
- void *x=is_pad
- #endif
+ #ifndef is_pad
+ void *x=is_pad
+ #endif
;
return 0;
@@ -29864,15 +29959,15 @@ else case e in #(
esac
fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
- ;;
+ ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_is_pad" >&5
-printf "%s\n" "$ac_cv_lib_curses_is_pad" >&6; }
- if test "x$ac_cv_lib_curses_is_pad" = xyes
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_is_pad" >&5
+printf '%s\n' "$ac_cv_lib_curses_is_pad" >&6; }
+ if test "x$ac_cv_lib_curses_is_pad" = xyes
then :
-printf "%s\n" "#define HAVE_CURSES_IS_PAD 1" >>confdefs.h
+printf '%s\n' "#define HAVE_CURSES_IS_PAD 1" >>confdefs.h
fi
@@ -29880,7 +29975,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for curses function is_term_resized" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for curses function is_term_resized" >&5
printf %s "checking for curses function is_term_resized... " >&6; }
if test ${ac_cv_lib_curses_is_term_resized+y}
then :
@@ -29889,28 +29984,28 @@ else case e in #(
e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-#define NCURSES_OPAQUE 0
-#if defined(HAVE_NCURSESW_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSESW_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSES_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_H)
-# include
-#elif defined(HAVE_CURSES_H)
-# include
-#endif
+ #define NCURSES_OPAQUE 0
+ #if defined(HAVE_NCURSESW_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSESW_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_H)
+ # include
+ #elif defined(HAVE_CURSES_H)
+ # include
+ #endif
int
main (void)
{
- #ifndef is_term_resized
- void *x=is_term_resized
- #endif
+ #ifndef is_term_resized
+ void *x=is_term_resized
+ #endif
;
return 0;
@@ -29924,15 +30019,15 @@ else case e in #(
esac
fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
- ;;
+ ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_is_term_resized" >&5
-printf "%s\n" "$ac_cv_lib_curses_is_term_resized" >&6; }
- if test "x$ac_cv_lib_curses_is_term_resized" = xyes
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_is_term_resized" >&5
+printf '%s\n' "$ac_cv_lib_curses_is_term_resized" >&6; }
+ if test "x$ac_cv_lib_curses_is_term_resized" = xyes
then :
-printf "%s\n" "#define HAVE_CURSES_IS_TERM_RESIZED 1" >>confdefs.h
+printf '%s\n' "#define HAVE_CURSES_IS_TERM_RESIZED 1" >>confdefs.h
fi
@@ -29940,7 +30035,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for curses function resize_term" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for curses function resize_term" >&5
printf %s "checking for curses function resize_term... " >&6; }
if test ${ac_cv_lib_curses_resize_term+y}
then :
@@ -29949,28 +30044,28 @@ else case e in #(
e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-#define NCURSES_OPAQUE 0
-#if defined(HAVE_NCURSESW_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSESW_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSES_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_H)
-# include
-#elif defined(HAVE_CURSES_H)
-# include
-#endif
+ #define NCURSES_OPAQUE 0
+ #if defined(HAVE_NCURSESW_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSESW_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_H)
+ # include
+ #elif defined(HAVE_CURSES_H)
+ # include
+ #endif
int
main (void)
{
- #ifndef resize_term
- void *x=resize_term
- #endif
+ #ifndef resize_term
+ void *x=resize_term
+ #endif
;
return 0;
@@ -29984,15 +30079,15 @@ else case e in #(
esac
fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
- ;;
+ ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_resize_term" >&5
-printf "%s\n" "$ac_cv_lib_curses_resize_term" >&6; }
- if test "x$ac_cv_lib_curses_resize_term" = xyes
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_resize_term" >&5
+printf '%s\n' "$ac_cv_lib_curses_resize_term" >&6; }
+ if test "x$ac_cv_lib_curses_resize_term" = xyes
then :
-printf "%s\n" "#define HAVE_CURSES_RESIZE_TERM 1" >>confdefs.h
+printf '%s\n' "#define HAVE_CURSES_RESIZE_TERM 1" >>confdefs.h
fi
@@ -30000,7 +30095,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for curses function resizeterm" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for curses function resizeterm" >&5
printf %s "checking for curses function resizeterm... " >&6; }
if test ${ac_cv_lib_curses_resizeterm+y}
then :
@@ -30009,28 +30104,28 @@ else case e in #(
e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-#define NCURSES_OPAQUE 0
-#if defined(HAVE_NCURSESW_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSESW_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSES_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_H)
-# include
-#elif defined(HAVE_CURSES_H)
-# include
-#endif
+ #define NCURSES_OPAQUE 0
+ #if defined(HAVE_NCURSESW_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSESW_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_H)
+ # include
+ #elif defined(HAVE_CURSES_H)
+ # include
+ #endif
int
main (void)
{
- #ifndef resizeterm
- void *x=resizeterm
- #endif
+ #ifndef resizeterm
+ void *x=resizeterm
+ #endif
;
return 0;
@@ -30044,15 +30139,15 @@ else case e in #(
esac
fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
- ;;
+ ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_resizeterm" >&5
-printf "%s\n" "$ac_cv_lib_curses_resizeterm" >&6; }
- if test "x$ac_cv_lib_curses_resizeterm" = xyes
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_resizeterm" >&5
+printf '%s\n' "$ac_cv_lib_curses_resizeterm" >&6; }
+ if test "x$ac_cv_lib_curses_resizeterm" = xyes
then :
-printf "%s\n" "#define HAVE_CURSES_RESIZETERM 1" >>confdefs.h
+printf '%s\n' "#define HAVE_CURSES_RESIZETERM 1" >>confdefs.h
fi
@@ -30060,7 +30155,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for curses function immedok" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for curses function immedok" >&5
printf %s "checking for curses function immedok... " >&6; }
if test ${ac_cv_lib_curses_immedok+y}
then :
@@ -30069,28 +30164,28 @@ else case e in #(
e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-#define NCURSES_OPAQUE 0
-#if defined(HAVE_NCURSESW_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSESW_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSES_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_H)
-# include
-#elif defined(HAVE_CURSES_H)
-# include
-#endif
+ #define NCURSES_OPAQUE 0
+ #if defined(HAVE_NCURSESW_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSESW_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_H)
+ # include
+ #elif defined(HAVE_CURSES_H)
+ # include
+ #endif
int
main (void)
{
- #ifndef immedok
- void *x=immedok
- #endif
+ #ifndef immedok
+ void *x=immedok
+ #endif
;
return 0;
@@ -30104,15 +30199,15 @@ else case e in #(
esac
fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
- ;;
+ ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_immedok" >&5
-printf "%s\n" "$ac_cv_lib_curses_immedok" >&6; }
- if test "x$ac_cv_lib_curses_immedok" = xyes
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_immedok" >&5
+printf '%s\n' "$ac_cv_lib_curses_immedok" >&6; }
+ if test "x$ac_cv_lib_curses_immedok" = xyes
then :
-printf "%s\n" "#define HAVE_CURSES_IMMEDOK 1" >>confdefs.h
+printf '%s\n' "#define HAVE_CURSES_IMMEDOK 1" >>confdefs.h
fi
@@ -30120,7 +30215,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for curses function syncok" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for curses function syncok" >&5
printf %s "checking for curses function syncok... " >&6; }
if test ${ac_cv_lib_curses_syncok+y}
then :
@@ -30129,28 +30224,28 @@ else case e in #(
e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-#define NCURSES_OPAQUE 0
-#if defined(HAVE_NCURSESW_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSESW_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSES_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_H)
-# include
-#elif defined(HAVE_CURSES_H)
-# include
-#endif
+ #define NCURSES_OPAQUE 0
+ #if defined(HAVE_NCURSESW_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSESW_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_H)
+ # include
+ #elif defined(HAVE_CURSES_H)
+ # include
+ #endif
int
main (void)
{
- #ifndef syncok
- void *x=syncok
- #endif
+ #ifndef syncok
+ void *x=syncok
+ #endif
;
return 0;
@@ -30164,15 +30259,15 @@ else case e in #(
esac
fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
- ;;
+ ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_syncok" >&5
-printf "%s\n" "$ac_cv_lib_curses_syncok" >&6; }
- if test "x$ac_cv_lib_curses_syncok" = xyes
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_syncok" >&5
+printf '%s\n' "$ac_cv_lib_curses_syncok" >&6; }
+ if test "x$ac_cv_lib_curses_syncok" = xyes
then :
-printf "%s\n" "#define HAVE_CURSES_SYNCOK 1" >>confdefs.h
+printf '%s\n' "#define HAVE_CURSES_SYNCOK 1" >>confdefs.h
fi
@@ -30180,7 +30275,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for curses function wchgat" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for curses function wchgat" >&5
printf %s "checking for curses function wchgat... " >&6; }
if test ${ac_cv_lib_curses_wchgat+y}
then :
@@ -30189,28 +30284,28 @@ else case e in #(
e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-#define NCURSES_OPAQUE 0
-#if defined(HAVE_NCURSESW_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSESW_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSES_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_H)
-# include
-#elif defined(HAVE_CURSES_H)
-# include
-#endif
+ #define NCURSES_OPAQUE 0
+ #if defined(HAVE_NCURSESW_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSESW_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_H)
+ # include
+ #elif defined(HAVE_CURSES_H)
+ # include
+ #endif
int
main (void)
{
- #ifndef wchgat
- void *x=wchgat
- #endif
+ #ifndef wchgat
+ void *x=wchgat
+ #endif
;
return 0;
@@ -30224,15 +30319,15 @@ else case e in #(
esac
fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
- ;;
+ ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_wchgat" >&5
-printf "%s\n" "$ac_cv_lib_curses_wchgat" >&6; }
- if test "x$ac_cv_lib_curses_wchgat" = xyes
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_wchgat" >&5
+printf '%s\n' "$ac_cv_lib_curses_wchgat" >&6; }
+ if test "x$ac_cv_lib_curses_wchgat" = xyes
then :
-printf "%s\n" "#define HAVE_CURSES_WCHGAT 1" >>confdefs.h
+printf '%s\n' "#define HAVE_CURSES_WCHGAT 1" >>confdefs.h
fi
@@ -30240,7 +30335,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for curses function filter" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for curses function filter" >&5
printf %s "checking for curses function filter... " >&6; }
if test ${ac_cv_lib_curses_filter+y}
then :
@@ -30249,28 +30344,28 @@ else case e in #(
e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-#define NCURSES_OPAQUE 0
-#if defined(HAVE_NCURSESW_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSESW_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSES_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_H)
-# include
-#elif defined(HAVE_CURSES_H)
-# include
-#endif
+ #define NCURSES_OPAQUE 0
+ #if defined(HAVE_NCURSESW_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSESW_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_H)
+ # include
+ #elif defined(HAVE_CURSES_H)
+ # include
+ #endif
int
main (void)
{
- #ifndef filter
- void *x=filter
- #endif
+ #ifndef filter
+ void *x=filter
+ #endif
;
return 0;
@@ -30284,15 +30379,15 @@ else case e in #(
esac
fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
- ;;
+ ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_filter" >&5
-printf "%s\n" "$ac_cv_lib_curses_filter" >&6; }
- if test "x$ac_cv_lib_curses_filter" = xyes
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_filter" >&5
+printf '%s\n' "$ac_cv_lib_curses_filter" >&6; }
+ if test "x$ac_cv_lib_curses_filter" = xyes
then :
-printf "%s\n" "#define HAVE_CURSES_FILTER 1" >>confdefs.h
+printf '%s\n' "#define HAVE_CURSES_FILTER 1" >>confdefs.h
fi
@@ -30300,7 +30395,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for curses function nofilter" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for curses function nofilter" >&5
printf %s "checking for curses function nofilter... " >&6; }
if test ${ac_cv_lib_curses_nofilter+y}
then :
@@ -30309,28 +30404,28 @@ else case e in #(
e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-#define NCURSES_OPAQUE 0
-#if defined(HAVE_NCURSESW_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSESW_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSES_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_H)
-# include
-#elif defined(HAVE_CURSES_H)
-# include
-#endif
+ #define NCURSES_OPAQUE 0
+ #if defined(HAVE_NCURSESW_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSESW_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_H)
+ # include
+ #elif defined(HAVE_CURSES_H)
+ # include
+ #endif
int
main (void)
{
- #ifndef nofilter
- void *x=nofilter
- #endif
+ #ifndef nofilter
+ void *x=nofilter
+ #endif
;
return 0;
@@ -30344,15 +30439,15 @@ else case e in #(
esac
fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
- ;;
+ ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_nofilter" >&5
-printf "%s\n" "$ac_cv_lib_curses_nofilter" >&6; }
- if test "x$ac_cv_lib_curses_nofilter" = xyes
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_nofilter" >&5
+printf '%s\n' "$ac_cv_lib_curses_nofilter" >&6; }
+ if test "x$ac_cv_lib_curses_nofilter" = xyes
then :
-printf "%s\n" "#define HAVE_CURSES_NOFILTER 1" >>confdefs.h
+printf '%s\n' "#define HAVE_CURSES_NOFILTER 1" >>confdefs.h
fi
@@ -30360,7 +30455,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for curses function has_key" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for curses function has_key" >&5
printf %s "checking for curses function has_key... " >&6; }
if test ${ac_cv_lib_curses_has_key+y}
then :
@@ -30369,28 +30464,28 @@ else case e in #(
e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-#define NCURSES_OPAQUE 0
-#if defined(HAVE_NCURSESW_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSESW_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSES_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_H)
-# include
-#elif defined(HAVE_CURSES_H)
-# include
-#endif
+ #define NCURSES_OPAQUE 0
+ #if defined(HAVE_NCURSESW_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSESW_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_H)
+ # include
+ #elif defined(HAVE_CURSES_H)
+ # include
+ #endif
int
main (void)
{
- #ifndef has_key
- void *x=has_key
- #endif
+ #ifndef has_key
+ void *x=has_key
+ #endif
;
return 0;
@@ -30404,15 +30499,15 @@ else case e in #(
esac
fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
- ;;
+ ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_has_key" >&5
-printf "%s\n" "$ac_cv_lib_curses_has_key" >&6; }
- if test "x$ac_cv_lib_curses_has_key" = xyes
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_has_key" >&5
+printf '%s\n' "$ac_cv_lib_curses_has_key" >&6; }
+ if test "x$ac_cv_lib_curses_has_key" = xyes
then :
-printf "%s\n" "#define HAVE_CURSES_HAS_KEY 1" >>confdefs.h
+printf '%s\n' "#define HAVE_CURSES_HAS_KEY 1" >>confdefs.h
fi
@@ -30420,7 +30515,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for curses function has_mouse" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for curses function has_mouse" >&5
printf %s "checking for curses function has_mouse... " >&6; }
if test ${ac_cv_lib_curses_has_mouse+y}
then :
@@ -30429,28 +30524,28 @@ else case e in #(
e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-#define NCURSES_OPAQUE 0
-#if defined(HAVE_NCURSESW_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSESW_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSES_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_H)
-# include
-#elif defined(HAVE_CURSES_H)
-# include
-#endif
+ #define NCURSES_OPAQUE 0
+ #if defined(HAVE_NCURSESW_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSESW_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_H)
+ # include
+ #elif defined(HAVE_CURSES_H)
+ # include
+ #endif
int
main (void)
{
- #ifndef has_mouse
- void *x=has_mouse
- #endif
+ #ifndef has_mouse
+ void *x=has_mouse
+ #endif
;
return 0;
@@ -30464,15 +30559,15 @@ else case e in #(
esac
fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
- ;;
+ ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_has_mouse" >&5
-printf "%s\n" "$ac_cv_lib_curses_has_mouse" >&6; }
- if test "x$ac_cv_lib_curses_has_mouse" = xyes
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_has_mouse" >&5
+printf '%s\n' "$ac_cv_lib_curses_has_mouse" >&6; }
+ if test "x$ac_cv_lib_curses_has_mouse" = xyes
then :
-printf "%s\n" "#define HAVE_CURSES_HAS_MOUSE 1" >>confdefs.h
+printf '%s\n' "#define HAVE_CURSES_HAS_MOUSE 1" >>confdefs.h
fi
@@ -30480,7 +30575,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for curses function is_keypad" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for curses function is_keypad" >&5
printf %s "checking for curses function is_keypad... " >&6; }
if test ${ac_cv_lib_curses_is_keypad+y}
then :
@@ -30489,28 +30584,28 @@ else case e in #(
e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-#define NCURSES_OPAQUE 0
-#if defined(HAVE_NCURSESW_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSESW_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSES_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_H)
-# include
-#elif defined(HAVE_CURSES_H)
-# include
-#endif
+ #define NCURSES_OPAQUE 0
+ #if defined(HAVE_NCURSESW_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSESW_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_H)
+ # include
+ #elif defined(HAVE_CURSES_H)
+ # include
+ #endif
int
main (void)
{
- #ifndef is_keypad
- void *x=is_keypad
- #endif
+ #ifndef is_keypad
+ void *x=is_keypad
+ #endif
;
return 0;
@@ -30524,15 +30619,15 @@ else case e in #(
esac
fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
- ;;
+ ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_is_keypad" >&5
-printf "%s\n" "$ac_cv_lib_curses_is_keypad" >&6; }
- if test "x$ac_cv_lib_curses_is_keypad" = xyes
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_is_keypad" >&5
+printf '%s\n' "$ac_cv_lib_curses_is_keypad" >&6; }
+ if test "x$ac_cv_lib_curses_is_keypad" = xyes
then :
-printf "%s\n" "#define HAVE_CURSES_IS_KEYPAD 1" >>confdefs.h
+printf '%s\n' "#define HAVE_CURSES_IS_KEYPAD 1" >>confdefs.h
fi
@@ -30540,7 +30635,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for curses function is_leaveok" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for curses function is_leaveok" >&5
printf %s "checking for curses function is_leaveok... " >&6; }
if test ${ac_cv_lib_curses_is_leaveok+y}
then :
@@ -30549,28 +30644,28 @@ else case e in #(
e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-#define NCURSES_OPAQUE 0
-#if defined(HAVE_NCURSESW_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSESW_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSES_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_H)
-# include
-#elif defined(HAVE_CURSES_H)
-# include
-#endif
+ #define NCURSES_OPAQUE 0
+ #if defined(HAVE_NCURSESW_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSESW_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_H)
+ # include
+ #elif defined(HAVE_CURSES_H)
+ # include
+ #endif
int
main (void)
{
- #ifndef is_leaveok
- void *x=is_leaveok
- #endif
+ #ifndef is_leaveok
+ void *x=is_leaveok
+ #endif
;
return 0;
@@ -30584,15 +30679,15 @@ else case e in #(
esac
fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
- ;;
+ ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_is_leaveok" >&5
-printf "%s\n" "$ac_cv_lib_curses_is_leaveok" >&6; }
- if test "x$ac_cv_lib_curses_is_leaveok" = xyes
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_is_leaveok" >&5
+printf '%s\n' "$ac_cv_lib_curses_is_leaveok" >&6; }
+ if test "x$ac_cv_lib_curses_is_leaveok" = xyes
then :
-printf "%s\n" "#define HAVE_CURSES_IS_LEAVEOK 1" >>confdefs.h
+printf '%s\n' "#define HAVE_CURSES_IS_LEAVEOK 1" >>confdefs.h
fi
@@ -30600,7 +30695,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for curses function typeahead" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for curses function typeahead" >&5
printf %s "checking for curses function typeahead... " >&6; }
if test ${ac_cv_lib_curses_typeahead+y}
then :
@@ -30609,28 +30704,28 @@ else case e in #(
e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-#define NCURSES_OPAQUE 0
-#if defined(HAVE_NCURSESW_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSESW_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSES_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_H)
-# include
-#elif defined(HAVE_CURSES_H)
-# include
-#endif
+ #define NCURSES_OPAQUE 0
+ #if defined(HAVE_NCURSESW_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSESW_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_H)
+ # include
+ #elif defined(HAVE_CURSES_H)
+ # include
+ #endif
int
main (void)
{
- #ifndef typeahead
- void *x=typeahead
- #endif
+ #ifndef typeahead
+ void *x=typeahead
+ #endif
;
return 0;
@@ -30644,15 +30739,15 @@ else case e in #(
esac
fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
- ;;
+ ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_typeahead" >&5
-printf "%s\n" "$ac_cv_lib_curses_typeahead" >&6; }
- if test "x$ac_cv_lib_curses_typeahead" = xyes
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_typeahead" >&5
+printf '%s\n' "$ac_cv_lib_curses_typeahead" >&6; }
+ if test "x$ac_cv_lib_curses_typeahead" = xyes
then :
-printf "%s\n" "#define HAVE_CURSES_TYPEAHEAD 1" >>confdefs.h
+printf '%s\n' "#define HAVE_CURSES_TYPEAHEAD 1" >>confdefs.h
fi
@@ -30660,7 +30755,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for curses function use_env" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for curses function use_env" >&5
printf %s "checking for curses function use_env... " >&6; }
if test ${ac_cv_lib_curses_use_env+y}
then :
@@ -30669,28 +30764,28 @@ else case e in #(
e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-#define NCURSES_OPAQUE 0
-#if defined(HAVE_NCURSESW_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSESW_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSES_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_H)
-# include
-#elif defined(HAVE_CURSES_H)
-# include
-#endif
+ #define NCURSES_OPAQUE 0
+ #if defined(HAVE_NCURSESW_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSESW_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_H)
+ # include
+ #elif defined(HAVE_CURSES_H)
+ # include
+ #endif
int
main (void)
{
- #ifndef use_env
- void *x=use_env
- #endif
+ #ifndef use_env
+ void *x=use_env
+ #endif
;
return 0;
@@ -30704,15 +30799,15 @@ else case e in #(
esac
fi
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
- ;;
+ ;;
esac
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_use_env" >&5
-printf "%s\n" "$ac_cv_lib_curses_use_env" >&6; }
- if test "x$ac_cv_lib_curses_use_env" = xyes
+{ printf '%s\n' "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_use_env" >&5
+printf '%s\n' "$ac_cv_lib_curses_use_env" >&6; }
+ if test "x$ac_cv_lib_curses_use_env" = xyes
then :
-printf "%s\n" "#define HAVE_CURSES_USE_ENV 1" >>confdefs.h
+printf '%s\n' "#define HAVE_CURSES_USE_ENV 1" >>confdefs.h
fi
@@ -30720,7 +30815,7 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for curses function new_prescr" >&5
+ { printf '%s\n' "$as_me:${as_lineno-$LINENO}: checking for curses function new_prescr" >&5
printf %s "checking for curses function new_prescr... " >&6; }
if test ${ac_cv_lib_curses_new_prescr+y}
then :
@@ -30729,28 +30824,28 @@ else case e in #(
e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
-#define NCURSES_OPAQUE 0
-#if defined(HAVE_NCURSESW_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSESW_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_NCURSES_H)
-# include
-#elif defined(HAVE_NCURSES_CURSES_H)
-# include
-#elif defined(HAVE_NCURSES_H)
-# include
-#elif defined(HAVE_CURSES_H)
-# include
-#endif
+ #define NCURSES_OPAQUE 0
+ #if defined(HAVE_NCURSESW_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSESW_CURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_NCURSES_H)
+ # include
+ #elif defined(HAVE_NCURSES_CURSES_H)
+ # include