diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2020-02-21 16:14:09 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2020-02-21 16:14:09 -0500 |
commit | ec4a7851d5914bbdc5b65175e2489ec19020217e (patch) | |
tree | a7c468fdd8cf41e5fb04911f60474105bbfdac2b | |
parent | b24e125696a94b6ebdd2262c0c41bf45cbeba23f (diff) | |
download | postgresql-ec4a7851d5914bbdc5b65175e2489ec19020217e.tar.gz postgresql-ec4a7851d5914bbdc5b65175e2489ec19020217e.zip |
Adjust Solution.pm to set HAVE_STDINT_H.
We're not testing that anywhere anymore, but for consistency,
it should get defined.
-rw-r--r-- | src/tools/msvc/Solution.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm index 39470a869ed..75f916399c0 100644 --- a/src/tools/msvc/Solution.pm +++ b/src/tools/msvc/Solution.pm @@ -342,7 +342,7 @@ sub GenerateFiles HAVE_SPINLOCKS => 1, HAVE_SRANDOM => undef, HAVE_STDBOOL_H => 1, - HAVE_STDINT_H => undef, + HAVE_STDINT_H => 1, HAVE_STDLIB_H => 1, HAVE_STRCHRNUL => undef, HAVE_STRERROR_R => undef, |