*** pgsql/configure 2005/11/05 04:01:38 1.461 --- pgsql/configure 2005/12/08 22:31:05 1.461.2.4 *************** *** 1,6 **** #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by GNU Autoconf 2.59 for PostgreSQL 8.1.0. # # Report bugs to . # --- 1,6 ---- #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by GNU Autoconf 2.59 for PostgreSQL 8.1.1. # # Report bugs to . # *************** SHELL=${CONFIG_SHELL-/bin/sh} *** 271,278 **** # Identity of this package. PACKAGE_NAME='PostgreSQL' PACKAGE_TARNAME='postgresql' ! PACKAGE_VERSION='8.1.0' ! PACKAGE_STRING='PostgreSQL 8.1.0' PACKAGE_BUGREPORT='pgsql-bugs@postgresql.org' ac_unique_file="src/backend/access/common/heaptuple.c" --- 271,278 ---- # Identity of this package. PACKAGE_NAME='PostgreSQL' PACKAGE_TARNAME='postgresql' ! PACKAGE_VERSION='8.1.1' ! PACKAGE_STRING='PostgreSQL 8.1.1' PACKAGE_BUGREPORT='pgsql-bugs@postgresql.org' ac_unique_file="src/backend/access/common/heaptuple.c" *************** if test "$ac_init_help" = "long"; then *** 791,797 **** # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF ! \`configure' configures PostgreSQL 8.1.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... --- 791,797 ---- # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF ! \`configure' configures PostgreSQL 8.1.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... *************** fi *** 852,858 **** if test -n "$ac_init_help"; then case $ac_init_help in ! short | recursive ) echo "Configuration of PostgreSQL 8.1.0:";; esac cat <<\_ACEOF --- 852,858 ---- if test -n "$ac_init_help"; then case $ac_init_help in ! short | recursive ) echo "Configuration of PostgreSQL 8.1.1:";; esac cat <<\_ACEOF *************** fi *** 1005,1011 **** test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF ! PostgreSQL configure 8.1.0 generated by GNU Autoconf 2.59 Copyright (C) 2003 Free Software Foundation, Inc. --- 1005,1011 ---- test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF ! PostgreSQL configure 8.1.1 generated by GNU Autoconf 2.59 Copyright (C) 2003 Free Software Foundation, Inc. *************** cat >&5 <<_ACEOF *** 1021,1027 **** This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. ! It was created by PostgreSQL $as_me 8.1.0, which was generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ --- 1021,1027 ---- This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. ! It was created by PostgreSQL $as_me 8.1.1, which was generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ *************** fi *** 13852,13858 **** # also decide to use snprintf.c if snprintf() is present but does not # have all the features we need --- see below. ! pgac_need_repl_snprintf=no for ac_func in snprintf do --- 13852,13886 ---- # also decide to use snprintf.c if snprintf() is present but does not # have all the features we need --- see below. ! if test "$PORTNAME" = "win32"; then ! # Win32 gets snprintf.c built unconditionally. ! # ! # To properly translate all NLS languages strings, we must support the ! # *printf() %$ format, which allows *printf() arguments to be selected ! # by position in the translated string. ! # ! # libintl versions < 0.13 use the native *printf() functions, and Win32 ! # *printf() doesn't understand %$, so we must use our /port versions, ! # which do understand %$. libintl versions >= 0.13 include their own ! # *printf versions on Win32. The libintl 0.13 release note text is: ! # ! # C format strings with positions, as they arise when a translator ! # needs to reorder a sentence, are now supported on all platforms. ! # On those few platforms (NetBSD and Woe32) for which the native ! # printf()/fprintf()/... functions don't support such format ! # strings, replacements are provided through . ! # ! # We could use libintl >= 0.13's *printf() if we were sure that we had ! # a litint >= 0.13 at runtime, but seeing that there is no clean way ! # to guarantee that, it is best to just use our own, so we are sure to ! # get %$ support. In include/port.h we disable the *printf() macros ! # that might have been defined by libintl. ! # ! # We do this unconditionally whether NLS is used or not so we are sure ! # that all Win32 libraries and binaries behave the same. ! pgac_need_repl_snprintf=yes ! else ! pgac_need_repl_snprintf=no for ac_func in snprintf do *************** else *** 14061,14066 **** --- 14089,14095 ---- fi done + fi # Check whether declares snprintf() and vsnprintf(); if not, *************** fi *** 17108,17123 **** rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi # Force use of our snprintf if system's doesn't do arg control ! # This feature is used by NLS ! if test "$enable_nls" = yes && ! test $pgac_need_repl_snprintf = no && ! # On Win32, libintl replaces snprintf() with its own version that ! # understands arg control, so we don't need our own. In fact, it ! # also uses macros that conflict with ours, so we _can't_ use ! # our own. ! test "$PORTNAME" != "win32"; then echo "$as_me:$LINENO: checking whether printf supports argument control" >&5 echo $ECHO_N "checking whether printf supports argument control... $ECHO_C" >&6 if test "${pgac_cv_printf_arg_control+set}" = set; then --- 17137,17149 ---- rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi + # -------------------- + # Run tests below here + # -------------------- # Force use of our snprintf if system's doesn't do arg control ! # See comment above at snprintf test for details. ! if test "$enable_nls" = yes -a "$pgac_need_repl_snprintf" = no; then echo "$as_me:$LINENO: checking whether printf supports argument control" >&5 echo $ECHO_N "checking whether printf supports argument control... $ECHO_C" >&6 if test "${pgac_cv_printf_arg_control+set}" = set; then *************** _ACEOF *** 17604,17610 **** if test $pgac_need_repl_snprintf = yes; then cat >>confdefs.h <<\_ACEOF ! #define USE_SNPRINTF 1 _ACEOF case $LIBOBJS in --- 17630,17636 ---- if test $pgac_need_repl_snprintf = yes; then cat >>confdefs.h <<\_ACEOF ! #define USE_REPL_SNPRINTF 1 _ACEOF case $LIBOBJS in *************** _ASBOX *** 22902,22908 **** } >&5 cat >&5 <<_CSEOF ! This file was extended by PostgreSQL $as_me 8.1.0, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = $CONFIG_FILES --- 22928,22934 ---- } >&5 cat >&5 <<_CSEOF ! This file was extended by PostgreSQL $as_me 8.1.1, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = $CONFIG_FILES *************** _ACEOF *** 22968,22974 **** cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ ! PostgreSQL config.status 8.1.0 configured by $0, generated by GNU Autoconf 2.59, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" --- 22994,23000 ---- cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ ! PostgreSQL config.status 8.1.1 configured by $0, generated by GNU Autoconf 2.59, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"