diff options
author | Mikko Gronoff <mikko.gronoff@qt.io> | 2020-04-23 16:03:15 +0300 |
---|---|---|
committer | Mikko Gronoff <mikko.gronoff@qt.io> | 2020-04-23 16:14:34 +0300 |
commit | 8acb105762bd239063f63d3c8ac23b91bddb23c5 (patch) | |
tree | ac7d4ab8a6cb13fea4c30da5ee2d5e71de2d0c2b | |
parent | bfa0b787902fb791bc49e38572ee387a2e9913f0 (diff) | |
parent | d6b6838e55aae46699e4dbdc24c13bc405e94f32 (diff) | |
download | meta-qt5-8acb105762bd239063f63d3c8ac23b91bddb23c5.tar.gz |
Merge remote-tracking branch 'qt/upstream/master' into 5.15
- Several modules are actually newer than beta4 in upstream,
hence the conflicts with SRCREVs.
- Replaced/removed local QPainterPath patches for qwt &
creator with upstream ones.
- Updated the qtwebkit SRCREV to sync with upstream as it
switched to same "5.212" branch as locally already, but
kept the riscv patch
* upstream/master:
d6b6838e qt5: upgrade to 5.15 beta4
05b3e648 qtwebkit: Switch to 5.212 branch
abed512f qt5-creator: Upgrade to 4.12 branch
32c62abe qwt-qt5: fix build with Qt 5.15
44fc90ee gstreamer1.0-plugins-good: Reemove inserting qt5 from packageconfig
Conflicts:
recipes-qt/qt5/nativesdk-qtbase_git.bb
recipes-qt/qt5/qt3d_git.bb
recipes-qt/qt5/qt5-creator_git.bb
recipes-qt/qt5/qt5-git.inc
recipes-qt/qt5/qtbase-native_git.bb
recipes-qt/qt5/qtbase_git.bb
recipes-qt/qt5/qtdeclarative_git.bb
recipes-qt/qt5/qtmultimedia_git.bb
recipes-qt/qt5/qtquick3d_git.bb
recipes-qt/qt5/qttranslations_git.bb
recipes-qt/qt5/qtwayland_git.bb
recipes-qt/qt5/qtwebengine/chromium/0003-chromium-fix-build-with-clang.patch
recipes-qt/qt5/qtwebengine/chromium/0008-chromium-Fix-build-on-32bit-arches-with-64bit-time_t.patch
recipes-qt/qt5/qtwebengine/chromium/0012-chromium-Link-v8-with-libatomic-on-x86.patch
recipes-qt/qt5/qtwebengine_git.bb
recipes-qt/qt5/qtwebkit_git.bb
recipes-qt/qwt/qwt-qt5_6.1.4.bb
Change-Id: Icf6e747da78059c23568ea00ebbe50b28588aa3f
38 files changed, 177 insertions, 445 deletions
diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_%.bbappend b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_%.bbappend deleted file mode 100644 index 50019a29..00000000 --- a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_%.bbappend +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | PACKAGECONFIG_append = " qt5" | ||
diff --git a/recipes-qt/qt5/qt5-creator/0001-clangformat-AllowShortIfStatementsOnASingleLine-is-n.patch b/recipes-qt/qt5/qt5-creator/0001-clangformat-AllowShortIfStatementsOnASingleLine-is-n.patch deleted file mode 100644 index 7338f02b..00000000 --- a/recipes-qt/qt5/qt5-creator/0001-clangformat-AllowShortIfStatementsOnASingleLine-is-n.patch +++ /dev/null | |||
@@ -1,53 +0,0 @@ | |||
1 | From 453c075b67b9d9254bf7331e1e3be287f240a9e0 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Tue, 3 Sep 2019 13:31:12 -0700 | ||
4 | Subject: [PATCH] clangformat: AllowShortIfStatementsOnASingleLine is not | ||
5 | boolean anymore | ||
6 | |||
7 | https://reviews.llvm.org/D59087 has implemented multiple states for AllowShortIfStatementsOnASingleLine | ||
8 | |||
9 | Fixes | ||
10 | ../../../../git/src/plugins/clangformat/clangformatutils.cpp:63:49: error: assigning to 'clang::format::FormatStyle::ShortIfStyle' from incompatible type 'bool' | ||
11 | style.AllowShortIfStatementsOnASingleLine = false; | ||
12 | ^~~~~ | ||
13 | |||
14 | Upstream-Status: Pending | ||
15 | |||
16 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
17 | --- | ||
18 | src/plugins/clangformat/clangformatutils.cpp | 2 +- | ||
19 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
20 | |||
21 | --- a/src/plugins/clangformat/clangformatutils.cpp | ||
22 | +++ b/src/plugins/clangformat/clangformatutils.cpp | ||
23 | @@ -57,10 +57,18 @@ static clang::format::FormatStyle qtcSty | ||
24 | style.AlignOperands = true; | ||
25 | style.AlignTrailingComments = true; | ||
26 | style.AllowAllParametersOfDeclarationOnNextLine = true; | ||
27 | +#if Q_CC_CLANG < 1000 | ||
28 | style.AllowShortBlocksOnASingleLine = false; | ||
29 | +#else | ||
30 | + style.AllowShortBlocksOnASingleLine = FormatStyle::SBS_Never; | ||
31 | +#endif | ||
32 | style.AllowShortCaseLabelsOnASingleLine = false; | ||
33 | style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Inline; | ||
34 | +#if Q_CC_CLANG < 900 | ||
35 | style.AllowShortIfStatementsOnASingleLine = false; | ||
36 | +#else | ||
37 | + style.AllowShortIfStatementsOnASingleLine = FormatStyle::SIS_Never; | ||
38 | +#endif | ||
39 | style.AllowShortLoopsOnASingleLine = false; | ||
40 | style.AlwaysBreakAfterReturnType = FormatStyle::RTBS_None; | ||
41 | style.AlwaysBreakBeforeMultilineStrings = false; | ||
42 | @@ -68,7 +76,11 @@ static clang::format::FormatStyle qtcSty | ||
43 | style.BinPackArguments = false; | ||
44 | style.BinPackParameters = false; | ||
45 | style.BraceWrapping.AfterClass = true; | ||
46 | +#if Q_CC_CLANG < 1000 | ||
47 | style.BraceWrapping.AfterControlStatement = false; | ||
48 | +#else | ||
49 | + style.BraceWrapping.AfterControlStatement = FormatStyle::BWACS_Never; | ||
50 | +#endif | ||
51 | style.BraceWrapping.AfterEnum = false; | ||
52 | style.BraceWrapping.AfterFunction = true; | ||
53 | style.BraceWrapping.AfterNamespace = false; | ||
diff --git a/recipes-qt/qt5/qt5-creator/0002-Fix-QPainterPath-related-compilation-errors-in-Qt-5..patch b/recipes-qt/qt5/qt5-creator/0002-Fix-QPainterPath-related-compilation-errors-in-Qt-5..patch deleted file mode 100644 index aa21ef5e..00000000 --- a/recipes-qt/qt5/qt5-creator/0002-Fix-QPainterPath-related-compilation-errors-in-Qt-5..patch +++ /dev/null | |||
@@ -1,115 +0,0 @@ | |||
1 | From db11c16b977e204c7000ef689452045f85ba98b7 Mon Sep 17 00:00:00 2001 | ||
2 | From: Friedemann Kleint <Friedemann.Kleint@qt.io> | ||
3 | Date: Thu, 12 Mar 2020 09:26:58 +0100 | ||
4 | Subject: [PATCH] Fix QPainterPath-related compilation errors in Qt 5.15 | ||
5 | |||
6 | Some include of QPainterPath was removed in Qt, causing errors like: | ||
7 | |||
8 | easingpane\easinggraph.cpp(258): error C2079: 'path' uses undefined class 'QPainterPath' | ||
9 | easingpane\easinggraph.cpp(275): error C2027: use of undefined type 'QPainterPath' | ||
10 | easingpane\easinggraph.cpp(305): error C2664: 'void QPainter::drawPath(const QPainterPath &)': cannot convert argument 1 from 'int' | ||
11 | to 'const QPainterPath &' | ||
12 | easingpane\easinggraph.cpp(305): note: Reason: cannot convert from 'int' to 'const QPainterPath' | ||
13 | easingpane\easinggraph.cpp(305): note: use of undefined type 'QPainterPath' | ||
14 | ... | ||
15 | |||
16 | Add the missing include statements. | ||
17 | |||
18 | Change-Id: I4f3383cbcec891a52480a683c9c76ed5deee2b2a | ||
19 | Reviewed-by: Eike Ziller <eike.ziller@qt.io> | ||
20 | (cherry picked from commit b8ad0fdae90679b18238f58522058ea9b5934646) | ||
21 | --- | ||
22 | src/libs/modelinglib/qmt/stereotype/shapepaintvisitor.cpp | 2 ++ | ||
23 | src/libs/qmleditorwidgets/easingpane/easingcontextpane.cpp | 1 + | ||
24 | src/libs/qmleditorwidgets/easingpane/easinggraph.cpp | 1 + | ||
25 | src/plugins/coreplugin/fancyactionbar.cpp | 1 + | ||
26 | src/plugins/coreplugin/manhattanstyle.cpp | 1 + | ||
27 | src/plugins/texteditor/texteditor.cpp | 1 + | ||
28 | src/plugins/texteditor/texteditoroverlay.cpp | 1 + | ||
29 | 7 files changed, 8 insertions(+) | ||
30 | |||
31 | diff --git a/src/libs/modelinglib/qmt/stereotype/shapepaintvisitor.cpp b/src/libs/modelinglib/qmt/stereotype/shapepaintvisitor.cpp | ||
32 | index 880835287a..930f8450ad 100644 | ||
33 | --- a/src/libs/modelinglib/qmt/stereotype/shapepaintvisitor.cpp | ||
34 | +++ b/src/libs/modelinglib/qmt/stereotype/shapepaintvisitor.cpp | ||
35 | @@ -27,6 +27,8 @@ | ||
36 | |||
37 | #include "shapes.h" | ||
38 | |||
39 | +#include <QPainterPath> | ||
40 | + | ||
41 | namespace qmt { | ||
42 | |||
43 | ShapePaintVisitor::ShapePaintVisitor(QPainter *painter, const QPointF &scaledOrigin, const QSizeF &originalSize, | ||
44 | diff --git a/src/libs/qmleditorwidgets/easingpane/easingcontextpane.cpp b/src/libs/qmleditorwidgets/easingpane/easingcontextpane.cpp | ||
45 | index d43b458881..ded1b544af 100644 | ||
46 | --- a/src/libs/qmleditorwidgets/easingpane/easingcontextpane.cpp | ||
47 | +++ b/src/libs/qmleditorwidgets/easingpane/easingcontextpane.cpp | ||
48 | @@ -30,6 +30,7 @@ | ||
49 | |||
50 | #include <QGraphicsPixmapItem> | ||
51 | #include <QGraphicsScene> | ||
52 | +#include <QPainterPath> | ||
53 | #include <QPropertyAnimation> | ||
54 | #include <QSequentialAnimationGroup> | ||
55 | |||
56 | diff --git a/src/libs/qmleditorwidgets/easingpane/easinggraph.cpp b/src/libs/qmleditorwidgets/easingpane/easinggraph.cpp | ||
57 | index 4163569c04..e8360e0db6 100644 | ||
58 | --- a/src/libs/qmleditorwidgets/easingpane/easinggraph.cpp | ||
59 | +++ b/src/libs/qmleditorwidgets/easingpane/easinggraph.cpp | ||
60 | @@ -26,6 +26,7 @@ | ||
61 | #include "easinggraph.h" | ||
62 | |||
63 | #include <QPainter> | ||
64 | +#include <QPainterPath> | ||
65 | #include <QStyleOptionGraphicsItem> | ||
66 | #include <math.h> | ||
67 | |||
68 | diff --git a/src/plugins/coreplugin/fancyactionbar.cpp b/src/plugins/coreplugin/fancyactionbar.cpp | ||
69 | index 8d496ea3d2..72875823a2 100644 | ||
70 | --- a/src/plugins/coreplugin/fancyactionbar.cpp | ||
71 | +++ b/src/plugins/coreplugin/fancyactionbar.cpp | ||
72 | @@ -38,6 +38,7 @@ | ||
73 | #include <QEvent> | ||
74 | #include <QMouseEvent> | ||
75 | #include <QPainter> | ||
76 | +#include <QPainterPath> | ||
77 | #include <QPixmapCache> | ||
78 | #include <QPropertyAnimation> | ||
79 | #include <QStyle> | ||
80 | diff --git a/src/plugins/coreplugin/manhattanstyle.cpp b/src/plugins/coreplugin/manhattanstyle.cpp | ||
81 | index 709dcf62aa..156cac322e 100644 | ||
82 | --- a/src/plugins/coreplugin/manhattanstyle.cpp | ||
83 | +++ b/src/plugins/coreplugin/manhattanstyle.cpp | ||
84 | @@ -43,6 +43,7 @@ | ||
85 | #include <QLineEdit> | ||
86 | #include <QMenuBar> | ||
87 | #include <QPainter> | ||
88 | +#include <QPainterPath> | ||
89 | #include <QPixmap> | ||
90 | #include <QStatusBar> | ||
91 | #include <QStyleFactory> | ||
92 | diff --git a/src/plugins/texteditor/texteditor.cpp b/src/plugins/texteditor/texteditor.cpp | ||
93 | index 59926e31ea..576dea22d8 100644 | ||
94 | --- a/src/plugins/texteditor/texteditor.cpp | ||
95 | +++ b/src/plugins/texteditor/texteditor.cpp | ||
96 | @@ -98,6 +98,7 @@ | ||
97 | #include <QMessageBox> | ||
98 | #include <QMimeData> | ||
99 | #include <QPainter> | ||
100 | +#include <QPainterPath> | ||
101 | #include <QPrintDialog> | ||
102 | #include <QPrinter> | ||
103 | #include <QPropertyAnimation> | ||
104 | diff --git a/src/plugins/texteditor/texteditoroverlay.cpp b/src/plugins/texteditor/texteditoroverlay.cpp | ||
105 | index a33ca13810..431045f1db 100644 | ||
106 | --- a/src/plugins/texteditor/texteditoroverlay.cpp | ||
107 | +++ b/src/plugins/texteditor/texteditoroverlay.cpp | ||
108 | @@ -30,6 +30,7 @@ | ||
109 | #include <QDebug> | ||
110 | #include <QMap> | ||
111 | #include <QPainter> | ||
112 | +#include <QPainterPath> | ||
113 | #include <QTextBlock> | ||
114 | |||
115 | #include <algorithm> | ||
diff --git a/recipes-qt/qt5/qt5-creator_git.bb b/recipes-qt/qt5/qt5-creator_git.bb index e7cbfef8..000e135e 100644 --- a/recipes-qt/qt5/qt5-creator_git.bb +++ b/recipes-qt/qt5/qt5-creator_git.bb | |||
@@ -18,15 +18,13 @@ DEPENDS += "qtbase qtscript qtxmlpatterns qtx11extras qtdeclarative qttools qtto | |||
18 | DEPENDS_append_toolchain-clang = " clang llvm-common" | 18 | DEPENDS_append_toolchain-clang = " clang llvm-common" |
19 | DEPENDS_append_libc-musl = " libexecinfo" | 19 | DEPENDS_append_libc-musl = " libexecinfo" |
20 | 20 | ||
21 | SRCREV = "8181363fa90eb651591bf71e1a840e1c998429f4" | 21 | SRCREV = "9e057a55368286058023510efc328f68250ecb5e" |
22 | PV = "4.9.2+git${SRCPV}" | 22 | PV = "4.12.0+git${SRCPV}" |
23 | 23 | ||
24 | # Patches from https://github.com/meta-qt5/qtcreator/commits/b4.9.2 | 24 | # Patches from https://github.com/meta-qt5/qtcreator/commits/b4.9.2 |
25 | # 4.9.2.meta-qt5.1 | 25 | # 4.9.2.meta-qt5.1 |
26 | SRC_URI = " \ | 26 | SRC_URI = " \ |
27 | git://code.qt.io/qt-creator/qt-creator.git;branch=4.9 \ | 27 | git://code.qt.io/qt-creator/qt-creator.git;branch=4.12 \ |
28 | file://0001-clangformat-AllowShortIfStatementsOnASingleLine-is-n.patch \ | ||
29 | file://0002-Fix-QPainterPath-related-compilation-errors-in-Qt-5..patch \ | ||
30 | " | 28 | " |
31 | SRC_URI_append_libc-musl = " file://0001-Link-with-libexecinfo-on-musl.patch" | 29 | SRC_URI_append_libc-musl = " file://0001-Link-with-libexecinfo-on-musl.patch" |
32 | 30 | ||
diff --git a/recipes-qt/qt5/qtwebengine/0001-Force-host-toolchain-configuration.patch b/recipes-qt/qt5/qtwebengine/0001-Force-host-toolchain-configuration.patch index c3597eaf..9b8ddef0 100644 --- a/recipes-qt/qt5/qtwebengine/0001-Force-host-toolchain-configuration.patch +++ b/recipes-qt/qt5/qtwebengine/0001-Force-host-toolchain-configuration.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From e4a6ca9bf08383ec3c271746edc9e970f4cd2412 Mon Sep 17 00:00:00 2001 | 1 | From 4575335a6a8b0727363afa03336c1762a340d7cf Mon Sep 17 00:00:00 2001 |
2 | From: Samuli Piippo <samuli.piippo@qt.io> | 2 | From: Samuli Piippo <samuli.piippo@qt.io> |
3 | Date: Wed, 15 Mar 2017 13:53:28 +0200 | 3 | Date: Wed, 15 Mar 2017 13:53:28 +0200 |
4 | Subject: [PATCH] Force host toolchain configuration | 4 | Subject: [PATCH] Force host toolchain configuration |
@@ -19,7 +19,7 @@ Signed-off-by: Samuli Piippo <samuli.piippo@qt.io> | |||
19 | 3 files changed, 10 insertions(+), 10 deletions(-) | 19 | 3 files changed, 10 insertions(+), 10 deletions(-) |
20 | 20 | ||
21 | diff --git a/src/buildtools/config/linux.pri b/src/buildtools/config/linux.pri | 21 | diff --git a/src/buildtools/config/linux.pri b/src/buildtools/config/linux.pri |
22 | index 2aa345c2..a55dc128 100644 | 22 | index c02af390..98af1d68 100644 |
23 | --- a/src/buildtools/config/linux.pri | 23 | --- a/src/buildtools/config/linux.pri |
24 | +++ b/src/buildtools/config/linux.pri | 24 | +++ b/src/buildtools/config/linux.pri |
25 | @@ -122,7 +122,7 @@ contains(QT_ARCH, "mips") { | 25 | @@ -122,7 +122,7 @@ contains(QT_ARCH, "mips") { |
diff --git a/recipes-qt/qt5/qtwebengine/0002-musl-don-t-use-pvalloc-as-it-s-not-available-on-musl.patch b/recipes-qt/qt5/qtwebengine/0002-musl-don-t-use-pvalloc-as-it-s-not-available-on-musl.patch index 57c0afa2..3470e9c9 100644 --- a/recipes-qt/qt5/qtwebengine/0002-musl-don-t-use-pvalloc-as-it-s-not-available-on-musl.patch +++ b/recipes-qt/qt5/qtwebengine/0002-musl-don-t-use-pvalloc-as-it-s-not-available-on-musl.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From e4f1790fd91b5d214b5a524575d815530a587ac2 Mon Sep 17 00:00:00 2001 | 1 | From ee0700753d1fc3001da7df9e91d7478b60598e96 Mon Sep 17 00:00:00 2001 |
2 | From: Samuli Piippo <samuli.piippo@qt.io> | 2 | From: Samuli Piippo <samuli.piippo@qt.io> |
3 | Date: Tue, 12 Dec 2017 16:06:14 +0200 | 3 | Date: Tue, 12 Dec 2017 16:06:14 +0200 |
4 | Subject: [PATCH] musl: don't use pvalloc as it's not available on musl | 4 | Subject: [PATCH] musl: don't use pvalloc as it's not available on musl |
diff --git a/recipes-qt/qt5/qtwebengine/0003-musl-link-against-libexecinfo.patch b/recipes-qt/qt5/qtwebengine/0003-musl-link-against-libexecinfo.patch index baf62462..058a90fc 100644 --- a/recipes-qt/qt5/qtwebengine/0003-musl-link-against-libexecinfo.patch +++ b/recipes-qt/qt5/qtwebengine/0003-musl-link-against-libexecinfo.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 15a79d185bf9b275ae0eb09041758021a178774f Mon Sep 17 00:00:00 2001 | 1 | From 9a99864ceed71eebcbfbbcbc90b877a9ad505b20 Mon Sep 17 00:00:00 2001 |
2 | From: Samuli Piippo <samuli.piippo@qt.io> | 2 | From: Samuli Piippo <samuli.piippo@qt.io> |
3 | Date: Thu, 14 Dec 2017 11:28:10 +0200 | 3 | Date: Thu, 14 Dec 2017 11:28:10 +0200 |
4 | Subject: [PATCH] musl: link against libexecinfo | 4 | Subject: [PATCH] musl: link against libexecinfo |
diff --git a/recipes-qt/qt5/qtwebengine/0004-mkspecs-Allow-builds-with-libc-glibc.patch b/recipes-qt/qt5/qtwebengine/0004-mkspecs-Allow-builds-with-libc-glibc.patch index e7377cfc..0f0f534d 100644 --- a/recipes-qt/qt5/qtwebengine/0004-mkspecs-Allow-builds-with-libc-glibc.patch +++ b/recipes-qt/qt5/qtwebengine/0004-mkspecs-Allow-builds-with-libc-glibc.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From e6a216265bf68f600682c7d27a2542c4f385e085 Mon Sep 17 00:00:00 2001 | 1 | From 947bba762706f6212b6e44e15364af129c49f8c5 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Tue, 12 Nov 2019 19:53:59 -0800 | 3 | Date: Tue, 12 Nov 2019 19:53:59 -0800 |
4 | Subject: [PATCH] mkspecs: Allow builds with libc != glibc | 4 | Subject: [PATCH] mkspecs: Allow builds with libc != glibc |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0001-chromium-workaround-for-too-long-.rps-file-name.patch b/recipes-qt/qt5/qtwebengine/chromium/0001-chromium-workaround-for-too-long-.rps-file-name.patch index 8e008832..7916d99c 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0001-chromium-workaround-for-too-long-.rps-file-name.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0001-chromium-workaround-for-too-long-.rps-file-name.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From af441fca2705c866fe9d6699dd2ddc388a5412e2 Mon Sep 17 00:00:00 2001 | 1 | From d6b2b2a9cf25009f13fb2bef5eebfdeef471bbb6 Mon Sep 17 00:00:00 2001 |
2 | From: Samuli Piippo <samuli.piippo@qt.io> | 2 | From: Samuli Piippo <samuli.piippo@qt.io> |
3 | Date: Thu, 30 Mar 2017 11:37:24 +0300 | 3 | Date: Thu, 30 Mar 2017 11:37:24 +0300 |
4 | Subject: [PATCH] chromium: workaround for too long .rps file name | 4 | Subject: [PATCH] chromium: workaround for too long .rps file name |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0002-chromium-stack-pointer-clobber.patch b/recipes-qt/qt5/qtwebengine/chromium/0002-chromium-stack-pointer-clobber.patch index 3c211ca4..fd9301a8 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0002-chromium-stack-pointer-clobber.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0002-chromium-stack-pointer-clobber.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 1f4c9aaaa625ed6c4a84eed9bed143de056d3535 Mon Sep 17 00:00:00 2001 | 1 | From 18af47b85fb13b6e9f1d88a8beb3c01745c75ebb Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Sun, 23 Dec 2018 16:58:04 -0800 | 3 | Date: Sun, 23 Dec 2018 16:58:04 -0800 |
4 | Subject: [PATCH] chromium: stack pointer clobber | 4 | Subject: [PATCH] chromium: stack pointer clobber |
@@ -17,7 +17,7 @@ Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||
17 | 1 file changed, 3 insertions(+), 3 deletions(-) | 17 | 1 file changed, 3 insertions(+), 3 deletions(-) |
18 | 18 | ||
19 | diff --git a/chromium/third_party/lss/linux_syscall_support.h b/chromium/third_party/lss/linux_syscall_support.h | 19 | diff --git a/chromium/third_party/lss/linux_syscall_support.h b/chromium/third_party/lss/linux_syscall_support.h |
20 | index 9276f5627af..622cc1fbf7e 100644 | 20 | index 8e0cc385792..d2bd9df4d40 100644 |
21 | --- a/chromium/third_party/lss/linux_syscall_support.h | 21 | --- a/chromium/third_party/lss/linux_syscall_support.h |
22 | +++ b/chromium/third_party/lss/linux_syscall_support.h | 22 | +++ b/chromium/third_party/lss/linux_syscall_support.h |
23 | @@ -2012,7 +2012,7 @@ struct kernel_statfs { | 23 | @@ -2012,7 +2012,7 @@ struct kernel_statfs { |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0003-chromium-fix-build-with-clang.patch b/recipes-qt/qt5/qtwebengine/chromium/0003-chromium-fix-build-with-clang.patch index 00241951..eeb3f640 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0003-chromium-fix-build-with-clang.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0003-chromium-fix-build-with-clang.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 9329f596101b65b166e635f04f617b01f955697f Mon Sep 17 00:00:00 2001 | 1 | From dd5033e3b9a425b3435629d9e8901b8445119fdb Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Sat, 2 Feb 2019 19:28:59 -0800 | 3 | Date: Sat, 2 Feb 2019 19:28:59 -0800 |
4 | Subject: [PATCH] chromium: fix build with clang | 4 | Subject: [PATCH] chromium: fix build with clang |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0004-chromium-Exclude-CRC32-for-32bit-arm.patch b/recipes-qt/qt5/qtwebengine/chromium/0004-chromium-Exclude-CRC32-for-32bit-arm.patch index bed1c564..546fcac6 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0004-chromium-Exclude-CRC32-for-32bit-arm.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0004-chromium-Exclude-CRC32-for-32bit-arm.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From ab04dfceba3db888c5e8d6416668850dc0bb677e Mon Sep 17 00:00:00 2001 | 1 | From 66d28dccd67ca1095804ef1293d499fd5a2d1d6a Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Tue, 5 Feb 2019 14:32:20 -0800 | 3 | Date: Tue, 5 Feb 2019 14:32:20 -0800 |
4 | Subject: [PATCH] chromium: Exclude CRC32 for 32bit arm | 4 | Subject: [PATCH] chromium: Exclude CRC32 for 32bit arm |
@@ -15,10 +15,10 @@ Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||
15 | 1 file changed, 4 insertions(+), 1 deletion(-) | 15 | 1 file changed, 4 insertions(+), 1 deletion(-) |
16 | 16 | ||
17 | diff --git a/chromium/third_party/zlib/BUILD.gn b/chromium/third_party/zlib/BUILD.gn | 17 | diff --git a/chromium/third_party/zlib/BUILD.gn b/chromium/third_party/zlib/BUILD.gn |
18 | index cd9fed01e5a..42070dd80fa 100644 | 18 | index 4422fecc0c8..1b398ad981a 100644 |
19 | --- a/chromium/third_party/zlib/BUILD.gn | 19 | --- a/chromium/third_party/zlib/BUILD.gn |
20 | +++ b/chromium/third_party/zlib/BUILD.gn | 20 | +++ b/chromium/third_party/zlib/BUILD.gn |
21 | @@ -78,8 +78,11 @@ if (use_arm_neon_optimizations) { | 21 | @@ -80,8 +80,11 @@ if (use_arm_neon_optimizations) { |
22 | # Disabled for iPhone, as described in DDI0487C_a_armv8_arm: | 22 | # Disabled for iPhone, as described in DDI0487C_a_armv8_arm: |
23 | # "All implementations of the ARMv8.1 architecture are required to | 23 | # "All implementations of the ARMv8.1 architecture are required to |
24 | # implement the CRC32* instructions. These are optional in ARMv8.0." | 24 | # implement the CRC32* instructions. These are optional in ARMv8.0." |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0005-chromium-Do-not-try-to-set-the-guessed-values-for-ma.patch b/recipes-qt/qt5/qtwebengine/chromium/0005-chromium-Do-not-try-to-set-the-guessed-values-for-ma.patch index 0e8e3bf4..4d95414e 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0005-chromium-Do-not-try-to-set-the-guessed-values-for-ma.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0005-chromium-Do-not-try-to-set-the-guessed-values-for-ma.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 097b6df14e56a9bd800a277d65e117fec96372a0 Mon Sep 17 00:00:00 2001 | 1 | From c820f61ac2e254758e863175423be6387907df81 Mon Sep 17 00:00:00 2001 |
2 | From: Johannes Pointner <johannes.pointner@br-automation.com> | 2 | From: Johannes Pointner <johannes.pointner@br-automation.com> |
3 | Date: Fri, 3 May 2019 09:12:38 +0200 | 3 | Date: Fri, 3 May 2019 09:12:38 +0200 |
4 | Subject: [PATCH] chromium: Do not try to set the guessed values for | 4 | Subject: [PATCH] chromium: Do not try to set the guessed values for |
@@ -17,10 +17,10 @@ Signed-off-by: Johannes Pointner <johannes.pointner@br-automation.com> | |||
17 | 1 file changed, 9 deletions(-) | 17 | 1 file changed, 9 deletions(-) |
18 | 18 | ||
19 | diff --git a/chromium/build/config/compiler/BUILD.gn b/chromium/build/config/compiler/BUILD.gn | 19 | diff --git a/chromium/build/config/compiler/BUILD.gn b/chromium/build/config/compiler/BUILD.gn |
20 | index f5ac335af90..70b352f1ed1 100644 | 20 | index 13d71d04030..3ebcf1ddbc3 100644 |
21 | --- a/chromium/build/config/compiler/BUILD.gn | 21 | --- a/chromium/build/config/compiler/BUILD.gn |
22 | +++ b/chromium/build/config/compiler/BUILD.gn | 22 | +++ b/chromium/build/config/compiler/BUILD.gn |
23 | @@ -775,15 +775,6 @@ config("compiler_cpu_abi") { | 23 | @@ -780,15 +780,6 @@ config("compiler_cpu_abi") { |
24 | } else if (current_cpu == "arm") { | 24 | } else if (current_cpu == "arm") { |
25 | if (is_clang && !is_android && !is_nacl) { | 25 | if (is_clang && !is_android && !is_nacl) { |
26 | } | 26 | } |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0006-chromium-aarch64-skia-build-fix.patch b/recipes-qt/qt5/qtwebengine/chromium/0006-chromium-aarch64-skia-build-fix.patch index 6884d101..851d73ae 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0006-chromium-aarch64-skia-build-fix.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0006-chromium-aarch64-skia-build-fix.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From dcb8f604a55c9d255102b8939dae1d5464398892 Mon Sep 17 00:00:00 2001 | 1 | From 98af1c4ce180f029e6fa1a1dfdf438296eb7dae2 Mon Sep 17 00:00:00 2001 |
2 | From: Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> | 2 | From: Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
3 | Date: Thu, 8 Mar 2018 15:39:55 +0100 | 3 | Date: Thu, 8 Mar 2018 15:39:55 +0100 |
4 | Subject: [PATCH] chromium: aarch64 skia build fix | 4 | Subject: [PATCH] chromium: aarch64 skia build fix |
@@ -28,7 +28,7 @@ Signed-off-by: Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> | |||
28 | 1 file changed, 2 insertions(+), 15 deletions(-) | 28 | 1 file changed, 2 insertions(+), 15 deletions(-) |
29 | 29 | ||
30 | diff --git a/chromium/third_party/skia/src/opts/SkRasterPipeline_opts.h b/chromium/third_party/skia/src/opts/SkRasterPipeline_opts.h | 30 | diff --git a/chromium/third_party/skia/src/opts/SkRasterPipeline_opts.h b/chromium/third_party/skia/src/opts/SkRasterPipeline_opts.h |
31 | index 7322807095f..0d6f981e895 100644 | 31 | index 0d610ccfe33..c1844b61168 100644 |
32 | --- a/chromium/third_party/skia/src/opts/SkRasterPipeline_opts.h | 32 | --- a/chromium/third_party/skia/src/opts/SkRasterPipeline_opts.h |
33 | +++ b/chromium/third_party/skia/src/opts/SkRasterPipeline_opts.h | 33 | +++ b/chromium/third_party/skia/src/opts/SkRasterPipeline_opts.h |
34 | @@ -986,13 +986,7 @@ SI F approx_powf(F x, F y) { | 34 | @@ -986,13 +986,7 @@ SI F approx_powf(F x, F y) { |
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 index 507f8b8b..3220ae9d 100644 --- 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 | |||
@@ -1,4 +1,4 @@ | |||
1 | From da4adf97a2ee92a058f6f04a406d6447d05a657a Mon Sep 17 00:00:00 2001 | 1 | From 3ef0d63778bdafca66017a6d1d5599f5c92f21b3 Mon Sep 17 00:00:00 2001 |
2 | From: Jiri Slaby <jslaby@suse.cz> | 2 | From: Jiri Slaby <jslaby@suse.cz> |
3 | Date: Thu, 11 Jul 2019 09:35:13 +0200 | 3 | Date: Thu, 11 Jul 2019 09:35:13 +0200 |
4 | Subject: [PATCH] chromium: fix build after y2038 changes in glibc | 4 | Subject: [PATCH] chromium: fix build after y2038 changes in glibc |
@@ -15,7 +15,7 @@ Upstream-Status: Pending | |||
15 | 1 file changed, 1 insertion(+) | 15 | 1 file changed, 1 insertion(+) |
16 | 16 | ||
17 | diff --git a/chromium/third_party/webrtc/rtc_base/physical_socket_server.cc b/chromium/third_party/webrtc/rtc_base/physical_socket_server.cc | 17 | diff --git a/chromium/third_party/webrtc/rtc_base/physical_socket_server.cc b/chromium/third_party/webrtc/rtc_base/physical_socket_server.cc |
18 | index c1d6d26acc6..6de81b751dd 100644 | 18 | index ead4e57dc15..7ba975e660a 100644 |
19 | --- a/chromium/third_party/webrtc/rtc_base/physical_socket_server.cc | 19 | --- a/chromium/third_party/webrtc/rtc_base/physical_socket_server.cc |
20 | +++ b/chromium/third_party/webrtc/rtc_base/physical_socket_server.cc | 20 | +++ b/chromium/third_party/webrtc/rtc_base/physical_socket_server.cc |
21 | @@ -71,6 +71,7 @@ typedef void* SockOptArg; | 21 | @@ -71,6 +71,7 @@ typedef void* SockOptArg; |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0008-chromium-Fix-build-on-32bit-arches-with-64bit-time_t.patch b/recipes-qt/qt5/qtwebengine/chromium/0008-chromium-Fix-build-on-32bit-arches-with-64bit-time_t.patch index 8bf8eee0..0189a7ec 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0008-chromium-Fix-build-on-32bit-arches-with-64bit-time_t.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0008-chromium-Fix-build-on-32bit-arches-with-64bit-time_t.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From ac2c4d67820f7d571b2b6a2b64fcb145aabb3cec Mon Sep 17 00:00:00 2001 | 1 | From 172ab111e6d2626780bb4fb22e4c4e74106a802e Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Sat, 30 Nov 2019 10:07:43 -0800 | 3 | Date: Sat, 30 Nov 2019 10:07:43 -0800 |
4 | Subject: [PATCH] chromium: Fix build on 32bit arches with 64bit time_t | 4 | Subject: [PATCH] chromium: Fix build on 32bit arches with 64bit time_t |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0009-chromium-Include-cstddef-for-size_t-definition.patch b/recipes-qt/qt5/qtwebengine/chromium/0009-chromium-Include-cstddef-for-size_t-definition.patch index 9f8caba7..e494e061 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0009-chromium-Include-cstddef-for-size_t-definition.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0009-chromium-Include-cstddef-for-size_t-definition.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 9a4797b32a3a3014bb9cd9811a755185a738b59b Mon Sep 17 00:00:00 2001 | 1 | From e8f23ce32baf1e0d9c2249e50c949c9cd86095e0 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Wed, 25 Dec 2019 15:41:16 -0800 | 3 | Date: Wed, 25 Dec 2019 15:41:16 -0800 |
4 | Subject: [PATCH] chromium: Include cstddef for size_t definition | 4 | Subject: [PATCH] chromium: Include cstddef for size_t definition |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0010-chromium-Move-CharAllocator-definition-to-a-header-f.patch b/recipes-qt/qt5/qtwebengine/chromium/0010-chromium-Move-CharAllocator-definition-to-a-header-f.patch index c2a0338c..b64fd9a3 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0010-chromium-Move-CharAllocator-definition-to-a-header-f.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0010-chromium-Move-CharAllocator-definition-to-a-header-f.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 046704d6ac338b548a85dc1f7af5810276175a9f Mon Sep 17 00:00:00 2001 | 1 | From 6211643cff8c828be75f6504ec16246f8746add4 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Thu, 2 Jan 2020 17:13:55 -0800 | 3 | Date: Thu, 2 Jan 2020 17:13:55 -0800 |
4 | Subject: [PATCH] chromium: Move CharAllocator definition to a header file | 4 | Subject: [PATCH] chromium: Move CharAllocator definition to a header file |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0011-chromium-Include-cstddef-and-cstdint.patch b/recipes-qt/qt5/qtwebengine/chromium/0011-chromium-Include-cstddef-and-cstdint.patch index fa382f9d..d97e9bd7 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0011-chromium-Include-cstddef-and-cstdint.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0011-chromium-Include-cstddef-and-cstdint.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 905c5b699f97105029a498096b3b6b3c8736cfeb Mon Sep 17 00:00:00 2001 | 1 | From 75d5b91b202dc2f5ff380cc36fdb9ac50f6c80ca Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Wed, 15 Jan 2020 16:53:46 -0800 | 3 | Date: Wed, 15 Jan 2020 16:53:46 -0800 |
4 | Subject: [PATCH] chromium: Include <cstddef> and <cstdint> | 4 | Subject: [PATCH] chromium: Include <cstddef> and <cstdint> |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0012-chromium-Link-v8-with-libatomic-on-x86.patch b/recipes-qt/qt5/qtwebengine/chromium/0012-chromium-Link-v8-with-libatomic-on-x86.patch index fc95edd7..a5b0ec6c 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0012-chromium-Link-v8-with-libatomic-on-x86.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0012-chromium-Link-v8-with-libatomic-on-x86.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From c00840448ba1df98a8e9d831bc3ddb795cf37a98 Mon Sep 17 00:00:00 2001 | 1 | From 7a7008c0705cdea1acdb77eb51dd98003b15f7c4 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Sat, 1 Feb 2020 12:17:23 -0800 | 3 | Date: Sat, 1 Feb 2020 12:17:23 -0800 |
4 | Subject: [PATCH] chromium: Link v8 with libatomic on x86 | 4 | Subject: [PATCH] chromium: Link v8 with libatomic on x86 |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0013-chromium-musl-sandbox-Define-TEMP_FAILURE_RETRY-if-n.patch b/recipes-qt/qt5/qtwebengine/chromium/0013-chromium-musl-sandbox-Define-TEMP_FAILURE_RETRY-if-n.patch index 0e5b2b22..90700798 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0013-chromium-musl-sandbox-Define-TEMP_FAILURE_RETRY-if-n.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0013-chromium-musl-sandbox-Define-TEMP_FAILURE_RETRY-if-n.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From fbd1beb51ff1da1fba180f7f0ca239975d47276b Mon Sep 17 00:00:00 2001 | 1 | From 85dc2559eab2d6f02c0e09bf5895af4668239294 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Fri, 7 Jul 2017 14:01:12 -0700 | 3 | Date: Fri, 7 Jul 2017 14:01:12 -0700 |
4 | Subject: [PATCH] chromium: musl: sandbox: Define TEMP_FAILURE_RETRY if not | 4 | Subject: [PATCH] chromium: musl: sandbox: Define TEMP_FAILURE_RETRY if not |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0014-chromium-musl-Avoid-mallinfo-APIs-on-non-glibc-linux.patch b/recipes-qt/qt5/qtwebengine/chromium/0014-chromium-musl-Avoid-mallinfo-APIs-on-non-glibc-linux.patch index ef12eec3..59ea43ab 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0014-chromium-musl-Avoid-mallinfo-APIs-on-non-glibc-linux.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0014-chromium-musl-Avoid-mallinfo-APIs-on-non-glibc-linux.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From b941a200af8547946255c383b29c3f7b68598a75 Mon Sep 17 00:00:00 2001 | 1 | From 06ade5afbcb37a77d8488291f812cc9049fdb55e Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Fri, 7 Jul 2017 14:09:06 -0700 | 3 | Date: Fri, 7 Jul 2017 14:09:06 -0700 |
4 | Subject: [PATCH] chromium: musl: Avoid mallinfo() APIs on non-glibc/linux | 4 | Subject: [PATCH] chromium: musl: Avoid mallinfo() APIs on non-glibc/linux |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0015-chromium-musl-include-fcntl.h-for-loff_t.patch b/recipes-qt/qt5/qtwebengine/chromium/0015-chromium-musl-include-fcntl.h-for-loff_t.patch index 3de13d9a..3fc011e2 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0015-chromium-musl-include-fcntl.h-for-loff_t.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0015-chromium-musl-include-fcntl.h-for-loff_t.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 35c208fa2c7f8f189b8125b16fca8356d88920a7 Mon Sep 17 00:00:00 2001 | 1 | From a4ce19d536f36de6f2065bb8bed6aa451a466664 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Fri, 7 Jul 2017 14:37:49 -0700 | 3 | Date: Fri, 7 Jul 2017 14:37:49 -0700 |
4 | Subject: [PATCH] chromium: musl: include fcntl.h for loff_t | 4 | Subject: [PATCH] chromium: musl: include fcntl.h for loff_t |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0016-chromium-musl-use-off64_t-instead-of-the-internal-__.patch b/recipes-qt/qt5/qtwebengine/chromium/0016-chromium-musl-use-off64_t-instead-of-the-internal-__.patch index 9308ef78..2d433807 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0016-chromium-musl-use-off64_t-instead-of-the-internal-__.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0016-chromium-musl-use-off64_t-instead-of-the-internal-__.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 5134d082447b67b2459ee1e84f4aa2ee3937b19a Mon Sep 17 00:00:00 2001 | 1 | From 4ac8cae0c6c23b1d64c405a0c3919465a82c6b47 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Fri, 7 Jul 2017 14:38:37 -0700 | 3 | Date: Fri, 7 Jul 2017 14:38:37 -0700 |
4 | Subject: [PATCH] chromium: musl: use off64_t instead of the internal __off64_t | 4 | Subject: [PATCH] chromium: musl: use off64_t instead of the internal __off64_t |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0017-chromium-musl-linux-glibc-make-the-distinction.patch b/recipes-qt/qt5/qtwebengine/chromium/0017-chromium-musl-linux-glibc-make-the-distinction.patch index c5b4b457..ae5d18ea 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0017-chromium-musl-linux-glibc-make-the-distinction.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0017-chromium-musl-linux-glibc-make-the-distinction.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From b80a61e044cd4cca307cbe706684e7136fd79601 Mon Sep 17 00:00:00 2001 | 1 | From 9819554c2d70a95d9cd418349baa076c10cb5d76 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Fri, 7 Jul 2017 14:54:38 -0700 | 3 | Date: Fri, 7 Jul 2017 14:54:38 -0700 |
4 | Subject: [PATCH] chromium: musl: linux != glibc, make the distinction | 4 | Subject: [PATCH] chromium: musl: linux != glibc, make the distinction |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0018-chromium-musl-allocator-Do-not-include-glibc_weak_sy.patch b/recipes-qt/qt5/qtwebengine/chromium/0018-chromium-musl-allocator-Do-not-include-glibc_weak_sy.patch index 3e2c8ddd..2d8839de 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0018-chromium-musl-allocator-Do-not-include-glibc_weak_sy.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0018-chromium-musl-allocator-Do-not-include-glibc_weak_sy.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 854c9b6e21e2afaeb427c32ba57eee870f45e817 Mon Sep 17 00:00:00 2001 | 1 | From c7dcc21ee04718b6852af0ca161451c0d35f3cbc Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Fri, 7 Jul 2017 15:09:02 -0700 | 3 | Date: Fri, 7 Jul 2017 15:09:02 -0700 |
4 | Subject: [PATCH] chromium: musl: allocator: Do not include glibc_weak_symbols | 4 | Subject: [PATCH] chromium: musl: allocator: Do not include glibc_weak_symbols |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0019-chromium-musl-Use-correct-member-name-__si_fields-fr.patch b/recipes-qt/qt5/qtwebengine/chromium/0019-chromium-musl-Use-correct-member-name-__si_fields-fr.patch index 1236555d..c1da92de 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0019-chromium-musl-Use-correct-member-name-__si_fields-fr.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0019-chromium-musl-Use-correct-member-name-__si_fields-fr.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From bdbf26f52d06dbc61ad934f14ac0bbb036a96a39 Mon Sep 17 00:00:00 2001 | 1 | From f9bfe2d381e1ee94ec924d521e57e04661df15c7 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Fri, 7 Jul 2017 15:12:39 -0700 | 3 | Date: Fri, 7 Jul 2017 15:12:39 -0700 |
4 | Subject: [PATCH] chromium: musl: Use correct member name __si_fields from | 4 | Subject: [PATCH] chromium: musl: Use correct member name __si_fields from |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0020-chromium-musl-Define-res_ninit-and-res_nclose-for-no.patch b/recipes-qt/qt5/qtwebengine/chromium/0020-chromium-musl-Define-res_ninit-and-res_nclose-for-no.patch index d6671065..ac7c30ef 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0020-chromium-musl-Define-res_ninit-and-res_nclose-for-no.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0020-chromium-musl-Define-res_ninit-and-res_nclose-for-no.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 9604eab855a715b2ab30109f227d75269e3f2001 Mon Sep 17 00:00:00 2001 | 1 | From 7453ddb3c603814e8649df09dbe4ee273da1ca8f Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Fri, 7 Jul 2017 15:27:50 -0700 | 3 | Date: Fri, 7 Jul 2017 15:27:50 -0700 |
4 | Subject: [PATCH] chromium: musl: Define res_ninit and res_nclose for non-glibc | 4 | Subject: [PATCH] chromium: musl: Define res_ninit and res_nclose for non-glibc |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0021-chromium-musl-Do-not-define-__sbrk-on-musl.patch b/recipes-qt/qt5/qtwebengine/chromium/0021-chromium-musl-Do-not-define-__sbrk-on-musl.patch index a0208998..a49be3ec 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0021-chromium-musl-Do-not-define-__sbrk-on-musl.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0021-chromium-musl-Do-not-define-__sbrk-on-musl.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 45b236215d3c082b30c8d68421c65828415d85f2 Mon Sep 17 00:00:00 2001 | 1 | From bebaeea8a0025d035190622700421ab45821345c Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Fri, 7 Jul 2017 15:39:57 -0700 | 3 | Date: Fri, 7 Jul 2017 15:39:57 -0700 |
4 | Subject: [PATCH] chromium: musl: Do not define __sbrk on musl | 4 | Subject: [PATCH] chromium: musl: Do not define __sbrk on musl |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0022-chromium-musl-Adjust-default-pthread-stack-size.patch b/recipes-qt/qt5/qtwebengine/chromium/0022-chromium-musl-Adjust-default-pthread-stack-size.patch index f9bbc1c2..d5bf4132 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0022-chromium-musl-Adjust-default-pthread-stack-size.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0022-chromium-musl-Adjust-default-pthread-stack-size.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From e9bab0dfd2bd66ad883d5e67e7b2ffca7a12bfff Mon Sep 17 00:00:00 2001 | 1 | From 146508f20c7008e7b601470e711d322e9b4bde93 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Fri, 7 Jul 2017 16:41:23 -0700 | 3 | Date: Fri, 7 Jul 2017 16:41:23 -0700 |
4 | Subject: [PATCH] chromium: musl: Adjust default pthread stack size | 4 | Subject: [PATCH] chromium: musl: Adjust default pthread stack size |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0023-chromium-musl-Use-_fpstate-instead-of-_libc_fpstate-.patch b/recipes-qt/qt5/qtwebengine/chromium/0023-chromium-musl-Use-_fpstate-instead-of-_libc_fpstate-.patch index f7a0ec04..85c9de51 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0023-chromium-musl-Use-_fpstate-instead-of-_libc_fpstate-.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0023-chromium-musl-Use-_fpstate-instead-of-_libc_fpstate-.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 871e56119bdf17db727572ab18f31f0671c5a315 Mon Sep 17 00:00:00 2001 | 1 | From 42251b50702ea76c12cb57327e34c0cf40cbd510 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Tue, 25 Sep 2018 12:35:07 -0700 | 3 | Date: Tue, 25 Sep 2018 12:35:07 -0700 |
4 | Subject: [PATCH] chromium: musl: Use _fpstate instead of _libc_fpstate on | 4 | Subject: [PATCH] chromium: musl: Use _fpstate instead of _libc_fpstate on |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0024-chromium-musl-elf_reader.cc-include-sys-reg.h-to-get.patch b/recipes-qt/qt5/qtwebengine/chromium/0024-chromium-musl-elf_reader.cc-include-sys-reg.h-to-get.patch index f502b74e..29405638 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0024-chromium-musl-elf_reader.cc-include-sys-reg.h-to-get.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0024-chromium-musl-elf_reader.cc-include-sys-reg.h-to-get.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 3014e7511b95d88d5b1bf2ab860e54acf2f0dc09 Mon Sep 17 00:00:00 2001 | 1 | From 6469bf2b401f1cce1d4258ba8cae0746b8559300 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Tue, 25 Sep 2018 12:59:05 -0700 | 3 | Date: Tue, 25 Sep 2018 12:59:05 -0700 |
4 | Subject: [PATCH] chromium: musl: elf_reader.cc: include <sys/reg.h> to get | 4 | Subject: [PATCH] chromium: musl: elf_reader.cc: include <sys/reg.h> to get |
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0025-chromium-musl-pread-pwrite.patch b/recipes-qt/qt5/qtwebengine/chromium/0025-chromium-musl-pread-pwrite.patch index ee5ca7d1..e4cb8794 100644 --- a/recipes-qt/qt5/qtwebengine/chromium/0025-chromium-musl-pread-pwrite.patch +++ b/recipes-qt/qt5/qtwebengine/chromium/0025-chromium-musl-pread-pwrite.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 3a243b9e35dadac30cff5ee2efd2917818eda177 Mon Sep 17 00:00:00 2001 | 1 | From feceed2ff7bb63d5d9b1d1fcf3207fc8c91b87ed Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Sun, 23 Dec 2018 16:58:04 -0800 | 3 | Date: Sun, 23 Dec 2018 16:58:04 -0800 |
4 | Subject: [PATCH] chromium: musl: pread pwrite | 4 | Subject: [PATCH] chromium: musl: pread pwrite |
@@ -14,7 +14,7 @@ Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||
14 | 1 file changed, 5 insertions(+) | 14 | 1 file changed, 5 insertions(+) |
15 | 15 | ||
16 | diff --git a/chromium/third_party/lss/linux_syscall_support.h b/chromium/third_party/lss/linux_syscall_support.h | 16 | diff --git a/chromium/third_party/lss/linux_syscall_support.h b/chromium/third_party/lss/linux_syscall_support.h |
17 | index 622cc1fbf7e..cd561b80c05 100644 | 17 | index d2bd9df4d40..88ea7f508aa 100644 |
18 | --- a/chromium/third_party/lss/linux_syscall_support.h | 18 | --- a/chromium/third_party/lss/linux_syscall_support.h |
19 | +++ b/chromium/third_party/lss/linux_syscall_support.h | 19 | +++ b/chromium/third_party/lss/linux_syscall_support.h |
20 | @@ -1239,6 +1239,11 @@ struct kernel_statfs { | 20 | @@ -1239,6 +1239,11 @@ struct kernel_statfs { |
diff --git a/recipes-qt/qt5/qtwebengine_git.bb b/recipes-qt/qt5/qtwebengine_git.bb index 253b53c7..c2752fc5 100644 --- a/recipes-qt/qt5/qtwebengine_git.bb +++ b/recipes-qt/qt5/qtwebengine_git.bb | |||
@@ -145,7 +145,7 @@ RDEPENDS_${PN}-examples += " \ | |||
145 | QT_MODULE_BRANCH_CHROMIUM = "80-based" | 145 | QT_MODULE_BRANCH_CHROMIUM = "80-based" |
146 | 146 | ||
147 | # Patches from https://github.com/meta-qt5/qtwebengine/commits/b5.15 | 147 | # Patches from https://github.com/meta-qt5/qtwebengine/commits/b5.15 |
148 | # 5.15.meta-qt5.4 | 148 | # 5.15.meta-qt5.5 |
149 | SRC_URI += " \ | 149 | SRC_URI += " \ |
150 | ${QT_GIT}/qtwebengine-chromium.git;name=chromium;branch=${QT_MODULE_BRANCH_CHROMIUM};protocol=${QT_GIT_PROTOCOL};destsuffix=git/src/3rdparty \ | 150 | ${QT_GIT}/qtwebengine-chromium.git;name=chromium;branch=${QT_MODULE_BRANCH_CHROMIUM};protocol=${QT_GIT_PROTOCOL};destsuffix=git/src/3rdparty \ |
151 | file://0001-Force-host-toolchain-configuration.patch \ | 151 | file://0001-Force-host-toolchain-configuration.patch \ |
@@ -156,8 +156,8 @@ SRC_URI_append_libc-musl = "\ | |||
156 | file://0004-mkspecs-Allow-builds-with-libc-glibc.patch \ | 156 | file://0004-mkspecs-Allow-builds-with-libc-glibc.patch \ |
157 | " | 157 | " |
158 | 158 | ||
159 | # Patches from https://github.com/meta-qt5/qtwebengine-chromium/commits/79-based | 159 | # Patches from https://github.com/meta-qt5/qtwebengine-chromium/commits/80-based |
160 | # 79-based.meta-qt5.2 | 160 | # 80-based.meta-qt5.2 |
161 | SRC_URI += " \ | 161 | SRC_URI += " \ |
162 | file://chromium/0001-chromium-workaround-for-too-long-.rps-file-name.patch;patchdir=src/3rdparty \ | 162 | file://chromium/0001-chromium-workaround-for-too-long-.rps-file-name.patch;patchdir=src/3rdparty \ |
163 | file://chromium/0002-chromium-stack-pointer-clobber.patch;patchdir=src/3rdparty \ | 163 | file://chromium/0002-chromium-stack-pointer-clobber.patch;patchdir=src/3rdparty \ |
diff --git a/recipes-qt/qt5/qtwebkit_git.bb b/recipes-qt/qt5/qtwebkit_git.bb index 8fd2aee8..b6783129 100644 --- a/recipes-qt/qt5/qtwebkit_git.bb +++ b/recipes-qt/qt5/qtwebkit_git.bb | |||
@@ -85,4 +85,4 @@ PACKAGES_remove = "${PN}-examples" | |||
85 | 85 | ||
86 | QT_MODULE_BRANCH = "5.212" | 86 | QT_MODULE_BRANCH = "5.212" |
87 | 87 | ||
88 | SRCREV = "444bd2bda5fa46c2b4b99adaf6e9b2074b03a0d1" | 88 | SRCREV = "10cd6a106e1c461c774ca166a67b8c835c755ef7" |
diff --git a/recipes-qt/qwt/qwt-qt5/0001-fix-qpainterpath-build-issues.patch b/recipes-qt/qwt/qwt-qt5/0001-fix-qpainterpath-build-issues.patch deleted file mode 100644 index 71a5c7ba..00000000 --- a/recipes-qt/qwt/qwt-qt5/0001-fix-qpainterpath-build-issues.patch +++ /dev/null | |||
@@ -1,228 +0,0 @@ | |||
1 | From 4f432cfcb19f41e6a4ec8d3c7f871f66e461fb63 Mon Sep 17 00:00:00 2001 | ||
2 | From: Mikko Gronoff <mikko.gronoff@qt.io> | ||
3 | Date: Thu, 12 Mar 2020 13:14:29 +0200 | ||
4 | Subject: [PATCH] fix qpainterpath build issues | ||
5 | |||
6 | --- | ||
7 | examples/dials/attitude_indicator.cpp | 1 + | ||
8 | examples/itemeditor/editor.cpp | 1 + | ||
9 | examples/sinusplot/sinusplot.cpp | 1 + | ||
10 | src/qwt_compass_rose.cpp | 1 + | ||
11 | src/qwt_dial_needle.cpp | 1 + | ||
12 | src/qwt_null_paintdevice.cpp | 1 + | ||
13 | src/qwt_painter.cpp | 1 + | ||
14 | src/qwt_painter_command.cpp | 1 + | ||
15 | src/qwt_painter_command.h | 1 + | ||
16 | src/qwt_picker.cpp | 1 + | ||
17 | src/qwt_plot_canvas.cpp | 1 + | ||
18 | src/qwt_plot_glcanvas.cpp | 1 + | ||
19 | src/qwt_plot_glcanvas.h | 1 + | ||
20 | src/qwt_plot_panner.cpp | 1 + | ||
21 | src/qwt_plot_renderer.cpp | 1 + | ||
22 | src/qwt_plot_shapeitem.cpp | 1 + | ||
23 | src/qwt_widget_overlay.cpp | 1 + | ||
24 | 17 files changed, 17 insertions(+) | ||
25 | |||
26 | diff --git a/examples/dials/attitude_indicator.cpp b/examples/dials/attitude_indicator.cpp | ||
27 | index ea0d5ab..a01611e 100644 | ||
28 | --- a/examples/dials/attitude_indicator.cpp | ||
29 | +++ b/examples/dials/attitude_indicator.cpp | ||
30 | @@ -3,6 +3,7 @@ | ||
31 | #include <qwt_round_scale_draw.h> | ||
32 | #include <qevent.h> | ||
33 | #include <qpainter.h> | ||
34 | +#include <qpainterpath.h> | ||
35 | #include <qpolygon.h> | ||
36 | |||
37 | AttitudeIndicatorNeedle::AttitudeIndicatorNeedle( const QColor &color ) | ||
38 | diff --git a/examples/itemeditor/editor.cpp b/examples/itemeditor/editor.cpp | ||
39 | index bd06372..7c4a6ef 100644 | ||
40 | --- a/examples/itemeditor/editor.cpp | ||
41 | +++ b/examples/itemeditor/editor.cpp | ||
42 | @@ -4,6 +4,7 @@ | ||
43 | #include <qwt_scale_map.h> | ||
44 | #include <qwt_plot_shapeitem.h> | ||
45 | #include <qevent.h> | ||
46 | +#include <qpainterpath.h> | ||
47 | |||
48 | class Overlay: public QwtWidgetOverlay | ||
49 | { | ||
50 | diff --git a/examples/sinusplot/sinusplot.cpp b/examples/sinusplot/sinusplot.cpp | ||
51 | index 119fa4a..6a9bfe7 100644 | ||
52 | --- a/examples/sinusplot/sinusplot.cpp | ||
53 | +++ b/examples/sinusplot/sinusplot.cpp | ||
54 | @@ -1,5 +1,6 @@ | ||
55 | #include <qapplication.h> | ||
56 | #include <qlayout.h> | ||
57 | +#include <qpainterpath.h> | ||
58 | #include <qwt_plot.h> | ||
59 | #include <qwt_plot_marker.h> | ||
60 | #include <qwt_plot_curve.h> | ||
61 | diff --git a/src/qwt_compass_rose.cpp b/src/qwt_compass_rose.cpp | ||
62 | index 05f7039..fbd30fe 100644 | ||
63 | --- a/src/qwt_compass_rose.cpp | ||
64 | +++ b/src/qwt_compass_rose.cpp | ||
65 | @@ -11,6 +11,7 @@ | ||
66 | #include "qwt_point_polar.h" | ||
67 | #include "qwt_painter.h" | ||
68 | #include <qpainter.h> | ||
69 | +#include <qpainterpath.h> | ||
70 | |||
71 | static QPointF qwtIntersection( | ||
72 | QPointF p11, QPointF p12, QPointF p21, QPointF p22 ) | ||
73 | diff --git a/src/qwt_dial_needle.cpp b/src/qwt_dial_needle.cpp | ||
74 | index 49dd44a..d98f68c 100644 | ||
75 | --- a/src/qwt_dial_needle.cpp | ||
76 | +++ b/src/qwt_dial_needle.cpp | ||
77 | @@ -13,6 +13,7 @@ | ||
78 | #include "qwt_painter.h" | ||
79 | #include <qapplication.h> | ||
80 | #include <qpainter.h> | ||
81 | +#include <qpainterpath.h> | ||
82 | |||
83 | #if QT_VERSION < 0x040601 | ||
84 | #define qFastSin(x) qSin(x) | ||
85 | diff --git a/src/qwt_null_paintdevice.cpp b/src/qwt_null_paintdevice.cpp | ||
86 | index 3baf0e9..468a838 100644 | ||
87 | --- a/src/qwt_null_paintdevice.cpp | ||
88 | +++ b/src/qwt_null_paintdevice.cpp | ||
89 | @@ -9,6 +9,7 @@ | ||
90 | |||
91 | #include "qwt_null_paintdevice.h" | ||
92 | #include <qpaintengine.h> | ||
93 | +#include <qpainterpath.h> | ||
94 | #include <qpixmap.h> | ||
95 | |||
96 | class QwtNullPaintDevice::PrivateData | ||
97 | diff --git a/src/qwt_painter.cpp b/src/qwt_painter.cpp | ||
98 | index 7959fe5..626677f 100644 | ||
99 | --- a/src/qwt_painter.cpp | ||
100 | +++ b/src/qwt_painter.cpp | ||
101 | @@ -17,6 +17,7 @@ | ||
102 | #include <qframe.h> | ||
103 | #include <qrect.h> | ||
104 | #include <qpainter.h> | ||
105 | +#include <qpainterpath.h> | ||
106 | #include <qpalette.h> | ||
107 | #include <qpaintdevice.h> | ||
108 | #include <qpixmap.h> | ||
109 | diff --git a/src/qwt_painter_command.cpp b/src/qwt_painter_command.cpp | ||
110 | index 39faca9..fcd068d 100644 | ||
111 | --- a/src/qwt_painter_command.cpp | ||
112 | +++ b/src/qwt_painter_command.cpp | ||
113 | @@ -7,6 +7,7 @@ | ||
114 | * modify it under the terms of the Qwt License, Version 1.0 | ||
115 | *****************************************************************************/ | ||
116 | |||
117 | +#include <qpainterpath.h> | ||
118 | #include "qwt_painter_command.h" | ||
119 | |||
120 | //! Construct an invalid command | ||
121 | diff --git a/src/qwt_painter_command.h b/src/qwt_painter_command.h | ||
122 | index a2f509a..fab52a8 100644 | ||
123 | --- a/src/qwt_painter_command.h | ||
124 | +++ b/src/qwt_painter_command.h | ||
125 | @@ -12,6 +12,7 @@ | ||
126 | |||
127 | #include "qwt_global.h" | ||
128 | #include <qpaintengine.h> | ||
129 | +#include <qpainterpath.h> | ||
130 | #include <qpixmap.h> | ||
131 | #include <qimage.h> | ||
132 | #include <qpolygon.h> | ||
133 | diff --git a/src/qwt_picker.cpp b/src/qwt_picker.cpp | ||
134 | index dfd7e9b..3e20578 100644 | ||
135 | --- a/src/qwt_picker.cpp | ||
136 | +++ b/src/qwt_picker.cpp | ||
137 | @@ -15,6 +15,7 @@ | ||
138 | #include <qapplication.h> | ||
139 | #include <qevent.h> | ||
140 | #include <qpainter.h> | ||
141 | +#include <qpainterpath.h> | ||
142 | #include <qframe.h> | ||
143 | #include <qcursor.h> | ||
144 | #include <qbitmap.h> | ||
145 | diff --git a/src/qwt_plot_canvas.cpp b/src/qwt_plot_canvas.cpp | ||
146 | index 9438f15..bfe660d 100644 | ||
147 | --- a/src/qwt_plot_canvas.cpp | ||
148 | +++ b/src/qwt_plot_canvas.cpp | ||
149 | @@ -13,6 +13,7 @@ | ||
150 | #include "qwt_math.h" | ||
151 | #include "qwt_plot.h" | ||
152 | #include <qpainter.h> | ||
153 | +#include <qpainterpath.h> | ||
154 | #include <qstyle.h> | ||
155 | #include <qstyleoption.h> | ||
156 | #include <qpaintengine.h> | ||
157 | diff --git a/src/qwt_plot_glcanvas.cpp b/src/qwt_plot_glcanvas.cpp | ||
158 | index 996c0ad..6975863 100644 | ||
159 | --- a/src/qwt_plot_glcanvas.cpp | ||
160 | +++ b/src/qwt_plot_glcanvas.cpp | ||
161 | @@ -12,6 +12,7 @@ | ||
162 | #include "qwt_painter.h" | ||
163 | #include <qevent.h> | ||
164 | #include <qpainter.h> | ||
165 | +#include <qpainterpath.h> | ||
166 | #include <qdrawutil.h> | ||
167 | #include <qstyle.h> | ||
168 | #include <qstyleoption.h> | ||
169 | diff --git a/src/qwt_plot_glcanvas.h b/src/qwt_plot_glcanvas.h | ||
170 | index 7ca9b5a..a2dfeda 100644 | ||
171 | --- a/src/qwt_plot_glcanvas.h | ||
172 | +++ b/src/qwt_plot_glcanvas.h | ||
173 | @@ -12,6 +12,7 @@ | ||
174 | |||
175 | #include "qwt_global.h" | ||
176 | #include <qframe.h> | ||
177 | +#include <qpainterpath.h> | ||
178 | #include <qgl.h> | ||
179 | |||
180 | class QwtPlot; | ||
181 | diff --git a/src/qwt_plot_panner.cpp b/src/qwt_plot_panner.cpp | ||
182 | index b7daa05..59bd2df 100644 | ||
183 | --- a/src/qwt_plot_panner.cpp | ||
184 | +++ b/src/qwt_plot_panner.cpp | ||
185 | @@ -12,6 +12,7 @@ | ||
186 | #include "qwt_plot.h" | ||
187 | #include "qwt_painter.h" | ||
188 | #include <qbitmap.h> | ||
189 | +#include <qpainterpath.h> | ||
190 | #include <qstyle.h> | ||
191 | #include <qstyleoption.h> | ||
192 | |||
193 | diff --git a/src/qwt_plot_renderer.cpp b/src/qwt_plot_renderer.cpp | ||
194 | index 549c4bc..71cadec 100644 | ||
195 | --- a/src/qwt_plot_renderer.cpp | ||
196 | +++ b/src/qwt_plot_renderer.cpp | ||
197 | @@ -20,6 +20,7 @@ | ||
198 | #include "qwt_math.h" | ||
199 | |||
200 | #include <qpainter.h> | ||
201 | +#include <qpainterpath.h> | ||
202 | #include <qtransform.h> | ||
203 | #include <qprinter.h> | ||
204 | #include <qfiledialog.h> | ||
205 | diff --git a/src/qwt_plot_shapeitem.cpp b/src/qwt_plot_shapeitem.cpp | ||
206 | index db7896b..56bc208 100644 | ||
207 | --- a/src/qwt_plot_shapeitem.cpp | ||
208 | +++ b/src/qwt_plot_shapeitem.cpp | ||
209 | @@ -7,6 +7,7 @@ | ||
210 | * modify it under the terms of the Qwt License, Version 1.0 | ||
211 | *****************************************************************************/ | ||
212 | |||
213 | +#include <qpainterpath.h> | ||
214 | #include "qwt_plot_shapeitem.h" | ||
215 | #include "qwt_scale_map.h" | ||
216 | #include "qwt_painter.h" | ||
217 | diff --git a/src/qwt_widget_overlay.cpp b/src/qwt_widget_overlay.cpp | ||
218 | index 5974413..fa6da48 100644 | ||
219 | --- a/src/qwt_widget_overlay.cpp | ||
220 | +++ b/src/qwt_widget_overlay.cpp | ||
221 | @@ -10,6 +10,7 @@ | ||
222 | #include "qwt_widget_overlay.h" | ||
223 | #include "qwt_painter.h" | ||
224 | #include <qpainter.h> | ||
225 | +#include <qpainterpath.h> | ||
226 | #include <qpaintengine.h> | ||
227 | #include <qimage.h> | ||
228 | #include <qevent.h> | ||
diff --git a/recipes-qt/qwt/qwt-qt5/0001-missing-qpainterpath.h-include-added-needed-with-Qt-.patch b/recipes-qt/qwt/qwt-qt5/0001-missing-qpainterpath.h-include-added-needed-with-Qt-.patch new file mode 100644 index 00000000..5caf7930 --- /dev/null +++ b/recipes-qt/qwt/qwt-qt5/0001-missing-qpainterpath.h-include-added-needed-with-Qt-.patch | |||
@@ -0,0 +1,131 @@ | |||
1 | From c44af9a6f0eff02b439ef770755da551f281e9ad Mon Sep 17 00:00:00 2001 | ||
2 | From: rathmann <rathmann@29e17f8d-cf37-471e-a288-72cc03a76eda> | ||
3 | Date: Sun, 29 Mar 2020 09:11:29 +0000 | ||
4 | Subject: [PATCH] missing qpainterpath.h include added needed with Qt 5.15 | ||
5 | Beta2 | ||
6 | |||
7 | Partial backport from | ||
8 | https://sourceforge.net/p/qwt/code/3187/ | ||
9 | |||
10 | --- | ||
11 | diff -uNr qwt-6.1.4.orig/src/qwt_compass_rose.cpp qwt-6.1.4/src/qwt_compass_rose.cpp | ||
12 | --- qwt-6.1.4.orig/src/qwt_compass_rose.cpp 2019-01-02 17:21:31.280460826 +0100 | ||
13 | +++ qwt-6.1.4/src/qwt_compass_rose.cpp 2020-04-14 13:33:27.214932546 +0200 | ||
14 | @@ -11,6 +11,7 @@ | ||
15 | #include "qwt_point_polar.h" | ||
16 | #include "qwt_painter.h" | ||
17 | #include <qpainter.h> | ||
18 | +#include <qpainterpath.h> | ||
19 | |||
20 | static QPointF qwtIntersection( | ||
21 | QPointF p11, QPointF p12, QPointF p21, QPointF p22 ) | ||
22 | diff -uNr qwt-6.1.4.orig/src/qwt_dial_needle.cpp qwt-6.1.4/src/qwt_dial_needle.cpp | ||
23 | --- qwt-6.1.4.orig/src/qwt_dial_needle.cpp 2019-01-02 17:21:31.284460922 +0100 | ||
24 | +++ qwt-6.1.4/src/qwt_dial_needle.cpp 2020-04-14 13:33:37.006864250 +0200 | ||
25 | @@ -13,6 +13,7 @@ | ||
26 | #include "qwt_painter.h" | ||
27 | #include <qapplication.h> | ||
28 | #include <qpainter.h> | ||
29 | +#include <qpainterpath.h> | ||
30 | |||
31 | #if QT_VERSION < 0x040601 | ||
32 | #define qFastSin(x) qSin(x) | ||
33 | diff -uNr qwt-6.1.4.orig/src/qwt_null_paintdevice.cpp qwt-6.1.4/src/qwt_null_paintdevice.cpp | ||
34 | --- qwt-6.1.4.orig/src/qwt_null_paintdevice.cpp 2019-01-02 17:21:31.296461212 +0100 | ||
35 | +++ qwt-6.1.4/src/qwt_null_paintdevice.cpp 2020-04-14 13:31:21.983807348 +0200 | ||
36 | @@ -9,6 +9,7 @@ | ||
37 | |||
38 | #include "qwt_null_paintdevice.h" | ||
39 | #include <qpaintengine.h> | ||
40 | +#include <qpainterpath.h> | ||
41 | #include <qpixmap.h> | ||
42 | |||
43 | class QwtNullPaintDevice::PrivateData | ||
44 | diff -uNr qwt-6.1.4.orig/src/qwt_painter_command.h qwt-6.1.4/src/qwt_painter_command.h | ||
45 | --- qwt-6.1.4.orig/src/qwt_painter_command.h 2020-04-14 13:29:35.128556140 +0200 | ||
46 | +++ qwt-6.1.4/src/qwt_painter_command.h 2020-04-14 13:28:23.957056341 +0200 | ||
47 | @@ -15,6 +15,7 @@ | ||
48 | #include <qpixmap.h> | ||
49 | #include <qimage.h> | ||
50 | #include <qpolygon.h> | ||
51 | +#include <qpainterpath.h> | ||
52 | |||
53 | class QPainterPath; | ||
54 | |||
55 | diff -uNr qwt-6.1.4.orig/src/qwt_painter.cpp qwt-6.1.4/src/qwt_painter.cpp | ||
56 | --- qwt-6.1.4.orig/src/qwt_painter.cpp 2019-01-02 17:21:31.452464985 +0100 | ||
57 | +++ qwt-6.1.4/src/qwt_painter.cpp 2020-04-14 13:30:22.356224890 +0200 | ||
58 | @@ -19,6 +19,7 @@ | ||
59 | #include <qpainter.h> | ||
60 | #include <qpalette.h> | ||
61 | #include <qpaintdevice.h> | ||
62 | +#include <qpainterpath.h> | ||
63 | #include <qpixmap.h> | ||
64 | #include <qstyle.h> | ||
65 | #include <qtextdocument.h> | ||
66 | diff -uNr qwt-6.1.4.orig/src/qwt_plot_glcanvas.cpp qwt-6.1.4/src/qwt_plot_glcanvas.cpp | ||
67 | --- qwt-6.1.4.orig/src/qwt_plot_glcanvas.cpp 2019-01-02 17:21:31.300461309 +0100 | ||
68 | +++ qwt-6.1.4/src/qwt_plot_glcanvas.cpp 2020-04-14 13:33:14.947018129 +0200 | ||
69 | @@ -12,6 +12,7 @@ | ||
70 | #include "qwt_painter.h" | ||
71 | #include <qevent.h> | ||
72 | #include <qpainter.h> | ||
73 | +#include <qpainterpath.h> | ||
74 | #include <qdrawutil.h> | ||
75 | #include <qstyle.h> | ||
76 | #include <qstyleoption.h> | ||
77 | diff -uNr qwt-6.1.4.orig/src/qwt_plot_panner.cpp qwt-6.1.4/src/qwt_plot_panner.cpp | ||
78 | --- qwt-6.1.4.orig/src/qwt_plot_panner.cpp 2019-01-02 17:21:31.468465371 +0100 | ||
79 | +++ qwt-6.1.4/src/qwt_plot_panner.cpp 2020-04-14 13:32:33.259309129 +0200 | ||
80 | @@ -14,6 +14,7 @@ | ||
81 | #include <qbitmap.h> | ||
82 | #include <qstyle.h> | ||
83 | #include <qstyleoption.h> | ||
84 | +#include <qpainterpath.h> | ||
85 | |||
86 | #if QT_VERSION >= 0x050000 | ||
87 | #if QT_VERSION < 0x050100 | ||
88 | diff -uNr qwt-6.1.4.orig/src/qwt_plot_renderer.cpp qwt-6.1.4/src/qwt_plot_renderer.cpp | ||
89 | --- qwt-6.1.4.orig/src/qwt_plot_renderer.cpp 2019-01-02 17:21:31.352462567 +0100 | ||
90 | +++ qwt-6.1.4/src/qwt_plot_renderer.cpp 2020-04-14 13:31:51.019604276 +0200 | ||
91 | @@ -20,6 +20,7 @@ | ||
92 | #include "qwt_math.h" | ||
93 | |||
94 | #include <qpainter.h> | ||
95 | +#include <qpainterpath.h> | ||
96 | #include <qtransform.h> | ||
97 | #include <qprinter.h> | ||
98 | #include <qfiledialog.h> | ||
99 | diff -uNr qwt-6.1.4.orig/src/qwt_widget_overlay.cpp qwt-6.1.4/src/qwt_widget_overlay.cpp | ||
100 | --- qwt-6.1.4.orig/src/qwt_widget_overlay.cpp 2019-01-02 17:21:31.388463437 +0100 | ||
101 | +++ qwt-6.1.4/src/qwt_widget_overlay.cpp 2020-04-14 13:31:07.091911561 +0200 | ||
102 | @@ -11,6 +11,7 @@ | ||
103 | #include "qwt_painter.h" | ||
104 | #include <qpainter.h> | ||
105 | #include <qpaintengine.h> | ||
106 | +#include <qpainterpath.h> | ||
107 | #include <qimage.h> | ||
108 | #include <qevent.h> | ||
109 | |||
110 | diff -uNr qwt-6.1.4.orig/examples/dials/attitude_indicator.cpp qwt-6.1.4/examples/dials/attitude_indicator.cpp | ||
111 | --- qwt-6.1.4.orig/examples/dials/attitude_indicator.cpp 2019-01-02 17:21:31.164458020 +0100 | ||
112 | +++ qwt-6.1.4/examples/dials/attitude_indicator.cpp 2020-04-14 13:44:46.354218570 +0200 | ||
113 | @@ -3,6 +3,7 @@ | ||
114 | #include <qwt_round_scale_draw.h> | ||
115 | #include <qevent.h> | ||
116 | #include <qpainter.h> | ||
117 | +#include <qpainterpath.h> | ||
118 | #include <qpolygon.h> | ||
119 | |||
120 | AttitudeIndicatorNeedle::AttitudeIndicatorNeedle( const QColor &color ) | ||
121 | diff -uNr qwt-6.1.4.orig/src/qwt_plot_glcanvas.h qwt-6.1.4/src/qwt_plot_glcanvas.h | ||
122 | --- qwt-6.1.4.orig/src/qwt_plot_glcanvas.h 2020-04-14 13:44:26.642354964 +0200 | ||
123 | +++ qwt-6.1.4/src/qwt_plot_glcanvas.h 2020-04-14 13:42:38.555103164 +0200 | ||
124 | @@ -12,6 +12,7 @@ | ||
125 | |||
126 | #include "qwt_global.h" | ||
127 | #include <qframe.h> | ||
128 | +#include <qpainterpath.h> | ||
129 | #include <qgl.h> | ||
130 | |||
131 | class QwtPlot; | ||
diff --git a/recipes-qt/qwt/qwt-qt5_6.1.4.bb b/recipes-qt/qwt/qwt-qt5_6.1.4.bb index 682ab566..18eebbf1 100644 --- a/recipes-qt/qwt/qwt-qt5_6.1.4.bb +++ b/recipes-qt/qwt/qwt-qt5_6.1.4.bb | |||
@@ -16,7 +16,7 @@ inherit qmake5 | |||
16 | SRC_URI = " \ | 16 | SRC_URI = " \ |
17 | ${SOURCEFORGE_MIRROR}/qwt/qwt-${PV}.tar.bz2;name=qwt \ | 17 | ${SOURCEFORGE_MIRROR}/qwt/qwt-${PV}.tar.bz2;name=qwt \ |
18 | file://0001-Remove-rpath-from-binaries-they-point-to-buuild-area.patch \ | 18 | file://0001-Remove-rpath-from-binaries-they-point-to-buuild-area.patch \ |
19 | file://0001-fix-qpainterpath-build-issues.patch \ | 19 | file://0001-missing-qpainterpath.h-include-added-needed-with-Qt-.patch \ |
20 | " | 20 | " |
21 | SRC_URI[qwt.md5sum] = "4fb1852f694420e3ab9c583526edecc5" | 21 | SRC_URI[qwt.md5sum] = "4fb1852f694420e3ab9c583526edecc5" |
22 | SRC_URI[qwt.sha256sum] = "1529215329e51fc562e0009505a838f427919a18b362afff441f035b2d9b5bd9" | 22 | SRC_URI[qwt.sha256sum] = "1529215329e51fc562e0009505a838f427919a18b362afff441f035b2d9b5bd9" |