diff options
author | jb <jb@FreeBSD.org> | 2007-11-20 02:07:30 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 2007-11-20 02:07:30 +0000 |
commit | 5582e69034ba50273e149d51bf06746392403b90 (patch) | |
tree | c738c1fa5da607c325a8355cce50ee176ba703ca /usr.sbin/nscd | |
parent | ef0bd1833e12eed047d40a562663a0d7122ced7a (diff) | |
download | FreeBSD-src-5582e69034ba50273e149d51bf06746392403b90.zip FreeBSD-src-5582e69034ba50273e149d51bf06746392403b90.tar.gz |
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.
Diffstat (limited to 'usr.sbin/nscd')
-rw-r--r-- | usr.sbin/nscd/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.sbin/nscd/Makefile b/usr.sbin/nscd/Makefile index f743797..69fd126 100644 --- a/usr.sbin/nscd/Makefile +++ b/usr.sbin/nscd/Makefile @@ -4,6 +4,7 @@ PROG= nscd MAN= nscd.conf.5 nscd.8 WARNS?= 2 +CFLAGS+=-fno-strict-aliasing SRCS= agent.c nscd.c nscdcli.c cachelib.c cacheplcs.c debug.c log.c \ config.c query.c mp_ws_query.c mp_rs_query.c singletons.c protocol.c \ parser.c |