diff options
author | Michael Johnson <ahze@FreeBSD.org> | 2005-12-02 05:44:22 +0000 |
---|---|---|
committer | Michael Johnson <ahze@FreeBSD.org> | 2005-12-02 05:44:22 +0000 |
commit | 0483e4de82b9d4e8e86fb76240be6fa094c0e9b3 (patch) | |
tree | b4cb77d4f21cd2f9291f68366c6a42d866b4b0de /www/firefox10 | |
parent | Fix all those ports to find libnssckbi.so in the correct place to allow those (diff) |
- Disable svg support on 5.3 and lower to fix build with a gcc bug.
Reported by: many
Tested by: mark@mkproductions.org
Notes
Notes:
svn path=/head/; revision=150199
Diffstat (limited to 'www/firefox10')
-rw-r--r-- | www/firefox10/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/www/firefox10/Makefile b/www/firefox10/Makefile index 0ed05ba057ec..f2eb5ed038e2 100644 --- a/www/firefox10/Makefile +++ b/www/firefox10/Makefile @@ -31,8 +31,6 @@ USE_GCC= 3.4+ FIREFOX_ICON= ${MOZILLA}.xpm FIREFOX_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/icons/default.xpm MOZ_OPTIONS= --enable-application=browser \ - --enable-svg \ - --enable-svg-renderer=cairo \ --enable-system-cairo \ --enable-official-branding \ --enable-canvas @@ -50,6 +48,10 @@ OPTIONS= NEWTAB "Open external links in a new tab" on \ IGNORE= core dumps on alpha during post-build .endif +.if ${OSVERSION} >= 504101 +MOZ_OPTIONS+= --enable-svg --enable-svg-renderer=cairo +.endif + .if ${PERL_LEVEL} < 500600 EXTRA_PATCHES+= ${FILESDIR}/extra-patch-config_make-jars.pl .endif |