diff options
| author | Linus Nordberg <linus@nordberg.se> | 2010-05-28 15:43:01 +0200 | 
|---|---|---|
| committer | Linus Nordberg <linus@nordberg.se> | 2010-05-28 15:43:01 +0200 | 
| commit | 880c3f254c30465b271afe2ff806c6e1e72c5541 (patch) | |
| tree | c6f56a39ba98db6f2cab0b2d3be191855dfc0914 | |
| parent | daf4ee8837407d6e1194eab86caf47a9bf9faa34 (diff) | |
* Makefile.am: Compile with -fno-strict-aliasing to avoid the warnings
for the casts (RADSECPROXY-8).
* Makefile.in: Regenerate.
| -rw-r--r-- | Makefile.am | 4 | ||||
| -rw-r--r-- | Makefile.in | 4 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/Makefile.am b/Makefile.am index e2ab1e0..c0e7cbd 100644 --- a/Makefile.am +++ b/Makefile.am @@ -37,11 +37,11 @@ catgconf_SOURCES    = debug.c \                        gconfig.c \                        catgconf.c -radsecproxy_CFLAGS  = -g -Wall @SSL_CFLAGS@ @TARGET_CFLAGS@ +radsecproxy_CFLAGS  = -g -Wall -fno-strict-aliasing @SSL_CFLAGS@ @TARGET_CFLAGS@  radsecproxy_LDFLAGS = @SSL_LDFLAGS@ @TARGET_LDFLAGS@  radsecproxy_LDADD   = @SSL_LIBS@ -catgconf_CFLAGS     = -g -Wall @TARGET_CFLAGS@ +catgconf_CFLAGS     = -g -Wall -fno-strict-aliasing @TARGET_CFLAGS@  catgconf_LDFLAGS    = @TARGET_LDFLAGS@  EXTRA_DIST = radsecproxy.conf-example \ diff --git a/Makefile.in b/Makefile.in index 0fc7d9b..f75d66e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -230,10 +230,10 @@ catgconf_SOURCES = debug.c \                        gconfig.c \                        catgconf.c -radsecproxy_CFLAGS = -g -Wall @SSL_CFLAGS@ @TARGET_CFLAGS@ +radsecproxy_CFLAGS = -g -Wall -fno-strict-aliasing @SSL_CFLAGS@ @TARGET_CFLAGS@  radsecproxy_LDFLAGS = @SSL_LDFLAGS@ @TARGET_LDFLAGS@  radsecproxy_LDADD = @SSL_LIBS@ -catgconf_CFLAGS = -g -Wall @TARGET_CFLAGS@ +catgconf_CFLAGS = -g -Wall -fno-strict-aliasing @TARGET_CFLAGS@  catgconf_LDFLAGS = @TARGET_LDFLAGS@  EXTRA_DIST = radsecproxy.conf-example \  		radsecproxy.1 \ | 
