diff options
Diffstat (limited to 'src/include/pg_config.h.win32')
-rw-r--r-- | src/include/pg_config.h.win32 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/pg_config.h.win32 b/src/include/pg_config.h.win32 index bc437b08f0c..e776b34f223 100644 --- a/src/include/pg_config.h.win32 +++ b/src/include/pg_config.h.win32 @@ -357,7 +357,9 @@ #define HAVE_SSL_GET_CURRENT_COMPRESSION 1 /* Define to 1 if stdbool.h conforms to C99. */ -/* #undef HAVE_STDBOOL_H */ +#if (_MSC_VER >= 1800) +#define HAVE_STDBOOL_H 1 +#endif /* Define to 1 if you have the <stdint.h> header file. */ /* #undef HAVE_STDINT_H */ |