diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2014-10-03 23:33:54 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2014-10-03 23:33:54 +0200 |
commit | 3a80f0479e8ac2ae016bad836b02626c9e5c4599 (patch) | |
tree | 54f20e4df50259e1c9ee08ab81303e29f280dd45 | |
parent | aa5d1738f2fed08bcbc69a88cadc474c426b6222 (diff) | |
download | weechat-3a80f0479e8ac2ae016bad836b02626c9e5c4599.zip |
core: fix Lua detection on OpenBSD with cmake
-rw-r--r-- | cmake/FindLua.cmake | 2 |
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() |