From: Vsevolod Stakhov Date: Mon, 11 May 2015 14:10:56 +0000 (+0100) Subject: Another workaround for pcre jit. X-Git-Tag: 0.9.0~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=48c605c605beec037574a7e28dab0f1438a0c51a;p=thirdparty%2Frspamd.git Another workaround for pcre jit. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index cb49c8d2b5..44e6ee1540 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -489,7 +489,11 @@ IF(GMIME2_VERSION VERSION_GREATER "2.4.0") SET(GMIME24 1) ENDIF(GMIME2_VERSION VERSION_GREATER "2.4.0") LIST(APPEND CMAKE_REQUIRED_INCLUDES "${PCRE_INCLUDE}") -SET(CMAKE_REQUIRED_LIBRARIES "${CMAKE_REQUIRED_LIBRARIES};-L${PCRE_LIBRARY};-lpcre") +IF(PCRE_LIBRARY) + SET(CMAKE_REQUIRED_LIBRARIES "${CMAKE_REQUIRED_LIBRARIES};-L${PCRE_LIBRARY};-lpcre") +ELSE(PCRE_LIBRARY) + SET(CMAKE_REQUIRED_LIBRARIES "${CMAKE_REQUIRED_LIBRARIES};-lpcre") +ENDIF(PCRE_LIBRARY) # Libhiredis pc file is so special FIND_PATH(LIBHIREDIS_INCLUDE hiredis.h HINTS "${RSPAMD_SEARCH_PATH}"