diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-12-10 19:19:12 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-10 19:19:12 +0000 |
commit | d52792b70c78244689c539ce26c8881021b1b80e (patch) | |
tree | fd37a812fe27bc8f4cee75710c513fd340259fed | |
parent | 1e233907ec3d1ac622cce5b43824e9d4d1a2b553 (diff) | |
parent | d39c5f1def394cde74d62da325f3f8c2c778eea3 (diff) | |
download | rspamd-d52792b70c78244689c539ce26c8881021b1b80e.tar.gz rspamd-d52792b70c78244689c539ce26c8881021b1b80e.zip |
Merge pull request #3575 from a16bitsysop/alpine-lua
[Minor] Add LIB_SUFFIXES needed to detect lua on alpine linux
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3b352188a..076656dee 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -140,6 +140,7 @@ ELSE(ENABLE_LUAJIT MATCHES "ON") ProcessPackage(LIBLUA LIBRARY "lua" "lua-5.3" + LIB_SUFFIXES "lua5.3" INCLUDE lua.h INCLUDE_SUFFIXES "include/lua-5.3" "include/lua5.3" @@ -152,6 +153,7 @@ ELSE(ENABLE_LUAJIT MATCHES "ON") IF (NOT WITH_LIBLUA) ProcessPackage(LIBLUA LIBRARY "lua" "lua-5.2" + LIB_SUFFIXES "lua5.2" INCLUDE lua.h INCLUDE_SUFFIXES "include/lua-5.2" "include/lua5.2" |