aboutsummaryrefslogtreecommitdiffstats
path: root/community/qt5-qtwebengine/musl-hacks.patch
diff options
context:
space:
mode:
authorBart Ribbers <bribbers@disroot.org>2020-02-20 16:12:31 +0100
committerLeo <thinkabit.ukim@gmail.com>2020-02-24 19:18:43 -0300
commit65f58742e6e669c7d0f5b23c0764f4f73661980b (patch)
tree76a9004e9c481ced23debc121c304bdc24273ae4 /community/qt5-qtwebengine/musl-hacks.patch
parent76ca77d9ba8ee59f1a761b7d44252958584347bc (diff)
downloadaports-65f58742e6e669c7d0f5b23c0764f4f73661980b.tar.bz2
aports-65f58742e6e669c7d0f5b23c0764f4f73661980b.tar.xz
{community,testing}/qt: upgrade to 5.14.1
Diffstat (limited to 'community/qt5-qtwebengine/musl-hacks.patch')
-rw-r--r--community/qt5-qtwebengine/musl-hacks.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/community/qt5-qtwebengine/musl-hacks.patch b/community/qt5-qtwebengine/musl-hacks.patch
new file mode 100644
index 0000000000..ee82b48d3d
--- /dev/null
+++ b/community/qt5-qtwebengine/musl-hacks.patch
@@ -0,0 +1,13 @@
+diff --git a/src/3rdparty/chromium/net/socket/udp_socket_posix.cc b/src/3rdparty/chromium/net/socket/udp_socket_posix.cc
+index dbc8c5aaf..077bbde33 100644
+--- a/src/3rdparty/chromium/net/socket/udp_socket_posix.cc
++++ b/src/3rdparty/chromium/net/socket/udp_socket_posix.cc
+@@ -1191,7 +1191,7 @@ SendResult UDPSocketPosixSender::InternalSendmmsgBuffers(
+ 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) {