diff options
author | ed <ed@FreeBSD.org> | 2010-01-02 09:58:07 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2010-01-02 09:58:07 +0000 |
commit | 09818ac28e064437e7ab61eb0cd30245d17d27ea (patch) | |
tree | 040818bcab6b7921d3cb5cb2ff04c4d488e8d3ea /lib/libbz2 | |
parent | b1c1be30d7f9c5907f81c3cacba28c6d7de3d805 (diff) | |
download | FreeBSD-src-09818ac28e064437e7ab61eb0cd30245d17d27ea.zip FreeBSD-src-09818ac28e064437e7ab61eb0cd30245d17d27ea.tar.gz |
Build lib/ with WARNS=6 by default.
Similar to libexec/, do the same with lib/. Make WARNS=6 the norm and
lower it when needed.
I'm setting WARNS?=0 for secure/. It seems secure/ includes the
Makefile.inc provided by lib/. I'm not going to touch that directory.
Most of the code there is contributed anyway.
Diffstat (limited to 'lib/libbz2')
-rw-r--r-- | lib/libbz2/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libbz2/Makefile b/lib/libbz2/Makefile index 6ea018b..b505927 100644 --- a/lib/libbz2/Makefile +++ b/lib/libbz2/Makefile @@ -10,4 +10,6 @@ SRCS= bzlib.c blocksort.c compress.c crctable.c decompress.c \ INCS= bzlib.h CFLAGS+= -I${BZ2DIR} +WARNS?= 3 + .include <bsd.lib.mk> |