summaryrefslogtreecommitdiffstats
path: root/package/lua/Makefile
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-10-26 03:01:12 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-10-26 03:01:12 +0000
commit9529774bd5fb4104afcdf75a95ca9d89cbc5e83b (patch)
tree73909ca8a30d1239fb38e09413ca097bd2c72ca0 /package/lua/Makefile
parent27e64f8be82f24af74d2de53eb5afdce002d4d19 (diff)
lua: use float instead of double, reduces the gc data structure size by 4 byte => luci processes use 10% less memory
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18159 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/lua/Makefile')
-rw-r--r--package/lua/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/lua/Makefile b/package/lua/Makefile
index b418b303e..4589cfed2 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),)