summaryrefslogtreecommitdiffstats
path: root/recipes-qt/qt5/qtwebengine/chromium/0015-chromium-gcc11-fixes.patch
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2021-04-29 11:18:10 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2021-05-10 12:49:02 +0200
commitc92031e3729d778f0b52d98f6cd6def87139c7b7 (patch)
treedbdf12cccf8106c3ae4c5d38bf064219051a1645 /recipes-qt/qt5/qtwebengine/chromium/0015-chromium-gcc11-fixes.patch
parent9d403addb37fb4ce0529c12c8820ee5152470c33 (diff)
downloadmeta-qt5-c92031e3729d778f0b52d98f6cd6def87139c7b7.tar.gz
qtwebengine: upgrade to latest 5.15 and 87-based, fix build with gcc-11
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'recipes-qt/qt5/qtwebengine/chromium/0015-chromium-gcc11-fixes.patch')
-rw-r--r--recipes-qt/qt5/qtwebengine/chromium/0015-chromium-gcc11-fixes.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0015-chromium-gcc11-fixes.patch b/recipes-qt/qt5/qtwebengine/chromium/0015-chromium-gcc11-fixes.patch
deleted file mode 100644
index 699a809a..00000000
--- a/recipes-qt/qt5/qtwebengine/chromium/0015-chromium-gcc11-fixes.patch
+++ /dev/null
@@ -1,23 +0,0 @@
1Include <limits> header
2
3gcc11 complains
4
5../../../../git/src/3rdparty/chromium/third_party/perfetto/src/trace_processor/containers/string_pool.h:256:34: error: no member named 'numeric_limits' in namespace 'std'
6 PERFETTO_DCHECK(value < std::numeric_limits<uint32_t>::max());
7
8This is because its missing right header which perhaps is included
9implicitly in older compilers
10
11Upstream-Status: Pending
12Signed-off-by: Khem Raj <raj.khem@gmail.com>
13
14--- a/chromium/third_party/perfetto/src/trace_processor/containers/string_pool.h
15+++ b/chromium/third_party/perfetto/src/trace_processor/containers/string_pool.h
16@@ -20,6 +20,7 @@
17 #include <stddef.h>
18 #include <stdint.h>
19
20+#include <limits>
21 #include <unordered_map>
22 #include <vector>
23