|
1 | 1 | #! /bin/sh |
2 | 2 | # Guess values for system-dependent variables and create Makefiles. |
3 | | -# Generated by GNU Autoconf 2.69 for PostgreSQL 18.3. |
| 3 | +# Generated by GNU Autoconf 2.69 for PostgreSQL 18.4. |
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='18.3' |
586 | | -PACKAGE_STRING='PostgreSQL 18.3' |
| 585 | +PACKAGE_VERSION='18.4' |
| 586 | +PACKAGE_STRING='PostgreSQL 18.4' |
587 | 587 | PACKAGE_BUGREPORT='pgsql-bugs@lists.postgresql.org' |
588 | 588 | PACKAGE_URL='https://www.postgresql.org/' |
589 | 589 |
|
@@ -1468,7 +1468,7 @@ if test "$ac_init_help" = "long"; then |
1468 | 1468 | # Omit some internal or obsolete options to make the list less imposing. |
1469 | 1469 | # This message is too long to be a string in the A/UX 3.1 sh. |
1470 | 1470 | cat <<_ACEOF |
1471 | | -\`configure' configures PostgreSQL 18.3 to adapt to many kinds of systems. |
| 1471 | +\`configure' configures PostgreSQL 18.4 to adapt to many kinds of systems. |
1472 | 1472 |
|
1473 | 1473 | Usage: $0 [OPTION]... [VAR=VALUE]... |
1474 | 1474 |
|
|
1533 | 1533 |
|
1534 | 1534 | if test -n "$ac_init_help"; then |
1535 | 1535 | case $ac_init_help in |
1536 | | - short | recursive ) echo "Configuration of PostgreSQL 18.3:";; |
| 1536 | + short | recursive ) echo "Configuration of PostgreSQL 18.4:";; |
1537 | 1537 | esac |
1538 | 1538 | cat <<\_ACEOF |
1539 | 1539 |
|
|
1724 | 1724 | test -n "$ac_init_help" && exit $ac_status |
1725 | 1725 | if $ac_init_version; then |
1726 | 1726 | cat <<\_ACEOF |
1727 | | -PostgreSQL configure 18.3 |
| 1727 | +PostgreSQL configure 18.4 |
1728 | 1728 | generated by GNU Autoconf 2.69 |
1729 | 1729 |
|
1730 | 1730 | Copyright (C) 2012 Free Software Foundation, Inc. |
@@ -2477,7 +2477,7 @@ cat >config.log <<_ACEOF |
2477 | 2477 | This file contains any messages produced by compilers while |
2478 | 2478 | running configure, to aid debugging if configure makes a mistake. |
2479 | 2479 |
|
2480 | | -It was created by PostgreSQL $as_me 18.3, which was |
| 2480 | +It was created by PostgreSQL $as_me 18.4, which was |
2481 | 2481 | generated by GNU Autoconf 2.69. Invocation command line was |
2482 | 2482 |
|
2483 | 2483 | $ $0 $@ |
@@ -14837,8 +14837,8 @@ _ACEOF |
14837 | 14837 | ;; |
14838 | 14838 | esac |
14839 | 14839 |
|
14840 | | -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for printf format archetype" >&5 |
14841 | | -$as_echo_n "checking for printf format archetype... " >&6; } |
| 14840 | +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C printf format archetype" >&5 |
| 14841 | +$as_echo_n "checking for C printf format archetype... " >&6; } |
14842 | 14842 | if ${pgac_cv_printf_archetype+:} false; then : |
14843 | 14843 | $as_echo_n "(cached) " >&6 |
14844 | 14844 | else |
@@ -14898,7 +14898,97 @@ fi |
14898 | 14898 | $as_echo "$pgac_cv_printf_archetype" >&6; } |
14899 | 14899 |
|
14900 | 14900 | cat >>confdefs.h <<_ACEOF |
14901 | | -#define PG_PRINTF_ATTRIBUTE $pgac_cv_printf_archetype |
| 14901 | +#define PG_C_PRINTF_ATTRIBUTE $pgac_cv_printf_archetype |
| 14902 | +_ACEOF |
| 14903 | + |
| 14904 | + |
| 14905 | + |
| 14906 | +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ printf format archetype" >&5 |
| 14907 | +$as_echo_n "checking for C++ printf format archetype... " >&6; } |
| 14908 | +if ${pgac_cv_cxx_printf_archetype+:} false; then : |
| 14909 | + $as_echo_n "(cached) " >&6 |
| 14910 | +else |
| 14911 | + pgac_cv_cxx_printf_archetype=gnu_printf |
| 14912 | +ac_save_cxx_werror_flag=$ac_cxx_werror_flag |
| 14913 | +ac_cxx_werror_flag=yes |
| 14914 | +ac_ext=cpp |
| 14915 | +ac_cpp='$CXXCPP $CPPFLAGS' |
| 14916 | +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' |
| 14917 | +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' |
| 14918 | +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu |
| 14919 | + |
| 14920 | +cat confdefs.h - <<_ACEOF >conftest.$ac_ext |
| 14921 | +/* end confdefs.h. */ |
| 14922 | +extern void pgac_write(int ignore, const char *fmt,...) |
| 14923 | +__attribute__((format($pgac_cv_cxx_printf_archetype, 2, 3))); |
| 14924 | +int |
| 14925 | +main () |
| 14926 | +{ |
| 14927 | +pgac_write(0, "error %s: %m", "foo"); |
| 14928 | + ; |
| 14929 | + return 0; |
| 14930 | +} |
| 14931 | +_ACEOF |
| 14932 | +if ac_fn_cxx_try_compile "$LINENO"; then : |
| 14933 | + ac_archetype_ok=yes |
| 14934 | +else |
| 14935 | + ac_archetype_ok=no |
| 14936 | +fi |
| 14937 | +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
| 14938 | +ac_ext=c |
| 14939 | +ac_cpp='$CPP $CPPFLAGS' |
| 14940 | +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' |
| 14941 | +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' |
| 14942 | +ac_compiler_gnu=$ac_cv_c_compiler_gnu |
| 14943 | + |
| 14944 | +ac_cxx_werror_flag=$ac_save_cxx_werror_flag |
| 14945 | + |
| 14946 | +if [ "$ac_archetype_ok" = no ]; then |
| 14947 | + pgac_cv_cxx_printf_archetype=__syslog__ |
| 14948 | + ac_save_cxx_werror_flag=$ac_cxx_werror_flag |
| 14949 | +ac_cxx_werror_flag=yes |
| 14950 | +ac_ext=cpp |
| 14951 | +ac_cpp='$CXXCPP $CPPFLAGS' |
| 14952 | +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' |
| 14953 | +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' |
| 14954 | +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu |
| 14955 | + |
| 14956 | +cat confdefs.h - <<_ACEOF >conftest.$ac_ext |
| 14957 | +/* end confdefs.h. */ |
| 14958 | +extern void pgac_write(int ignore, const char *fmt,...) |
| 14959 | +__attribute__((format($pgac_cv_cxx_printf_archetype, 2, 3))); |
| 14960 | +int |
| 14961 | +main () |
| 14962 | +{ |
| 14963 | +pgac_write(0, "error %s: %m", "foo"); |
| 14964 | + ; |
| 14965 | + return 0; |
| 14966 | +} |
| 14967 | +_ACEOF |
| 14968 | +if ac_fn_cxx_try_compile "$LINENO"; then : |
| 14969 | + ac_archetype_ok=yes |
| 14970 | +else |
| 14971 | + ac_archetype_ok=no |
| 14972 | +fi |
| 14973 | +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |
| 14974 | +ac_ext=c |
| 14975 | +ac_cpp='$CPP $CPPFLAGS' |
| 14976 | +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' |
| 14977 | +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' |
| 14978 | +ac_compiler_gnu=$ac_cv_c_compiler_gnu |
| 14979 | + |
| 14980 | +ac_cxx_werror_flag=$ac_save_cxx_werror_flag |
| 14981 | + |
| 14982 | + if [ "$ac_archetype_ok" = no ]; then |
| 14983 | + pgac_cv_cxx_printf_archetype=printf |
| 14984 | + fi |
| 14985 | +fi |
| 14986 | +fi |
| 14987 | +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_cxx_printf_archetype" >&5 |
| 14988 | +$as_echo "$pgac_cv_cxx_printf_archetype" >&6; } |
| 14989 | + |
| 14990 | +cat >>confdefs.h <<_ACEOF |
| 14991 | +#define PG_CXX_PRINTF_ATTRIBUTE $pgac_cv_cxx_printf_archetype |
14902 | 14992 | _ACEOF |
14903 | 14993 |
|
14904 | 14994 |
|
@@ -20089,7 +20179,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 |
20089 | 20179 | # report actual input values of CONFIG_FILES etc. instead of their |
20090 | 20180 | # values after options handling. |
20091 | 20181 | ac_log=" |
20092 | | -This file was extended by PostgreSQL $as_me 18.3, which was |
| 20182 | +This file was extended by PostgreSQL $as_me 18.4, which was |
20093 | 20183 | generated by GNU Autoconf 2.69. Invocation command line was |
20094 | 20184 |
|
20095 | 20185 | CONFIG_FILES = $CONFIG_FILES |
@@ -20160,7 +20250,7 @@ _ACEOF |
20160 | 20250 | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 |
20161 | 20251 | ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" |
20162 | 20252 | ac_cs_version="\\ |
20163 | | -PostgreSQL config.status 18.3 |
| 20253 | +PostgreSQL config.status 18.4 |
20164 | 20254 | configured by $0, generated by GNU Autoconf 2.69, |
20165 | 20255 | with options \\"\$ac_cs_config\\" |
20166 | 20256 |
|
|
0 commit comments