From owner-svn-ports-all@FreeBSD.ORG Tue Feb 3 20:12:57 2015 Return-Path: Delivered-To: svn-ports-all@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 F093B21B; Tue, 3 Feb 2015 20:12:56 +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 DB9CE857; Tue, 3 Feb 2015 20:12:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t13KCuL2050130; Tue, 3 Feb 2015 20:12:56 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t13KCuCZ050129; Tue, 3 Feb 2015 20:12:56 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201502032012.t13KCuCZ050129@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 3 Feb 2015 20:12:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r378372 - branches/2015Q1/x11-toolkits/wxgtk30 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 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, 03 Feb 2015 20:12:57 -0000 Author: amdmi3 Date: Tue Feb 3 20:12:55 2015 New Revision: 378372 URL: https://svnweb.freebsd.org/changeset/ports/378372 QAT: https://qat.redports.org/buildarchive/r378372/ Log: MFH: r377776 - Fix library on < 10.x after webkit-gtk2 update Some dependent ports may need USES=compiler:c++11-lib as well PR: 196703 [1], 197031 [2] Submitted by: beastie@tardisi.com [1], amdmi3 [2] Approved by: portmaster@bsdforge.com (maintainer) Approved by: portmgr (antoine) Modified: branches/2015Q1/x11-toolkits/wxgtk30/Makefile Directory Properties: branches/2015Q1/ (props changed) Modified: branches/2015Q1/x11-toolkits/wxgtk30/Makefile ============================================================================== --- branches/2015Q1/x11-toolkits/wxgtk30/Makefile Tue Feb 3 19:53:07 2015 (r378371) +++ branches/2015Q1/x11-toolkits/wxgtk30/Makefile Tue Feb 3 20:12:55 2015 (r378372) @@ -2,7 +2,7 @@ PORTNAME= wx PORTVERSION= 3.0.2 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= x11-toolkits MASTER_SITES= SF/wxwindows/${PORTVERSION} PKGNAMESUFFIX= 30-gtk2 @@ -17,7 +17,7 @@ LIB_DEPENDS+= libpng.so:${PORTSDIR}/grap libexpat.so:${PORTSDIR}/textproc/expat2\ libwebkitgtk-1.0.so:${PORTSDIR}/www/webkit-gtk2 -USES+= iconv gmake pkgconfig tar:bzip2 +USES+= compiler:c++11-lib iconv gmake pkgconfig tar:bzip2 USE_XORG= x11 sm xxf86vm xinerama USE_GL= glu USE_GNOME= gtk20 @@ -52,4 +52,11 @@ GSTREAMER_USE= GNOME=gconf2 GSTREAMER=ye MSPACK_CONFIGURE_WITH= libmspack MSPACK_LIB_DEPENDS= libmspack.so:${PORTSDIR}/archivers/libmspack -.include +.include + +# PR 196703, 197031 +.if ${COMPILER_TYPE} == "gcc" +CONFIGURE_ARGS+=--disable-precomp-headers +.endif + +.include