From owner-cvs-all@FreeBSD.ORG Tue Jan 22 17:31:31 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2930E16A417; Tue, 22 Jan 2008 17:31:31 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id DE91513C468; Tue, 22 Jan 2008 17:31:30 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.1/8.14.1) with ESMTP id m0MHQ0dE050335; Tue, 22 Jan 2008 10:26:00 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Tue, 22 Jan 2008 10:29:40 -0700 (MST) Message-Id: <20080122.102940.1586015611.imp@bsdimp.com> To: ru@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <20080122171051.GB19248@team.vega.ru> References: <20080122155427.GB16573@team.vega.ru> <20080122.095757.1159151185.imp@bsdimp.com> <20080122171051.GB19248@team.vega.ru> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, obrien@FreeBSD.org Subject: Re: cvs commit: src Makefile.inc1 src/tools/build Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Jan 2008 17:31:31 -0000 In message: <20080122171051.GB19248@team.vega.ru> Ruslan Ermilov writes: : > : I only wonder how was the value of 600029 choosen? : > : > It was two revisions before the branch point for RELENG_6, which : > happened at 600031. : : I think you're twice off-by-one here, : : : $ cvs -R ann -rRELENG_6_BP param.h | grep '#define.*__FreeBSD_version' : : : : Annotations for param.h : : *************** : : 1.244 (sam 11-Jul-05): #define __FreeBSD_version 600032 /* Master, propagated to newvers */ : : but it still doesn't answer my question. Why you've choosen : this __FreeBSD_version and not RELENG_6_BP (i.e., 600032). : I don't mind it, just want to understand the formulae. :-) Maybe I should have selected this. I wanted to select the version that would work rather than the branch point. Maybe this was silly of me. : > It also is one greater than the largest if that : > was removed. : : Can you elaborate on what you mean here? I don't understand. : Thanks. The following line: .if ${BOOTSTRAPPING} < 600029 was the line with the biggest number on the right hand side of the < that was removed. Meaning that anything 600029 and newer will still work. Warner