diff options
author | Guy Harris <guy@alum.mit.edu> | 2019-11-06 00:08:26 -0800 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2019-11-06 00:08:26 -0800 |
commit | a090f9ea4fb23f36472bafbd2bb5b3d8e9a7be33 (patch) | |
tree | e7f3b7cb65e21dd22c429b20fd0caa5661b78df4 | |
parent | b6d046190a6598b0d1a0c4db6f347a54876ca8ec (diff) |
Temporarily turn off the definition of _WIN32_WINNT as 0x0600.
Check whether that reproduces GitHub issue #877, to see if that
definition fixes it.
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index beafd911..c4ee9a9b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -148,9 +148,9 @@ endif(MSVC) # a newer version of the C library, i.e. Visual Studio 2015 or # later, as it depends on C99 features introduced in VS 2015. # -if(MINGW) - add_definitions(-D_WIN32_WINNT=0x0600) -endif(MINGW) +#if(MINGW) +# add_definitions(-D_WIN32_WINNT=0x0600) +#endif(MINGW) # # Build all runtimes in the top-level binary directory; that way, |