summaryrefslogtreecommitdiffstats
path: root/recipes-qt/qt5/qtdeclarative
diff options
context:
space:
mode:
authorEric BENARD <eric@eukrea.com>2013-05-27 23:43:51 +0000
committerMartin Jansa <Martin.Jansa@gmail.com>2013-05-28 10:55:07 +0200
commit7994fc13da2971376621e9d8653f89e1d9323eaa (patch)
tree74bf275451af8168689cb40543a38341bc7ef5c1 /recipes-qt/qt5/qtdeclarative
parent712d678c3accc499af0f1fc4d0d55359787b6009 (diff)
downloadmeta-qt5-7994fc13da2971376621e9d8653f89e1d9323eaa.tar.gz
qtdeclarative-5.0.2: fix examples compilation
Signed-off-by: Eric Bénard <eric@eukrea.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'recipes-qt/qt5/qtdeclarative')
-rw-r--r--recipes-qt/qt5/qtdeclarative/0001-qmltestexample-fix-link.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qtdeclarative/0001-qmltestexample-fix-link.patch b/recipes-qt/qt5/qtdeclarative/0001-qmltestexample-fix-link.patch
new file mode 100644
index 00000000..7ed95e4b
--- /dev/null
+++ b/recipes-qt/qt5/qtdeclarative/0001-qmltestexample-fix-link.patch
@@ -0,0 +1,34 @@
1From e22cb54286083886be5081332de2f64ab0b78b4b Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Eric=20B=C3=A9nard?= <eric@eukrea.com>
3Date: Sun, 26 May 2013 14:26:19 +0200
4Subject: [PATCH] qmltestexample: fix link
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9else we get :
10ld: warning: libQt5Quick.so.5, needed by libQt5QuickTest.so, not found
11
12Upstream-Status: Inappropriate
13
14Signed-off-by: Eric Bénard <eric@eukrea.com>
15---
16 examples/qmltest/qmltest/qmltest.pro | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19diff --git a/examples/qmltest/qmltest/qmltest.pro b/examples/qmltest/qmltest/qmltest.pro
20index b5893c5..1b00e6c 100644
21--- a/examples/qmltest/qmltest/qmltest.pro
22+++ b/examples/qmltest/qmltest/qmltest.pro
23@@ -14,7 +14,7 @@ TESTDATA += tst_basic.qml tst_item.qml
24 # This code exists solely for the purpose of building this example
25 # inside the examples/ hierarchy.
26
27-QT += qml qmltest
28+QT += qml qmltest quick
29
30 macx: CONFIG -= app_bundle
31
32--
331.8.1.4
34