diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-26 22:17:46 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-26 22:17:46 +0000 |
commit | bf11e8942d39d9445f1f6cfb6716f58b4d8189d5 (patch) | |
tree | ff86ad8c0b9e395393dd694bfac35fa1bcbf181b | |
parent | e5667c1cfe339b2f84abaabb90259ec29b91cf89 (diff) | |
download | busybox-w32-bf11e8942d39d9445f1f6cfb6716f58b4d8189d5.tar.gz busybox-w32-bf11e8942d39d9445f1f6cfb6716f58b4d8189d5.tar.bz2 busybox-w32-bf11e8942d39d9445f1f6cfb6716f58b4d8189d5.zip |
added gcc flag which is needed for ULLONG_MAX to appear
on Tito's box
-rw-r--r-- | Makefile.flags | 3 |
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 @@ | |||
4 | 4 | ||
5 | BB_VER = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) | 5 | BB_VER = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) |
6 | 6 | ||
7 | # -std=gnu99 needed for [U]LLONG_MAX on some systems | ||
8 | |||
7 | CPPFLAGS += \ | 9 | CPPFLAGS += \ |
10 | -std=gnu99 \ | ||
8 | -Iinclude -Ilibbb \ | 11 | -Iinclude -Ilibbb \ |
9 | $(if $(KBUILD_SRC),-Iinclude2 -I$(srctree)/include) -I$(srctree)/libbb \ | 12 | $(if $(KBUILD_SRC),-Iinclude2 -I$(srctree)/include) -I$(srctree)/libbb \ |
10 | -include include/autoconf.h \ | 13 | -include include/autoconf.h \ |