From: Bruce Momjian Date: Fri, 9 Dec 2005 04:50:50 +0000 (+0000) Subject: I reconfirmed MS-VC6. Thank you for wonderful correspondence. X-Git-Tag: REL8_1_1~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=832bcfef55e160998fd1b46e3bf6cbbdeb23df15;p=postgresql I reconfirmed MS-VC6. Thank you for wonderful correspondence. However, Another problem newly occurred. This solves the problem of snprintf and vsnprintf. Patch to HEAD and 8.1.X. Hiroshi Saito --- diff --git a/src/include/pg_config.h.win32 b/src/include/pg_config.h.win32 index 7779af733b..de58666740 100644 --- a/src/include/pg_config.h.win32 +++ b/src/include/pg_config.h.win32 @@ -23,6 +23,12 @@ #define HAVE_RANDOM #endif +/* use _snprintf and _vsnprintf */ +#define HAVE_DECL_SNPRINTF 1 +#define snprintf _snprintf +#define HAVE_DECL_VSNPRINTF 1 +#define vsnprintf _vsnprintf + /* defines for dynamic linking on Win32 platform */ #ifdef __CYGWIN__