Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 Feb 2019 00:33:48 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r493343 - in head/www/firefox: . files
Message-ID:  <201902190033.x1J0XmTP055961@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Tue Feb 19 00:33:47 2019
New Revision: 493343
URL: https://svnweb.freebsd.org/changeset/ports/493343

Log:
  www/firefox: add one more Wayland+WebRender fix
  
  Obtained from:	 upstream (Firefox 67)

Added:
  head/www/firefox/files/patch-bug1527556   (contents, props changed)
Modified:
  head/www/firefox/Makefile   (contents, props changed)

Modified: head/www/firefox/Makefile
==============================================================================
--- head/www/firefox/Makefile	Tue Feb 19 00:27:03 2019	(r493342)
+++ head/www/firefox/Makefile	Tue Feb 19 00:33:47 2019	(r493343)
@@ -3,6 +3,7 @@
 
 PORTNAME=	firefox
 DISTVERSION=	65.0.1
+PORTREVISION=	1
 PORTEPOCH=	1
 CATEGORIES=	www ipv6
 MASTER_SITES=	MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \

Added: head/www/firefox/files/patch-bug1527556
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/firefox/files/patch-bug1527556	Tue Feb 19 00:33:47 2019	(r493343)
@@ -0,0 +1,31 @@
+commit ba954951557e
+Author: sotaro <sotaro.ikeda.g@gmail.com>
+Date:   Mon Feb 18 09:15:30 2019 +0000
+
+    Bug 1527556 - Change MAX_DISPLAY_CONNECTIONS to 3 r=stransky
+    
+    nsWaylandDisplay needs to be allocated for each calling thread(main thread, compositor thread and render thread)
+    
+    Differential Revision: https://phabricator.services.mozilla.com/D20118
+    
+    --HG--
+    extra : moz-landing-system : lando
+---
+ widget/gtk/nsWaylandDisplay.cpp | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git widget/gtk/nsWaylandDisplay.cpp widget/gtk/nsWaylandDisplay.cpp
+index 4c2804be2831..ac01e1f50347 100644
+--- widget/gtk/nsWaylandDisplay.cpp
++++ widget/gtk/nsWaylandDisplay.cpp
+@@ -14,7 +14,9 @@
+ namespace mozilla {
+ namespace widget {
+ 
+-#define MAX_DISPLAY_CONNECTIONS 2
++// nsWaylandDisplay needs to be created for each calling thread(main thread,
++// compositor thread and render thread)
++#define MAX_DISPLAY_CONNECTIONS 3
+ 
+ static nsWaylandDisplay *gWaylandDisplays[MAX_DISPLAY_CONNECTIONS];
+ static StaticMutex gWaylandDisplaysMutex;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902190033.x1J0XmTP055961>