From: Vsevolod Stakhov Date: Sun, 24 May 2020 20:14:37 +0000 (+0100) Subject: [Minor] Fix pthreads linking X-Git-Tag: 2.6~397 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=361cab554aed4c8cd363ba0f5ed41aeb21d6f3ba;p=rspamd.git [Minor] Fix pthreads linking --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 388e9914f..71c5d1761 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -120,6 +120,8 @@ INCLUDE(OSDep) # Now find libraries and headers LIST(APPEND RSPAMD_REQUIRED_LIBRARIES "m") +LIST(APPEND RSPAMD_REQUIRED_LIBRARIES "pthread") + IF(ENABLE_LUAJIT MATCHES "ON") ProcessPackage(LIBLUAJIT LIBRARY "luajit" "luajit-2.1" @@ -177,7 +179,6 @@ IF(ENABLE_JEMALLOC MATCHES "ON" AND NOT SANITIZE) ProcessPackage(JEMALLOC LIBRARY jemalloc_pic jemalloc INCLUDE jemalloc.h INCLUDE_SUFFIXES include/jemalloc ROOT ${JEMALLOC_ROOT_DIR}) SET(WITH_JEMALLOC "1") - LIST(APPEND RSPAMD_REQUIRED_LIBRARIES "-lpthread") ENDIF() IF(ENABLE_LIBUNWIND MATCHES "ON") @@ -433,7 +434,6 @@ TRY_RUN(_CAN_RUN _CAN_COMPILE CMAKE_FLAGS CMAKE_C_FLAGS="-pthread") IF(_CAN_RUN EQUAL 1) SET(HAVE_PTHREAD_PROCESS_SHARED 1 CACHE INTERNAL "") - LIST(APPEND RSPAMD_REQUIRED_LIBRARIES "-lpthread") ENDIF(_CAN_RUN EQUAL 1) IF(HAVE_PTHREAD_PROCESS_SHARED) MESSAGE(STATUS "pthread_mutexattr_setpshared is supported")