diff options
author | flo <flo@FreeBSD.org> | 2013-10-31 15:43:35 +0800 |
---|---|---|
committer | flo <flo@FreeBSD.org> | 2013-10-31 15:43:35 +0800 |
commit | e32d307a90069ca3fb03d348558b71f9021043fb (patch) | |
tree | 0b4de13bcdafd7898a83e39e77a6c332040ba27e /www | |
parent | 61fbe6aa8f0dfef100239b3acb66f3e43378e5ea (diff) | |
download | freebsd-ports-gnome-e32d307a90069ca3fb03d348558b71f9021043fb.tar.gz freebsd-ports-gnome-e32d307a90069ca3fb03d348558b71f9021043fb.tar.zst freebsd-ports-gnome-e32d307a90069ca3fb03d348558b71f9021043fb.zip |
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>
Diffstat (limited to 'www')
-rw-r--r-- | www/firefox/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/www/firefox/Makefile b/www/firefox/Makefile index 65e99f66da84..440f64361630 100644 --- a/www/firefox/Makefile +++ b/www/firefox/Makefile @@ -52,6 +52,10 @@ MOZ_OPTIONS= --program-transform-name='s/firefox/${MOZILLA}/' \ 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}|' \ |