diff options
author | Linus Nordberg <linus@nordu.net> | 2011-09-26 16:00:10 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2011-09-26 16:02:43 +0200 |
commit | 245ae944bad5089884e3d7f84d37fc6704544cf0 (patch) | |
tree | 406a9abaae4a55906ae40de368dfae24a0c1013c | |
parent | e148cf6184c194b6dafe3963ea40254f43432b55 (diff) |
Compile with -Werror.
-rw-r--r-- | Makefile.am | 3 | ||||
-rw-r--r-- | Makefile.in | 4 |
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@ |