diff options
author | Jani Suonpera <jani.suonpera@qt.io> | 2021-01-27 09:21:29 +0200 |
---|---|---|
committer | Jani Suonpera <jani.suonpera@qt.io> | 2021-02-05 14:56:55 +0200 |
commit | a73de388e628a67490cdd7734779d405740b7fa3 (patch) | |
tree | c6410cd0062df9dde1fd02b56232027b7f865815 /recipes-qt/qt5/qtwebengine/chromium/0013-chromium-Add-missing-include-for-C-strncpy.patch | |
parent | 7dfe6ec495c3e56e4fbfb1dba23291589c28f7a7 (diff) | |
download | meta-qt5-a73de388e628a67490cdd7734779d405740b7fa3.tar.gz |
qt5: update submodules for LTS 5.15
- Webengine-chromium branch changed from 83-based to 87-based.
- PACKAGECONFIGs protobuf and jsoncpp are removed because these configurations
has been removed from src/buildtools/configure.json
- DEPENDS nodejs-native added. This mandatory for chromium build.
Task-number: QTBUG-90623
Change-Id: Ic933c88399422941114915afe5baa202850928f4
Reviewed-by: Samuli Piippo <samuli.piippo@qt.io>
Diffstat (limited to 'recipes-qt/qt5/qtwebengine/chromium/0013-chromium-Add-missing-include-for-C-strncpy.patch')
-rw-r--r-- | recipes-qt/qt5/qtwebengine/chromium/0013-chromium-Add-missing-include-for-C-strncpy.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0013-chromium-Add-missing-include-for-C-strncpy.patch b/recipes-qt/qt5/qtwebengine/chromium/0013-chromium-Add-missing-include-for-C-strncpy.patch new file mode 100644 index 00000000..10e924c0 --- /dev/null +++ b/recipes-qt/qt5/qtwebengine/chromium/0013-chromium-Add-missing-include-for-C-strncpy.patch | |||
@@ -0,0 +1,22 @@ | |||
1 | From 5b64a08023887bd4664996175120312e07287f1b Mon Sep 17 00:00:00 2001 | ||
2 | From: Jani Suonpera <jani.suonpera@qt.io> | ||
3 | Date: Thu, 4 Feb 2021 14:30:44 +0200 | ||
4 | Subject: [PATCH] Add missing include for C strncpy | ||
5 | |||
6 | Task-number:QTBUG-90623 | ||
7 | --- | ||
8 | .../mojo/public/cpp/platform/named_platform_channel_posix.cc | 1 + | ||
9 | 1 file changed, 1 insertion(+) | ||
10 | |||
11 | diff --git a/chromium/mojo/public/cpp/platform/named_platform_channel_posix.cc b/chromium/mojo/public/cpp/platform/named_platform_channel_posix.cc | ||
12 | index 9082ac4da59..24b21771d89 100644 | ||
13 | --- a/chromium/mojo/public/cpp/platform/named_platform_channel_posix.cc | ||
14 | +++ b/chromium/mojo/public/cpp/platform/named_platform_channel_posix.cc | ||
15 | @@ -8,6 +8,7 @@ | ||
16 | #include <sys/socket.h> | ||
17 | #include <sys/un.h> | ||
18 | #include <unistd.h> | ||
19 | +#include <cstring> // strncpy | ||
20 | |||
21 | #include "base/files/file_util.h" | ||
22 | #include "base/files/scoped_file.h" | ||