summaryrefslogtreecommitdiffstats
path: root/GNUmakefile
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-05-15 12:57:36 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-05-15 12:57:36 +0000
commit0b54a2d72374ec3ad73f7b2c8b666f8ec2411f54 (patch)
tree5cd3f4d17e8415517e764b01ff87446184d74953 /GNUmakefile
parent8913d853e45735442c3b59a7b608525f980eed68 (diff)
Don't use -Wcast-qual and use explicit casts to shut gcc up in the few cases we can't avoid using a char *.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 47097879..bdbcaa94 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1,4 +1,4 @@
-# $Id: GNUmakefile,v 1.102 2009-05-14 19:32:37 nicm Exp $
+# $Id: GNUmakefile,v 1.103 2009-05-15 12:57:36 nicm Exp $
.PHONY: clean
@@ -25,7 +25,7 @@ CFLAGS+= -g -ggdb -DDEBUG
LIBS+= -ldl
CFLAGS+= -Wno-long-long -Wall -W -Wnested-externs -Wformat=2
CFLAGS+= -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations
-CFLAGS+= -Wwrite-strings -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare
+CFLAGS+= -Wwrite-strings -Wshadow -Wpointer-arith -Wsign-compare
CFLAGS+= -Wundef -Wbad-function-cast -Winline -Wcast-align
endif