From 0b58dfebe6070ace895fdc3970020b2d01799269 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Wed, 8 Oct 2014 15:39:00 +0200 Subject: compilation fix lua (how did it ever work!) --- lua/src/luaconf.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lua') diff --git a/lua/src/luaconf.h b/lua/src/luaconf.h index 3f650d6..f876db7 100644 --- a/lua/src/luaconf.h +++ b/lua/src/luaconf.h @@ -142,11 +142,15 @@ */ #if defined(LUA_BUILD_AS_DLL) || defined(SHARED) /* { */ +#ifdef _WIN32 #if defined(LUA_CORE) || defined(LUA_LIB) /* { */ #define LUA_API __declspec(dllexport) #else /* }{ */ #define LUA_API __declspec(dllimport) #endif /* } */ +#else +#define LUA_API extern +#endif #else /* }{ */ -- cgit v1.2.3-54-g00ecf