From owner-svn-ports-all@freebsd.org Sun Mar 13 15:17:04 2016 Return-Path: Delivered-To: svn-ports-all@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 3E03AACE447; Sun, 13 Mar 2016 15:17:04 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 0F6697E7; Sun, 13 Mar 2016 15:17:03 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2DFH3BY049669; Sun, 13 Mar 2016 15:17:03 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2DFH3uP049668; Sun, 13 Mar 2016 15:17:03 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201603131517.u2DFH3uP049668@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 13 Mar 2016 15:17:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410995 - branches/2016Q1/Mk 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.21 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: Sun, 13 Mar 2016 15:17:04 -0000 Author: jbeich Date: Sun Mar 13 15:17:02 2016 New Revision: 410995 URL: https://svnweb.freebsd.org/changeset/ports/410995 Log: MFH: r410973 www/firefox: work around Clang 3.4 crash with OPTIMIZED_CFLAGS=off Pretend we want C++14 to pull more modern version of Clang on 10.x i386. PR: 207837 Approved by: ports-secteam (junovitch) Modified: branches/2016Q1/Mk/bsd.gecko.mk Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/Mk/bsd.gecko.mk ============================================================================== --- branches/2016Q1/Mk/bsd.gecko.mk Sun Mar 13 15:07:20 2016 (r410994) +++ branches/2016Q1/Mk/bsd.gecko.mk Sun Mar 13 15:17:02 2016 (r410995) @@ -301,6 +301,9 @@ CFLAGS+= -O3 MOZ_EXPORT+= MOZ_OPTIMIZE_FLAGS="${CFLAGS:M-O*}" MOZ_OPTIONS+= --enable-optimize .else +. if ${MOZILLA_VER:R:R} >= 45 && ${OSREL:R} == 10 && ${ARCH} == i386 +USES:= compiler:c++14-lang ${USES:Ncompiler*c++11*} # XXX ports/207837 +. endif MOZ_OPTIONS+= --disable-optimize .endif