pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/www/firefox
Module Name: pkgsrc
Committed By: ryoon
Date: Thu May 10 20:02:59 UTC 2018
Modified Files:
pkgsrc/www/firefox: distinfo
Added Files:
pkgsrc/www/firefox/patches: patch-dom_fetch_FetchConsumer.cpp
patch-gfx_webrender_src_query.rs
Log Message:
Add patches
To generate a diff of this commit:
cvs rdiff -u -r1.315 -r1.316 pkgsrc/www/firefox/distinfo
cvs rdiff -u -r0 -r1.1 \
pkgsrc/www/firefox/patches/patch-dom_fetch_FetchConsumer.cpp \
pkgsrc/www/firefox/patches/patch-gfx_webrender_src_query.rs
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/www/firefox/distinfo
diff -u pkgsrc/www/firefox/distinfo:1.315 pkgsrc/www/firefox/distinfo:1.316
--- pkgsrc/www/firefox/distinfo:1.315 Thu May 10 20:01:53 2018
+++ pkgsrc/www/firefox/distinfo Thu May 10 20:02:59 2018
@@ -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_chromium_src_base_platfo
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
Added files:
Index: pkgsrc/www/firefox/patches/patch-dom_fetch_FetchConsumer.cpp
diff -u /dev/null pkgsrc/www/firefox/patches/patch-dom_fetch_FetchConsumer.cpp:1.1
--- /dev/null Thu May 10 20:02:59 2018
+++ pkgsrc/www/firefox/patches/patch-dom_fetch_FetchConsumer.cpp Thu May 10 20:02:59 2018
@@ -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();
+ });
+
Index: pkgsrc/www/firefox/patches/patch-gfx_webrender_src_query.rs
diff -u /dev/null pkgsrc/www/firefox/patches/patch-gfx_webrender_src_query.rs:1.1
--- /dev/null Thu May 10 20:02:59 2018
+++ pkgsrc/www/firefox/patches/patch-gfx_webrender_src_query.rs Thu May 10 20:02:59 2018
@@ -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