summaryrefslogtreecommitdiff
path: root/user/firefox-esr/webrtc-broken.patch
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2022-11-19 02:10:20 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2022-11-21 02:08:32 -0600
commitdfe2d88752285a8da3bb1501caf9e804c5294150 (patch)
treec900c6d56f496734ccd7f586caa0bc6cbea61030 /user/firefox-esr/webrtc-broken.patch
parentf79ddfd3022bb02ebe179c931df2d1f481164884 (diff)
downloadpackages-dfe2d88752285a8da3bb1501caf9e804c5294150.tar.gz
packages-dfe2d88752285a8da3bb1501caf9e804c5294150.tar.bz2
packages-dfe2d88752285a8da3bb1501caf9e804c5294150.tar.xz
packages-dfe2d88752285a8da3bb1501caf9e804c5294150.zip
user/firefox-esr: Update to 91.13.0
It still works on ppc64! Even with VP8/VP9 video!
Diffstat (limited to 'user/firefox-esr/webrtc-broken.patch')
-rw-r--r--user/firefox-esr/webrtc-broken.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/user/firefox-esr/webrtc-broken.patch b/user/firefox-esr/webrtc-broken.patch
deleted file mode 100644
index 85b1b1209..000000000
--- a/user/firefox-esr/webrtc-broken.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-diff -Naur firefox-60.0.orig/media/webrtc/trunk/webrtc/system_wrappers/source/cpu_features_linux.c firefox-60.0/media/webrtc/trunk/webrtc/system_wrappers/source/cpu_features_linux.c
---- firefox-60.0.orig/media/webrtc/trunk/webrtc/system_wrappers/source/cpu_features_linux.c 2018-05-13 17:33:55.266855917 -0700
-+++ firefox-60.0/media/webrtc/trunk/webrtc/system_wrappers/source/cpu_features_linux.c 2018-05-13 20:21:08.158464933 -0700
-@@ -11,7 +11,7 @@
- #ifndef __GLIBC_PREREQ
- #define __GLIBC_PREREQ(a, b) 0
- #endif
--#if __GLIBC_PREREQ(2, 16)
-+#if __linux__
- #include <sys/auxv.h>
- #else
- #include <fcntl.h>
-@@ -29,7 +29,7 @@
- int architecture = 0;
- unsigned long hwcap = 0;
- const char* platform = NULL;
--#if __GLIBC_PREREQ(2, 16)
-+#if __linux__
- hwcap = getauxval(AT_HWCAP);
- platform = (const char*)getauxval(AT_PLATFORM);
- #else
-@@ -53,7 +53,7 @@
- }
- close(fd);
- }
--#endif // __GLIBC_PREREQ(2,16)
-+#endif // __linux__
- #if defined(__aarch64__)
- architecture = 8;
- if ((hwcap & HWCAP_FP) != 0)