From owner-svn-ports-head@FreeBSD.ORG Wed Dec 31 07:28:14 2014 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8EC35830; Wed, 31 Dec 2014 07:28:14 +0000 (UTC) Received: from gw.catspoiler.org (cl-1657.chi-02.us.sixxs.net [IPv6:2001:4978:f:678::2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3F4EE39D3; Wed, 31 Dec 2014 07:28:14 +0000 (UTC) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.13.3/8.13.3) with ESMTP id sBV7S2rI002254; Tue, 30 Dec 2014 23:28:06 -0800 (PST) (envelope-from truckman@FreeBSD.org) Message-Id: <201412310728.sBV7S2rI002254@gw.catspoiler.org> Date: Tue, 30 Dec 2014 23:28:02 -0800 (PST) From: Don Lewis Subject: Re: svn commit: r375853 - head/finance/gnucash To: kwm@FreeBSD.org In-Reply-To: <201412302028.sBUKSjuc039705@svn.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Dec 2014 07:28:14 -0000 On 30 Dec, Koop Mast wrote: > Author: kwm > Date: Tue Dec 30 20:28:43 2014 > New Revision: 375853 > URL: https://svnweb.freebsd.org/changeset/ports/375853 > QAT: https://qat.redports.org/buildarchive/r375853/ > > Log: > Fix the build on 9.x and 8.x after the update of webkit-gtk2. > > Modified: > head/finance/gnucash/Makefile > > Modified: head/finance/gnucash/Makefile > ============================================================================== > --- head/finance/gnucash/Makefile Tue Dec 30 20:13:46 2014 (r375852) > +++ head/finance/gnucash/Makefile Tue Dec 30 20:28:43 2014 (r375853) > @@ -96,6 +96,11 @@ GLIB_SCHEMAS+= org.gnucash.dialogs.impor > GLIB_SCHEMAS+= org.gnucash.dialogs.import.ofx.gschema.xml > .endif > > +# because webkit-gtk2 needs it > +.if ${OSVERSION} < 1000000 > +USES+= compiler:c++11-lib > +.endif > + Why not just set this unconditionally. It should be a no-op if clang is the base compiler, and should do the right thing on a FreeBSD 10 machine if someone has configured it to use legacy gcc as the base compiler.