svn commit: r203916 - in head: bin/rmail sbin/devd sbin/devfs sbin/ffsinfo sbin/gbde sbin/mknod sbin/mount_std sbin/sunlabel

Ulrich Spoerlein uqs at FreeBSD.org
Mon Feb 15 14:07:41 UTC 2010


Author: uqs
Date: Mon Feb 15 14:07:40 2010
New Revision: 203916
URL: http://svn.freebsd.org/changeset/base/203916

Log:
  Bump WARNS where possible.
  
  Checked by:	make universe
  Approved by:	ed (co-mentor)

Modified:
  head/bin/rmail/Makefile
  head/sbin/devd/Makefile
  head/sbin/devfs/Makefile
  head/sbin/ffsinfo/Makefile
  head/sbin/gbde/Makefile
  head/sbin/mknod/Makefile
  head/sbin/mount_std/Makefile
  head/sbin/sunlabel/Makefile

Modified: head/bin/rmail/Makefile
==============================================================================
--- head/bin/rmail/Makefile	Mon Feb 15 12:17:20 2010	(r203915)
+++ head/bin/rmail/Makefile	Mon Feb 15 14:07:40 2010	(r203916)
@@ -11,7 +11,7 @@ PROG=	rmail
 SRCS=	rmail.c
 MAN=	rmail.8
 
-WARNS?=	0
+WARNS?=	2
 CFLAGS+=-I${SENDMAIL_DIR}/include -I.
 
 LIBSMDIR=	${.OBJDIR}/../../lib/libsm

Modified: head/sbin/devd/Makefile
==============================================================================
--- head/sbin/devd/Makefile	Mon Feb 15 12:17:20 2010	(r203915)
+++ head/sbin/devd/Makefile	Mon Feb 15 14:07:40 2010	(r203916)
@@ -4,8 +4,7 @@ PROG_CXX=devd
 SRCS=	devd.cc token.l parse.y y.tab.h
 MAN=	devd.8 devd.conf.5
 
-WARNS=	0
-#WARNS?=	4
+WARNS?=	3
 
 NO_SHARED?=YES
 

Modified: head/sbin/devfs/Makefile
==============================================================================
--- head/sbin/devfs/Makefile	Mon Feb 15 12:17:20 2010	(r203915)
+++ head/sbin/devfs/Makefile	Mon Feb 15 14:07:40 2010	(r203916)
@@ -3,6 +3,5 @@
 PROG=	devfs
 SRCS=	devfs.c rule.c
 MAN=	devfs.8
-WARNS?=	5
 
 .include <bsd.prog.mk>

Modified: head/sbin/ffsinfo/Makefile
==============================================================================
--- head/sbin/ffsinfo/Makefile	Mon Feb 15 12:17:20 2010	(r203915)
+++ head/sbin/ffsinfo/Makefile	Mon Feb 15 14:07:40 2010	(r203916)
@@ -11,7 +11,7 @@ PROG=	ffsinfo
 SRCS=	ffsinfo.c debug.c
 MAN=	ffsinfo.8
 
-WARNS?=	0
+WARNS?=	1
 CFLAGS+=-DFS_DEBUG -I${GROWFS}
 DPADD=	${LIBUFS}
 LDADD=	-lufs

Modified: head/sbin/gbde/Makefile
==============================================================================
--- head/sbin/gbde/Makefile	Mon Feb 15 12:17:20 2010	(r203915)
+++ head/sbin/gbde/Makefile	Mon Feb 15 14:07:40 2010	(r203916)
@@ -9,9 +9,7 @@ SRCS+=	g_bde_lock.c
 
 # rijndael-fst.c does evil casting things which results in warnings on
 # 64 bit machines, the test-vectors check out however, so it works right.
-.if ${MACHINE_ARCH} == "i386"
-WARNS?=	5
-.else
+.if ${MACHINE_ARCH} != "i386"
 WARNS?=	3
 .endif
 

Modified: head/sbin/mknod/Makefile
==============================================================================
--- head/sbin/mknod/Makefile	Mon Feb 15 12:17:20 2010	(r203915)
+++ head/sbin/mknod/Makefile	Mon Feb 15 14:07:40 2010	(r203916)
@@ -2,7 +2,6 @@
 # $FreeBSD$
 
 PROG=	mknod
-WARNS?=	0
 MAN=	mknod.8
 
 .include <bsd.prog.mk>

Modified: head/sbin/mount_std/Makefile
==============================================================================
--- head/sbin/mount_std/Makefile	Mon Feb 15 12:17:20 2010	(r203915)
+++ head/sbin/mount_std/Makefile	Mon Feb 15 14:07:40 2010	(r203916)
@@ -11,7 +11,7 @@ MLINKS=	mount_std.8 mount_devfs.8 \
 
 MOUNT=	${.CURDIR}/../mount
 CFLAGS+= -I${MOUNT}
-WARNS?=	0
+WARNS?=	3
 
 .PATH:	${MOUNT}
 

Modified: head/sbin/sunlabel/Makefile
==============================================================================
--- head/sbin/sunlabel/Makefile	Mon Feb 15 12:17:20 2010	(r203915)
+++ head/sbin/sunlabel/Makefile	Mon Feb 15 14:07:40 2010	(r203916)
@@ -11,8 +11,6 @@ LINKS=	${BINDIR}/sunlabel ${BINDIR}/disk
 MLINKS=	sunlabel.8 disklabel.8
 .endif
 
-WARNS?=	5
-
 DPADD=	${LIBGEOM}
 LDADD=	-lgeom
 


More information about the svn-src-all mailing list