aboutsummaryrefslogtreecommitdiffstats
path: root/community/chromium/musl-fixes-breakpad.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2020-04-20 06:25:55 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2020-04-20 14:35:51 +0000
commit31b7a849b45f82dbe9784f3d6c15dea098af7041 (patch)
tree02e636fa4ad132e6a32ca5d555bb221956957c66 /community/chromium/musl-fixes-breakpad.patch
parent3070ca7ff0d0e5a4417f40cd226896705a9751cc (diff)
downloadaports-31b7a849b45f82dbe9784f3d6c15dea098af7041.tar.bz2
aports-31b7a849b45f82dbe9784f3d6c15dea098af7041.tar.xz
community/chromium: upgrade to 81.0.4044.113
Diffstat (limited to 'community/chromium/musl-fixes-breakpad.patch')
-rw-r--r--community/chromium/musl-fixes-breakpad.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/community/chromium/musl-fixes-breakpad.patch b/community/chromium/musl-fixes-breakpad.patch
index a86535abec..886bde71d0 100644
--- a/community/chromium/musl-fixes-breakpad.patch
+++ b/community/chromium/musl-fixes-breakpad.patch
@@ -29,39 +29,6 @@
#elif defined(__aarch64__)
static void FillCPUContext(RawContextCPU *out, const ucontext_t *uc,
const struct fpsimd_context* fpregs);
---- ./third_party/breakpad/breakpad/src/client/linux/minidump_writer/minidump_writer.h
-+++ ./third_party/breakpad/breakpad/src/client/linux/minidump_writer/minidump_writer.h
-@@ -48,7 +48,7 @@
- #if defined(__aarch64__)
- typedef struct fpsimd_context fpstate_t;
- #elif !defined(__ARM_EABI__) && !defined(__mips__)
--typedef struct _libc_fpstate fpstate_t;
-+typedef struct _fpstate fpstate_t;
- #endif
-
- // These entries store a list of memory regions that the client wants included
---- ./third_party/breakpad/breakpad/src/common/linux/elf_core_dump.h
-+++ ./third_party/breakpad/breakpad/src/common/linux/elf_core_dump.h
-@@ -36,6 +36,7 @@
- #include <elf.h>
- #include <link.h>
- #include <stddef.h>
-+#include <limits.h>
-
- #include "common/memory_range.h"
-
-@@ -51,9 +52,9 @@
- typedef ElfW(Phdr) Phdr;
- typedef ElfW(Word) Word;
- typedef ElfW(Addr) Addr;
--#if __WORDSIZE == 32
-+#if ULONG_MAX == 0xffffffff
- static const int kClass = ELFCLASS32;
--#elif __WORDSIZE == 64
-+#elif ULONG_MAX == 0xffffffffffffffff
- static const int kClass = ELFCLASS64;
- #else
- #error "Unsupported __WORDSIZE for ElfCoreDump."
--- ./third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.cc
+++ ./third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.cc
@@ -490,7 +490,9 @@