From: Deepika Upadhyay Date: Fri, 20 Nov 2020 14:02:45 +0000 (+0530) Subject: cmake: require Lua 5.3 and up X-Git-Tag: v16.1.0~496^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F38217%2Fhead;p=ceph.git cmake: require Lua 5.3 and up fixes: https://tracker.ceph.com/issues/48312 Signed-off-by: Deepika Upadhyay --- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 2af3f66e3d41..23cdbd44e79d 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -511,7 +511,7 @@ endif(${WITH_LTTNG}) add_subdirectory(global) -find_package(Lua REQUIRED) +find_package(Lua 5.3 REQUIRED) # rados object classes add_subdirectory(cls)