From owner-svn-ports-all@FreeBSD.ORG Wed Jan 15 15:43:56 2014 Return-Path: Delivered-To: svn-ports-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 40B7619B; Wed, 15 Jan 2014 15:43:56 +0000 (UTC) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 007A41103; Wed, 15 Jan 2014 15:43:55 +0000 (UTC) Received: from mouf.net (swills@mouf [199.48.129.64]) by mouf.net (8.14.5/8.14.5) with ESMTP id s0FFhn1q054794 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 15 Jan 2014 15:43:54 GMT (envelope-from swills@mouf.net) Received: (from swills@localhost) by mouf.net (8.14.5/8.14.5/Submit) id s0FFhnYZ054793; Wed, 15 Jan 2014 15:43:49 GMT (envelope-from swills) Date: Wed, 15 Jan 2014 15:43:49 +0000 From: Steve Wills To: Baptiste Daroussin Subject: Re: svn commit: r339777 - head/lang/modula3 Message-ID: <20140115154348.GA54731@mouf.net> References: <201401151341.s0FDfQ1M053094@svn.freebsd.org> <998760DE607B43BBDEA3C8AE@ogg.in.absolight.net> <20140115151820.GH77567@ithaqua.etoilebsd.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140115151820.GH77567@ithaqua.etoilebsd.net> User-Agent: Mutt/1.5.21 (2010-09-15) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (mouf.net [199.48.129.64]); Wed, 15 Jan 2014 15:43:55 +0000 (UTC) X-Virus-Scanned: clamav-milter 0.97.8 at mouf.net X-Virus-Status: Clean Cc: Mathieu Arnold , svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, John Marino , ports-committers@FreeBSD.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Jan 2014 15:43:56 -0000 On Wed, Jan 15, 2014 at 04:18:20PM +0100, Baptiste Daroussin wrote: > On Wed, Jan 15, 2014 at 03:17:08PM +0100, Mathieu Arnold wrote: > > +--On 15 janvier 2014 13:41:26 +0000 John Marino wrote: > > | lang/modula3: Not for FreeBSD 8.x > > | > > | +. if !exists(/usr/include/xlocale/_ctype.h) > > | +IGNORE= the bootstrap compiler only runs on FreeBSD 9.0 or later > > | +. endif > > | . endif > > > > That should be .if ${OSVERSION} < 9000000 or something. > > > > -- > > Mathieu Arnold > > It is better to test for the existence of a file as if some are creating > custom images they without that file it will match anyway. > > OSVERSION is a legacy from pointyhat/tinderbox time, now pointyhat is gone and > tinderbox knows how to check in the real destination target and not in the host, > lots of those OSVERSION can just die. How would this work in the case of a change to a file that already exists as opposed to a file existing? Steve