diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-12-09 04:50:40 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-12-09 04:50:40 +0000 |
commit | cd8f3ec599ecf31fd96ef0c11183a698eccb79ed (patch) | |
tree | 12e69375bea79c49e23ae685230c6dc54231a553 | |
parent | 7b1a7e786e40f27b4ab48a9d9d47e1fab5fd088b (diff) | |
download | postgresql-cd8f3ec599ecf31fd96ef0c11183a698eccb79ed.tar.gz postgresql-cd8f3ec599ecf31fd96ef0c11183a698eccb79ed.zip |
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
-rw-r--r-- | src/include/pg_config.h.win32 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/pg_config.h.win32 b/src/include/pg_config.h.win32 index 97b9aa219cf..ffa386c9922 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__ |