From ec099a65e1e9e252119acbfcef6a8e7a64ecb21d Mon Sep 17 00:00:00 2001 From: Lourival Vieira Neto Date: Sun, 7 Sep 2014 18:31:54 -0300 Subject: [PATCH 1/5] lua(4): fixed Lua stack size --- external/mit/lua/dist/src/luaconf.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/external/mit/lua/dist/src/luaconf.h b/external/mit/lua/dist/src/luaconf.h index fdc3403..138245d 100644 --- a/external/mit/lua/dist/src/luaconf.h +++ b/external/mit/lua/dist/src/luaconf.h @@ -13,6 +13,10 @@ #ifndef _KERNEL #include #include +#else +/* limits.h */ +#include +#include #endif @@ -696,7 +700,6 @@ #ifndef _KERNEL #include #else -#include #undef LUA_NUMBER #undef LUA_NUMBER_FMT @@ -723,9 +726,6 @@ #define BUFSIZ (1024) #define sprintf(s,fmt,...) snprintf(s, sizeof(s), fmt, __VA_ARGS__) -/* limits.h */ -#include - /* string.h */ #define strcoll strcmp -- 1.8.5.5