Skip to content

Commit

Permalink
* Makefile.am: Compile with -fno-strict-aliasing to avoid the warnings
Browse files Browse the repository at this point in the history
for the casts (RADSECPROXY-8).
* Makefile.in: Regenerate.
  • Loading branch information
Linus Nordberg committed May 28, 2010
1 parent daf4ee8 commit 880c3f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
4 changes: 2 additions & 2 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit 880c3f2

Please sign in to comment.