diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/include/c.h | 2 | ||||
-rw-r--r-- | src/include/pg_config.h.in | 6 | ||||
-rw-r--r-- | src/tools/msvc/Solution.pm | 2 |
3 files changed, 1 insertions, 9 deletions
diff --git a/src/include/c.h b/src/include/c.h index 8116b158bc7..d972ec471d8 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -343,7 +343,7 @@ typedef void (*pg_funcptr_t) (void); * bool * Boolean value, either true or false. * - * We use stdbool.h if available and its bool has size 1. That's useful for + * We use stdbool.h if bool has size 1 after including it. That's useful for * better compiler and debugger output and for compatibility with third-party * libraries. But PostgreSQL currently cannot deal with bool of other sizes; * there are static assertions around the code to prevent that. diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index 4b0c845b931..39f583667f2 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -491,9 +491,6 @@ /* Define to 1 if you have the `SSL_CTX_set_num_tickets' function. */ #undef HAVE_SSL_CTX_SET_NUM_TICKETS -/* Define to 1 if stdbool.h conforms to C99. */ -#undef HAVE_STDBOOL_H - /* Define to 1 if you have the <stdint.h> header file. */ #undef HAVE_STDINT_H @@ -692,9 +689,6 @@ /* Define to 1 if the assembler supports X86_64's POPCNTQ instruction. */ #undef HAVE_X86_64_POPCNTQ -/* Define to 1 if the system has the type `_Bool'. */ -#undef HAVE__BOOL - /* Define to 1 if your compiler understands __builtin_bswap16. */ #undef HAVE__BUILTIN_BSWAP16 diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm index 6f9f39fa48a..644e9060520 100644 --- a/src/tools/msvc/Solution.pm +++ b/src/tools/msvc/Solution.pm @@ -354,7 +354,6 @@ sub GenerateFiles HAVE_SPINLOCKS => 1, HAVE_SSL_CTX_SET_NUM_TICKETS => undef, HAVE_SRANDOM => undef, - HAVE_STDBOOL_H => 1, HAVE_STDINT_H => 1, HAVE_STDLIB_H => 1, HAVE_STRCHRNUL => undef, @@ -421,7 +420,6 @@ sub GenerateFiles HAVE_X509_GET_SIGNATURE_NID => 1, HAVE_X509_GET_SIGNATURE_INFO => undef, HAVE_X86_64_POPCNTQ => undef, - HAVE__BOOL => undef, HAVE__BUILTIN_BSWAP16 => undef, HAVE__BUILTIN_BSWAP32 => undef, HAVE__BUILTIN_BSWAP64 => undef, |