diff options
author | thomasvaughan <thomas@vaughan.net> | 2018-09-02 14:51:23 +0000 |
---|---|---|
committer | thomasvaughan <thomas@vaughan.net> | 2018-09-11 14:32:33 +0000 |
commit | bcda7adcd444cc72b5c0d02da65be6b5cd843fc2 (patch) | |
tree | 0a02c0b8c9ea34c32ced30e511338db0ca479e52 /external/CMakeLists.txt | |
parent | Merge pull request #4223 (diff) | |
download | monero-bcda7adcd444cc72b5c0d02da65be6b5cd843fc2.tar.xz |
NetBSD support
Diffstat (limited to '')
-rw-r--r-- | external/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt index 1fc4d64c1..358d47a4f 100644 --- a/external/CMakeLists.txt +++ b/external/CMakeLists.txt @@ -47,6 +47,9 @@ if(MSVC) elseif(NOT MSVC) set_property(TARGET libminiupnpc-static APPEND_STRING PROPERTY COMPILE_FLAGS " -Wno-undef -Wno-unused-result -Wno-unused-value") endif() +if(CMAKE_SYSTEM_NAME MATCHES "NetBSD") + set_property(TARGET libminiupnpc-static APPEND_STRING PROPERTY COMPILE_FLAGS " -D_NETBSD_SOURCE") +endif() set(UPNP_LIBRARIES "libminiupnpc-static" PARENT_SCOPE) |