pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/firefox Add patches



details:   https://anonhg.NetBSD.org/pkgsrc/rev/39c3da3706d1
branches:  trunk
changeset: 307640:39c3da3706d1
user:      ryoon <ryoon%pkgsrc.org@localhost>
date:      Thu May 10 20:02:59 2018 +0000
description:
Add patches

diffstat:

 www/firefox/distinfo                                  |   3 +-
 www/firefox/patches/patch-dom_fetch_FetchConsumer.cpp |  13 +++++++++
 www/firefox/patches/patch-gfx_webrender_src_query.rs  |  25 +++++++++++++++++++
 3 files changed, 39 insertions(+), 2 deletions(-)

diffs (63 lines):

diff -r 92684bcf4846 -r 39c3da3706d1 www/firefox/distinfo
--- a/www/firefox/distinfo      Thu May 10 20:01:53 2018 +0000
+++ b/www/firefox/distinfo      Thu May 10 20:02:59 2018 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.315 2018/05/10 20:01:53 ryoon Exp $
+$NetBSD: distinfo,v 1.316 2018/05/10 20:02:59 ryoon Exp $
 
 SHA1 (firefox-60.0.source.tar.xz) = 070b99b19851efe13c1d947764a9de1a83f6362c
 RMD160 (firefox-60.0.source.tar.xz) = f6c1ad34ab78e27964bb100b9190d4888200eb1b
@@ -16,7 +16,6 @@
 SHA1 (patch-ipc_glue_CrossProcessSemaphore.h) = 778a569887d8ad082abc2fa2fe89a0a943e84d64
 SHA1 (patch-ipc_glue_CrossProcessSemaphore__posix.cpp) = 3052338871447cedaeafe8369afe82233183c884
 SHA1 (patch-ipc_glue_GeckoChildProcessHost.cpp) = 260c29bacd8bf265951b7a412f850bf2b292c836
-SHA1 (patch-media_libcubeb_AUTHORS) = 0565b8f0d27108667c1dfcc37ed397644c11d0f4
 SHA1 (patch-media_libcubeb_gtest_moz.build) = 921a001726cda9e9782df5e59ae02b19d76ef47e
 SHA1 (patch-media_libcubeb_src_cubeb.c) = 1b1b8d57eb710cad13518ded79a0ddee2681881b
 SHA1 (patch-media_libcubeb_src_cubeb__alsa.c) = 3ee36f58bb525767c7d2b9e814ba4ccaa4868717
diff -r 92684bcf4846 -r 39c3da3706d1 www/firefox/patches/patch-dom_fetch_FetchConsumer.cpp
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/firefox/patches/patch-dom_fetch_FetchConsumer.cpp     Thu May 10 20:02:59 2018 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-dom_fetch_FetchConsumer.cpp,v 1.1 2018/05/10 20:02:59 ryoon Exp $
+
+--- dom/fetch/FetchConsumer.cpp.orig   2018-05-03 16:58:26.000000000 +0000
++++ dom/fetch/FetchConsumer.cpp
+@@ -616,7 +616,7 @@ FetchBodyConsumer<Derived>::ContinueCons
+   RefPtr<Promise> localPromise = mConsumePromise.forget();
+ 
+   RefPtr<FetchBodyConsumer<Derived>> self = this;
+-  auto autoReleaseObject = mozilla::MakeScopeExit([&] {
++  auto autoReleaseObject = mozilla::MakeScopeExit([self] {
+     self->ReleaseObject();
+   });
+ 
diff -r 92684bcf4846 -r 39c3da3706d1 www/firefox/patches/patch-gfx_webrender_src_query.rs
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/firefox/patches/patch-gfx_webrender_src_query.rs      Thu May 10 20:02:59 2018 +0000
@@ -0,0 +1,25 @@
+$NetBSD: patch-gfx_webrender_src_query.rs,v 1.1 2018/05/10 20:02:59 ryoon Exp $
+
+--- gfx/webrender/src/query.rs.orig    2018-05-03 16:58:27.000000000 +0000
++++ gfx/webrender/src/query.rs
+@@ -274,17 +274,20 @@ pub struct GpuMarker {
+ 
+ impl GpuMarker {
+     fn new(gl: &Rc<gl::Gl>, message: &str) -> Self {
++#[cfg(not(target_arch = "x86"))]
+         gl.push_group_marker_ext(message);
+         GpuMarker { gl: Rc::clone(gl) }
+     }
+ 
+     fn fire(gl: &Rc<gl::Gl>, message: &str) {
++#[cfg(not(target_arch = "x86"))]
+         gl.insert_event_marker_ext(message);
+     }
+ }
+ 
+ impl Drop for GpuMarker {
+     fn drop(&mut self) {
++#[cfg(not(target_arch = "x86"))]
+         self.gl.pop_group_marker_ext();
+     }
+ }



Home | Main Index | Thread Index | Old Index