From owner-svn-ports-branches@FreeBSD.ORG Wed Apr 29 23:50:29 2015 Return-Path: Delivered-To: svn-ports-branches@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 C055E836; Wed, 29 Apr 2015 23:50:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 94D21189E; Wed, 29 Apr 2015 23:50:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3TNoTQf017718; Wed, 29 Apr 2015 23:50:29 GMT (envelope-from truckman@FreeBSD.org) Received: (from truckman@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3TNoTbI017716; Wed, 29 Apr 2015 23:50:29 GMT (envelope-from truckman@FreeBSD.org) Message-Id: <201504292350.t3TNoTbI017716@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: truckman set sender to truckman@FreeBSD.org using -f From: Don Lewis Date: Wed, 29 Apr 2015 23:50:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r385017 - in branches/2015Q2/lang: gjs spidermonkey24 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Apr 2015 23:50:29 -0000 Author: truckman Date: Wed Apr 29 23:50:28 2015 New Revision: 385017 URL: https://svnweb.freebsd.org/changeset/ports/385017 Log: MFH: r385016 Convert lang/gjs and lang/spidermonkey24 to USES=compiler:c++11-lib to unbreak x11-fm/sushi on FreeBSD 8 and 9. This change causes these libraries to link to the newer version of libstdc++ bundled with lang/gcc. This causes rtld to load this version when it is linking sushi at runtime, which is needed by webkit-gtk3, another shared library linked into sushi. PR: 196078, 199434, 199435 Approved by: portmgr (delphij) Modified: branches/2015Q2/lang/gjs/Makefile branches/2015Q2/lang/spidermonkey24/Makefile Directory Properties: branches/2015Q2/ (props changed) Modified: branches/2015Q2/lang/gjs/Makefile ============================================================================== --- branches/2015Q2/lang/gjs/Makefile Wed Apr 29 22:13:10 2015 (r385016) +++ branches/2015Q2/lang/gjs/Makefile Wed Apr 29 23:50:28 2015 (r385017) @@ -4,6 +4,7 @@ PORTNAME= gjs PORTVERSION= 1.42.0 +PORTREVISION= 1 CATEGORIES= lang gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 @@ -14,7 +15,7 @@ COMMENT= GNOME Javascript binding LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \ libmozjs-24.so:${PORTSDIR}/lang/spidermonkey24 -USES= compiler:c11 gettext gmake libtool pathfix pkgconfig \ +USES= compiler:c++11-lib gettext gmake libtool pathfix pkgconfig \ python:build tar:xz USE_GNOME= cairo glib20 gnomeprefix introspection:build \ intlhack Modified: branches/2015Q2/lang/spidermonkey24/Makefile ============================================================================== --- branches/2015Q2/lang/spidermonkey24/Makefile Wed Apr 29 22:13:10 2015 (r385016) +++ branches/2015Q2/lang/spidermonkey24/Makefile Wed Apr 29 23:50:28 2015 (r385017) @@ -3,6 +3,7 @@ PORTNAME= spidermonkey24 PORTVERSION= 24.2.0 +PORTREVISION= 1 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_MOZILLA} #http://people.mozilla.org/~sstangl/ @@ -18,7 +19,7 @@ LIB_DEPENDS= libnspr4.so:${PORTSDIR}/de CONFLICTS= njs-[0-9]* GNU_CONFIGURE= yes -USES= compiler:c11 gmake pathfix perl5 python:2,build \ +USES= compiler:c++11-lib gmake pathfix perl5 python:2,build \ readline tar:bzip2 USE_PERL5= build USE_LDCONFIG= yes