diff options
author | pixel <pixel> | 2008-08-04 15:37:02 +0000 |
---|---|---|
committer | pixel <pixel> | 2008-08-04 15:37:02 +0000 |
commit | c74c464c4526232902264c66e8b52ebfbcc71e1b (patch) | |
tree | 864a0a2eb192e93d26dcdfb641e23749c602f546 /src/plugin-luaftgl.cc | |
parent | 6106ce4290152d0bf588bc97c0ef625f0a3006db (diff) |
Fixing the win32 backport.
Diffstat (limited to 'src/plugin-luaftgl.cc')
-rw-r--r-- | src/plugin-luaftgl.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/plugin-luaftgl.cc b/src/plugin-luaftgl.cc index 6cb0f0a..83f26f1 100644 --- a/src/plugin-luaftgl.cc +++ b/src/plugin-luaftgl.cc @@ -1,12 +1,18 @@ #include <LuaFTGL.h> +#ifndef WIN32 +#define WEAK __attribute__ ((weak)) +#else +#define WEAK +#endif + static void _init_plugin(Lua * L) { LuaFTFont::pushstatics(L); } extern "C" { -__attribute__ ((weak)) void init_plugin(Lua * L) { +WEAK void init_plugin(Lua * L) { _init_plugin(L); } |