aboutsummaryrefslogtreecommitdiffstats
path: root/community/chromium/musl-hacks.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2019-05-06 06:00:51 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2019-08-07 14:40:55 +0000
commit5f276606f194b9b107043dda8d8479a9842f13cb (patch)
tree74189c769c729326ddd8578aee0890aa377422da /community/chromium/musl-hacks.patch
parentec982866ada0790335f5550608772b72f71e69a8 (diff)
downloadaports-5f276606f194b9b107043dda8d8479a9842f13cb.tar.bz2
aports-5f276606f194b9b107043dda8d8479a9842f13cb.tar.xz
community/chromium: upgrade to 76
disabel armhf and armv7 til we sorted out the clang++ problem
Diffstat (limited to 'community/chromium/musl-hacks.patch')
-rw-r--r--community/chromium/musl-hacks.patch15
1 files changed, 13 insertions, 2 deletions
diff --git a/community/chromium/musl-hacks.patch b/community/chromium/musl-hacks.patch
index eff59ae5bc..d7c61a625b 100644
--- a/community/chromium/musl-hacks.patch
+++ b/community/chromium/musl-hacks.patch
@@ -1,5 +1,5 @@
---- base/debug/stack_trace.cc.orig 2018-12-08 14:11:25.303475116 +0100
-+++ base/debug/stack_trace.cc 2018-12-08 18:00:43.874946999 +0100
+--- ./base/debug/stack_trace.cc.orig 2018-12-08 14:11:25.303475116 +0100
++++ ./base/debug/stack_trace.cc 2018-12-08 18:00:43.874946999 +0100
@@ -229,7 +229,7 @@
}
std::string StackTrace::ToStringWithPrefix(const char* prefix_string) const {
@@ -9,3 +9,14 @@
OutputToStreamWithPrefix(&stream, prefix_string);
#endif
return stream.str();
+--- ./net/socket/udp_socket_posix.cc.orig 2019-07-03 13:13:46.034342649 -0400
++++ ./net/socket/udp_socket_posix.cc 2019-07-03 13:23:53.117081909 -0400
+@@ -1194,7 +1194,7 @@
+ msg_iov->push_back({const_cast<char*>(buffer->data()), buffer->length()});
+ msgvec->reserve(buffers.size());
+ for (size_t j = 0; j < buffers.size(); j++)
+- msgvec->push_back({{nullptr, 0, &msg_iov[j], 1, nullptr, 0, 0}, 0});
++ msgvec->push_back({{nullptr, 0, &msg_iov[j], 1, 0, 0, 0}, 0});
+ int result = HANDLE_EINTR(Sendmmsg(fd, &msgvec[0], buffers.size(), 0));
+ SendResult send_result(0, 0, std::move(buffers));
+ if (result < 0) {