From owner-svn-src-stable-8@FreeBSD.ORG Fri Feb 20 13:35:00 2015 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9FB4ABCA; Fri, 20 Feb 2015 13:35:00 +0000 (UTC) Received: from pmta2.delivery2.ore.mailhop.org (pmta2.delivery2.ore.mailhop.org [54.69.130.42]) by mx1.freebsd.org (Postfix) with ESMTP id 7A6D9AEF; Fri, 20 Feb 2015 13:35:00 +0000 (UTC) Received: from smtp2.ore.mailhop.org (172.31.18.134) by pmta2.delivery1.ore.mailhop.org id hsss1g20u505; Fri, 20 Feb 2015 13:35:13 +0000 (envelope-from ) Received: from c-73-34-117-227.hsd1.co.comcast.net ([73.34.117.227] helo=ilsoft.org) by smtp2.ore.mailhop.org with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.82) (envelope-from ) id 1YOnjI-0001JN-EP; Fri, 20 Feb 2015 13:34:52 +0000 Received: from revolution.hippie.lan (revolution.hippie.lan [172.22.42.240]) by ilsoft.org (8.14.9/8.14.9) with ESMTP id t1KDYoEG001869; Fri, 20 Feb 2015 06:34:50 -0700 (MST) (envelope-from ian@freebsd.org) X-Mail-Handler: DuoCircle Outbound SMTP X-Originating-IP: 73.34.117.227 X-Report-Abuse-To: abuse@duocircle.com (see https://support.duocircle.com/support/solutions/articles/5000540958-duocircle-standard-smtp-abuse-information for abuse reporting information) X-MHO-User: U2FsdGVkX1+nia3JSjQKG0Vx9qLWrdWA Message-ID: <1424439290.1108.58.camel@freebsd.org> Subject: Re: svn commit: r279041 - in stable/8: sbin/hastctl sbin/hastd usr.bin/mklocale usr.sbin/bsnmpd/modules usr.sbin/config From: Ian Lepore To: Dimitry Andric Date: Fri, 20 Feb 2015 06:34:50 -0700 In-Reply-To: <543CCF29-E1D6-42D8-AB3F-B2D20C761A6D@FreeBSD.org> References: <201502200523.t1K5NqSt038826@svn.freebsd.org> <543CCF29-E1D6-42D8-AB3F-B2D20C761A6D@FreeBSD.org> Content-Type: text/plain; charset="us-ascii" X-Mailer: Evolution 3.12.8 FreeBSD GNOME Team Port Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Cc: svn-src-stable@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, svn-src-stable-8@freebsd.org X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Feb 2015 13:35:00 -0000 On Fri, 2015-02-20 at 11:11 +0100, Dimitry Andric wrote: > On 20 Feb 2015, at 06:23, Ian Lepore wrote: > > > > Author: ian > > Date: Fri Feb 20 05:23:51 2015 > > New Revision: 279041 > > URL: https://svnweb.freebsd.org/changeset/base/279041 > > > > Log: > > Lower some WARNS from 6 to 5 to eliminate redundant redeclaration errors > > on yylex(). This allows stable-8 to build on machines running 10 or later > > (with a newer yacc that emits its own declaration) and also keep building > > on older machines with a yacc that doesn't do so. > > > > This is a direct commit to stable-8 because it fixes a problem that doesn't > > exist on later branches. > > > > Modified: > > stable/8/sbin/hastctl/Makefile > > stable/8/sbin/hastd/Makefile > > stable/8/usr.bin/mklocale/Makefile > > stable/8/usr.sbin/bsnmpd/modules/Makefile.inc > > stable/8/usr.sbin/config/Makefile > > > > Modified: stable/8/sbin/hastctl/Makefile > > ============================================================================== > > --- stable/8/sbin/hastctl/Makefile Fri Feb 20 05:17:24 2015 (r279040) > > +++ stable/8/sbin/hastctl/Makefile Fri Feb 20 05:23:51 2015 (r279041) > > @@ -17,7 +17,9 @@ SRCS+= proto.c proto_common.c proto_uds. > > SRCS+= token.l > > SRCS+= subr.c > > SRCS+= y.tab.h > > -WARNS?= 6 > > +.warning WARNS is ${WARNS} > > +WARNS?= 5 > > +.warning WARNS is now ${WARNS} > > MAN= hastctl.8 > > > > NO_WFORMAT= > > > > Modified: stable/8/sbin/hastd/Makefile > > ============================================================================== > > --- stable/8/sbin/hastd/Makefile Fri Feb 20 05:17:24 2015 (r279040) > > +++ stable/8/sbin/hastd/Makefile Fri Feb 20 05:23:51 2015 (r279041) > > @@ -17,7 +17,9 @@ SRCS+= rangelock.c > > SRCS+= subr.c > > SRCS+= token.l > > SRCS+= y.tab.h > > -WARNS?= 6 > > +.warning WARNS is ${WARNS} > > +WARNS?= 5 > > +.warning WARNS is now ${WARNS} > > MAN= hastd.8 hast.conf.5 > > Hi Ian, > > Did you really intend for these .warning directives to go in? :) > > -Dimitry > Doh! No, of course not. Fixed in r279053, thanks. -- Ian