summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2014-10-03 23:33:54 +0200
committerSébastien Helleu <flashcode@flashtux.org>2014-10-03 23:33:54 +0200
commit3a80f0479e8ac2ae016bad836b02626c9e5c4599 (patch)
tree54f20e4df50259e1c9ee08ab81303e29f280dd45
parentaa5d1738f2fed08bcbc69a88cadc474c426b6222 (diff)
downloadweechat-3a80f0479e8ac2ae016bad836b02626c9e5c4599.zip
core: fix Lua detection on OpenBSD with cmake
-rw-r--r--cmake/FindLua.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/FindLua.cmake b/cmake/FindLua.cmake
index 5dd706674..b0e03350d 100644
--- a/cmake/FindLua.cmake
+++ b/cmake/FindLua.cmake
@@ -35,5 +35,5 @@ endif()
find_package(PkgConfig)
if(PKG_CONFIG_FOUND)
- pkg_search_module(LUA lua5.2 lua5.1 lua5.0)
+ pkg_search_module(LUA lua5.2 lua52 lua5.1 lua51 lua5.0 lua50)
endif()