From owner-cvs-share Mon Nov 11 07:49:42 1996 Return-Path: owner-cvs-share Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id HAA20886 for cvs-share-outgoing; Mon, 11 Nov 1996 07:49:42 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id HAA20871; Mon, 11 Nov 1996 07:49:29 -0800 (PST) Date: Mon, 11 Nov 1996 07:49:29 -0800 (PST) From: Bruce Evans Message-Id: <199611111549.HAA20871@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-share Subject: cvs commit: src/share/mk bsd.kern.mk Sender: owner-cvs-share@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 96/11/11 07:49:29 Modified: share/mk bsd.kern.mk Log: Turned off -W and -Winline so that the warnings that should be fixed for 2.2 are more obvious. -Winline is unimportant, but -W gives thousands of warnings for comparisions. Turning off -W also loses warnings for: - auto variables clobbered by longjmp. Not much of a problem in the kernel. - functions returning without a value. I don't like losing this. - an expression statement or the left side of a comma operand contains no side effects. Turning this off also stops warnings for the low quality debugging macros in gsc.c and lpt.c. Should be in 2.2. Revision Changes Path 1.3 +3 -3 src/share/mk/bsd.kern.mk