From 23c30b99ce7f2c6a13750bbbc8ec8a94c1017f19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Vavru=C5=A1a?= <marek.vavrusa@nic.cz> Date: Tue, 31 Mar 2015 19:41:05 +0200 Subject: [PATCH] daemon/bindings: Lua 5.2 compat (lua_objlen) --- daemon/bindings.c | 1 + 1 file changed, 1 insertion(+) diff --git a/daemon/bindings.c b/daemon/bindings.c index 49a6503eb..66c54cb84 100644 --- a/daemon/bindings.c +++ b/daemon/bindings.c @@ -21,6 +21,7 @@ /** @internal Compatibility wrapper for Lua 5.0 - 5.2 */ #if LUA_VERSION_NUM < 502 +#define lua_len lua_objlen #define register_lib(L, name, lib) \ luaL_openlib((L), (name), (lib), 0) #else -- GitLab