From 370d31a5593220723d222dec6e3e4019decc3309 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 9 Mar 2005 13:28:07 -0300 Subject: `luac“ -> `luai' (to avoid confusion with other luac stuff) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- loadlib.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'loadlib.c') diff --git a/loadlib.c b/loadlib.c index 545d062b..f5543718 100644 --- a/loadlib.c +++ b/loadlib.c @@ -1,5 +1,5 @@ /* -** $Id: loadlib.c,v 1.19 2005/03/07 18:07:34 roberto Exp roberto $ +** $Id: loadlib.c,v 1.20 2005/03/08 20:10:05 roberto Exp roberto $ ** Dynamic library loader for Lua ** See Copyright Notice in lua.h * @@ -33,7 +33,7 @@ static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym); -#if defined(LUA_USEDLOPEN) +#if defined(LUA_USE_DLOPEN) /* ** {======================================================================== ** This is an implementation of loadlib based on the dlfcn interface. @@ -67,7 +67,7 @@ static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { -#elif defined(LUA_USEDLL) +#elif defined(LUA_USE_DLL) /* ** {====================================================================== ** This is an implementation of loadlib for Windows using native functions. @@ -109,7 +109,7 @@ static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { -#elif defined(LUA_USEDYLD) +#elif defined(LUA_USE_DYLD) /* ** {====================================================================== ** Native Mac OS X / Darwin Implementation -- cgit v1.2.3-55-g6feb