Files
pkgsrc-ng/lang/lua52/patches/patch-src_lua.c
2016-11-18 22:39:22 +01:00

18 lines
589 B
C

$NetBSD: patch-src_lua.c,v 1.2 2015/12/29 23:34:51 dholland Exp $
Disable Lua module version check under Cygwin.
XXX: This workaround should be investigated deeper.
--- src/lua.c.orig 2013-04-12 18:48:47.000000000 +0000
+++ src/lua.c
@@ -453,7 +453,9 @@ static int pmain (lua_State *L) {
lua_setfield(L, LUA_REGISTRYINDEX, "LUA_NOENV");
}
/* open standard libraries */
+#if !defined(__CYGWIN__)
luaL_checkversion(L);
+#endif
lua_gc(L, LUA_GCSTOP, 0); /* stop collector during initialization */
luaL_openlibs(L); /* open libraries */
lua_gc(L, LUA_GCRESTART, 0);