2016-04-04 07:42:50 -04:00
|
|
|
/* This is a C++ wrapper to compile the lua C code
|
|
|
|
* with settings appropriate for including it with
|
|
|
|
* Ardour.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "lua/liblua_visibility.h"
|
|
|
|
|
2016-02-13 16:31:17 -05:00
|
|
|
#if _MSC_VER
|
2016-04-04 07:42:50 -04:00
|
|
|
# pragma push_macro("_CRT_SECURE_NO_WARNINGS")
|
|
|
|
# ifndef _CRT_SECURE_NO_WARNINGS
|
|
|
|
# define _CRT_SECURE_NO_WARNINGS
|
|
|
|
# endif
|
|
|
|
#elif defined(__clang__)
|
|
|
|
# pragma clang diagnostic push
|
|
|
|
# pragma clang diagnostic ignored "-Wcast-qual"
|
|
|
|
#elif __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
|
|
|
|
# pragma GCC diagnostic push
|
|
|
|
# pragma GCC diagnostic ignored "-Wcast-qual"
|
2016-02-13 16:31:17 -05:00
|
|
|
#endif
|
|
|
|
|
2016-04-04 07:42:50 -04:00
|
|
|
// forward ardour's defines to luaconf.h
|
2016-02-13 16:31:17 -05:00
|
|
|
#ifdef PLATFORM_WINDOWS
|
2016-04-04 07:42:50 -04:00
|
|
|
# define LUA_USE_WINDOWS
|
2016-02-13 16:31:17 -05:00
|
|
|
#elif defined __APPLE__
|
2016-04-04 07:42:50 -04:00
|
|
|
# define LUA_USE_MACOSX
|
2016-02-13 16:31:17 -05:00
|
|
|
#else
|
2016-04-04 07:42:50 -04:00
|
|
|
# define LUA_USE_LINUX
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// forward liblua visibility to luaconf.h
|
|
|
|
#ifdef LIBLUA_BUILD_AS_DLL
|
|
|
|
#define LUA_BUILD_AS_DLL
|
2016-02-13 16:31:17 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
|
|
|
|
#define lobject_c
|
|
|
|
#define lvm_c
|
|
|
|
#define LUA_CORE
|
|
|
|
#define LUA_LIB
|
2019-10-29 00:36:24 -04:00
|
|
|
#include "lua-5.3.5/luaconf.h"
|
2016-02-13 16:31:17 -05:00
|
|
|
#undef lobject_c
|
|
|
|
#undef lvm_c
|
|
|
|
#undef LUA_CORE
|
|
|
|
#undef LUA_LIB
|
|
|
|
|
|
|
|
// override luaconf.h symbol export
|
2016-04-04 07:42:50 -04:00
|
|
|
#ifdef LIBLUA_STATIC // static lib (no DLL)
|
|
|
|
# undef LUA_API
|
|
|
|
# undef LUALIB_API
|
|
|
|
# undef LUAMOD_API
|
|
|
|
# define LUA_API extern "C"
|
|
|
|
# define LUALIB_API LUA_API
|
|
|
|
# define LUAMOD_API LUALIB_API
|
|
|
|
#endif
|
2016-02-13 16:31:17 -05:00
|
|
|
|
|
|
|
// disable support for extenal libs
|
|
|
|
#undef LUA_DL_DLL
|
|
|
|
#undef LUA_USE_DLOPEN
|
|
|
|
|
|
|
|
// enable bit lib
|
|
|
|
#define LUA_COMPAT_BITLIB
|
|
|
|
|
|
|
|
#if _MSC_VER
|
|
|
|
#pragma warning (push)
|
|
|
|
#pragma warning (disable: 4244) /* Possible loss of data */
|
|
|
|
#pragma warning (disable: 4702) /* Unreachable code */
|
|
|
|
#endif
|
|
|
|
|
2019-10-29 00:36:24 -04:00
|
|
|
#include "lua-5.3.5/ltable.c"
|
|
|
|
|
|
|
|
#include "lua-5.3.5/lauxlib.c"
|
|
|
|
#include "lua-5.3.5/lbaselib.c"
|
|
|
|
|
|
|
|
#include "lua-5.3.5/lbitlib.c"
|
|
|
|
#include "lua-5.3.5/lcorolib.c"
|
|
|
|
#include "lua-5.3.5/ldblib.c"
|
|
|
|
#include "lua-5.3.5/linit.c"
|
|
|
|
#include "lua-5.3.5/liolib.c"
|
|
|
|
#include "lua-5.3.5/lmathlib.c"
|
|
|
|
#include "lua-5.3.5/loslib.c"
|
|
|
|
#include "lua-5.3.5/lstrlib.c"
|
|
|
|
#include "lua-5.3.5/ltablib.c"
|
|
|
|
|
|
|
|
#include "lua-5.3.5/lapi.c"
|
|
|
|
#include "lua-5.3.5/lcode.c"
|
|
|
|
#include "lua-5.3.5/lctype.c"
|
|
|
|
#include "lua-5.3.5/ldebug.c"
|
|
|
|
#include "lua-5.3.5/ldo.c"
|
|
|
|
#include "lua-5.3.5/ldump.c"
|
|
|
|
#include "lua-5.3.5/lfunc.c"
|
|
|
|
#include "lua-5.3.5/lgc.c"
|
|
|
|
#include "lua-5.3.5/llex.c"
|
|
|
|
#include "lua-5.3.5/lmem.c"
|
|
|
|
#include "lua-5.3.5/lobject.c"
|
|
|
|
#include "lua-5.3.5/lopcodes.c"
|
|
|
|
#include "lua-5.3.5/lparser.c"
|
|
|
|
#include "lua-5.3.5/lstate.c"
|
|
|
|
#include "lua-5.3.5/lstring.c"
|
|
|
|
#include "lua-5.3.5/ltm.c"
|
|
|
|
#include "lua-5.3.5/lundump.c"
|
|
|
|
#include "lua-5.3.5/lutf8lib.c"
|
|
|
|
#include "lua-5.3.5/lvm.c"
|
|
|
|
#include "lua-5.3.5/lzio.c"
|
|
|
|
|
|
|
|
#include "lua-5.3.5/loadlib.c"
|
2016-02-13 16:31:17 -05:00
|
|
|
|
|
|
|
#if _MSC_VER
|
|
|
|
#pragma warning (pop)
|
|
|
|
#endif
|
|
|
|
|
2016-04-04 07:42:50 -04:00
|
|
|
} // end extern "C"
|
2016-02-13 16:31:17 -05:00
|
|
|
|
|
|
|
#if _MSC_VER
|
2016-04-04 07:42:50 -04:00
|
|
|
# pragma pop_macro("_CRT_SECURE_NO_WARNINGS")
|
|
|
|
#elif defined(__clang__)
|
|
|
|
# pragma clang diagnostic pop
|
|
|
|
#elif __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
|
|
|
|
# pragma GCC diagnostic pop
|
2016-02-13 16:31:17 -05:00
|
|
|
#endif
|