summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2005-05-05 19:15:54 +0000
committerBruce Momjian <bruce@momjian.us>2005-05-05 19:15:54 +0000
commit64c8635a4de921fcf60068f746936ecdf24b27be (patch)
treebb307643b6f6fe3eb75324cb43f7412a911fe26e /configure.in
parent160ca10609f5880b1318b211268999e380e72221 (diff)
downloadpostgresql-64c8635a4de921fcf60068f746936ecdf24b27be.tar.gz
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.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in10
1 files changed, 8 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 39ed00a1ab..f8bbf10618 100644
--- a/configure.in
+++ b/configure.in
@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
-dnl $PostgreSQL: pgsql/configure.in,v 1.408 2005/05/05 11:50:18 neilc Exp $
+dnl $PostgreSQL: pgsql/configure.in,v 1.409 2005/05/05 19:15:54 momjian Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
@@ -1095,7 +1095,13 @@ AC_MSG_ERROR([[
# 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; then
+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
PGAC_FUNC_PRINTF_ARG_CONTROL
if test $pgac_cv_printf_arg_control != yes ; then
pgac_need_repl_snprintf=yes