From owner-svn-ports-head@freebsd.org Fri Oct 21 09:09:11 2016 Return-Path: Delivered-To: svn-ports-head@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 3C3C0C1B901; Fri, 21 Oct 2016 09:09:11 +0000 (UTC) (envelope-from tijl@freebsd.org) Received: from mailrelay106.isp.belgacom.be (mailrelay106.isp.belgacom.be [195.238.20.133]) (using TLSv1.2 with cipher RC4-SHA (128/128 bits)) (Client CN "relay.skynet.be", Issuer "GlobalSign Organization Validation CA - SHA256 - G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AFD93E31; Fri, 21 Oct 2016 09:09:09 +0000 (UTC) (envelope-from tijl@freebsd.org) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: =?us-ascii?q?A2CBBgDD2glY/1QiyVBcGgEBAQECAQEBA?= =?us-ascii?q?QgBAQEBgz4BAQEBAR1JDm0QpDCUPoIHJ4V6AoF8QhIBAgEBAQEBAQFiKIRjAQE?= =?us-ascii?q?EOhwjEAsUBAklDyoeBhOIVgrDFwEBAQEBAQEDAQEBAQEBASCLEoRHhV8BBJoSh?= =?us-ascii?q?imJWXKPFo0BhAAlDSJZhQI8NIhIAQEB?= Received: from 84.34-201-80.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([80.201.34.84]) by relay.skynet.be with ESMTP; 21 Oct 2016 11:08:50 +0200 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.15.2/8.15.2) with ESMTP id u9L98nYl053852; Fri, 21 Oct 2016 11:08:49 +0200 (CEST) (envelope-from tijl@FreeBSD.org) Date: Fri, 21 Oct 2016 11:08:48 +0200 From: Tijl Coosemans To: "Jason E. Hale" Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r424365 - head/security/gpgme Message-ID: <20161021110848.25b407ae@kalimero.tijl.coosemans.org> In-Reply-To: <201610210005.u9L05vIL063732@repo.freebsd.org> References: <201610210005.u9L05vIL063732@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 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: Fri, 21 Oct 2016 09:09:11 -0000 On Fri, 21 Oct 2016 00:05:57 +0000 (UTC) "Jason E. Hale" wrote: > Author: jhale > Date: Fri Oct 21 00:05:57 2016 > New Revision: 424365 > URL: https://svnweb.freebsd.org/changeset/ports/424365 > > Log: > Really fix build on 9.x for the c++ and Qt5 bindings; > require libc++. > > Modified: > head/security/gpgme/Makefile > > Modified: head/security/gpgme/Makefile > ============================================================================== > --- head/security/gpgme/Makefile Thu Oct 20 22:30:20 2016 (r424364) > +++ head/security/gpgme/Makefile Fri Oct 21 00:05:57 2016 (r424365) > @@ -87,6 +87,12 @@ CONFLICTS_INSTALL= py*-pyme-[0-9]* > .include > > .if defined(SLAVEPORT) > +. if (${SLAVEPORT} == "cpp" || ${SLAVEPORT} == "qt5") > +. if ${OPSYS} == FreeBSD && ${OSVERSION} < 1001000 > +BUILD_DEPENDS+= ${LOCALBASE}/lib/c++/libstdc++.so:devel/libc++ > +CXXFLAGS+= -stdlib=libc++ -I${LOCALBASE}/include/c++/v1 > +. endif > +. endif > . if ${SLAVEPORT} == "python" > . if ${PYTHON_REL} >= 3000 > CONFIGURE_ARGS+=--enable-languages="python3" Didn't replacing USES=compiler:c++11-lang with USES=compiler:c++11-lib work?