From owner-svn-ports-all@freebsd.org Tue Feb 19 00:33:49 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E364914F1659; Tue, 19 Feb 2019 00:33:48 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8205B8D2EB; Tue, 19 Feb 2019 00:33:48 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 723DCDA8C; Tue, 19 Feb 2019 00:33:48 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1J0Xmx8055962; Tue, 19 Feb 2019 00:33:48 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1J0XmTP055961; Tue, 19 Feb 2019 00:33:48 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201902190033.x1J0XmTP055961@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 19 Feb 2019 00:33:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493343 - in head/www/firefox: . files X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/www/firefox: . files X-SVN-Commit-Revision: 493343 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8205B8D2EB X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.88 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.88)[-0.883,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2019 00:33:49 -0000 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 +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;