From owner-svn-src-stable@FreeBSD.ORG Fri Feb 20 10:12:00 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AAC49997; Fri, 20 Feb 2015 10:12:00 +0000 (UTC) Received: from tensor.andric.com (tensor.andric.com [87.251.56.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "tensor.andric.com", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 30680208; Fri, 20 Feb 2015 10:11:56 +0000 (UTC) Received: from [IPv6:2001:7b8:3a7::9cf5:e7d5:14b6:53b3] (unknown [IPv6:2001:7b8:3a7:0:9cf5:e7d5:14b6:53b3]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id D5A9D5C47; Fri, 20 Feb 2015 11:11:47 +0100 (CET) Subject: Re: svn commit: r279041 - in stable/8: sbin/hastctl sbin/hastd usr.bin/mklocale usr.sbin/bsnmpd/modules usr.sbin/config Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2070.6\)) Content-Type: multipart/signed; boundary="Apple-Mail=_776A3507-B391-4367-84D9-94F35260F828"; protocol="application/pgp-signature"; micalg=pgp-sha1 X-Pgp-Agent: GPGMail 2.5b5 From: Dimitry Andric In-Reply-To: <201502200523.t1K5NqSt038826@svn.freebsd.org> Date: Fri, 20 Feb 2015 11:11:42 +0100 Message-Id: <543CCF29-E1D6-42D8-AB3F-B2D20C761A6D@FreeBSD.org> References: <201502200523.t1K5NqSt038826@svn.freebsd.org> To: Ian Lepore X-Mailer: Apple Mail (2.2070.6) 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@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Feb 2015 10:12:00 -0000 --Apple-Mail=_776A3507-B391-4367-84D9-94F35260F828 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii On 20 Feb 2015, at 06:23, Ian Lepore wrote: >=20 > Author: ian > Date: Fri Feb 20 05:23:51 2015 > New Revision: 279041 > URL: https://svnweb.freebsd.org/changeset/base/279041 >=20 > 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. >=20 > This is a direct commit to stable-8 because it fixes a problem that = doesn't > exist on later branches. >=20 > 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 >=20 > Modified: stable/8/sbin/hastctl/Makefile > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- 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+=3D proto.c proto_common.c proto_uds. > SRCS+=3D token.l > SRCS+=3D subr.c > SRCS+=3D y.tab.h > -WARNS?=3D 6 > +.warning WARNS is ${WARNS} > +WARNS?=3D 5 > +.warning WARNS is now ${WARNS} > MAN=3D hastctl.8 >=20 > NO_WFORMAT=3D >=20 > Modified: stable/8/sbin/hastd/Makefile > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- 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+=3D rangelock.c > SRCS+=3D subr.c > SRCS+=3D token.l > SRCS+=3D y.tab.h > -WARNS?=3D 6 > +.warning WARNS is ${WARNS} > +WARNS?=3D 5 > +.warning WARNS is now ${WARNS} > MAN=3D hastd.8 hast.conf.5 Hi Ian, Did you really intend for these .warning directives to go in? :) -Dimitry --Apple-Mail=_776A3507-B391-4367-84D9-94F35260F828 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.26 iEYEARECAAYFAlTnCGIACgkQsF6jCi4glqOsQgCg9OlTB6Nl/w/3mtz1nzDqpSbp uzQAoO/+G+7bXX9HZUn8lY1+y9sFWzw7 =H8lg -----END PGP SIGNATURE----- --Apple-Mail=_776A3507-B391-4367-84D9-94F35260F828--