aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cmake/Hyperscan.cmake4
1 files changed, 2 insertions, 2 deletions
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