diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-10-22 23:30:58 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-10-22 23:30:58 +0000 |
commit | daf63c3be016f8177a14acd13ae0ad75482e18a5 (patch) | |
tree | d09ca20d3629d290aeb86baa3bd4f3751c67a301 /experimental/thunderbird/webrtc-broken.patch | |
parent | fd4ce488b375774f8a11f81af831ab075405d64e (diff) | |
download | packages-daf63c3be016f8177a14acd13ae0ad75482e18a5.tar.gz packages-daf63c3be016f8177a14acd13ae0ad75482e18a5.tar.bz2 packages-daf63c3be016f8177a14acd13ae0ad75482e18a5.tar.xz packages-daf63c3be016f8177a14acd13ae0ad75482e18a5.zip |
experimental/thunderbird: is servo's issue a musl one or ppc64 one?
Diffstat (limited to 'experimental/thunderbird/webrtc-broken.patch')
-rw-r--r-- | experimental/thunderbird/webrtc-broken.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/experimental/thunderbird/webrtc-broken.patch b/experimental/thunderbird/webrtc-broken.patch new file mode 100644 index 000000000..593942fef --- /dev/null +++ b/experimental/thunderbird/webrtc-broken.patch @@ -0,0 +1,30 @@ +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 @@ + #include <stdlib.h> + #include <string.h> + #include <features.h> +-#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) |