From owner-svn-ports-all@freebsd.org Tue Mar 7 14:29:00 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F3D0BD0104A; Tue, 7 Mar 2017 14:28:59 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from ainaz.pair.com (ainaz.pair.com [209.68.2.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D742F18B2; Tue, 7 Mar 2017 14:28:59 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from anthias (unknown [46.183.103.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ainaz.pair.com (Postfix) with ESMTPSA id C1DB63F531; Tue, 7 Mar 2017 09:28:50 -0500 (EST) Date: Tue, 7 Mar 2017 15:28:49 +0100 (CET) From: Gerald Pfeifer To: Wen Heping cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r435594 - head/graphics/blender In-Reply-To: <201703071053.v27ArA8r003397@repo.freebsd.org> Message-ID: References: <201703071053.v27ArA8r003397@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 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: Tue, 07 Mar 2017 14:29:00 -0000 On Tue, 7 Mar 2017, Wen Heping wrote: > # gcc 4.9 fails to link on amd64 > -USE_GCC= 4.8 > +USE_GCC= 4.8+ > .else > USE_GCC= yes > .endif Note that an install GCC 4.9 will satisfy USE_GCC=4.8+ (in particular the + part there). Is that your intention of changing USE_GCC=4.8 to USE_GCC=4.8+? If so the six quoted lines could be replaced by USE_GCC=yes. (If not, and GCC 4.9 fails to link on amd64, then the + should be removed again.) Gerald