svn commit: r332207 - head/www/firefox

Florian Smeets flo at FreeBSD.org
Thu Oct 31 07:43:35 UTC 2013


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 at 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}|' \


More information about the svn-ports-all mailing list