2004-05-03 16:28:43 +04:00
|
|
|
/*
|
2014-10-27 21:06:03 +03:00
|
|
|
** $Id: luaconf.h,v 1.222 2014/10/27 16:59:31 roberto Exp roberto $
|
2004-05-03 16:28:43 +04:00
|
|
|
** Configuration file for Lua
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef lconfig_h
|
|
|
|
#define lconfig_h
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2005-05-17 23:49:15 +04:00
|
|
|
** ==================================================================
|
|
|
|
** Search for "@@" to find all configurable definitions.
|
2005-03-18 21:02:04 +03:00
|
|
|
** ===================================================================
|
2004-05-03 16:28:43 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2014-03-21 18:27:16 +04:00
|
|
|
/*
|
2014-10-09 00:32:50 +04:00
|
|
|
** {==================================================================
|
2014-04-14 20:58:54 +04:00
|
|
|
@@ LUA_INT_INT / LUA_INT_LONG / LUA_INT_LONGLONG defines type for
|
2014-10-09 00:32:50 +04:00
|
|
|
@@ Lua integers; you must define one of them.
|
2014-04-14 20:58:54 +04:00
|
|
|
@@ LUA_REAL_FLOAT / LUA_REAL_DOUBLE / LUA_REAL_LONGDOUBLE defines
|
2014-10-09 00:32:50 +04:00
|
|
|
@@ type for Lua floats. You must define one of them.
|
|
|
|
**
|
2014-10-27 21:06:03 +03:00
|
|
|
** These definitions set the numeric types for Lua. Lua should work
|
|
|
|
** fine with any mix of these previous options (if supported by your
|
|
|
|
** C compiler). The usual configurations are 64-bit integers and
|
|
|
|
** 'double' (the default) and 32-bit integers and 'float' (Small Lua,
|
|
|
|
** for restricted platforms).
|
2014-03-21 18:27:16 +04:00
|
|
|
**
|
2014-10-09 00:32:50 +04:00
|
|
|
** Note that C compilers not compliant with C99 may not have
|
|
|
|
** support for 'long long'. In that case, you should not use option
|
|
|
|
** 'LUA_INT_LONGLONG'; use instead option 'LUA_32BITS' for Small Lua
|
|
|
|
** (see below), or LUA_INT_LONG plus LUA_REAL_DOUBLE for an interpreter
|
|
|
|
** with 32-bit integers and double floating-point numbers.
|
2014-03-21 18:27:16 +04:00
|
|
|
** =====================================================================
|
|
|
|
*/
|
2014-10-03 16:55:44 +04:00
|
|
|
|
2014-10-09 00:32:50 +04:00
|
|
|
/*
|
|
|
|
** Just uncomment the next line for Small Lua; you can also define
|
|
|
|
** LUA_32BITS in the make file, but changing here you ensure that
|
|
|
|
** all software connected to Lua will be compiled with the same
|
|
|
|
** configuration.
|
|
|
|
*/
|
|
|
|
/* #define LUA_32BITS */
|
2014-10-03 16:55:44 +04:00
|
|
|
|
2014-10-20 20:32:05 +04:00
|
|
|
#if !defined(LUA_32BITS) && !defined(LUA_ANSI)
|
2014-03-21 18:27:16 +04:00
|
|
|
#define LUA_INT_LONGLONG
|
|
|
|
#define LUA_REAL_DOUBLE
|
2014-10-03 16:55:44 +04:00
|
|
|
#else /* Lua 32 bits */
|
|
|
|
#define LUA_INT_LONG
|
|
|
|
#define LUA_REAL_FLOAT
|
|
|
|
#endif
|
2014-03-21 18:27:16 +04:00
|
|
|
|
2014-10-09 00:32:50 +04:00
|
|
|
/* }================================================================== */
|
|
|
|
|
2014-03-21 18:27:16 +04:00
|
|
|
|
2005-06-01 21:07:45 +04:00
|
|
|
/*
|
|
|
|
@@ LUA_ANSI controls the use of non-ansi features.
|
|
|
|
** CHANGE it (define it) if you want Lua to avoid the use of any
|
|
|
|
** non-ansi feature or library.
|
|
|
|
*/
|
2007-09-14 17:26:03 +04:00
|
|
|
#if !defined(LUA_ANSI) && defined(__STRICT_ANSI__)
|
2005-06-01 21:07:45 +04:00
|
|
|
#define LUA_ANSI
|
|
|
|
#endif
|
|
|
|
|
2005-11-25 16:29:11 +03:00
|
|
|
|
2011-11-05 19:29:05 +04:00
|
|
|
#if !defined(LUA_ANSI) && defined(_WIN32) && !defined(_WIN32_WCE)
|
|
|
|
#define LUA_WIN /* enable goodies for regular Windows platforms */
|
2005-11-25 16:29:11 +03:00
|
|
|
#endif
|
|
|
|
|
2007-02-07 20:46:20 +03:00
|
|
|
#if defined(LUA_WIN)
|
2014-10-24 15:42:47 +04:00
|
|
|
#if !defined(_CRT_SECURE_NO_WARNINGS)
|
2014-10-15 18:53:20 +04:00
|
|
|
#define _CRT_SECURE_NO_WARNINGS /* avoid warnings about ANSI C functions */
|
2014-10-24 15:42:47 +04:00
|
|
|
#endif
|
2010-01-06 18:15:04 +03:00
|
|
|
#define LUA_DL_DLL
|
2010-12-10 22:03:46 +03:00
|
|
|
#define LUA_USE_AFORMAT /* assume 'printf' handles 'aA' specifiers */
|
2007-02-07 20:46:20 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
2005-11-16 19:25:08 +03:00
|
|
|
#if defined(LUA_USE_LINUX)
|
2014-02-26 19:27:56 +04:00
|
|
|
#define LUA_USE_C99
|
2005-11-16 14:56:28 +03:00
|
|
|
#define LUA_USE_POSIX
|
2005-11-16 19:25:08 +03:00
|
|
|
#define LUA_USE_DLOPEN /* needs an extra library: -ldl */
|
|
|
|
#define LUA_USE_READLINE /* needs some extra libraries */
|
2005-10-13 16:22:53 +04:00
|
|
|
#endif
|
|
|
|
|
2005-11-16 19:25:08 +03:00
|
|
|
#if defined(LUA_USE_MACOSX)
|
2014-02-26 19:27:56 +04:00
|
|
|
#define LUA_USE_C99
|
2005-11-16 14:56:28 +03:00
|
|
|
#define LUA_USE_POSIX
|
2010-10-28 19:18:25 +04:00
|
|
|
#define LUA_USE_DLOPEN /* does not need -ldl */
|
|
|
|
#define LUA_USE_READLINE /* needs an extra library: -lreadline */
|
2005-10-13 16:22:53 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2014-02-26 19:27:56 +04:00
|
|
|
/*
|
2014-05-15 19:24:32 +04:00
|
|
|
@@ LUA_USE_C99 includes all functionality that depends on C 99.
|
2014-02-26 19:27:56 +04:00
|
|
|
** CHANGE it (define it) if your system is compatible.
|
|
|
|
*/
|
|
|
|
#if defined(LUA_USE_C99)
|
|
|
|
#define LUA_USE_AFORMAT /* assume 'printf' handles 'aA' specifiers */
|
|
|
|
#endif
|
|
|
|
|
2005-10-13 16:22:53 +04:00
|
|
|
|
2005-11-16 19:25:08 +03:00
|
|
|
/*
|
2009-11-26 14:39:20 +03:00
|
|
|
@@ LUA_USE_POSIX includes all functionality listed as X/Open System
|
2014-05-15 19:24:32 +04:00
|
|
|
@@ Interfaces Extension (XSI).
|
2005-11-16 19:25:08 +03:00
|
|
|
** CHANGE it (define it) if your system is XSI compatible.
|
|
|
|
*/
|
2005-11-16 14:56:28 +03:00
|
|
|
#if defined(LUA_USE_POSIX)
|
|
|
|
#endif
|
2005-10-13 16:22:53 +04:00
|
|
|
|
|
|
|
|
2006-04-10 22:27:23 +04:00
|
|
|
|
2014-10-15 18:53:20 +04:00
|
|
|
#include <limits.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2004-05-03 16:28:43 +04:00
|
|
|
/*
|
2005-03-29 18:30:16 +04:00
|
|
|
@@ LUA_PATH_DEFAULT is the default path that Lua uses to look for
|
2014-05-15 19:24:32 +04:00
|
|
|
@@ Lua libraries.
|
2005-03-29 18:30:16 +04:00
|
|
|
@@ LUA_CPATH_DEFAULT is the default path that Lua uses to look for
|
2014-05-15 19:24:32 +04:00
|
|
|
@@ C libraries.
|
2005-03-18 21:02:04 +03:00
|
|
|
** CHANGE them if your machine has a non-conventional directory
|
|
|
|
** hierarchy or if you want to install your libraries in
|
|
|
|
** non-conventional directories.
|
2004-05-03 16:28:43 +04:00
|
|
|
*/
|
2014-06-10 23:21:20 +04:00
|
|
|
#define LUA_VDIR LUA_VERSION_MAJOR "." LUA_VERSION_MINOR
|
|
|
|
#if defined(_WIN32) /* { */
|
2005-07-11 21:10:35 +04:00
|
|
|
/*
|
|
|
|
** In Windows, any exclamation mark ('!') in the path is replaced by the
|
|
|
|
** path of the directory of the executable file of the current process.
|
|
|
|
*/
|
2005-09-06 21:21:03 +04:00
|
|
|
#define LUA_LDIR "!\\lua\\"
|
|
|
|
#define LUA_CDIR "!\\"
|
2014-06-10 23:21:20 +04:00
|
|
|
#define LUA_SHRDIR "!\\..\\share\\lua\\" LUA_VDIR "\\"
|
2004-12-22 20:43:27 +03:00
|
|
|
#define LUA_PATH_DEFAULT \
|
2009-06-18 22:19:36 +04:00
|
|
|
LUA_LDIR"?.lua;" LUA_LDIR"?\\init.lua;" \
|
2013-10-10 19:45:03 +04:00
|
|
|
LUA_CDIR"?.lua;" LUA_CDIR"?\\init.lua;" \
|
2014-06-10 23:21:20 +04:00
|
|
|
LUA_SHRDIR"?.lua;" LUA_SHRDIR"?\\init.lua;" \
|
2013-10-10 19:45:03 +04:00
|
|
|
".\\?.lua;" ".\\?\\init.lua"
|
2005-07-11 21:10:35 +04:00
|
|
|
#define LUA_CPATH_DEFAULT \
|
2014-06-10 23:21:20 +04:00
|
|
|
LUA_CDIR"?.dll;" \
|
|
|
|
LUA_CDIR"..\\lib\\lua\\" LUA_VDIR "\\?.dll;" \
|
|
|
|
LUA_CDIR"loadall.dll;" ".\\?.dll"
|
2004-12-22 20:43:27 +03:00
|
|
|
|
2010-07-18 18:34:45 +04:00
|
|
|
#else /* }{ */
|
2010-07-25 19:02:41 +04:00
|
|
|
|
2005-09-06 21:21:03 +04:00
|
|
|
#define LUA_ROOT "/usr/local/"
|
2014-06-10 23:21:20 +04:00
|
|
|
#define LUA_LDIR LUA_ROOT "share/lua/" LUA_VDIR "/"
|
|
|
|
#define LUA_CDIR LUA_ROOT "lib/lua/" LUA_VDIR "/"
|
2004-12-22 20:43:27 +03:00
|
|
|
#define LUA_PATH_DEFAULT \
|
2009-06-18 22:19:36 +04:00
|
|
|
LUA_LDIR"?.lua;" LUA_LDIR"?/init.lua;" \
|
2013-10-10 19:45:03 +04:00
|
|
|
LUA_CDIR"?.lua;" LUA_CDIR"?/init.lua;" \
|
|
|
|
"./?.lua;" "./?/init.lua"
|
2005-07-11 21:10:35 +04:00
|
|
|
#define LUA_CPATH_DEFAULT \
|
2009-06-18 22:19:36 +04:00
|
|
|
LUA_CDIR"?.so;" LUA_CDIR"loadall.so;" "./?.so"
|
2010-07-18 18:34:45 +04:00
|
|
|
#endif /* } */
|
2004-11-18 22:53:49 +03:00
|
|
|
|
2004-08-30 17:44:04 +04:00
|
|
|
|
2005-03-18 21:02:04 +03:00
|
|
|
/*
|
2005-03-29 18:30:16 +04:00
|
|
|
@@ LUA_DIRSEP is the directory separator (for submodules).
|
2005-03-18 21:02:04 +03:00
|
|
|
** CHANGE it if your machine does not use "/" as the directory separator
|
|
|
|
** and is not Windows. (On Windows Lua automatically uses "\".)
|
|
|
|
*/
|
2005-03-08 23:10:05 +03:00
|
|
|
#if defined(_WIN32)
|
|
|
|
#define LUA_DIRSEP "\\"
|
|
|
|
#else
|
|
|
|
#define LUA_DIRSEP "/"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2010-09-07 23:21:39 +04:00
|
|
|
/*
|
|
|
|
@@ LUA_ENV is the name of the variable that holds the current
|
|
|
|
@@ environment, used to access global names.
|
|
|
|
** CHANGE it if you do not like this name.
|
|
|
|
*/
|
|
|
|
#define LUA_ENV "_ENV"
|
|
|
|
|
|
|
|
|
2005-03-18 21:02:04 +03:00
|
|
|
/*
|
2005-03-29 18:30:16 +04:00
|
|
|
@@ LUA_API is a mark for all core API functions.
|
2009-11-24 15:05:44 +03:00
|
|
|
@@ LUALIB_API is a mark for all auxiliary library functions.
|
|
|
|
@@ LUAMOD_API is a mark for all standard library opening functions.
|
2005-03-18 21:02:04 +03:00
|
|
|
** CHANGE them if you need to define those functions in some special way.
|
2005-04-07 17:52:45 +04:00
|
|
|
** For instance, if you want to create one Windows DLL with the core and
|
|
|
|
** the libraries, you may want to use the following definition (define
|
|
|
|
** LUA_BUILD_AS_DLL to get it).
|
2005-03-18 21:02:04 +03:00
|
|
|
*/
|
2010-07-18 18:34:45 +04:00
|
|
|
#if defined(LUA_BUILD_AS_DLL) /* { */
|
2005-03-29 18:30:16 +04:00
|
|
|
|
2010-07-18 18:34:45 +04:00
|
|
|
#if defined(LUA_CORE) || defined(LUA_LIB) /* { */
|
2005-09-02 23:53:25 +04:00
|
|
|
#define LUA_API __declspec(dllexport)
|
2010-07-18 18:34:45 +04:00
|
|
|
#else /* }{ */
|
2005-09-02 23:53:25 +04:00
|
|
|
#define LUA_API __declspec(dllimport)
|
2010-07-18 18:34:45 +04:00
|
|
|
#endif /* } */
|
2005-03-29 18:30:16 +04:00
|
|
|
|
2010-07-18 18:34:45 +04:00
|
|
|
#else /* }{ */
|
2005-03-29 18:30:16 +04:00
|
|
|
|
2004-05-03 16:28:43 +04:00
|
|
|
#define LUA_API extern
|
|
|
|
|
2010-07-18 18:34:45 +04:00
|
|
|
#endif /* } */
|
2010-05-12 18:17:36 +04:00
|
|
|
|
2005-03-29 18:30:16 +04:00
|
|
|
|
2005-05-17 23:49:15 +04:00
|
|
|
/* more often than not the libs go together with the core */
|
2005-04-07 17:52:45 +04:00
|
|
|
#define LUALIB_API LUA_API
|
2009-11-24 15:05:44 +03:00
|
|
|
#define LUAMOD_API LUALIB_API
|
2005-04-07 17:52:45 +04:00
|
|
|
|
2004-05-10 21:50:51 +04:00
|
|
|
|
2005-04-25 23:24:10 +04:00
|
|
|
/*
|
|
|
|
@@ LUAI_FUNC is a mark for all extern functions that are not to be
|
2014-05-15 19:24:32 +04:00
|
|
|
@@ exported to outside modules.
|
2009-11-19 22:06:52 +03:00
|
|
|
@@ LUAI_DDEF and LUAI_DDEC are marks for all extern (const) variables
|
2014-05-15 19:24:32 +04:00
|
|
|
@@ that are not to be exported to outside modules (LUAI_DDEF for
|
|
|
|
@@ definitions and LUAI_DDEC for declarations).
|
2005-06-14 01:20:28 +04:00
|
|
|
** CHANGE them if you need to mark them in some special way. Elf/gcc
|
|
|
|
** (versions 3.2 and later) mark them as "hidden" to optimize access
|
2008-06-25 19:27:12 +04:00
|
|
|
** when Lua is compiled as a shared library. Not all elf targets support
|
|
|
|
** this attribute. Unfortunately, gcc does not offer a way to check
|
|
|
|
** whether the target offers that support, and those without support
|
|
|
|
** give a warning about it. To avoid these warnings, change to the
|
|
|
|
** default definition.
|
2005-04-25 23:24:10 +04:00
|
|
|
*/
|
2011-12-06 20:58:36 +04:00
|
|
|
#if defined(__GNUC__) && ((__GNUC__*100 + __GNUC_MINOR__) >= 302) && \
|
|
|
|
defined(__ELF__) /* { */
|
2005-06-14 01:20:28 +04:00
|
|
|
#define LUAI_FUNC __attribute__((visibility("hidden"))) extern
|
2009-11-19 22:06:52 +03:00
|
|
|
#define LUAI_DDEC LUAI_FUNC
|
|
|
|
#define LUAI_DDEF /* empty */
|
2005-10-13 16:22:53 +04:00
|
|
|
|
2010-07-18 18:34:45 +04:00
|
|
|
#else /* }{ */
|
2005-04-25 23:24:10 +04:00
|
|
|
#define LUAI_FUNC extern
|
2009-11-19 22:06:52 +03:00
|
|
|
#define LUAI_DDEC extern
|
|
|
|
#define LUAI_DDEF /* empty */
|
2010-07-18 18:34:45 +04:00
|
|
|
#endif /* } */
|
2005-04-25 23:24:10 +04:00
|
|
|
|
|
|
|
|
2005-06-14 01:20:28 +04:00
|
|
|
|
2014-07-24 18:00:16 +04:00
|
|
|
/*
|
|
|
|
@@ LUA_EXTRASPACE defines the size of a raw memory area associated with
|
|
|
|
** a Lua state with very fast access.
|
|
|
|
** CHANGE it if you need a different size.
|
|
|
|
*/
|
|
|
|
#define LUA_EXTRASPACE (sizeof(void *))
|
|
|
|
|
|
|
|
|
2005-05-17 01:19:00 +04:00
|
|
|
/*
|
2005-05-17 23:49:15 +04:00
|
|
|
@@ LUA_QL describes how error messages quote program elements.
|
2014-10-17 20:28:21 +04:00
|
|
|
** Lua does not use these macros anymore; they are here for
|
|
|
|
** compatibility only.
|
2005-05-17 01:19:00 +04:00
|
|
|
*/
|
2005-05-17 23:49:15 +04:00
|
|
|
#define LUA_QL(x) "'" x "'"
|
|
|
|
#define LUA_QS LUA_QL("%s")
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
@@ LUA_IDSIZE gives the maximum size for the description of the source
|
2014-05-15 19:24:32 +04:00
|
|
|
@@ of a function in debug information.
|
2005-07-05 18:31:45 +04:00
|
|
|
** CHANGE it if you want a different size.
|
2005-05-17 23:49:15 +04:00
|
|
|
*/
|
|
|
|
#define LUA_IDSIZE 60
|
|
|
|
|
2004-05-03 16:28:43 +04:00
|
|
|
|
2009-02-07 15:23:15 +03:00
|
|
|
/*
|
2011-05-26 20:09:40 +04:00
|
|
|
@@ luai_writestring/luai_writeline define how 'print' prints its results.
|
2014-10-15 18:53:20 +04:00
|
|
|
** They are only used in libraries and the stand-alone program.
|
2009-06-18 22:19:36 +04:00
|
|
|
*/
|
2009-02-07 15:23:15 +03:00
|
|
|
#define luai_writestring(s,l) fwrite((s), sizeof(char), (l), stdout)
|
2011-05-26 20:09:40 +04:00
|
|
|
#define luai_writeline() (luai_writestring("\n", 1), fflush(stdout))
|
2009-02-07 15:23:15 +03:00
|
|
|
|
2010-02-18 22:18:41 +03:00
|
|
|
/*
|
|
|
|
@@ luai_writestringerror defines how to print error messages.
|
|
|
|
** (A format string with one argument is enough for Lua...)
|
|
|
|
*/
|
2010-03-03 21:53:02 +03:00
|
|
|
#define luai_writestringerror(s,p) \
|
|
|
|
(fprintf(stderr, (s), (p)), fflush(stderr))
|
2010-02-18 22:18:41 +03:00
|
|
|
|
2009-02-07 15:23:15 +03:00
|
|
|
|
2012-05-11 18:14:42 +04:00
|
|
|
/*
|
|
|
|
@@ LUAI_MAXSHORTLEN is the maximum length for short strings, that is,
|
|
|
|
** strings that are internalized. (Cannot be smaller than reserved words
|
|
|
|
** or tags for metamethods, as these strings must be internalized;
|
|
|
|
** #("function") = 8, #("__newindex") = 10.)
|
|
|
|
*/
|
|
|
|
#define LUAI_MAXSHORTLEN 40
|
2005-03-29 18:30:16 +04:00
|
|
|
|
|
|
|
|
2014-07-17 17:53:37 +04:00
|
|
|
/*
|
2014-08-01 21:33:08 +04:00
|
|
|
@@ LUA_KCONTEXT is the type of the context ('ctx') for continuation
|
|
|
|
@@ functions. It must be a numerical type; Lua will use 'intptr_t' if
|
|
|
|
@@ available.
|
2014-07-17 17:53:37 +04:00
|
|
|
*/
|
|
|
|
#if defined (LUA_USE_C99)
|
|
|
|
#include <stdint.h>
|
|
|
|
#if defined (INTPTR_MAX) /* even in C99 this type is optional */
|
2014-08-01 21:33:08 +04:00
|
|
|
#define LUA_KCONTEXT intptr_t
|
2014-07-17 17:53:37 +04:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2014-08-01 21:33:08 +04:00
|
|
|
#if !defined(LUA_KCONTEXT)
|
2014-07-17 17:53:37 +04:00
|
|
|
/* default definition (the nearest thing to 'intptr_t' in C89) */
|
2014-08-01 21:33:08 +04:00
|
|
|
#define LUA_KCONTEXT ptrdiff_t
|
2014-07-17 17:53:37 +04:00
|
|
|
#endif
|
|
|
|
|
2005-08-01 19:05:09 +04:00
|
|
|
|
2009-02-18 16:17:10 +03:00
|
|
|
/*
|
|
|
|
** {==================================================================
|
|
|
|
** Compatibility with previous versions
|
|
|
|
** ===================================================================
|
|
|
|
*/
|
|
|
|
|
2010-01-06 18:15:04 +03:00
|
|
|
/*
|
2014-05-15 19:24:32 +04:00
|
|
|
@@ LUA_COMPAT_5_2 controls other macros for compatibility with Lua 5.2.
|
|
|
|
@@ LUA_COMPAT_5_1 controls other macros for compatibility with Lua 5.1.
|
2010-01-06 18:15:04 +03:00
|
|
|
** You can define it to get all options, or change specific options
|
|
|
|
** to fit your specific needs.
|
|
|
|
*/
|
2014-05-15 19:24:32 +04:00
|
|
|
#if defined(LUA_COMPAT_5_2) /* { */
|
|
|
|
|
|
|
|
/*
|
|
|
|
@@ LUA_COMPAT_MATHLIB controls the presence of several deprecated
|
|
|
|
** functions in the mathematical library.
|
|
|
|
*/
|
|
|
|
#define LUA_COMPAT_MATHLIB
|
2010-01-06 18:15:04 +03:00
|
|
|
|
2014-03-18 22:27:08 +04:00
|
|
|
/*
|
|
|
|
@@ LUA_COMPAT_BITLIB controls the presence of library 'bit32'.
|
|
|
|
*/
|
|
|
|
#define LUA_COMPAT_BITLIB
|
|
|
|
|
2014-07-24 23:33:29 +04:00
|
|
|
/*
|
2014-10-03 16:55:44 +04:00
|
|
|
@@ LUA_COMPAT_IPAIRS controls the effectiveness of the __ipairs metamethod.
|
2014-07-24 23:33:29 +04:00
|
|
|
*/
|
|
|
|
#define LUA_COMPAT_IPAIRS
|
|
|
|
|
2014-06-26 22:38:28 +04:00
|
|
|
/*
|
2014-10-01 15:54:56 +04:00
|
|
|
@@ LUA_COMPAT_APIINTCASTS controls the presence of macros for
|
|
|
|
** manipulating other integer types (lua_pushunsigned, lua_tounsigned,
|
|
|
|
** luaL_checkint, luaL_checklong, etc.)
|
2014-06-26 22:38:28 +04:00
|
|
|
*/
|
2014-10-01 15:54:56 +04:00
|
|
|
#define LUA_COMPAT_APIINTCASTS
|
2014-06-26 22:38:28 +04:00
|
|
|
|
2014-05-15 19:24:32 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
@@ LUA_COMPAT_FLOATSTRING makes Lua format integral floats without a
|
|
|
|
@@ a float mark ('.0').
|
|
|
|
** This macro is not on by default even in compatibility mode,
|
|
|
|
** because this is not really an incompatibility.
|
|
|
|
*/
|
|
|
|
/* #define LUA_COMPAT_FLOATSTRING */
|
|
|
|
|
|
|
|
#endif /* } */
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(LUA_COMPAT_5_1) /* { */
|
|
|
|
|
2009-12-28 19:30:31 +03:00
|
|
|
/*
|
|
|
|
@@ LUA_COMPAT_UNPACK controls the presence of global 'unpack'.
|
2010-01-06 18:15:04 +03:00
|
|
|
** You can replace it with 'table.unpack'.
|
2009-12-28 19:30:31 +03:00
|
|
|
*/
|
2010-01-06 18:15:04 +03:00
|
|
|
#define LUA_COMPAT_UNPACK
|
2009-12-28 19:30:31 +03:00
|
|
|
|
2011-06-28 21:14:12 +04:00
|
|
|
/*
|
|
|
|
@@ LUA_COMPAT_LOADERS controls the presence of table 'package.loaders'.
|
|
|
|
** You can replace it with 'package.searchers'.
|
|
|
|
*/
|
|
|
|
#define LUA_COMPAT_LOADERS
|
|
|
|
|
2009-12-22 19:47:00 +03:00
|
|
|
/*
|
2010-11-12 18:48:30 +03:00
|
|
|
@@ macro 'lua_cpcall' emulates deprecated function lua_cpcall.
|
|
|
|
** You can call your C function directly (with light C functions).
|
2009-12-22 19:47:00 +03:00
|
|
|
*/
|
2010-01-21 19:49:21 +03:00
|
|
|
#define lua_cpcall(L,f,u) \
|
2010-05-27 16:06:42 +04:00
|
|
|
(lua_pushcfunction(L, (f)), \
|
|
|
|
lua_pushlightuserdata(L,(u)), \
|
2010-05-28 18:27:07 +04:00
|
|
|
lua_pcall(L,1,0,0))
|
2009-12-22 19:47:00 +03:00
|
|
|
|
2010-01-21 19:49:21 +03:00
|
|
|
|
2009-02-18 16:17:10 +03:00
|
|
|
/*
|
|
|
|
@@ LUA_COMPAT_LOG10 defines the function 'log10' in the math library.
|
2010-01-06 18:15:04 +03:00
|
|
|
** You can rewrite 'log10(x)' as 'log(x, 10)'.
|
2009-02-18 16:17:10 +03:00
|
|
|
*/
|
|
|
|
#define LUA_COMPAT_LOG10
|
|
|
|
|
2010-12-08 15:58:04 +03:00
|
|
|
/*
|
|
|
|
@@ LUA_COMPAT_LOADSTRING defines the function 'loadstring' in the base
|
|
|
|
** library. You can rewrite 'loadstring(s)' as 'load(s)'.
|
|
|
|
*/
|
|
|
|
#define LUA_COMPAT_LOADSTRING
|
|
|
|
|
2009-11-26 20:35:13 +03:00
|
|
|
/*
|
|
|
|
@@ LUA_COMPAT_MAXN defines the function 'maxn' in the table library.
|
|
|
|
*/
|
2010-01-06 18:15:04 +03:00
|
|
|
#define LUA_COMPAT_MAXN
|
2009-11-26 20:35:13 +03:00
|
|
|
|
2007-06-22 20:59:11 +04:00
|
|
|
/*
|
2010-01-06 18:15:04 +03:00
|
|
|
@@ The following macros supply trivial compatibility for some
|
|
|
|
** changes in the API. The macros themselves document how to
|
|
|
|
** change your code to avoid using them.
|
2007-06-22 20:59:11 +04:00
|
|
|
*/
|
2010-01-06 18:15:04 +03:00
|
|
|
#define lua_strlen(L,i) lua_rawlen(L, (i))
|
|
|
|
|
|
|
|
#define lua_objlen(L,i) lua_rawlen(L, (i))
|
|
|
|
|
2010-11-12 18:48:30 +03:00
|
|
|
#define lua_equal(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPEQ)
|
2010-01-06 18:15:04 +03:00
|
|
|
#define lua_lessthan(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPLT)
|
|
|
|
|
2010-07-28 19:51:59 +04:00
|
|
|
/*
|
|
|
|
@@ LUA_COMPAT_MODULE controls compatibility with previous
|
|
|
|
** module functions 'module' (Lua) and 'luaL_register' (C).
|
|
|
|
*/
|
|
|
|
#define LUA_COMPAT_MODULE
|
|
|
|
|
2010-11-12 18:48:30 +03:00
|
|
|
#endif /* } */
|
2007-06-22 20:59:11 +04:00
|
|
|
|
2009-02-18 16:17:10 +03:00
|
|
|
/* }================================================================== */
|
|
|
|
|
2005-08-15 18:12:32 +04:00
|
|
|
|
|
|
|
|
2005-03-18 21:02:04 +03:00
|
|
|
/*
|
2014-10-27 19:59:31 +03:00
|
|
|
@@ LUAI_BITSINT defines the (minimum) number of bits in an int.
|
2005-03-18 21:02:04 +03:00
|
|
|
** CHANGE here if Lua cannot automatically detect the number of bits of
|
2005-03-29 18:30:16 +04:00
|
|
|
** your machine. Probably you do not need to change this.
|
2005-03-18 21:02:04 +03:00
|
|
|
*/
|
2014-10-27 19:59:31 +03:00
|
|
|
/* avoid undefined shifts */
|
|
|
|
#if ((INT_MAX >> 15) >> 15) >= 1
|
2005-03-09 19:28:07 +03:00
|
|
|
#define LUAI_BITSINT 32
|
2014-10-27 19:59:31 +03:00
|
|
|
#else
|
|
|
|
/* 'int' always must have at least 16 bits */
|
|
|
|
#define LUAI_BITSINT 16
|
|
|
|
#endif
|
2004-11-24 21:55:56 +03:00
|
|
|
|
2004-05-03 16:28:43 +04:00
|
|
|
|
2004-11-24 21:55:56 +03:00
|
|
|
/*
|
2014-10-27 19:59:31 +03:00
|
|
|
@@ LUA_INT32 is a signed integer with at least 32 bits.
|
2005-05-17 23:49:15 +04:00
|
|
|
@@ LUAI_UMEM is an unsigned integer big enough to count the total
|
2014-05-15 19:24:32 +04:00
|
|
|
@@ memory used by Lua.
|
2005-05-17 23:49:15 +04:00
|
|
|
@@ LUAI_MEM is a signed integer big enough to count the total memory
|
2014-05-15 19:24:32 +04:00
|
|
|
@@ used by Lua.
|
2005-03-18 21:02:04 +03:00
|
|
|
** CHANGE here if for some weird reason the default definitions are not
|
2010-01-06 18:15:04 +03:00
|
|
|
** good enough for your machine. Probably you do not need to change
|
2009-07-01 20:16:40 +04:00
|
|
|
** this.
|
2004-11-24 21:55:56 +03:00
|
|
|
*/
|
2010-07-18 18:34:45 +04:00
|
|
|
#if LUAI_BITSINT >= 32 /* { */
|
2009-07-01 20:16:40 +04:00
|
|
|
#define LUA_INT32 int
|
2005-03-09 19:28:07 +03:00
|
|
|
#define LUAI_UMEM size_t
|
2005-03-18 21:02:04 +03:00
|
|
|
#define LUAI_MEM ptrdiff_t
|
2010-07-18 18:34:45 +04:00
|
|
|
#else /* }{ */
|
2004-11-24 21:55:56 +03:00
|
|
|
/* 16-bit ints */
|
2009-07-01 20:16:40 +04:00
|
|
|
#define LUA_INT32 long
|
2005-03-18 21:02:04 +03:00
|
|
|
#define LUAI_UMEM unsigned long
|
|
|
|
#define LUAI_MEM long
|
2010-07-18 18:34:45 +04:00
|
|
|
#endif /* } */
|
2004-05-03 16:28:43 +04:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2009-07-15 21:26:14 +04:00
|
|
|
@@ LUAI_MAXSTACK limits the size of the Lua stack.
|
2008-02-11 22:17:19 +03:00
|
|
|
** CHANGE it if you need a different limit. This limit is arbitrary;
|
2013-11-21 21:23:14 +04:00
|
|
|
** its only purpose is to stop Lua from consuming unlimited stack
|
2009-07-15 21:26:14 +04:00
|
|
|
** space (and to reserve some numbers for pseudo-indices).
|
2005-03-18 21:02:04 +03:00
|
|
|
*/
|
2009-07-15 21:26:14 +04:00
|
|
|
#if LUAI_BITSINT >= 32
|
|
|
|
#define LUAI_MAXSTACK 1000000
|
2008-02-11 22:17:19 +03:00
|
|
|
#else
|
2009-07-15 21:26:14 +04:00
|
|
|
#define LUAI_MAXSTACK 15000
|
2008-02-11 22:17:19 +03:00
|
|
|
#endif
|
|
|
|
|
2009-07-15 21:26:14 +04:00
|
|
|
/* reserve some space for error handling */
|
2010-01-06 18:15:04 +03:00
|
|
|
#define LUAI_FIRSTPSEUDOIDX (-LUAI_MAXSTACK - 1000)
|
2004-05-03 16:28:43 +04:00
|
|
|
|
|
|
|
|
2005-03-18 21:02:04 +03:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2005-03-29 18:30:16 +04:00
|
|
|
@@ LUAL_BUFFERSIZE is the buffer size used by the lauxlib buffer system.
|
2010-11-03 18:16:17 +03:00
|
|
|
** CHANGE it if it uses too much C-stack space.
|
2005-03-18 21:02:04 +03:00
|
|
|
*/
|
|
|
|
#define LUAL_BUFFERSIZE BUFSIZ
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** {==================================================================
|
2014-03-21 18:27:16 +04:00
|
|
|
** Configuration for Numbers.
|
|
|
|
** Change these definitions if no predefined LUA_REAL_* / LUA_INT_*
|
|
|
|
** satisfy your needs.
|
2005-03-18 21:02:04 +03:00
|
|
|
** ===================================================================
|
|
|
|
*/
|
2004-05-03 16:28:43 +04:00
|
|
|
|
2005-03-18 21:02:04 +03:00
|
|
|
/*
|
2013-06-13 23:35:08 +04:00
|
|
|
@@ LUA_NUMBER is the floating-point type used by Lua.
|
|
|
|
**
|
|
|
|
@@ LUAI_UACNUMBER is the result of an 'usual argument conversion'
|
2014-05-15 19:24:32 +04:00
|
|
|
@@ over a floating number.
|
2013-06-13 23:35:08 +04:00
|
|
|
**
|
2013-04-25 17:52:13 +04:00
|
|
|
@@ LUA_NUMBER_FRMLEN is the length modifier for writing floats.
|
|
|
|
@@ LUA_NUMBER_FMT is the format for writing floats.
|
2014-03-21 18:27:16 +04:00
|
|
|
@@ lua_number2str converts a float to a string.
|
2013-06-13 23:35:08 +04:00
|
|
|
**
|
2013-01-29 20:00:40 +04:00
|
|
|
@@ l_mathop allows the addition of an 'l' or 'f' to all math operations
|
2013-06-13 23:35:08 +04:00
|
|
|
**
|
2010-12-10 22:03:46 +03:00
|
|
|
@@ lua_str2number converts a decimal numeric string to a number.
|
|
|
|
*/
|
2013-06-13 23:35:08 +04:00
|
|
|
|
2013-07-09 22:31:35 +04:00
|
|
|
#if defined(LUA_REAL_FLOAT) /* { single float */
|
2013-06-13 23:35:08 +04:00
|
|
|
|
|
|
|
#define LUA_NUMBER float
|
|
|
|
|
|
|
|
#define LUAI_UACNUMBER double
|
|
|
|
|
|
|
|
#define LUA_NUMBER_FRMLEN ""
|
|
|
|
#define LUA_NUMBER_FMT "%.7g"
|
|
|
|
|
|
|
|
#define l_mathop(op) op##f
|
|
|
|
|
|
|
|
#define lua_str2number(s,p) strtof((s), (p))
|
|
|
|
|
|
|
|
|
2013-07-09 22:31:35 +04:00
|
|
|
#elif defined(LUA_REAL_LONGDOUBLE) /* }{ long double */
|
2013-06-25 23:04:40 +04:00
|
|
|
|
|
|
|
#define LUA_NUMBER long double
|
|
|
|
|
|
|
|
#define LUAI_UACNUMBER long double
|
|
|
|
|
|
|
|
#define LUA_NUMBER_FRMLEN "L"
|
|
|
|
#define LUA_NUMBER_FMT "%.19Lg"
|
|
|
|
|
|
|
|
#define l_mathop(op) op##l
|
|
|
|
|
|
|
|
#define lua_str2number(s,p) strtold((s), (p))
|
|
|
|
|
2013-07-09 22:31:35 +04:00
|
|
|
#elif defined(LUA_REAL_DOUBLE) /* }{ double */
|
2013-06-25 23:04:40 +04:00
|
|
|
|
2013-06-13 23:35:08 +04:00
|
|
|
#define LUA_NUMBER double
|
|
|
|
|
|
|
|
#define LUAI_UACNUMBER double
|
|
|
|
|
|
|
|
#define LUA_NUMBER_FRMLEN ""
|
|
|
|
#define LUA_NUMBER_FMT "%.14g"
|
|
|
|
|
|
|
|
#define l_mathop(op) op
|
|
|
|
|
2005-03-18 21:02:04 +03:00
|
|
|
#define lua_str2number(s,p) strtod((s), (p))
|
|
|
|
|
2013-07-09 22:31:35 +04:00
|
|
|
#else /* }{ */
|
|
|
|
|
|
|
|
#error "numeric real type not defined"
|
|
|
|
|
|
|
|
#endif /* } */
|
2013-06-13 23:35:08 +04:00
|
|
|
|
|
|
|
|
2014-10-21 18:38:46 +04:00
|
|
|
#if !defined(LUA_USE_C99)
|
|
|
|
/* 'strtof' and 'opf' variants for math functions are C99 */
|
2013-06-25 23:04:40 +04:00
|
|
|
#undef l_mathop
|
|
|
|
#undef lua_str2number
|
2014-10-21 18:38:46 +04:00
|
|
|
#define l_mathop(op) (lua_Number)op
|
2013-06-25 23:04:40 +04:00
|
|
|
#define lua_str2number(s,p) ((lua_Number)strtod((s), (p)))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#define l_floor(x) (l_mathop(floor)(x))
|
|
|
|
|
2013-06-13 23:35:08 +04:00
|
|
|
#define lua_number2str(s,n) sprintf((s), LUA_NUMBER_FMT, (n))
|
|
|
|
|
|
|
|
|
2014-05-26 21:10:22 +04:00
|
|
|
/*
|
2014-10-24 15:42:47 +04:00
|
|
|
@@ lua_numbertointeger converts a float number to an integer, or
|
2014-06-02 04:03:16 +04:00
|
|
|
** returns 0 if float is not within the range of a lua_Integer.
|
|
|
|
** (The range comparisons are tricky because of rounding. The tests
|
|
|
|
** here assume a two-complement representation, where MININTEGER always
|
|
|
|
** has an exact representation as a float; MAXINTEGER may not have one,
|
|
|
|
** and therefore its conversion to float may have an ill-defined value.)
|
2014-05-26 21:10:22 +04:00
|
|
|
*/
|
2014-10-24 15:42:47 +04:00
|
|
|
#define lua_numbertointeger(n,p) \
|
2014-05-27 17:59:03 +04:00
|
|
|
((n) >= (LUA_NUMBER)(LUA_MININTEGER) && \
|
|
|
|
(n) < -(LUA_NUMBER)(LUA_MININTEGER) && \
|
2014-06-02 04:03:16 +04:00
|
|
|
(*(p) = (LUA_INTEGER)(n), 1))
|
2014-05-26 21:10:22 +04:00
|
|
|
|
|
|
|
|
2005-03-18 21:02:04 +03:00
|
|
|
/*
|
2005-03-29 18:30:16 +04:00
|
|
|
@@ The luai_num* macros define the primitive operations over numbers.
|
2014-05-15 19:24:32 +04:00
|
|
|
** They should work for any size of floating numbers.
|
2005-03-18 21:02:04 +03:00
|
|
|
*/
|
2009-10-23 16:31:12 +04:00
|
|
|
|
|
|
|
/* the following operations need the math library */
|
2011-12-06 20:58:36 +04:00
|
|
|
#if defined(lobject_c) || defined(lvm_c)
|
2005-10-13 16:22:53 +04:00
|
|
|
#include <math.h>
|
2014-04-09 21:05:11 +04:00
|
|
|
#define luai_nummod(L,a,b,m) \
|
|
|
|
{ (m) = l_mathop(fmod)(a,b); if ((m) != 0 && (a)*(b) < 0) (m) += (b); }
|
2014-03-06 20:15:18 +04:00
|
|
|
#define luai_numpow(L,a,b) ((void)L, l_mathop(pow)(a,b))
|
2009-10-23 16:31:12 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* these are quite standard operations */
|
|
|
|
#if defined(LUA_CORE)
|
2014-03-06 20:15:18 +04:00
|
|
|
#define luai_numadd(L,a,b) ((a)+(b))
|
|
|
|
#define luai_numsub(L,a,b) ((a)-(b))
|
|
|
|
#define luai_nummul(L,a,b) ((a)*(b))
|
|
|
|
#define luai_numdiv(L,a,b) ((a)/(b))
|
|
|
|
#define luai_numunm(L,a) (-(a))
|
2005-10-24 21:39:21 +04:00
|
|
|
#define luai_numeq(a,b) ((a)==(b))
|
2014-01-27 17:34:32 +04:00
|
|
|
#define luai_numlt(a,b) ((a)<(b))
|
|
|
|
#define luai_numle(a,b) ((a)<=(b))
|
|
|
|
#define luai_numisnan(a) (!luai_numeq((a), (a)))
|
2005-10-13 16:22:53 +04:00
|
|
|
#endif
|
2005-01-07 23:00:33 +03:00
|
|
|
|
2005-11-08 22:45:58 +03:00
|
|
|
|
2014-03-06 20:15:18 +04:00
|
|
|
/*
|
|
|
|
** The following macro checks whether an operation is not safe to be
|
|
|
|
** performed by the constant folder. It should result in zero only if
|
|
|
|
** the operation is safe.
|
|
|
|
*/
|
|
|
|
#define luai_numinvalidop(op,a,b) 0
|
|
|
|
|
2009-10-23 16:31:12 +04:00
|
|
|
|
2009-07-01 20:16:40 +04:00
|
|
|
/*
|
2013-06-13 23:35:08 +04:00
|
|
|
@@ LUA_INTEGER is the integer type used by Lua.
|
|
|
|
**
|
2013-04-25 17:52:13 +04:00
|
|
|
@@ LUA_UNSIGNED is the unsigned version of LUA_INTEGER.
|
2013-06-13 23:35:08 +04:00
|
|
|
**
|
2014-04-11 23:53:45 +04:00
|
|
|
@@ LUAI_UACINT is the result of an 'usual argument conversion'
|
2014-05-15 19:24:32 +04:00
|
|
|
@@ over a lUA_INTEGER.
|
2013-05-26 17:35:52 +04:00
|
|
|
@@ LUA_INTEGER_FRMLEN is the length modifier for reading/writing integers.
|
2013-04-25 17:52:13 +04:00
|
|
|
@@ LUA_INTEGER_FMT is the format for writing integers.
|
2014-04-03 18:18:02 +04:00
|
|
|
@@ LUA_MAXINTEGER is the maximum value for a LUA_INTEGER.
|
|
|
|
@@ LUA_MININTEGER is the minimum value for a LUA_INTEGER.
|
2013-04-25 17:52:13 +04:00
|
|
|
@@ lua_integer2str converts an integer to a string.
|
|
|
|
*/
|
2013-06-13 23:35:08 +04:00
|
|
|
|
2014-04-12 18:51:53 +04:00
|
|
|
|
|
|
|
/* The following definitions are good for most cases here */
|
|
|
|
|
|
|
|
#define LUA_INTEGER_FMT "%" LUA_INTEGER_FRMLEN "d"
|
|
|
|
#define lua_integer2str(s,n) sprintf((s), LUA_INTEGER_FMT, (n))
|
|
|
|
|
|
|
|
#define LUAI_UACINT LUA_INTEGER
|
|
|
|
|
|
|
|
/*
|
2014-05-11 17:03:48 +04:00
|
|
|
** use LUAI_UACINT here to avoid problems with promotions (which
|
2014-04-17 18:41:11 +04:00
|
|
|
** can turn a comparison between unsigneds into a signed comparison)
|
2014-04-12 18:51:53 +04:00
|
|
|
*/
|
|
|
|
#define LUA_UNSIGNED unsigned LUAI_UACINT
|
|
|
|
|
|
|
|
|
|
|
|
/* now the variable definitions */
|
|
|
|
|
2013-07-09 22:31:35 +04:00
|
|
|
#if defined(LUA_INT_INT) /* { int */
|
2013-06-21 21:42:28 +04:00
|
|
|
|
|
|
|
#define LUA_INTEGER int
|
|
|
|
#define LUA_INTEGER_FRMLEN ""
|
|
|
|
|
2014-04-14 20:58:54 +04:00
|
|
|
#define LUA_MAXINTEGER INT_MAX
|
|
|
|
#define LUA_MININTEGER INT_MIN
|
|
|
|
|
2013-07-09 22:31:35 +04:00
|
|
|
#elif defined(LUA_INT_LONG) /* }{ long */
|
2013-06-13 23:35:08 +04:00
|
|
|
|
2013-06-21 21:42:28 +04:00
|
|
|
#define LUA_INTEGER long
|
2013-06-13 23:35:08 +04:00
|
|
|
#define LUA_INTEGER_FRMLEN "l"
|
|
|
|
|
2014-04-14 20:58:54 +04:00
|
|
|
#define LUA_MAXINTEGER LONG_MAX
|
|
|
|
#define LUA_MININTEGER LONG_MIN
|
|
|
|
|
2013-07-09 22:31:35 +04:00
|
|
|
#elif defined(LUA_INT_LONGLONG) /* }{ long long */
|
2013-06-13 23:35:08 +04:00
|
|
|
|
2014-10-27 21:06:03 +03:00
|
|
|
#if defined(LUA_WIN)
|
2014-04-16 22:45:51 +04:00
|
|
|
|
2013-07-09 22:31:35 +04:00
|
|
|
#define LUA_INTEGER __int64
|
|
|
|
#define LUA_INTEGER_FRMLEN "I64"
|
2014-04-16 22:45:51 +04:00
|
|
|
|
|
|
|
#define LUA_MAXINTEGER _I64_MAX
|
|
|
|
#define LUA_MININTEGER _I64_MIN
|
|
|
|
|
2013-07-09 22:31:35 +04:00
|
|
|
#else
|
2014-04-16 22:45:51 +04:00
|
|
|
|
2014-10-09 00:32:50 +04:00
|
|
|
#if !defined(LLONG_MAX)
|
|
|
|
#error "Compiler does not support 'long long'. See file 'luaconf.h' line 24"
|
|
|
|
#endif
|
|
|
|
|
2013-06-21 21:42:28 +04:00
|
|
|
#define LUA_INTEGER long long
|
2013-04-25 17:52:13 +04:00
|
|
|
#define LUA_INTEGER_FRMLEN "ll"
|
2013-06-13 23:35:08 +04:00
|
|
|
|
2014-04-14 20:58:54 +04:00
|
|
|
#define LUA_MAXINTEGER LLONG_MAX
|
|
|
|
#define LUA_MININTEGER LLONG_MIN
|
|
|
|
|
2014-04-16 22:45:51 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#elif defined(LUA_INT_SHORT) /* }{ short int */
|
2014-05-11 17:03:48 +04:00
|
|
|
/*
|
|
|
|
** this option is for tests only; it is not particularly useful and
|
|
|
|
** it does not pass the test suit.
|
|
|
|
*/
|
2013-07-09 22:31:35 +04:00
|
|
|
|
2014-04-12 18:51:53 +04:00
|
|
|
#define LUA_INTEGER short int
|
|
|
|
#define LUA_INTEGER_FRMLEN ""
|
2013-07-09 22:31:35 +04:00
|
|
|
|
2014-04-14 20:58:54 +04:00
|
|
|
#define LUA_MAXINTEGER SHRT_MAX
|
|
|
|
#define LUA_MININTEGER SHRT_MIN
|
2013-06-13 23:35:08 +04:00
|
|
|
|
2014-04-14 20:58:54 +04:00
|
|
|
#undef LUAI_UACINT
|
2014-04-12 18:51:53 +04:00
|
|
|
#define LUAI_UACINT int
|
2014-04-14 20:58:54 +04:00
|
|
|
|
|
|
|
#undef LUAI_MAXSTACK
|
|
|
|
#define LUAI_MAXSTACK 15000
|
|
|
|
|
2014-04-16 22:45:51 +04:00
|
|
|
#define l_castS2U(x) ((LUA_UNSIGNED)(unsigned short)(x))
|
|
|
|
|
2014-04-12 18:51:53 +04:00
|
|
|
#else /* }{ */
|
2013-05-26 17:35:52 +04:00
|
|
|
|
2014-04-12 18:51:53 +04:00
|
|
|
#error "numeric integer type not defined"
|
2014-04-03 18:18:02 +04:00
|
|
|
|
2014-04-12 18:51:53 +04:00
|
|
|
#endif /* } */
|
2014-04-11 23:53:45 +04:00
|
|
|
|
2012-05-11 18:10:50 +04:00
|
|
|
/* }================================================================== */
|
|
|
|
|
2011-06-13 18:13:06 +04:00
|
|
|
|
2004-05-03 16:28:43 +04:00
|
|
|
|
2005-03-18 21:02:04 +03:00
|
|
|
|
|
|
|
/* =================================================================== */
|
2004-05-03 16:28:43 +04:00
|
|
|
|
2005-05-17 23:49:15 +04:00
|
|
|
/*
|
|
|
|
** Local configuration. You can use this space to add your redefinitions
|
|
|
|
** without modifying the main part of the file.
|
|
|
|
*/
|
2004-05-03 16:28:43 +04:00
|
|
|
|
2013-05-26 17:35:52 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
2004-05-03 16:28:43 +04:00
|
|
|
|
|
|
|
#endif
|
2005-06-14 01:20:28 +04:00
|
|
|
|