Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Feb 2015 06:34:50 -0700
From:      Ian Lepore <ian@freebsd.org>
To:        Dimitry Andric <dim@FreeBSD.org>
Cc:        svn-src-stable@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   Re: svn commit: r279041 - in stable/8: sbin/hastctl sbin/hastd usr.bin/mklocale usr.sbin/bsnmpd/modules usr.sbin/config
Message-ID:  <1424439290.1108.58.camel@freebsd.org>
In-Reply-To: <543CCF29-E1D6-42D8-AB3F-B2D20C761A6D@FreeBSD.org>
References:  <201502200523.t1K5NqSt038826@svn.freebsd.org> <543CCF29-E1D6-42D8-AB3F-B2D20C761A6D@FreeBSD.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, 2015-02-20 at 11:11 +0100, Dimitry Andric wrote:
> On 20 Feb 2015, at 06:23, Ian Lepore <ian@FreeBSD.org> 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





Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1424439290.1108.58.camel>