diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 5fd554f..f8871cc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -91,11 +91,14 @@ endif() # Symbol check -check_symbol_exists(strlcat string.h HAVE_STRLCAT) +check_symbol_exists(htonll arpa/inet.h HAVE_HTONLL) +check_symbol_exists(ntohll arpa/inet.h HAVE_NTOHLL) +check_symbol_exists(strlcat string.h HAVE_STRLCAT) if (NOT HAVE_STRLCAT) list(APPEND OPENBSD_COMPAT_SRC src/openbsd-compat/strlcat.c) endif() + # generate config.h in build dir configure_file( ${mscp_SOURCE_DIR}/include/config.h.in |