From: Vsevolod Stakhov Date: Mon, 23 Dec 2019 12:16:18 +0000 (+0000) Subject: [Minor] Allow hyperscan on i386 platform X-Git-Tag: 2.3~190 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=92e62855a64d1f7f0e52720399f8aa31bdcb0983;p=rspamd.git [Minor] Allow hyperscan on i386 platform Issue: #3195 --- diff --git a/cmake/Hyperscan.cmake b/cmake/Hyperscan.cmake index 3dd774511..b8f83a3bb 100644 --- a/cmake/Hyperscan.cmake +++ b/cmake/Hyperscan.cmake @@ -1,8 +1,8 @@ option (ENABLE_HYPERSCAN "Enable hyperscan for fast regexp processing [default: OFF]" OFF) if (ENABLE_HYPERSCAN MATCHES "ON") - if (NOT "${ARCH}" STREQUAL "x86_64") - MESSAGE(FATAL_ERROR "Hyperscan is supported only on x86_64 architecture") + if (NOT ("${ARCH}" STREQUAL "x86_64" OR "${ARCH}" STREQUAL "i386")) + MESSAGE(FATAL_ERROR "Hyperscan is supported only on x86_64/i386 architectures") endif () ProcessPackage (HYPERSCAN LIBRARY hs INCLUDE hs.h INCLUDE_SUFFIXES hs include/hs