aboutsummaryrefslogtreecommitdiffstats
path: root/testing/firefox/fix-third_party.patch
diff options
context:
space:
mode:
authorMilan P. Stanić <mps@arvanta.net>2019-12-05 06:37:40 +0000
committerRasmus Thomsen <oss@cogitri.dev>2019-12-19 12:42:48 +0100
commit68bd5137e6db9f9fdc9ff9920ed788f0baf1bd11 (patch)
tree85185792f9da8f03606ff7e2f4a009589c0caaa6 /testing/firefox/fix-third_party.patch
parent3f27f64bfea410a914c5a8f90bcde44fdad51f0a (diff)
downloadaports-68bd5137e6db9f9fdc9ff9920ed788f0baf1bd11.tar.bz2
aports-68bd5137e6db9f9fdc9ff9920ed788f0baf1bd11.tar.xz
testing/firefox: upgrade to 71.0
reenable add rust_audio-thread-priority.patch from Void linux fix-third_party.patch use python2 not python2-dev in makedepends
Diffstat (limited to 'testing/firefox/fix-third_party.patch')
-rw-r--r--testing/firefox/fix-third_party.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/testing/firefox/fix-third_party.patch b/testing/firefox/fix-third_party.patch
deleted file mode 100644
index 7cba6e0c90..0000000000
--- a/testing/firefox/fix-third_party.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/third_party/rust/audio_thread_priority/src/rt_linux.rs.orig 2019-10-24 07:52:22.690223829 +0200
-+++ b/third_party/rust/audio_thread_priority/src/rt_linux.rs 2019-10-24 07:53:24.586418407 +0200
-@@ -100,7 +100,7 @@
- let mut policy = 0;
-
- if unsafe { libc::pthread_getschedparam(pthread_id, &mut policy, &mut param) } < 0 {
-- error!("pthread_getschedparam error {}", pthread_id);
-+ error!("pthread_getschedparam error");
- return Err(());
- }
-
-@@ -127,7 +127,7 @@
- if unsafe { libc::pthread_setschedparam(rt_priority_handle.pthread_id,
- rt_priority_handle.policy,
- &rt_priority_handle.param) } < 0 {
-- warn!("could not demote thread {}", rt_priority_handle.pthread_id);
-+ warn!("could not demote thread");
- return Err(());
- }
- return Ok(());