summarylogtreecommitdiffstats
path: root/use-lua53.patch
blob: aaad484be5c464aec8a775e26f314b0dde14dbd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --unified --recursive --text lsyncd-2.3.1.orig/CMakeLists.txt lsyncd-2.3.1/CMakeLists.txt
--- lsyncd-2.3.1.orig/CMakeLists.txt	2023-04-16 01:22:15.765411996 +0200
+++ lsyncd-2.3.1/CMakeLists.txt	2023-04-16 01:22:36.962131402 +0200
@@ -12,7 +12,10 @@
 
 
 # finding Lua
-find_package( Lua REQUIRED )
+set(LUA_INCLUDE_DIR /usr/include/lua5.3)
+set(LUA_EXECUTABLE /usr/bin/lua5.3)
+set(LUA_COMPILER /usr/bin/luac5.3)
+set(LUA_LIBRARIES /usr/lib/liblua5.3.so)
 include_directories ( ${LUA_INCLUDE_DIR} )