diff options
author | John Birrell <jb@FreeBSD.org> | 2007-11-20 02:07:30 +0000 |
---|---|---|
committer | John Birrell <jb@FreeBSD.org> | 2007-11-20 02:07:30 +0000 |
commit | 0aad0f22823b98aa97aa9ae4bccb63a2a2ef3d5a (patch) | |
tree | c738c1fa5da607c325a8355cce50ee176ba703ca /usr.bin/netstat/Makefile | |
parent | 3ad1a3ea6918189d408bf15aef42fe98d0e5b503 (diff) | |
download | src-0aad0f22823b98aa97aa9ae4bccb63a2a2ef3d5a.tar.gz src-0aad0f22823b98aa97aa9ae4bccb63a2a2ef3d5a.zip |
These are the things that the tinderbox has problems with because it
doesn't use the default CFLAGS which contain -fno-strict-aliasing.
Until the code is cleaned up, just add -fno-strict-aliasing to the
CFLAGS of these for the tinderboxes' sake, allowing the rest of the
tree to have -Werror enabled again.
Notes
Notes:
svn path=/head/; revision=173766
Diffstat (limited to 'usr.bin/netstat/Makefile')
-rw-r--r-- | usr.bin/netstat/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/netstat/Makefile b/usr.bin/netstat/Makefile index d8794d9d0ffa..c7815567a57c 100644 --- a/usr.bin/netstat/Makefile +++ b/usr.bin/netstat/Makefile @@ -8,6 +8,7 @@ SRCS= if.c inet.c main.c mbuf.c mcast.c mroute.c route.c \ unix.c atalk.c netgraph.c mroute6.c ipsec.c bpf.c pfkey.c sctp.c WARNS?= 3 +CFLAGS+=-fno-strict-aliasing CFLAGS+=-DIPSEC CFLAGS+=-DSCTP |