From 5242fefb471d1fb2d0f35a33bde3570e19acd4b1 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 15 Jun 2013 14:11:43 -0400 Subject: Be consistent about #define'ing configure symbols as "1" not empty. This is just neatnik-ism, since all the tests in the code are #ifdefs, but we shouldn't specify symbols as "Define to 1 ..." and then not actually define them that way. --- src/include/pg_config.h.win32 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/include/pg_config.h.win32 b/src/include/pg_config.h.win32 index a4928e5dca1..54db287aff6 100644 --- a/src/include/pg_config.h.win32 +++ b/src/include/pg_config.h.win32 @@ -185,7 +185,7 @@ //#define HAVE_INTTYPES_H 1 /* Define to 1 if you have the global variable 'int timezone'. */ -#define HAVE_INT_TIMEZONE +#define HAVE_INT_TIMEZONE 1 /* Define to 1 if you have support for IPv6. */ #define HAVE_IPV6 1 @@ -663,7 +663,7 @@ /* #undef USE_UNNAMED_POSIX_SEMAPHORES */ /* Define to select Win32-style semaphores. */ -#define USE_WIN32_SEMAPHORES +#define USE_WIN32_SEMAPHORES 1 /* Number of bits in a file offset, on hosts where this is settable. */ /* #undef _FILE_OFFSET_BITS */ -- cgit v1.2.3