diff options
author | luigi1111 <luigi1111w@gmail.com> | 2016-06-21 11:16:25 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2016-06-21 11:16:25 -0500 |
commit | d7189600aed51e5fde7e9fa01c3b632e6d251de4 (patch) | |
tree | 57f725ec8221296fb5aabab2fde7086ef625336c /CMakeLists.txt | |
parent | Merge pull request #870 (diff) | |
download | monero-d7189600aed51e5fde7e9fa01c3b632e6d251de4.tar.xz |
remove POSIX_C_SOURCE and remove dlfcn.h for static builds
The former was a faulty "fix" for gmtime_r not existing on Windows. The latter is needed only for dynamic builds, and is not included with msys2, which ends up fine because Windows is only built static at this time.
Diffstat (limited to '')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9e99e5a51..2703a2c23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -323,7 +323,7 @@ else() endif() if(MINGW) set(WARNINGS "${WARNINGS} -Wno-error=unused-value -Wno-error=unused-but-set-variable") - set(MINGW_FLAG "${MINGW_FLAG} -DWIN32_LEAN_AND_MEAN -D_POSIX_C_SOURCE") + set(MINGW_FLAG "${MINGW_FLAG} -DWIN32_LEAN_AND_MEAN") set(Boost_THREADAPI win32) include_directories(SYSTEM src/platform/mingw) # mingw doesn't support LTO (multiple definition errors at link time) |