summaryrefslogtreecommitdiffstats
path: root/recipes-qt/qt5/qtbase/0015-Bootstrap-without-linkat-feature.patch
diff options
context:
space:
mode:
authorAlistair Francis <alistair.francis@wdc.com>2018-06-22 12:41:25 -0700
committerMartin Jansa <Martin.Jansa@gmail.com>2018-06-25 14:30:57 +0000
commit40054db1de152d85c22aefdae50b136ca56967c5 (patch)
treef68ced3fd5ace5a6cc7723da4abf336e6cf3c89f /recipes-qt/qt5/qtbase/0015-Bootstrap-without-linkat-feature.patch
parentdd1ce3c95ce3613df51bb9585fe1b73e8c96480a (diff)
downloadmeta-qt5-40054db1de152d85c22aefdae50b136ca56967c5.tar.gz
qt5: qtbase: Upgrade Double-Conversion
Backport the Double-Conversion upgrade from the dev branch (https://codereview.qt-project.org/#/c/227718/) to the current release. This fixes the RISC-V compile of QTBase. Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'recipes-qt/qt5/qtbase/0015-Bootstrap-without-linkat-feature.patch')
-rw-r--r--recipes-qt/qt5/qtbase/0015-Bootstrap-without-linkat-feature.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qtbase/0015-Bootstrap-without-linkat-feature.patch b/recipes-qt/qt5/qtbase/0015-Bootstrap-without-linkat-feature.patch
new file mode 100644
index 00000000..8863ddd8
--- /dev/null
+++ b/recipes-qt/qt5/qtbase/0015-Bootstrap-without-linkat-feature.patch
@@ -0,0 +1,27 @@
1From 6ff049f08cbe80b00b34859acdc5ccf7b9c9ae18 Mon Sep 17 00:00:00 2001
2From: Samuli Piippo <samuli.piippo@qt.io>
3Date: Fri, 24 Nov 2017 15:16:31 +0200
4Subject: [PATCH] Bootstrap without linkat feature
5
6qmake does not work together with pseudo when unnamed temporary files
7are used with linkat.
8
9Upstream-Status: Inappropriate [OE specific]
10[YOCTO #11996]
11---
12 src/corelib/global/qconfig-bootstrapped.h | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/src/corelib/global/qconfig-bootstrapped.h b/src/corelib/global/qconfig-bootstrapped.h
16index 3469ebe5e6..cb889f27c2 100644
17--- a/src/corelib/global/qconfig-bootstrapped.h
18+++ b/src/corelib/global/qconfig-bootstrapped.h
19@@ -90,7 +90,7 @@
20 #define QT_FEATURE_itemmodel -1
21 #define QT_FEATURE_library -1
22 #ifdef __linux__
23-# define QT_FEATURE_linkat 1
24+# define QT_FEATURE_linkat -1
25 #else
26 # define QT_FEATURE_linkat -1
27 #endif