Date: Thu, 31 Oct 2013 07:43:35 +0000 (UTC) From: Florian Smeets <flo@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332207 - head/www/firefox Message-ID: <201310310743.r9V7hZxI081143@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: flo Date: Thu Oct 31 07:43:35 2013 New Revision: 332207 URL: http://svnweb.freebsd.org/changeset/ports/332207 Log: Firefox 25.0 seems to trigger a bug in clang on 9.X/i386, switch to gcc for now. Reported by: Kenta Suzumoto <kentas@hush.com> Modified: head/www/firefox/Makefile Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Thu Oct 31 07:42:03 2013 (r332206) +++ head/www/firefox/Makefile Thu Oct 31 07:43:35 2013 (r332207) @@ -52,6 +52,10 @@ MOZ_OPTIONS= --program-transform-name='s WRKSRC:= ${WRKDIR}/mozilla-release +.if ${ARCH} == i386 && ${OSVERSION} < 1000000 +USE_GCC?= yes +.endif + post-extract: @${SED} -e 's|@FIREFOX_ICON@|${FIREFOX_ICON}|' -e 's|@MOZILLA@|${MOZILLA}|' \ -e 's|@MOZILLA_NAME@|${MOZILLA_NAME}|' \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310310743.r9V7hZxI081143>