diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-03-29 08:55:34 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-03-29 08:55:34 -0400 |
commit | 3582b223d494cd505c6a22da98bcb49f99196645 (patch) | |
tree | bd0f23ceac904af63b4e8b4884260c099afd666e /src | |
parent | ddce628971fb611f5ecd49d72e1612f983d99097 (diff) | |
download | postgresql-3582b223d494cd505c6a22da98bcb49f99196645.tar.gz postgresql-3582b223d494cd505c6a22da98bcb49f99196645.zip |
Fix hardcoded typeof check result for Windows
The test result that I had blindly stipulated didn't work out on the
build farm, so disable the feature in Windows MSVC for now.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/pg_config.h.win32 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/pg_config.h.win32 b/src/include/pg_config.h.win32 index 9293ddd3a50..f9588b055fa 100644 --- a/src/include/pg_config.h.win32 +++ b/src/include/pg_config.h.win32 @@ -455,7 +455,7 @@ #define HAVE_TOWLOWER 1 /* Define to 1 if your compiler understands `typeof' or something similar. */ -#define HAVE_TYPEOF 1 +/* #undef HAVE_TYPEOF */ /* Define to 1 if you have the external array `tzname'. */ /* #undef HAVE_TZNAME */ @@ -687,4 +687,4 @@ /* #undef signed */ /* Define to how the compiler spells `typeof'. */ -#define typeof decltype +/* #undef typeof */ |