diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-11-21 23:26:47 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-11-21 23:26:47 +0000 |
commit | 617f123f06691d0391664464ed85e05e5523dcbd (patch) | |
tree | e328e212be4ba37929374552fe638b6d9379f594 /src/include | |
parent | d735804f88cc5e5d240b7fac5d8d618d7938ed13 (diff) | |
download | postgresql-617f123f06691d0391664464ed85e05e5523dcbd.tar.gz postgresql-617f123f06691d0391664464ed85e05e5523dcbd.zip |
Get rid of retail definitions of HAVE_STRDUP and HAVE_VSNPRINTF in
some of the Windows-only makefiles; the correct place to assert these
things is pg_config.h.win32. Per bug #2677.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/pg_config.h.win32 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/pg_config.h.win32 b/src/include/pg_config.h.win32 index 173cc55b3c3..ec731b7d192 100644 --- a/src/include/pg_config.h.win32 +++ b/src/include/pg_config.h.win32 @@ -529,7 +529,7 @@ #define HAVE_UTIME_H 1 /* Define to 1 if you have the `vsnprintf' function. */ -/* #undef HAVE_VSNPRINTF */ +#define HAVE_VSNPRINTF 1 /* Define to 1 if you have the `waitpid' function. */ /* #undef HAVE_WAITPID */ |