From owner-svn-ports-head@freebsd.org Sun Aug 9 16:31:02 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CE7EE99DCC6; Sun, 9 Aug 2015 16:31:02 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A3D78238; Sun, 9 Aug 2015 16:31:02 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79GV2HT018117; Sun, 9 Aug 2015 16:31:02 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79GV24E018114; Sun, 9 Aug 2015 16:31:02 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508091631.t79GV24E018114@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 9 Aug 2015 16:31:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393805 - in head/www/firefox: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 16:31:02 -0000 Author: jbeich Date: Sun Aug 9 16:31:01 2015 New Revision: 393805 URL: https://svnweb.freebsd.org/changeset/ports/393805 Log: www/firefox: temporarily disable OMTC to avoid crashes OMTC on X11 platforms uses BasicCompositor unless GL layers are also enabled. Change the default value of its pref in about:config. For now, bundled cairo is left as is pending more testing. No upstream bug as I cannot reproduce reliably to get the stacktrace(s) with a clean profile. PR: 202174 Reported by: many Tested by: Martin Birgmeier, Andrey Fesenko, Konstantin Belousov MFH: 2015Q3 X-MFH-With: r393690 Added: head/www/firefox/files/patch-modules-libpref-init-all.js (contents, props changed) Modified: head/www/firefox/Makefile (contents, props changed) Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Sun Aug 9 16:30:43 2015 (r393804) +++ head/www/firefox/Makefile Sun Aug 9 16:31:01 2015 (r393805) @@ -4,6 +4,7 @@ PORTNAME= firefox DISTVERSION= 40.0 DISTVERSIONSUFFIX=.source +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ Added: head/www/firefox/files/patch-modules-libpref-init-all.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/firefox/files/patch-modules-libpref-init-all.js Sun Aug 9 16:31:01 2015 (r393805) @@ -0,0 +1,15 @@ +--- modules/libpref/init/all.js.orig 2015-08-06 22:39:34 UTC ++++ modules/libpref/init/all.js +@@ -4052,7 +4052,12 @@ pref("layers.max-active", -1); + pref("layers.tiles.adjust", true); + + // Set the default values, and then override per-platform as needed ++#ifdef MOZ_TREE_CAIRO + pref("layers.offmainthreadcomposition.enabled", true); ++#else ++// Disable for system cairo on suspicion of causing random crashes ++pref("layers.offmainthreadcomposition.enabled", false); ++#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)