diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-10-30 15:17:22 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-30 15:17:22 +0000 |
commit | 1253b3e710776c8f704d76947e1d2de28059c02b (patch) | |
tree | df32de2cd191b030482eb991cb3810102580e08a | |
parent | e6de9872c29930c3fe147869b7e6011c48fe96fd (diff) | |
parent | 55d667d387bdbc89347aee4187efcdf6c86863b8 (diff) | |
download | rspamd-1253b3e710776c8f704d76947e1d2de28059c02b.tar.gz rspamd-1253b3e710776c8f704d76947e1d2de28059c02b.zip |
Merge pull request #2614 from citrin/remove-libnsl-dependency
Stop linking with -lnsl on Linux
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 4f4eb9a00..0aa91aa57 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -564,7 +564,6 @@ IF(CMAKE_SYSTEM_NAME STREQUAL "Linux") LIST(APPEND CMAKE_REQUIRED_LIBRARIES rt) LIST(APPEND CMAKE_REQUIRED_LIBRARIES dl) LIST(APPEND CMAKE_REQUIRED_LIBRARIES resolv) - LIST(APPEND CMAKE_REQUIRED_LIBRARIES nsl) MESSAGE(STATUS "Configuring for Linux") IF(EXISTS "/etc/debian_version") SET(LINUX_START_SCRIPT "rspamd_debian.in") |