Branch: refs/heads/master
Author: Enrico Tröger <enrico.troeger(a)uvena.de>
Committer: Enrico Tröger <enrico.troeger(a)uvena.de>
Date: Fri, 28 Dec 2012 14:37:53 UTC
Commit: 20223b5b42f700e897c5517a8b1322a1a61c8ed9
https://github.com/geany/geany-plugins/commit/20223b5b42f700e897c5517a8b132…
Log Message:
-----------
Actually stop looking for Lua packages once we found one
Before the loop ran through all package names and just took the
last item.
Modified Paths:
--------------
build/geanylua.m4
Modified: build/geanylua.m4
2 files changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -10,7 +10,7 @@ AC_DEFUN([GP_CHECK_GEANYLUA],
for L in lua5.1 lua51 lua-5.1 lua; do
PKG_CHECK_EXISTS([$L],
- [LUA_PKG_NAME=$L],[])
+ [LUA_PKG_NAME=$L]; break,[])
done])
LUA_VERSION=5.1
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Enrico Tröger <enrico.troeger(a)uvena.de>
Committer: Enrico Tröger <enrico.troeger(a)uvena.de>
Date: Fri, 28 Dec 2012 14:06:32 UTC
Commit: e1f2b6a31b1699430435d52f45e461889febef88
https://github.com/geany/geany-plugins/commit/e1f2b6a31b1699430435d52f45e46…
Log Message:
-----------
Re-order Lua package names for lookup
Now we use the same order as the autotools based build and
look for most specific version first (5.1). This fixes the build on
distros like ArchLinux where the package "lua" is Lua 5.2.
Modified Paths:
--------------
geanylua/wscript_configure
Modified: geanylua/wscript_configure
2 files changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -23,7 +23,7 @@
from waflib.Errors import ConfigurationError
from build.wafutils import check_cfg_cached
-package_names = ['lua', 'lua5.1', 'lua51', 'lua-5.1']
+package_names = ['lua5.1', 'lua51', 'lua-5.1', 'lua']
def try_to_find_lua_package():
# try various package names as distributions like to use different ones
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).