diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-10-26 03:01:12 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-10-26 03:01:12 +0000 |
commit | 6db489f1b0647566b3f1d6d1939b326e93094260 (patch) | |
tree | fb451cabaad47a43671fcd6e1c376cfe8b985f82 /package/lua | |
parent | 6a87d6682d61614282fc9e04d1b5e671e51fb8d8 (diff) | |
download | upstream-6db489f1b0647566b3f1d6d1939b326e93094260.tar.gz upstream-6db489f1b0647566b3f1d6d1939b326e93094260.tar.bz2 upstream-6db489f1b0647566b3f1d6d1939b326e93094260.zip |
lua: use float instead of double, reduces the gc data structure size by 4 byte => luci processes use 10% less memory
SVN-Revision: 18159
Diffstat (limited to 'package/lua')
-rw-r--r-- | package/lua/Makefile | 2 | ||||
-rw-r--r-- | package/lua/patches/010-lua-5.1.3-lnum-full-260308.patch | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/lua/Makefile b/package/lua/Makefile index b418b303ef..4589cfed2c 100644 --- a/package/lua/Makefile +++ b/package/lua/Makefile @@ -83,7 +83,7 @@ endef define Build/Configure endef -TARGET_CFLAGS += -DLUA_USE_LINUX $(FPIC) +TARGET_CFLAGS += -DLUA_USE_LINUX $(FPIC) -std=gnu99 ifneq ($(CONFIG_USE_EGLIBC),) ifeq ($(CONFIG_EGLIBC_OPTION_EGLIBC_UTMP),) diff --git a/package/lua/patches/010-lua-5.1.3-lnum-full-260308.patch b/package/lua/patches/010-lua-5.1.3-lnum-full-260308.patch index 32c39f3b7c..f8d8fc7f1b 100644 --- a/package/lua/patches/010-lua-5.1.3-lnum-full-260308.patch +++ b/package/lua/patches/010-lua-5.1.3-lnum-full-260308.patch @@ -1887,7 +1887,7 @@ Index: lua-5.1.4/src/lnum_config.h +** Default number modes +*/ +#if (!defined LNUM_DOUBLE) && (!defined LNUM_FLOAT) && (!defined LNUM_LDOUBLE) -+# define LNUM_DOUBLE ++# define LNUM_FLOAT +#endif +#if (!defined LNUM_INT16) && (!defined LNUM_INT32) && (!defined LNUM_INT64) +# define LNUM_INT32 |