aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-10-25 15:55:23 -0700
committerGravatar Carl Worth <cworth@cworth.org>2009-10-25 15:55:23 -0700
commiteb7b8cf31a8378784e97966204559f1b270ac3e9 (patch)
treefeca1b53726b12b4325730801ea28ed1a6fb3e0b /Makefile
parent884ac59256d19db5ee25d976a4f5e60cce51d7d5 (diff)
Add -Wwrite-strings and fix warnings.
Need to be const-clean when handling string literals.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6e3ab26d..b2d5924b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
PROGS=notmuch
-CXXWARNINGS_FLAGS=-Wall -Wextra
+CXXWARNINGS_FLAGS=-Wall -Wextra -Wwrite-strings
CWARNINGS_FLAGS=$(CXXWARNINGS_FLAGS)
CDEPENDS_FLAGS=`pkg-config --cflags glib-2.0 talloc`