NetBSD support

This commit is contained in:
thomasvaughan 2018-09-02 14:51:23 +00:00 committed by wowario
parent ad56d914f3
commit 37f9a97b0a
No known key found for this signature in database
GPG key ID: 24DCBE762DE9C111
7 changed files with 34 additions and 10 deletions

View file

@ -32,3 +32,6 @@ message(STATUS "Using ${ARCH_WIDTH}-bit LMDB from source tree")
add_subdirectory(liblmdb)
set(LMDB_INCLUDE "${CMAKE_CURRENT_SOURCE_DIR}/liblmdb" CACHE STRING "LMDB Include path")
set(LMDB_LIBRARY "lmdb" CACHE STRING "LMDB Library name")
if(CMAKE_SYSTEM_NAME MATCHES "NetBSD")
set_property(TARGET lmdb APPEND_STRING PROPERTY COMPILE_FLAGS " -D_SEM_SEMUN_UNDEFINED")
endif()