Module Name:    src
Committed By:   plunky
Date:           Thu Oct 13 17:23:29 UTC 2011

Modified Files:
        src/crypto/external/bsd/netpgp/lib: Makefile
        src/crypto/external/bsd/openssh: Makefile.inc
        src/external/bsd/libpcap/lib: Makefile
        src/libexec/tftpd: Makefile
        src/sys/modules/itesio: Makefile
        src/tests/fs/ptyfs: Makefile
        src/usr.sbin/fwctl: Makefile

Log Message:
max WARNS is 4


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/crypto/external/bsd/netpgp/lib/Makefile
cvs rdiff -u -r1.4 -r1.5 src/crypto/external/bsd/openssh/Makefile.inc
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/libpcap/lib/Makefile
cvs rdiff -u -r1.13 -r1.14 src/libexec/tftpd/Makefile
cvs rdiff -u -r1.1 -r1.2 src/sys/modules/itesio/Makefile
cvs rdiff -u -r1.3 -r1.4 src/tests/fs/ptyfs/Makefile
cvs rdiff -u -r1.6 -r1.7 src/usr.sbin/fwctl/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/crypto/external/bsd/netpgp/lib/Makefile
diff -u src/crypto/external/bsd/netpgp/lib/Makefile:1.12 src/crypto/external/bsd/netpgp/lib/Makefile:1.13
--- src/crypto/external/bsd/netpgp/lib/Makefile:1.12	Mon Nov 29 06:22:20 2010
+++ src/crypto/external/bsd/netpgp/lib/Makefile	Thu Oct 13 17:23:28 2011
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12 2010/11/29 06:22:20 agc Exp $
+# $NetBSD: Makefile,v 1.13 2011/10/13 17:23:28 plunky Exp $
 
 .include <bsd.own.mk>
 
@@ -12,7 +12,7 @@ SRCS+= symmetric.c validate.c writer.c
 SRCS+= ssh2pgp.c bufgap.c
 CPPFLAGS+= -I${.CURDIR} -I${EXTDIST}/include
 MAN= libnetpgp.3
-WARNS=5
+WARNS?= 4
 
 EXTDIST=${.CURDIR}/../dist
 

Index: src/crypto/external/bsd/openssh/Makefile.inc
diff -u src/crypto/external/bsd/openssh/Makefile.inc:1.4 src/crypto/external/bsd/openssh/Makefile.inc:1.5
--- src/crypto/external/bsd/openssh/Makefile.inc:1.4	Mon Jul 25 03:03:09 2011
+++ src/crypto/external/bsd/openssh/Makefile.inc	Thu Oct 13 17:23:28 2011
@@ -1,6 +1,6 @@
-#	$NetBSD: Makefile.inc,v 1.4 2011/07/25 03:03:09 christos Exp $
+#	$NetBSD: Makefile.inc,v 1.5 2011/10/13 17:23:28 plunky Exp $
 
-WARNS?=	5
+WARNS?=	4
 
 .include <bsd.own.mk>
 

Index: src/external/bsd/libpcap/lib/Makefile
diff -u src/external/bsd/libpcap/lib/Makefile:1.6 src/external/bsd/libpcap/lib/Makefile:1.7
--- src/external/bsd/libpcap/lib/Makefile:1.6	Thu Sep 15 17:59:45 2011
+++ src/external/bsd/libpcap/lib/Makefile	Thu Oct 13 17:23:28 2011
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2011/09/15 17:59:45 plunky Exp $	
+# $NetBSD: Makefile,v 1.7 2011/10/13 17:23:28 plunky Exp $	
 
 .include <bsd.own.mk>
 
@@ -52,7 +52,7 @@ MANMISCIN= pcap-filter.manmisc.in pcap-l
 MANFILEIN= pcap-savefile.manfile.in 
 CLEANFILES+= ${MAN}
 
-WARNS?=		5
+WARNS?=		4
 
 .for i in ${MAN3IN}
 ${i:S/pcap.in//}: ${i} __sed

Index: src/libexec/tftpd/Makefile
diff -u src/libexec/tftpd/Makefile:1.13 src/libexec/tftpd/Makefile:1.14
--- src/libexec/tftpd/Makefile:1.13	Fri Jan  8 21:05:14 2010
+++ src/libexec/tftpd/Makefile	Thu Oct 13 17:23:29 2011
@@ -1,7 +1,7 @@
-#	$NetBSD: Makefile,v 1.13 2010/01/08 21:05:14 christos Exp $
+#	$NetBSD: Makefile,v 1.14 2011/10/13 17:23:29 plunky Exp $
 #	from: @(#)Makefile	8.1 (Berkeley) 6/4/93
 
-WARNS?=	5
+WARNS?=	4
 
 .include <bsd.own.mk>
 

Index: src/sys/modules/itesio/Makefile
diff -u src/sys/modules/itesio/Makefile:1.1 src/sys/modules/itesio/Makefile:1.2
--- src/sys/modules/itesio/Makefile:1.1	Fri Jul 29 20:59:25 2011
+++ src/sys/modules/itesio/Makefile	Thu Oct 13 17:23:29 2011
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2011/07/29 20:59:25 jmcneill Exp $
+# $NetBSD: Makefile,v 1.2 2011/10/13 17:23:29 plunky Exp $
 
 .include "../Makefile.inc"
 
@@ -8,6 +8,6 @@ KMOD=	itesio
 IOCONF=	itesio.ioconf
 SRCS=	itesio_isa.c
 
-WARNS=	5
+WARNS?=	4
 
 .include <bsd.kmodule.mk>

Index: src/tests/fs/ptyfs/Makefile
diff -u src/tests/fs/ptyfs/Makefile:1.3 src/tests/fs/ptyfs/Makefile:1.4
--- src/tests/fs/ptyfs/Makefile:1.3	Sat Dec 18 15:02:06 2010
+++ src/tests/fs/ptyfs/Makefile	Thu Oct 13 17:23:29 2011
@@ -1,8 +1,8 @@
-#	$NetBSD: Makefile,v 1.3 2010/12/18 15:02:06 christos Exp $
+#	$NetBSD: Makefile,v 1.4 2011/10/13 17:23:29 plunky Exp $
 #
 
 TESTSDIR=	${TESTSBASE}/fs/ptyfs
-WARNS?=		5
+WARNS?=		4
 
 TESTS_C=	t_ptyfs
 TESTS_C+=	t_nullpts

Index: src/usr.sbin/fwctl/Makefile
diff -u src/usr.sbin/fwctl/Makefile:1.6 src/usr.sbin/fwctl/Makefile:1.7
--- src/usr.sbin/fwctl/Makefile:1.6	Sun Aug 14 17:42:23 2011
+++ src/usr.sbin/fwctl/Makefile	Thu Oct 13 17:23:29 2011
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2011/08/14 17:42:23 christos Exp $
+# $NetBSD: Makefile,v 1.7 2011/10/13 17:23:29 plunky Exp $
 
-WARNS?=5
+WARNS?=	4
 PROG=	fwctl
 SRCS=	eui64.c fwcontrol.c fwcrom.c fwdv.c fwmpegts.c
 MAN=	fwctl.8

Reply via email to