aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-11-26 22:17:46 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-11-26 22:17:46 +0000
commitbf11e8942d39d9445f1f6cfb6716f58b4d8189d5 (patch)
treeff86ad8c0b9e395393dd694bfac35fa1bcbf181b
parente5667c1cfe339b2f84abaabb90259ec29b91cf89 (diff)
downloadbusybox-bf11e8942d39d9445f1f6cfb6716f58b4d8189d5.tar.gz
added gcc flag which is needed for ULLONG_MAX to appear
on Tito's box
-rw-r--r--Makefile.flags3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.flags b/Makefile.flags
index ed42c2b6d..0c680f904 100644
--- a/Makefile.flags
+++ b/Makefile.flags
@@ -4,7 +4,10 @@
BB_VER = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
+# -std=gnu99 needed for [U]LLONG_MAX on some systems
+
CPPFLAGS += \
+ -std=gnu99 \
-Iinclude -Ilibbb \
$(if $(KBUILD_SRC),-Iinclude2 -I$(srctree)/include) -I$(srctree)/libbb \
-include include/autoconf.h \