From owner-svn-ports-branches@FreeBSD.ORG Tue May 12 14:37:55 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 15F7FC15; Tue, 12 May 2015 14:37:55 +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 04D1015BF; Tue, 12 May 2015 14:37:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4CEbsZE099961; Tue, 12 May 2015 14:37:54 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4CEbsq1099960; Tue, 12 May 2015 14:37:54 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201505121437.t4CEbsq1099960@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Tue, 12 May 2015 14:37:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r386153 - branches/2015Q2/audio/mumble 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: Tue, 12 May 2015 14:37:55 -0000 Author: feld Date: Tue May 12 14:37:54 2015 New Revision: 386153 URL: https://svnweb.freebsd.org/changeset/ports/386153 Log: MFH: r385052 Approved by: portmgr Disable PCH when compiler is GCC to unbreak builds on 8.x and 9.x Modified: branches/2015Q2/audio/mumble/Makefile Directory Properties: branches/2015Q2/ (props changed) Modified: branches/2015Q2/audio/mumble/Makefile ============================================================================== --- branches/2015Q2/audio/mumble/Makefile Tue May 12 14:32:28 2015 (r386152) +++ branches/2015Q2/audio/mumble/Makefile Tue May 12 14:37:54 2015 (r386153) @@ -21,7 +21,7 @@ LIB_DEPENDS+= libspeex.so:${PORTSDIR}/au PLIST_SUB+= PORTVERSION="${PORTVERSION}" -USES= gmake pkgconfig qmake +USES= compiler gmake pkgconfig qmake USE_LDCONFIG= yes USE_QT4= gui svg iconengines_run xml sql network l10n \ linguist_build moc_build rcc_build uic_build \ @@ -53,6 +53,13 @@ CONFIG+= no-bonjour LIB_DEPENDS+= libdns_sd.so:${PORTSDIR}/net/mDNSResponder .endif +.include + +# PCH is broken on GCC +.if ${COMPILER_TYPE} == gcc +CONFIG+= no-pch +.endif + post-patch: @${REINPLACE_CMD} -e 's|-ldl||' ${WRKSRC}/overlay_gl/overlay_gl.pro @@ -74,4 +81,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/icons/mumble.svg ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps ${INSTALL_MAN} ${WRKSRC}/man/mumble.1 ${STAGEDIR}${MANPREFIX}/man/man1/mumble.1 -.include +.include