summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordu.net>2011-09-26 16:00:10 +0200
committerLinus Nordberg <linus@nordu.net>2011-09-26 16:02:43 +0200
commit245ae944bad5089884e3d7f84d37fc6704544cf0 (patch)
tree406a9abaae4a55906ae40de368dfae24a0c1013c
parente148cf6184c194b6dafe3963ea40254f43432b55 (diff)
Compile with -Werror.
-rw-r--r--Makefile.am3
-rw-r--r--Makefile.in4
2 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index 420b7ae..839f6a9 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -39,7 +39,8 @@ catgconf_SOURCES = debug.c \
gconfig.c \
catgconf.c
-radsecproxy_CFLAGS = -g -Wall -fno-strict-aliasing @SSL_CFLAGS@ @TARGET_CFLAGS@
+radsecproxy_CFLAGS = -g -Wall -Werror -fno-strict-aliasing \
+ @SSL_CFLAGS@ @TARGET_CFLAGS@
radsecproxy_LDFLAGS = @SSL_LDFLAGS@ @TARGET_LDFLAGS@
radsecproxy_LDADD = @SSL_LIBS@
diff --git a/Makefile.in b/Makefile.in
index 919e17d..3e0ea40 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -260,7 +260,9 @@ catgconf_SOURCES = debug.c \
gconfig.c \
catgconf.c
-radsecproxy_CFLAGS = -g -Wall -fno-strict-aliasing @SSL_CFLAGS@ @TARGET_CFLAGS@
+radsecproxy_CFLAGS = -g -Wall -Werror -fno-strict-aliasing \
+ @SSL_CFLAGS@ @TARGET_CFLAGS@
+
radsecproxy_LDFLAGS = @SSL_LDFLAGS@ @TARGET_LDFLAGS@
radsecproxy_LDADD = @SSL_LIBS@
catgconf_CFLAGS = -g -Wall -fno-strict-aliasing @TARGET_CFLAGS@