summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFrançois Revel <mmu_man@netsurf-browser.org>2009-08-02 08:55:19 +0000
committerFrançois Revel <mmu_man@netsurf-browser.org>2009-08-02 08:55:19 +0000
commit77179c022f59c1b393b4ad69ab81a3ba2f05fae5 (patch)
treeae708b2f4552d3a83dd4065b291948ddb2668428 /Makefile
parent7afd1de3f8358dfd0e533ca585313bd87464fe45 (diff)
downloadlibcss-77179c022f59c1b393b4ad69ab81a3ba2f05fae5.tar.gz
libcss-77179c022f59c1b393b4ad69ab81a3ba2f05fae5.tar.bz2
...but this one gcc2 really doesn't like: warning: bit-field `type' type invalid in ANSI C.
svn path=/trunk/libcss/; revision=8982
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c9b1342..545badf 100644
--- a/Makefile
+++ b/Makefile
@@ -12,9 +12,9 @@ TESTRUNNER := $(PERL) build/testtools/testrunner.pl
# Toolchain flags
WARNFLAGS := -Wall -Wundef -Wpointer-arith -Wcast-align \
-Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \
- -Wmissing-declarations -Wnested-externs -Werror -pedantic
+ -Wmissing-declarations -Wnested-externs -pedantic
ifneq ($(GCCVER),2)
- WARNFLAGS := $(WARNFLAGS) -Wextra
+ WARNFLAGS := $(WARNFLAGS) -Werror -Wextra
endif
CFLAGS := -D_BSD_SOURCE -I$(CURDIR)/include/ \
-I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS)