summaryrefslogtreecommitdiffstats
path: root/recipes-qt/qt5/qtwebengine/chromium
diff options
context:
space:
mode:
authorMikko Gronoff <mikko.gronoff@qt.io>2019-10-10 09:53:46 +0300
committerMikko Gronoff <mikko.gronoff@qt.io>2019-10-11 10:48:26 +0300
commitbf923061ee01f9fd93bed5550861d4f2ca8b06f1 (patch)
tree47e31095a6ebc4e834c3858e097048f88c8d985d /recipes-qt/qt5/qtwebengine/chromium
parent79a0e938922f85638b578a9ae0f21c8856176e68 (diff)
parent6442c54d10750016083b06a8bc22b9bffc5e26a2 (diff)
downloadmeta-qt5-bf923061ee01f9fd93bed5550861d4f2ca8b06f1.tar.gz
Merge remote-tracking branch 'qtyocto/upstream/master' into 5.13
* upstream/master: 6442c54 qt3d-runtime: update to ogl-runtime v2.4 7bb213b qtvirtualkeyboard: update supported layouts eb63611 qt5-creator: Fix clangformat with clang 9.x 12ea469 qttools: Add CONFIG+=config_clang_done when not building with clang dc502d5 qtwebengine: Fix compile failure with 5.2+ kernel headers 8799d3b qtserialbus: Fix build with 5.2+ kernel headers e8aa2dd qtwebengine: Add pulseaudio support 4d8f350 qtwebengine: Rename jasoncpp to jsoncpp 725c87d qtwayland: do not reference private modules in cmake Qt5WaylandClient a41cd9e qtwayland: remove workaround for missing private headers (QTBUG-71340) Conflicts: recipes-qt/qt5/qtserialbus_git.bb Change-Id: I8f5248fb6f320555a231f59cddeb4c18ff810259
Diffstat (limited to 'recipes-qt/qt5/qtwebengine/chromium')
-rw-r--r--recipes-qt/qt5/qtwebengine/chromium/0007-chromium-fix-build-after-y2038-changes-in-glibc.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0007-chromium-fix-build-after-y2038-changes-in-glibc.patch b/recipes-qt/qt5/qtwebengine/chromium/0007-chromium-fix-build-after-y2038-changes-in-glibc.patch
new file mode 100644
index 00000000..bdab820a
--- /dev/null
+++ b/recipes-qt/qt5/qtwebengine/chromium/0007-chromium-fix-build-after-y2038-changes-in-glibc.patch
@@ -0,0 +1,29 @@
1From: Jiri Slaby <jslaby@suse.cz>
2Date: Thu, 11 Jul 2019 09:35:13 +0200
3Subject: fix build after y2038 changes in glibc
4Patch-mainline: submitted on 2019/07/11
5References: QTBUG-76963
6
7SIOCGSTAMP is defined in linux/sockios.h since kernel 5.2. Include that
8file wherever needed.
9
10Signed-off-by: Jiri Slaby <jslaby@suse.cz>
11---
12Upstream-Status: Pending
13
14 chromium/third_party/webrtc/rtc_base/physical_socket_server.cc | 1 +
15 1 file changed, 1 insertion(+)
16
17--- a/chromium/third_party/webrtc/rtc_base/physical_socket_server.cc
18+++ b/chromium/third_party/webrtc/rtc_base/physical_socket_server.cc
19@@ -67,6 +67,7 @@ typedef void* SockOptArg;
20 #endif // WEBRTC_POSIX
21
22 #if defined(WEBRTC_POSIX) && !defined(WEBRTC_MAC) && !defined(__native_client__)
23+#include <linux/sockios.h>
24
25 int64_t GetSocketRecvTimestamp(int socket) {
26 struct timeval tv_ioctl;
27--
282.21.0
29