Date: Sun, 13 Mar 2016 15:17:03 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410995 - branches/2016Q1/Mk Message-ID: <201603131517.u2DFH3uP049668@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603131517.u2DFH3uP049668>