From: Ian Jackson Date: Sat, 11 Jun 2011 11:16:33 +0000 (+0100) Subject: cleanup: Turn on -Werror X-Git-Tag: v0.2.0~71 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=secnet.git;a=commitdiff_plain;h=0ade8ecc54f6e5c005fb0244d21f19c31ebe2170 cleanup: Turn on -Werror Having cleaned up the code to be warning-free we can now turn on -Werror. Signed-off-by: Ian Jackson --- diff --git a/Makefile.in b/Makefile.in index 52aaaa5..630ff2d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -34,7 +34,7 @@ INSTALL_PROGRAM:=@INSTALL_PROGRAM@ # Use -DHACKY_PARALLEL if you are compiling secnet for an extremely # slow machine #CFLAGS:=-Wall @WRITESTRINGS@ @CFLAGS@ -DHACKY_PARALLEL -CFLAGS:=-Wall @WRITESTRINGS@ @CFLAGS@ \ +CFLAGS:=-Wall @WRITESTRINGS@ @CFLAGS@ -Werror \ -W -Wno-unused \ -Wno-pointer-sign -Wstrict-prototypes -Wmissing-prototypes \ -Wmissing-declarations -Wnested-externs -Wredundant-decls \