termux-packages/packages/luv/CMakeLists.txt.patch

21 lines
692 B
Diff
Raw Normal View History

2019-09-26 00:29:19 +02:00
diff -u -r ../luv-1.30.1-1/CMakeLists.txt ./CMakeLists.txt
--- ../luv-1.30.1-1/CMakeLists.txt 2019-09-18 04:33:34.000000000 +0000
+++ ./CMakeLists.txt 2019-09-25 22:23:19.659091635 +0000
2019-09-17 22:27:55 +02:00
@@ -107,7 +107,6 @@
include_directories(${LUAJIT_INCLUDE_DIR})
link_directories(${LUAJIT_LIBRARIES})
else (USE_LUAJIT)
- find_package(Lua REQUIRED)
include_directories(${LUA_INCLUDE_DIR})
endif (USE_LUAJIT)
2019-09-26 00:29:19 +02:00
@@ -175,7 +174,7 @@
elseif("${CMAKE_SYSTEM_NAME}" MATCHES "Linux")
target_link_libraries(luv ${LIBUV_LIBRARIES} rt)
else()
- target_link_libraries(luv ${LIBUV_LIBRARIES})
2020-10-01 15:18:14 +02:00
+ target_link_libraries(luv m lua5.3 ${LIBUV_LIBRARIES})
2019-09-26 00:29:19 +02:00
endif()
if (NOT LUA)