From 04013e13b1368d86dfa6567807a3345b1de1dc6b Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Sat, 22 Feb 2014 09:14:12 +0100 Subject: [PATCH] qtbase: Move remaining few by default enabled options to PACKAGECONFIG_DEFAULT * more and more people don't want to redefine whole PACKAGECONFIG variable Signed-off-by: Martin Jansa --- recipes-qt/qt5/qtbase.inc | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/recipes-qt/qt5/qtbase.inc b/recipes-qt/qt5/qtbase.inc index d8ad4da5f1..6c477304b3 100644 --- a/recipes-qt/qt5/qtbase.inc +++ b/recipes-qt/qt5/qtbase.inc @@ -44,13 +44,11 @@ PACKAGECONFIG_DISTRO ?= "" PACKAGECONFIG_RELEASE ?= "release" # This is in qt5.inc, because qtwebkit-examples are using it to enable ca-certificates dependency # PACKAGECONFIG_OPENSSL ?= "openssl" +PACKAGECONFIG_DEFAULT ?= "dbus udev evdev widgets" -PACKAGECONFIG ??= " \ +PACKAGECONFIG ?= " \ ${PACKAGECONFIG_RELEASE} \ - dbus \ - udev \ - evdev \ - widgets \ + ${PACKAGECONFIG_DEFAULT} \ ${PACKAGECONFIG_OPENSSL} \ ${PACKAGECONFIG_GL} \ ${PACKAGECONFIG_FB} \