diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/include/port.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/include/port.h b/src/include/port.h index eadf85483be..d89c872a0d2 100644 --- a/src/include/port.h +++ b/src/include/port.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/port.h,v 1.86 2005/12/06 05:13:46 tgl Exp $ + * $PostgreSQL: pgsql/src/include/port.h,v 1.87 2005/12/06 18:35:10 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -115,8 +115,9 @@ extern unsigned char pg_tolower(unsigned char ch); #ifdef USE_REPL_SNPRINTF /* - * Some versions of libintl try to replace printf and friends with macros; - * if we are doing likewise, make sure our versions win. + * Versions of libintl >= 0.13 try to replace printf() and friends with + * macros to their own versions that understand the %$ format. We do the + * same, so disable their macros, if they exist. */ #ifdef vsnprintf #undef vsnprintf |