diff options
author | Khem Raj <raj.khem@gmail.com> | 2018-08-23 03:27:28 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2018-09-19 09:55:38 +0000 |
commit | 5164f84bd6f136e6438eb5847bab08e65d2320b7 (patch) | |
tree | 58e469f0795d097167b64957aa8e57a4b4f2cda1 /recipes-qt/qt5/qt3d-runtime/0001-runtime-Include-missing-QCoreApplication-header.patch | |
parent | 08aaba003f6675866846e5d0ebe5f9e8223f0ee7 (diff) | |
download | meta-qt5-5164f84bd6f136e6438eb5847bab08e65d2320b7.tar.gz |
qt3d-runtime: Fix compile errors as seen with mips/musl
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'recipes-qt/qt5/qt3d-runtime/0001-runtime-Include-missing-QCoreApplication-header.patch')
-rw-r--r-- | recipes-qt/qt5/qt3d-runtime/0001-runtime-Include-missing-QCoreApplication-header.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qt3d-runtime/0001-runtime-Include-missing-QCoreApplication-header.patch b/recipes-qt/qt5/qt3d-runtime/0001-runtime-Include-missing-QCoreApplication-header.patch new file mode 100644 index 00000000..bc61e538 --- /dev/null +++ b/recipes-qt/qt5/qt3d-runtime/0001-runtime-Include-missing-QCoreApplication-header.patch | |||
@@ -0,0 +1,29 @@ | |||
1 | From e6247a6823d372cc779934cf6c74d65bae9652b5 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Thu, 23 Aug 2018 03:23:20 +0000 | ||
4 | Subject: [PATCH] runtime: Include missing <QCoreApplication> header | ||
5 | |||
6 | Fixes following errors seen on mips | ||
7 | |||
8 | q3dsengine.cpp:1327:9: error: 'QCoreApplication' has not been declared | ||
9 | QCoreApplication::sendEvent(&m_profileUiEventSource, e); | ||
10 | ^~~~~~~~~~~~~~~~ | ||
11 | |||
12 | Upstream-Status: Pending | ||
13 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
14 | --- | ||
15 | src/runtime/q3dsengine.cpp | 1 + | ||
16 | 1 file changed, 1 insertion(+) | ||
17 | |||
18 | diff --git a/src/runtime/q3dsengine.cpp b/src/runtime/q3dsengine.cpp | ||
19 | index 1a438f0..d6d4eb5 100644 | ||
20 | --- a/src/runtime/q3dsengine.cpp | ||
21 | +++ b/src/runtime/q3dsengine.cpp | ||
22 | @@ -36,6 +36,7 @@ | ||
23 | #include "q3dsinlineqmlsubpresentation_p.h" | ||
24 | #include "q3dsviewersettings.h" | ||
25 | |||
26 | +#include <QCoreApplication> | ||
27 | #include <QLoggingCategory> | ||
28 | #include <QKeyEvent> | ||
29 | #include <QMouseEvent> | ||