diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2022-03-28 20:29:12 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rspamd.com> | 2022-03-28 20:29:12 +0100 |
commit | 9631b8674c5f782c548fe114f12b61bcdf59f318 (patch) | |
tree | 95a837822735795af76a5fe96c12d51920162e2d /cmake | |
parent | f6552b170a005edc330a995b9b276e26b7849f44 (diff) | |
download | rspamd-9631b8674c5f782c548fe114f12b61bcdf59f318.tar.gz rspamd-9631b8674c5f782c548fe114f12b61bcdf59f318.zip |
[Minor] Remove useless checks
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/FindArch.cmake | 2 | ||||
-rw-r--r-- | cmake/Hyperscan.cmake | 7 |
2 files changed, 0 insertions, 9 deletions
diff --git a/cmake/FindArch.cmake b/cmake/FindArch.cmake index 277289248..d1defc82b 100644 --- a/cmake/FindArch.cmake +++ b/cmake/FindArch.cmake @@ -90,8 +90,6 @@ function(target_architecture output_var) else() file(WRITE "${CMAKE_BINARY_DIR}/arch.c" "${archdetect_c_code}") - enable_language(C) - # Detect the architecture in a rather creative way... # This compiles a small C program which is a series of ifdefs that selects a # particular #error preprocessor directive whose message string contains the diff --git a/cmake/Hyperscan.cmake b/cmake/Hyperscan.cmake index 6bc3e6d11..dc19f49c6 100644 --- a/cmake/Hyperscan.cmake +++ b/cmake/Hyperscan.cmake @@ -5,11 +5,4 @@ if (ENABLE_HYPERSCAN MATCHES "ON") hs include/hs ROOT ${HYPERSCAN_ROOT_DIR} MODULES libhs) set (WITH_HYPERSCAN 1) - - # For static linking with Hyperscan we need to link using CXX - if (ENABLE_HYPERSCAN MATCHES "ON") - if (${HYPERSCAN_LIBRARY} MATCHES ".*[.]a$" OR STATIC_HYPERSCAN) - enable_language (CXX) - endif () - endif () endif () |