|
1 | 1 | #! /bin/sh |
2 | 2 | # Guess values for system-dependent variables and create Makefiles. |
3 | | -# Generated by GNU Autoconf 2.69 for PostgreSQL 16.13. |
| 3 | +# Generated by GNU Autoconf 2.69 for PostgreSQL 16.14. |
4 | 4 | # |
5 | 5 | # Report bugs to <pgsql-bugs@lists.postgresql.org>. |
6 | 6 | # |
@@ -582,8 +582,8 @@ MAKEFLAGS= |
582 | 582 | # Identity of this package. |
583 | 583 | PACKAGE_NAME='PostgreSQL' |
584 | 584 | PACKAGE_TARNAME='postgresql' |
585 | | -PACKAGE_VERSION='16.13' |
586 | | -PACKAGE_STRING='PostgreSQL 16.13' |
| 585 | +PACKAGE_VERSION='16.14' |
| 586 | +PACKAGE_STRING='PostgreSQL 16.14' |
587 | 587 | PACKAGE_BUGREPORT='pgsql-bugs@lists.postgresql.org' |
588 | 588 | PACKAGE_URL='https://www.postgresql.org/' |
589 | 589 |
|
@@ -1448,7 +1448,7 @@ if test "$ac_init_help" = "long"; then |
1448 | 1448 | # Omit some internal or obsolete options to make the list less imposing. |
1449 | 1449 | # This message is too long to be a string in the A/UX 3.1 sh. |
1450 | 1450 | cat <<_ACEOF |
1451 | | -\`configure' configures PostgreSQL 16.13 to adapt to many kinds of systems. |
| 1451 | +\`configure' configures PostgreSQL 16.14 to adapt to many kinds of systems. |
1452 | 1452 |
|
1453 | 1453 | Usage: $0 [OPTION]... [VAR=VALUE]... |
1454 | 1454 |
|
|
1513 | 1513 |
|
1514 | 1514 | if test -n "$ac_init_help"; then |
1515 | 1515 | case $ac_init_help in |
1516 | | - short | recursive ) echo "Configuration of PostgreSQL 16.13:";; |
| 1516 | + short | recursive ) echo "Configuration of PostgreSQL 16.14:";; |
1517 | 1517 | esac |
1518 | 1518 | cat <<\_ACEOF |
1519 | 1519 |
|
|
1688 | 1688 | test -n "$ac_init_help" && exit $ac_status |
1689 | 1689 | if $ac_init_version; then |
1690 | 1690 | cat <<\_ACEOF |
1691 | | -PostgreSQL configure 16.13 |
| 1691 | +PostgreSQL configure 16.14 |
1692 | 1692 | generated by GNU Autoconf 2.69 |
1693 | 1693 |
|
1694 | 1694 | Copyright (C) 2012 Free Software Foundation, Inc. |
@@ -2441,7 +2441,7 @@ cat >config.log <<_ACEOF |
2441 | 2441 | This file contains any messages produced by compilers while |
2442 | 2442 | running configure, to aid debugging if configure makes a mistake. |
2443 | 2443 |
|
2444 | | -It was created by PostgreSQL $as_me 16.13, which was |
| 2444 | +It was created by PostgreSQL $as_me 16.14, which was |
2445 | 2445 | generated by GNU Autoconf 2.69. Invocation command line was |
2446 | 2446 |
|
2447 | 2447 | $ $0 $@ |
@@ -14783,8 +14783,8 @@ _ACEOF |
14783 | 14783 | ;; |
14784 | 14784 | esac |
14785 | 14785 |
|
14786 | | -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for printf format archetype" >&5 |
14787 | | -$as_echo_n "checking for printf format archetype... " >&6; } |
| 14786 | +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C printf format archetype" >&5 |
| 14787 | +$as_echo_n "checking for C printf format archetype... " >&6; } |
14788 | 14788 | if ${pgac_cv_printf_archetype+:} false; then : |
14789 | 14789 | $as_echo_n "(cached) " >&6 |
14790 | 14790 | else |
@@ -14844,7 +14844,97 @@ fi |
14844 | 14844 | $as_echo "$pgac_cv_printf_archetype" >&6; } |
14845 | 14845 |
|
14846 | 14846 | cat >>confdefs.h <<_ACEOF |
14847 | | -#define PG_PRINTF_ATTRIBUTE $pgac_cv_printf_archetype |
| 14847 | +#define PG_C_PRINTF_ATTRIBUTE $pgac_cv_printf_archetype |
| 14848 | +_ACEOF |
| 14849 | + |
| 14850 | + |
| 14851 | + |
| 14852 | +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ printf format archetype" >&5 |
| 14853 | +$as_echo_n "checking for C++ printf format archetype... " >&6; } |
| 14854 | +if ${pgac_cv_cxx_printf_archetype+:} false; then : |
| 14855 | + $as_echo_n "(cached) " >&6 |
| 14856 | +else |
| 14857 | + pgac_cv_cxx_printf_archetype=gnu_printf |
| 14858 | +ac_save_cxx_werror_flag=$ac_cxx_werror_flag |
| 14859 | +ac_cxx_werror_flag=yes |
| 14860 | +ac_ext=cpp |
| 14861 | +ac_cpp='$CXXCPP $CPPFLAGS' |
| 14862 | +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' |
| 14863 | +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' |
| 14864 | +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu |
| 14865 | + |
| 14866 | +cat confdefs.h - <<_ACEOF >conftest.$ac_ext |
| 14867 | +/* end confdefs.h. */ |
| 14868 | +extern void pgac_write(int ignore, const char *fmt,...) |
| 14869 | +__attribute__((format($pgac_cv_cxx_printf_archetype, 2, 3))); |
| 14870 | +int |
| 14871 | +main () |
| 14872 | +{ |
| 14873 | +pgac_write(0, "error %s: %m", "foo"); |
| 14874 | + ; |
| 14875 | + return 0; |
| 14876 | +} |
| 14877 | +_ACEOF |
| 14878 | +if ac_fn_cxx_try_compile "$LINENO"; then : |
| 14879 | + ac_archetype_ok=yes |
| 14880 | +else |
| 14881 | + ac_archetype_ok=no |
| 14882 | +fi |
| 14883 | +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
| 14884 | +ac_ext=c |
| 14885 | +ac_cpp='$CPP $CPPFLAGS' |
| 14886 | +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' |
| 14887 | +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' |
| 14888 | +ac_compiler_gnu=$ac_cv_c_compiler_gnu |
| 14889 | + |
| 14890 | +ac_cxx_werror_flag=$ac_save_cxx_werror_flag |
| 14891 | + |
| 14892 | +if [ "$ac_archetype_ok" = no ]; then |
| 14893 | + pgac_cv_cxx_printf_archetype=__syslog__ |
| 14894 | + ac_save_cxx_werror_flag=$ac_cxx_werror_flag |
| 14895 | +ac_cxx_werror_flag=yes |
| 14896 | +ac_ext=cpp |
| 14897 | +ac_cpp='$CXXCPP $CPPFLAGS' |
| 14898 | +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' |
| 14899 | +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' |
| 14900 | +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu |
| 14901 | + |
| 14902 | +cat confdefs.h - <<_ACEOF >conftest.$ac_ext |
| 14903 | +/* end confdefs.h. */ |
| 14904 | +extern void pgac_write(int ignore, const char *fmt,...) |
| 14905 | +__attribute__((format($pgac_cv_cxx_printf_archetype, 2, 3))); |
| 14906 | +int |
| 14907 | +main () |
| 14908 | +{ |
| 14909 | +pgac_write(0, "error %s: %m", "foo"); |
| 14910 | + ; |
| 14911 | + return 0; |
| 14912 | +} |
| 14913 | +_ACEOF |
| 14914 | +if ac_fn_cxx_try_compile "$LINENO"; then : |
| 14915 | + ac_archetype_ok=yes |
| 14916 | +else |
| 14917 | + ac_archetype_ok=no |
| 14918 | +fi |
| 14919 | +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
| 14920 | +ac_ext=c |
| 14921 | +ac_cpp='$CPP $CPPFLAGS' |
| 14922 | +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' |
| 14923 | +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' |
| 14924 | +ac_compiler_gnu=$ac_cv_c_compiler_gnu |
| 14925 | + |
| 14926 | +ac_cxx_werror_flag=$ac_save_cxx_werror_flag |
| 14927 | + |
| 14928 | + if [ "$ac_archetype_ok" = no ]; then |
| 14929 | + pgac_cv_cxx_printf_archetype=printf |
| 14930 | + fi |
| 14931 | +fi |
| 14932 | +fi |
| 14933 | +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_cxx_printf_archetype" >&5 |
| 14934 | +$as_echo "$pgac_cv_cxx_printf_archetype" >&6; } |
| 14935 | + |
| 14936 | +cat >>confdefs.h <<_ACEOF |
| 14937 | +#define PG_CXX_PRINTF_ATTRIBUTE $pgac_cv_cxx_printf_archetype |
14848 | 14938 | _ACEOF |
14849 | 14939 |
|
14850 | 14940 |
|
@@ -16231,6 +16321,16 @@ fi |
16231 | 16321 | cat >>confdefs.h <<_ACEOF |
16232 | 16322 | #define HAVE_DECL_STRNLEN $ac_have_decl |
16233 | 16323 | _ACEOF |
| 16324 | +ac_fn_c_check_decl "$LINENO" "timingsafe_bcmp" "ac_cv_have_decl_timingsafe_bcmp" "$ac_includes_default" |
| 16325 | +if test "x$ac_cv_have_decl_timingsafe_bcmp" = xyes; then : |
| 16326 | + ac_have_decl=1 |
| 16327 | +else |
| 16328 | + ac_have_decl=0 |
| 16329 | +fi |
| 16330 | + |
| 16331 | +cat >>confdefs.h <<_ACEOF |
| 16332 | +#define HAVE_DECL_TIMINGSAFE_BCMP $ac_have_decl |
| 16333 | +_ACEOF |
16234 | 16334 |
|
16235 | 16335 |
|
16236 | 16336 | # We can't use AC_REPLACE_FUNCS to replace these functions, because it |
@@ -16423,6 +16523,19 @@ esac |
16423 | 16523 |
|
16424 | 16524 | fi |
16425 | 16525 |
|
| 16526 | +ac_fn_c_check_func "$LINENO" "timingsafe_bcmp" "ac_cv_func_timingsafe_bcmp" |
| 16527 | +if test "x$ac_cv_func_timingsafe_bcmp" = xyes; then : |
| 16528 | + $as_echo "#define HAVE_TIMINGSAFE_BCMP 1" >>confdefs.h |
| 16529 | + |
| 16530 | +else |
| 16531 | + case " $LIBOBJS " in |
| 16532 | + *" timingsafe_bcmp.$ac_objext "* ) ;; |
| 16533 | + *) LIBOBJS="$LIBOBJS timingsafe_bcmp.$ac_objext" |
| 16534 | + ;; |
| 16535 | +esac |
| 16536 | + |
| 16537 | +fi |
| 16538 | + |
16426 | 16539 |
|
16427 | 16540 |
|
16428 | 16541 | if test "$enable_thread_safety" = yes; then |
@@ -20047,7 +20160,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 |
20047 | 20160 | # report actual input values of CONFIG_FILES etc. instead of their |
20048 | 20161 | # values after options handling. |
20049 | 20162 | ac_log=" |
20050 | | -This file was extended by PostgreSQL $as_me 16.13, which was |
| 20163 | +This file was extended by PostgreSQL $as_me 16.14, which was |
20051 | 20164 | generated by GNU Autoconf 2.69. Invocation command line was |
20052 | 20165 |
|
20053 | 20166 | CONFIG_FILES = $CONFIG_FILES |
@@ -20118,7 +20231,7 @@ _ACEOF |
20118 | 20231 | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 |
20119 | 20232 | ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" |
20120 | 20233 | ac_cs_version="\\ |
20121 | | -PostgreSQL config.status 16.13 |
| 20234 | +PostgreSQL config.status 16.14 |
20122 | 20235 | configured by $0, generated by GNU Autoconf 2.69, |
20123 | 20236 | with options \\"\$ac_cs_config\\" |
20124 | 20237 |
|
|
0 commit comments