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/bad-google-code.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/bad-google-code.patch')
-rw-r--r-- | experimental/thunderbird/bad-google-code.patch | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/experimental/thunderbird/bad-google-code.patch b/experimental/thunderbird/bad-google-code.patch new file mode 100644 index 000000000..7c77a5edc --- /dev/null +++ b/experimental/thunderbird/bad-google-code.patch @@ -0,0 +1,49 @@ +--- thunderbird-60.2.1/toolkit/crashreporter/google-breakpad/src/common/linux/dump_symbols.cc ++++ thunderbird-60.2.1/toolkit/crashreporter/google-breakpad/src/common/linux/dump_symbols.cc +@@ -45,6 +45,7 @@ + #include <sys/mman.h> + #include <sys/stat.h> + #include <unistd.h> ++#include <libgen.h> + + #include <iostream> + #include <set> +--- thunderbird-60.2.1/toolkit/crashreporter/google-breakpad/src/common/stabs_reader.cc ++++ thunderbird-60.2.1/toolkit/crashreporter/google-breakpad/src/common/stabs_reader.cc +@@ -41,6 +41,10 @@ + + #include "common/using_std_string.h" + ++#ifndef N_UNDF ++#define N_UNDF 0 ++#endif ++ + using std::vector; + + namespace google_breakpad { +--- thunderbird-60.2.1/toolkit/crashreporter/google-breakpad/src/common/stabs_reader.h ++++ thunderbird-60.2.1/toolkit/crashreporter/google-breakpad/src/common/stabs_reader.h +@@ -55,7 +55,7 @@ + + #ifdef HAVE_MACH_O_NLIST_H + #include <mach-o/nlist.h> +-#elif defined(HAVE_A_OUT_H) ++#elif 0 + #include <a.out.h> + #endif + +--- thunderbird-60.2.1/toolkit/crashreporter/google-breakpad/src/third_party/lss/linux_syscall_support.h ++++ thunderbird-60.2.1/toolkit/crashreporter/google-breakpad/src/third_party/lss/linux_syscall_support.h +@@ -1134,6 +1134,12 @@ struct kernel_statfs { + #ifndef __NR_fallocate + #define __NR_fallocate 285 + #endif ++ ++#undef __NR_pread ++#define __NR_pread __NR_pread64 ++#undef __NR_pwrite ++#define __NR_pwrite __NR_pwrite64 ++ + /* End of x86-64 definitions */ + #elif defined(__mips__) + #if _MIPS_SIM == _MIPS_SIM_ABI32 |