diff options
author | jbeich <jbeich@FreeBSD.org> | 2016-09-08 14:49:10 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2016-09-08 14:49:10 +0800 |
commit | d42cf7f5175dc63432107a2b4fe7c2e8f5a96054 (patch) | |
tree | c8d3781bacd7d4c8be5b27c9bab187a7e39432a3 /www | |
parent | 0554eadc5b29001492f3f005808e9e87140bbbdc (diff) | |
download | freebsd-ports-gnome-d42cf7f5175dc63432107a2b4fe7c2e8f5a96054.tar.gz freebsd-ports-gnome-d42cf7f5175dc63432107a2b4fe7c2e8f5a96054.tar.zst freebsd-ports-gnome-d42cf7f5175dc63432107a2b4fe7c2e8f5a96054.zip |
www/firefox: re-enable OMTC for BUNDLED_CAIRO=off (backing out r393805)
OMTC is also required to support Electrolysis (called Multiprocess Windows in
about:support) introduced in Firefox 48 via e10srollout@mozilla.org system addon.
PR: 202174, 211792
Tested by: scf
MFH: 2016Q3
Diffstat (limited to 'www')
-rw-r--r-- | www/firefox/Makefile | 1 | ||||
-rw-r--r-- | www/firefox/files/patch-modules-libpref-init-all.js | 14 |
2 files changed, 1 insertions, 14 deletions
diff --git a/www/firefox/Makefile b/www/firefox/Makefile index 9febb8efe868..af11c9010789 100644 --- a/www/firefox/Makefile +++ b/www/firefox/Makefile @@ -4,6 +4,7 @@ PORTNAME= firefox DISTVERSION= 49.0 DISTVERSIONSUFFIX=.source +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ diff --git a/www/firefox/files/patch-modules-libpref-init-all.js b/www/firefox/files/patch-modules-libpref-init-all.js deleted file mode 100644 index fefec7f3066b..000000000000 --- a/www/firefox/files/patch-modules-libpref-init-all.js +++ /dev/null @@ -1,14 +0,0 @@ ---- modules/libpref/init/all.js.orig 2016-07-25 20:22:05 UTC -+++ modules/libpref/init/all.js -@@ -4453,6 +4453,11 @@ pref("layers.max-active", -1); - // if you change the tile size. - pref("layers.tiles.adjust", true); - -+#ifndef MOZ_TREE_CAIRO -+// Disable for system cairo on suspicion of causing random crashes -+pref("layers.offmainthreadcomposition.force-disabled", true); -+#endif -+ - // Compositor target frame rate. NOTE: If vsync is enabled the compositor - // frame rate will still be capped. - // -1 -> default (match layout.frame_rate or 60 FPS) |