summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ba42026)
raw | patch | inline | side by side (parent: ba42026)
author | Ruben Kerkhof <ruben@rubenkerkhof.com> | |
Sun, 14 Aug 2016 11:56:16 +0000 (13:56 +0200) | ||
committer | Ruben Kerkhof <ruben@rubenkerkhof.com> | |
Sun, 14 Aug 2016 11:56:16 +0000 (13:56 +0200) |
src/lua.c | patch | blob | history |
diff --git a/src/lua.c b/src/lua.c
index a0e360366ae8a8ad42903b52b168534e88d5906d..79f288beb7443d3f75fee2fb61419439e6abb0fc 100644 (file)
--- a/src/lua.c
+++ b/src/lua.c
static int open_collectd(lua_State *L) /* {{{ */
{
+#if LUA_VERSION_NUM < 502
+ luaL_register(L, "collectd", collectdlib);
+#else
luaL_newlib(L, collectdlib);
+#endif
return 1;
} /* }}} */
luaL_openlibs(script->lua_state);
/* Load the 'collectd' library */
+#if LUA_VERSION_NUM < 502
+ lua_pushcfunction(script->lua_state, open_collectd);
+ lua_pushstring(script->lua_state, "collectd");
+ lua_call(script->lua_state, 1, 0);
+#else
luaL_requiref(script->lua_state, "collectd", open_collectd, 1);
lua_pop(script->lua_state, 1);
+#endif
/* Prepend BasePath to package.path */
if (base_path[0] != '\0') {