summaryrefslogtreecommitdiff
path: root/im/src/lua5/imlua_image.c
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2009-11-08 06:58:38 +0100
committerPixel <pixel@nobis-crew.org>2009-11-08 06:58:38 +0100
commit7faa2287f696145c8f9b470d5f04099479822ea4 (patch)
tree3f4cc0c642854cb21c32f9e65a557e9bd84ccabf /im/src/lua5/imlua_image.c
parent8c113c5c6336105b752bb34a832673a48a903a32 (diff)
Getting rid of more bytecode crap, and turning on debug mode.
Diffstat (limited to 'im/src/lua5/imlua_image.c')
-rwxr-xr-xim/src/lua5/imlua_image.c18
1 files changed, 1 insertions, 17 deletions
diff --git a/im/src/lua5/imlua_image.c b/im/src/lua5/imlua_image.c
index 40b1e9c..55dcc82 100755
--- a/im/src/lua5/imlua_image.c
+++ b/im/src/lua5/imlua_image.c
@@ -1063,21 +1063,5 @@ void imlua_open_image (lua_State *L)
/* "im" table is at the top of the stack */
createmeta(L);
luaL_register(L, NULL, imimage_lib);
-#ifdef TEC_BIGENDIAN
-#ifdef TEC_64
-#include "loh/im_image_be64.loh"
-#else
-#include "loh/im_image_be32.loh"
-#endif
-#else
-#ifdef TEC_64
-#ifdef WIN64
-#include "loh/im_image_le64w.loh"
-#else
-#include "loh/im_image_le64.loh"
-#endif
-#else
-#include "loh/im_image.loh"
-#endif
-#endif
+#include "clua/im_image.clua"
}