diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2019-05-14 10:48:57 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2019-05-14 10:48:59 +0000 |
commit | 44aab3a0413da7d8f061497eb192b62c1bce4f4e (patch) | |
tree | 26e3d40b4e930fdf2bb0270645daafbfeea54c2e | |
parent | 000e298b58eec88f2cf84dc2cdf102fda778e4c0 (diff) | |
download | meta-qt5-44aab3a0413da7d8f061497eb192b62c1bce4f4e.tar.gz |
qtbase: add accessibility from PACKAGECONFIG_KDE to PACKAGECONFIG_DEFAULT
* the original goal was to keep the default PACKAGECONFIG as minimal
as possible, but I think it's time to enable this
* most builds probably have this enabled anyway because of other dependencies
* new qtbase also shows a warning when it's disabled:
WARNING: Accessibility disabled. This configuration of Qt is unsupported.
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | recipes-qt/qt5/qtbase_git.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-qt/qt5/qtbase_git.bb b/recipes-qt/qt5/qtbase_git.bb index fa073749..0ccba7cb 100644 --- a/recipes-qt/qt5/qtbase_git.bb +++ b/recipes-qt/qt5/qtbase_git.bb | |||
@@ -41,7 +41,7 @@ RDEPENDS_${PN}-tools += "perl" | |||
41 | PACKAGECONFIG_GL ?= "${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'gl', '', d)}" | 41 | PACKAGECONFIG_GL ?= "${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'gl', '', d)}" |
42 | PACKAGECONFIG_FB ?= "${@bb.utils.contains('DISTRO_FEATURES', 'directfb', 'directfb', '', d)}" | 42 | PACKAGECONFIG_FB ?= "${@bb.utils.contains('DISTRO_FEATURES', 'directfb', 'directfb', '', d)}" |
43 | PACKAGECONFIG_X11 ?= "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'xcb xcb-xinput glib xkb xkbcommon', '', d)}" | 43 | PACKAGECONFIG_X11 ?= "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'xcb xcb-xinput glib xkb xkbcommon', '', d)}" |
44 | PACKAGECONFIG_KDE ?= "${@bb.utils.contains('DISTRO_FEATURES', 'kde', 'sm cups fontconfig kms gbm libinput sql-sqlite accessibility openssl', '', d)}" | 44 | PACKAGECONFIG_KDE ?= "${@bb.utils.contains('DISTRO_FEATURES', 'kde', 'sm cups fontconfig kms gbm libinput sql-sqlite openssl', '', d)}" |
45 | PACKAGECONFIG_FONTS ?= "" | 45 | PACKAGECONFIG_FONTS ?= "" |
46 | PACKAGECONFIG_SYSTEM ?= "jpeg libpng zlib" | 46 | PACKAGECONFIG_SYSTEM ?= "jpeg libpng zlib" |
47 | PACKAGECONFIG_DISTRO ?= "" | 47 | PACKAGECONFIG_DISTRO ?= "" |
@@ -49,7 +49,7 @@ PACKAGECONFIG_DISTRO ?= "" | |||
49 | PACKAGECONFIG_RELEASE ?= "release" | 49 | PACKAGECONFIG_RELEASE ?= "release" |
50 | # This is in qt5.inc, because qtwebkit-examples are using it to enable ca-certificates dependency | 50 | # This is in qt5.inc, because qtwebkit-examples are using it to enable ca-certificates dependency |
51 | # PACKAGECONFIG_OPENSSL ?= "openssl" | 51 | # PACKAGECONFIG_OPENSSL ?= "openssl" |
52 | PACKAGECONFIG_DEFAULT ?= "dbus udev evdev widgets tools libs freetype tests \ | 52 | PACKAGECONFIG_DEFAULT ?= "accessibility dbus udev evdev widgets tools libs freetype tests \ |
53 | ${@bb.utils.contains('SELECTED_OPTIMIZATION', '-Os', 'optimize-size ltcg', '', d)} \ | 53 | ${@bb.utils.contains('SELECTED_OPTIMIZATION', '-Os', 'optimize-size ltcg', '', d)} \ |
54 | ${@bb.utils.contains('DISTRO_FEATURES', 'qt5-static', 'static', '', d)} \ | 54 | ${@bb.utils.contains('DISTRO_FEATURES', 'qt5-static', 'static', '', d)} \ |
55 | " | 55 | " |