From owner-svn-src-all@FreeBSD.ORG Mon Feb 15 14:07:41 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7009A106566C; Mon, 15 Feb 2010 14:07:41 +0000 (UTC) (envelope-from uqs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2D9D28FC15; Mon, 15 Feb 2010 14:07:41 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o1FE7elk021303; Mon, 15 Feb 2010 14:07:41 GMT (envelope-from uqs@svn.freebsd.org) Received: (from uqs@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o1FE7e1m021298; Mon, 15 Feb 2010 14:07:40 GMT (envelope-from uqs@svn.freebsd.org) Message-Id: <201002151407.o1FE7e1m021298@svn.freebsd.org> From: Ulrich Spoerlein Date: Mon, 15 Feb 2010 14:07:40 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r203916 - in head: bin/rmail sbin/devd sbin/devfs sbin/ffsinfo sbin/gbde sbin/mknod sbin/mount_std sbin/sunlabel X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Feb 2010 14:07:41 -0000 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 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 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