From ebc50b387ab209c9f9a0d92e340ac293d5697274 Mon Sep 17 00:00:00 2001 From: sanine Date: Sat, 11 Mar 2023 15:58:20 -0600 Subject: build & link with luajit instead of lua5.1 --- libs/luajit-cmake/luauser.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 libs/luajit-cmake/luauser.h (limited to 'libs/luajit-cmake/luauser.h') diff --git a/libs/luajit-cmake/luauser.h b/libs/luajit-cmake/luauser.h new file mode 100644 index 0000000..20ef762 --- /dev/null +++ b/libs/luajit-cmake/luauser.h @@ -0,0 +1,26 @@ +#ifndef LUA_LJDIR +#if defined(__ANDROID__) + #if __ANDROID_API__==19 + #if defined(lua_getlocaledecpoint) + #undef lua_getlocaledecpoint + #endif + + #define lua_getlocaledecpoint() ('.') + #endif + #if __ANDROID_API__ < 25 + #define fseeko fseek + #define ftello ftell + #endif +#endif +#if defined(__APPLE__) && defined(__MACH__) + /* Apple OSX and iOS (Darwin). ------------------------------ */ + #include + #if (TARGET_IPHONE_SIMULATOR == 1 || TARGET_OS_IPHONE == 1) + /* iOS in Xcode simulator */ /* iOS on iPhone, iPad, etc. */ + #define system(X) 0 + #endif +#endif +#else +#pragma clang diagnostic ignored "-Wunused-function" +#endif + -- cgit v1.2.1