summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--recipes-qt/qt5/qtdeclarative.inc13
1 files changed, 12 insertions, 1 deletions
diff --git a/recipes-qt/qt5/qtdeclarative.inc b/recipes-qt/qt5/qtdeclarative.inc
index 12e650fa..bd68955b 100644
--- a/recipes-qt/qt5/qtdeclarative.inc
+++ b/recipes-qt/qt5/qtdeclarative.inc
@@ -5,4 +5,15 @@ SRC_URI += " \
5 file://0003-Fix-wrong-calculation-of-viewPort-for-transitions.patch \ 5 file://0003-Fix-wrong-calculation-of-viewPort-for-transitions.patch \
6" 6"
7 7
8DEPENDS += "qtsvg qtxmlpatterns" 8DEPENDS += "qtbase"
9
10PACKAGECONFIG ??= "qtxmlpatterns"
11PACKAGECONFIG[qtxmlpatterns] = ",,qtxmlpatterns"
12
13do_configure_prepend() {
14 # disable qtxmlpatterns test if it isn't enabled by PACKAGECONFIG
15 sed -e 's/^\(qtHaveModule(xmlpatterns)\)/OE_QTXMLPATTERNS_ENABLED:\1/' -i ${S}/src/imports/imports.pro
16 sed -e 's/^\(!qtHaveModule(xmlpatterns)\)/!OE_QTXMLPATTERNS_ENABLED|\1/' -i ${S}/tests/auto/quick/quick.pro
17}
18
19EXTRA_QMAKEVARS_PRE += "${@base_contains('PACKAGECONFIG', 'qtxmlpatterns', 'CONFIG+=OE_QTXMLPATTERNS_ENABLED', '', d)}"