|
1 | 1 | #! /bin/sh |
2 | 2 | # Guess values for system-dependent variables and create Makefiles. |
3 | | -# Generated by GNU Autoconf 2.69 for PostgreSQL 17.9. |
| 3 | +# Generated by GNU Autoconf 2.69 for PostgreSQL 17.10. |
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='17.9' |
586 | | -PACKAGE_STRING='PostgreSQL 17.9' |
| 585 | +PACKAGE_VERSION='17.10' |
| 586 | +PACKAGE_STRING='PostgreSQL 17.10' |
587 | 587 | PACKAGE_BUGREPORT='pgsql-bugs@lists.postgresql.org' |
588 | 588 | PACKAGE_URL='https://www.postgresql.org/' |
589 | 589 |
|
@@ -1450,7 +1450,7 @@ if test "$ac_init_help" = "long"; then |
1450 | 1450 | # Omit some internal or obsolete options to make the list less imposing. |
1451 | 1451 | # This message is too long to be a string in the A/UX 3.1 sh. |
1452 | 1452 | cat <<_ACEOF |
1453 | | -\`configure' configures PostgreSQL 17.9 to adapt to many kinds of systems. |
| 1453 | +\`configure' configures PostgreSQL 17.10 to adapt to many kinds of systems. |
1454 | 1454 |
|
1455 | 1455 | Usage: $0 [OPTION]... [VAR=VALUE]... |
1456 | 1456 |
|
|
1515 | 1515 |
|
1516 | 1516 | if test -n "$ac_init_help"; then |
1517 | 1517 | case $ac_init_help in |
1518 | | - short | recursive ) echo "Configuration of PostgreSQL 17.9:";; |
| 1518 | + short | recursive ) echo "Configuration of PostgreSQL 17.10:";; |
1519 | 1519 | esac |
1520 | 1520 | cat <<\_ACEOF |
1521 | 1521 |
|
|
1690 | 1690 | test -n "$ac_init_help" && exit $ac_status |
1691 | 1691 | if $ac_init_version; then |
1692 | 1692 | cat <<\_ACEOF |
1693 | | -PostgreSQL configure 17.9 |
| 1693 | +PostgreSQL configure 17.10 |
1694 | 1694 | generated by GNU Autoconf 2.69 |
1695 | 1695 |
|
1696 | 1696 | Copyright (C) 2012 Free Software Foundation, Inc. |
@@ -2443,7 +2443,7 @@ cat >config.log <<_ACEOF |
2443 | 2443 | This file contains any messages produced by compilers while |
2444 | 2444 | running configure, to aid debugging if configure makes a mistake. |
2445 | 2445 |
|
2446 | | -It was created by PostgreSQL $as_me 17.9, which was |
| 2446 | +It was created by PostgreSQL $as_me 17.10, which was |
2447 | 2447 | generated by GNU Autoconf 2.69. Invocation command line was |
2448 | 2448 |
|
2449 | 2449 | $ $0 $@ |
@@ -14364,8 +14364,8 @@ _ACEOF |
14364 | 14364 | ;; |
14365 | 14365 | esac |
14366 | 14366 |
|
14367 | | -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for printf format archetype" >&5 |
14368 | | -$as_echo_n "checking for printf format archetype... " >&6; } |
| 14367 | +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C printf format archetype" >&5 |
| 14368 | +$as_echo_n "checking for C printf format archetype... " >&6; } |
14369 | 14369 | if ${pgac_cv_printf_archetype+:} false; then : |
14370 | 14370 | $as_echo_n "(cached) " >&6 |
14371 | 14371 | else |
@@ -14425,7 +14425,97 @@ fi |
14425 | 14425 | $as_echo "$pgac_cv_printf_archetype" >&6; } |
14426 | 14426 |
|
14427 | 14427 | cat >>confdefs.h <<_ACEOF |
14428 | | -#define PG_PRINTF_ATTRIBUTE $pgac_cv_printf_archetype |
| 14428 | +#define PG_C_PRINTF_ATTRIBUTE $pgac_cv_printf_archetype |
| 14429 | +_ACEOF |
| 14430 | + |
| 14431 | + |
| 14432 | + |
| 14433 | +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ printf format archetype" >&5 |
| 14434 | +$as_echo_n "checking for C++ printf format archetype... " >&6; } |
| 14435 | +if ${pgac_cv_cxx_printf_archetype+:} false; then : |
| 14436 | + $as_echo_n "(cached) " >&6 |
| 14437 | +else |
| 14438 | + pgac_cv_cxx_printf_archetype=gnu_printf |
| 14439 | +ac_save_cxx_werror_flag=$ac_cxx_werror_flag |
| 14440 | +ac_cxx_werror_flag=yes |
| 14441 | +ac_ext=cpp |
| 14442 | +ac_cpp='$CXXCPP $CPPFLAGS' |
| 14443 | +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' |
| 14444 | +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' |
| 14445 | +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu |
| 14446 | + |
| 14447 | +cat confdefs.h - <<_ACEOF >conftest.$ac_ext |
| 14448 | +/* end confdefs.h. */ |
| 14449 | +extern void pgac_write(int ignore, const char *fmt,...) |
| 14450 | +__attribute__((format($pgac_cv_cxx_printf_archetype, 2, 3))); |
| 14451 | +int |
| 14452 | +main () |
| 14453 | +{ |
| 14454 | +pgac_write(0, "error %s: %m", "foo"); |
| 14455 | + ; |
| 14456 | + return 0; |
| 14457 | +} |
| 14458 | +_ACEOF |
| 14459 | +if ac_fn_cxx_try_compile "$LINENO"; then : |
| 14460 | + ac_archetype_ok=yes |
| 14461 | +else |
| 14462 | + ac_archetype_ok=no |
| 14463 | +fi |
| 14464 | +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
| 14465 | +ac_ext=c |
| 14466 | +ac_cpp='$CPP $CPPFLAGS' |
| 14467 | +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' |
| 14468 | +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' |
| 14469 | +ac_compiler_gnu=$ac_cv_c_compiler_gnu |
| 14470 | + |
| 14471 | +ac_cxx_werror_flag=$ac_save_cxx_werror_flag |
| 14472 | + |
| 14473 | +if [ "$ac_archetype_ok" = no ]; then |
| 14474 | + pgac_cv_cxx_printf_archetype=__syslog__ |
| 14475 | + ac_save_cxx_werror_flag=$ac_cxx_werror_flag |
| 14476 | +ac_cxx_werror_flag=yes |
| 14477 | +ac_ext=cpp |
| 14478 | +ac_cpp='$CXXCPP $CPPFLAGS' |
| 14479 | +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' |
| 14480 | +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' |
| 14481 | +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu |
| 14482 | + |
| 14483 | +cat confdefs.h - <<_ACEOF >conftest.$ac_ext |
| 14484 | +/* end confdefs.h. */ |
| 14485 | +extern void pgac_write(int ignore, const char *fmt,...) |
| 14486 | +__attribute__((format($pgac_cv_cxx_printf_archetype, 2, 3))); |
| 14487 | +int |
| 14488 | +main () |
| 14489 | +{ |
| 14490 | +pgac_write(0, "error %s: %m", "foo"); |
| 14491 | + ; |
| 14492 | + return 0; |
| 14493 | +} |
| 14494 | +_ACEOF |
| 14495 | +if ac_fn_cxx_try_compile "$LINENO"; then : |
| 14496 | + ac_archetype_ok=yes |
| 14497 | +else |
| 14498 | + ac_archetype_ok=no |
| 14499 | +fi |
| 14500 | +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
| 14501 | +ac_ext=c |
| 14502 | +ac_cpp='$CPP $CPPFLAGS' |
| 14503 | +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' |
| 14504 | +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' |
| 14505 | +ac_compiler_gnu=$ac_cv_c_compiler_gnu |
| 14506 | + |
| 14507 | +ac_cxx_werror_flag=$ac_save_cxx_werror_flag |
| 14508 | + |
| 14509 | + if [ "$ac_archetype_ok" = no ]; then |
| 14510 | + pgac_cv_cxx_printf_archetype=printf |
| 14511 | + fi |
| 14512 | +fi |
| 14513 | +fi |
| 14514 | +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_cxx_printf_archetype" >&5 |
| 14515 | +$as_echo "$pgac_cv_cxx_printf_archetype" >&6; } |
| 14516 | + |
| 14517 | +cat >>confdefs.h <<_ACEOF |
| 14518 | +#define PG_CXX_PRINTF_ATTRIBUTE $pgac_cv_cxx_printf_archetype |
14429 | 14519 | _ACEOF |
14430 | 14520 |
|
14431 | 14521 |
|
@@ -15788,6 +15878,16 @@ fi |
15788 | 15878 | cat >>confdefs.h <<_ACEOF |
15789 | 15879 | #define HAVE_DECL_STRNLEN $ac_have_decl |
15790 | 15880 | _ACEOF |
| 15881 | +ac_fn_c_check_decl "$LINENO" "timingsafe_bcmp" "ac_cv_have_decl_timingsafe_bcmp" "$ac_includes_default" |
| 15882 | +if test "x$ac_cv_have_decl_timingsafe_bcmp" = xyes; then : |
| 15883 | + ac_have_decl=1 |
| 15884 | +else |
| 15885 | + ac_have_decl=0 |
| 15886 | +fi |
| 15887 | + |
| 15888 | +cat >>confdefs.h <<_ACEOF |
| 15889 | +#define HAVE_DECL_TIMINGSAFE_BCMP $ac_have_decl |
| 15890 | +_ACEOF |
15791 | 15891 |
|
15792 | 15892 |
|
15793 | 15893 | # We can't use AC_CHECK_FUNCS to detect these functions, because it |
@@ -15960,6 +16060,19 @@ esac |
15960 | 16060 |
|
15961 | 16061 | fi |
15962 | 16062 |
|
| 16063 | +ac_fn_c_check_func "$LINENO" "timingsafe_bcmp" "ac_cv_func_timingsafe_bcmp" |
| 16064 | +if test "x$ac_cv_func_timingsafe_bcmp" = xyes; then : |
| 16065 | + $as_echo "#define HAVE_TIMINGSAFE_BCMP 1" >>confdefs.h |
| 16066 | + |
| 16067 | +else |
| 16068 | + case " $LIBOBJS " in |
| 16069 | + *" timingsafe_bcmp.$ac_objext "* ) ;; |
| 16070 | + *) LIBOBJS="$LIBOBJS timingsafe_bcmp.$ac_objext" |
| 16071 | + ;; |
| 16072 | +esac |
| 16073 | + |
| 16074 | +fi |
| 16075 | + |
15963 | 16076 |
|
15964 | 16077 |
|
15965 | 16078 | ac_fn_c_check_func "$LINENO" "pthread_barrier_wait" "ac_cv_func_pthread_barrier_wait" |
@@ -19866,7 +19979,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 |
19866 | 19979 | # report actual input values of CONFIG_FILES etc. instead of their |
19867 | 19980 | # values after options handling. |
19868 | 19981 | ac_log=" |
19869 | | -This file was extended by PostgreSQL $as_me 17.9, which was |
| 19982 | +This file was extended by PostgreSQL $as_me 17.10, which was |
19870 | 19983 | generated by GNU Autoconf 2.69. Invocation command line was |
19871 | 19984 |
|
19872 | 19985 | CONFIG_FILES = $CONFIG_FILES |
@@ -19937,7 +20050,7 @@ _ACEOF |
19937 | 20050 | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 |
19938 | 20051 | ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" |
19939 | 20052 | ac_cs_version="\\ |
19940 | | -PostgreSQL config.status 17.9 |
| 20053 | +PostgreSQL config.status 17.10 |
19941 | 20054 | configured by $0, generated by GNU Autoconf 2.69, |
19942 | 20055 | with options \\"\$ac_cs_config\\" |
19943 | 20056 |
|
|
0 commit comments