aboutsummaryrefslogtreecommitdiffstats
path: root/testing/firefox/fix-webrtc-glibcisms.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2018-05-23 13:03:09 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2018-05-23 13:04:08 +0000
commit1270b6edc7173822bde0f02e009c1cb65ae50698 (patch)
treedbda4447fe04f8f17d37889ccb25398799d044e6 /testing/firefox/fix-webrtc-glibcisms.patch
parent6534855ffe9c130d907c3dd653ab698e2dc0572a (diff)
testing/firefox: upgrade to 60.0.1
Diffstat (limited to 'testing/firefox/fix-webrtc-glibcisms.patch')
-rw-r--r--testing/firefox/fix-webrtc-glibcisms.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/firefox/fix-webrtc-glibcisms.patch b/testing/firefox/fix-webrtc-glibcisms.patch
new file mode 100644
index 00000000000..dc9206b50ec
--- /dev/null
+++ b/testing/firefox/fix-webrtc-glibcisms.patch
@@ -0,0 +1,13 @@
+--- ./media/webrtc/trunk/webrtc/system_wrappers/source/cpu_features_linux.c.orig 2018-05-09 23:48:44.677389171 +0200
++++ ./media/webrtc/trunk/webrtc/system_wrappers/source/cpu_features_linux.c 2018-05-09 23:48:56.254373557 +0200
+@@ -11,7 +11,9 @@
+ #include <stdlib.h>
+ #include <string.h>
+ #include <features.h>
+-#if __GLIBC_PREREQ(2, 16)
++#if !defined(__GLIBC__)
++#include <sys/auxv.h>
++#elif __GLIBC_PREREQ(2, 16)
+ #include <sys/auxv.h>
+ #else
+ #include <fcntl.h>