diff options
-rw-r--r-- | CMakeLists.txt | 7 | ||||
-rw-r--r-- | src/libutil/http.c | 1 |
2 files changed, 5 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6cd513347..cef1d25f9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -636,9 +636,12 @@ IF(ENABLE_LUAJIT MATCHES "ON") INCLUDE_DIRECTORIES("${LUA_INCLUDE_DIR}") ENDIF(NOT LUA_FOUND) ELSE(ENABLE_LUAJIT MATCHES "ON") - FindLua(VERSION_MAJOR "5" VERSION_MINOR "2" ROOT "${LUA_ROOT}") + FindLua(VERSION_MAJOR "5" VERSION_MINOR "3" ROOT "${LUA_ROOT}") IF(NOT LUA_FOUND) - FindLua(VERSION_MAJOR "5" VERSION_MINOR "1" ROOT "${LUA_ROOT}") + FindLua(VERSION_MAJOR "5" VERSION_MINOR "2" ROOT "${LUA_ROOT}") + IF(NOT LUA_FOUND) + FindLua(VERSION_MAJOR "5" VERSION_MINOR "1" ROOT "${LUA_ROOT}") + ENDIF(NOT LUA_FOUND) ENDIF(NOT LUA_FOUND) IF(NOT LUA_FOUND) MESSAGE(FATAL_ERROR "Lua not found, lua support is required") diff --git a/src/libutil/http.c b/src/libutil/http.c index 4f1ce1ade..7f749b869 100644 --- a/src/libutil/http.c +++ b/src/libutil/http.c @@ -542,7 +542,6 @@ rspamd_http_finish_header (struct rspamd_http_connection *conn, DL_APPEND (hdr, priv->header); - rspamd_http_check_special_header (conn, priv); } |