From a73da6112d4c6f20abf634cb68f89fe31fb9037c Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 15 May 2014 16:28:34 -0300 Subject: deprecated library throws an error if called (instead of silently not loading itself) --- linit.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'linit.c') diff --git a/linit.c b/linit.c index 1c0474e6..96b55c71 100644 --- a/linit.c +++ b/linit.c @@ -1,5 +1,5 @@ /* -** $Id: linit.c,v 1.32 2011/04/08 19:17:36 roberto Exp roberto $ +** $Id: linit.c,v 1.33 2014/02/06 17:32:33 roberto Exp roberto $ ** Initialization of libraries for lua.c and other clients ** See Copyright Notice in lua.h */ @@ -34,10 +34,12 @@ static const luaL_Reg loadedlibs[] = { {LUA_IOLIBNAME, luaopen_io}, {LUA_OSLIBNAME, luaopen_os}, {LUA_STRLIBNAME, luaopen_string}, - {LUA_UTF8LIBNAME, luaopen_utf8}, - {LUA_BITLIBNAME, luaopen_bit32}, {LUA_MATHLIBNAME, luaopen_math}, {LUA_DBLIBNAME, luaopen_debug}, + {LUA_UTF8LIBNAME, luaopen_utf8}, +#if defined(LUA_COMPAT_BITLIB) + {LUA_BITLIBNAME, luaopen_bit32}, +#endif {NULL, NULL} }; -- cgit v1.2.3-55-g6feb