mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.poll: Lua 5.1 compat
This commit is contained in:
parent
1ad376770f
commit
110ce660d5
1 changed files with 6 additions and 0 deletions
|
@ -34,6 +34,10 @@
|
||||||
#define STATE_MT "util.poll.select"
|
#define STATE_MT "util.poll.select"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if (LUA_VERSION_NUM == 501)
|
||||||
|
#define luaL_setmetatable(L, tname) luaL_getmetatable(L, tname); lua_setmetatable(L, -2)
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Structure to keep state for each type of API
|
* Structure to keep state for each type of API
|
||||||
*/
|
*/
|
||||||
|
@ -380,7 +384,9 @@ int Lnew(lua_State *L) {
|
||||||
* Open library
|
* Open library
|
||||||
*/
|
*/
|
||||||
int luaopen_util_poll(lua_State *L) {
|
int luaopen_util_poll(lua_State *L) {
|
||||||
|
#if (LUA_VERSION_NUM > 501)
|
||||||
luaL_checkversion(L);
|
luaL_checkversion(L);
|
||||||
|
#endif
|
||||||
|
|
||||||
luaL_newmetatable(L, STATE_MT);
|
luaL_newmetatable(L, STATE_MT);
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue