aboutsummaryrefslogtreecommitdiffstats
path: root/testing/thunderbird/fix-webrtc-glibcisms.patch
blob: 958f9ef6c184eb1fe49d90f397e0d2797a56b39b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- a/media/webrtc/trunk/webrtc/system_wrappers/source/cpu_features_linux.c	2018-05-09 23:48:44.677389171 +0200
+++ b/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 !__GLIBC__
+#include <sys/auxv.h>
+#elif __GLIBC_PREREQ(2, 16)
 #include <sys/auxv.h>
 #else
 #include <fcntl.h>