diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-07-11 14:25:11 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-07-11 14:25:11 +0100 |
commit | 4bedefb1e77150fcaaf03c4d17ba6a32b9e80e7a (patch) | |
tree | 920c8655c3ac108bf17271e393ae5222f71954f9 /CMakeLists.txt | |
parent | d97f53a95530cb73f847a366210a29f5e1b58f61 (diff) | |
download | rspamd-4bedefb1e77150fcaaf03c4d17ba6a32b9e80e7a.tar.gz rspamd-4bedefb1e77150fcaaf03c4d17ba6a32b9e80e7a.zip |
[Minor] Another fix for shmem detection on build
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a2c539cea..61b78e3a5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1055,7 +1055,7 @@ IF(CMAKE_SYSTEM_NAME STREQUAL "Linux") # In linux, we need to mount /run/shm to test which could be unavailable # on a build system. On the other hand, we know that linux has stupid # but compatible shmem support, so we assume this macro as true - SET(CACHE HAVE_SANE_SHMEM 1) + SET(HAVE_SANE_SHMEM 1) ELSE() CHECK_C_SOURCE_RUNS(" #include <sys/mman.h> |