From owner-freebsd-current@FreeBSD.ORG Wed Mar 8 15:24:45 2006 Return-Path: X-Original-To: current@freebsd.org Delivered-To: freebsd-current@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6605D16A420; Wed, 8 Mar 2006 15:24:45 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E97E43D45; Wed, 8 Mar 2006 15:24:43 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from flame.pc (aris.bedc.ondsl.gr [62.103.39.226]) (authenticated bits=128) by igloo.linux.gr (8.13.5/8.13.5/Debian-3) with ESMTP id k28FOOG3015279 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 8 Mar 2006 17:24:25 +0200 Received: from flame.pc (flame [127.0.0.1]) by flame.pc (8.13.4/8.13.4) with ESMTP id k28FOECJ043866; Wed, 8 Mar 2006 17:24:14 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by flame.pc (8.13.4/8.13.4/Submit) id k28FODaN043865; Wed, 8 Mar 2006 17:24:13 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Date: Wed, 8 Mar 2006 17:24:13 +0200 From: Giorgos Keramidas To: Dag-Erling Sm?rgrav Message-ID: <20060308152413.GA43764@flame.pc> References: <20060308085714.L10582@beagle.kn.op.dlr.de> <86bqwh59gn.fsf@xps.des.no> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <86bqwh59gn.fsf@xps.des.no> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-3.375, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.82, BAYES_00 -2.60, DNS_FROM_RFC_ABUSE 0.20) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr Cc: deischen@freebsd.org, Harti Brandt , current@freebsd.org Subject: Re: When will bsnmp stop breaking -current builds X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Mar 2006 15:24:45 -0000 On 2006-03-08 14:53, Dag-Erling Sm?rgrav wrote: > Harti Brandt writes: > > You seem to be the only one having this problem, so this looks like > > a problem on your side. > > Far from it. I had the same problem, and solved it by adding a > NO_BSNMP knob (see attached patch). > > The deeper problem is that gensnmptree is a build tool, but isn't > treated as such by the build system, so cross-builds and source > updates from older versions are broken. I solved the original gensnmptree problems I had when I moved back and forth around January 25-26th builds, with: %%% Index: Makefile.inc1 =================================================================== --- Makefile.inc1 (revision 19) +++ Makefile.inc1 (working copy) @@ -839,6 +839,7 @@ usr.bin/rpcgen \ usr.bin/xinstall \ usr.sbin/config \ + usr.sbin/bsnmpd/gensnmptree \ ${_crunchgen} \ ${_pwd_mkdb} ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ %%% Things worked fine after this :)