All of lore.kernel.org
 help / color / mirror / Atom feed
From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 16/32] qt5base: add D-Bus support
Date: Thu,  7 Mar 2013 21:18:44 +0100	[thread overview]
Message-ID: <1362687540-19440-17-git-send-email-thomas.petazzoni@free-electrons.com> (raw)
In-Reply-To: <1362687540-19440-1-git-send-email-thomas.petazzoni@free-electrons.com>

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/qt5/qt5base/Config.in  |    8 ++++++++
 package/qt5/qt5base/qt5base.mk |    6 +++++-
 2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/package/qt5/qt5base/Config.in b/package/qt5/qt5base/Config.in
index 08e3c16..baf471f 100644
--- a/package/qt5/qt5base/Config.in
+++ b/package/qt5/qt5base/Config.in
@@ -140,4 +140,12 @@ config BR2_PACKAGE_QT5BASE_PNG
 
 endif
 
+config BR2_PACKAGE_QT5BASE_DBUS
+	bool "DBus module"
+	select BR2_PACKAGE_DBUS
+	depends on BR2_TOOLCHAIN_HAS_THREADS
+	depends on BR2_USE_MMU
+	help
+	  This option enables the D-Bus module.
+
 endif
diff --git a/package/qt5/qt5base/qt5base.mk b/package/qt5/qt5base/qt5base.mk
index e2f9d4e..e5a04f8 100644
--- a/package/qt5/qt5base/qt5base.mk
+++ b/package/qt5/qt5base/qt5base.mk
@@ -27,7 +27,6 @@ QT5BASE_CONFIGURE_OPTS += \
 	-no-libudev \
 	-no-iconv \
 	-no-icu \
-	-no-dbus \
 	-no-gstreamer \
 	-no-gtkstyle \
 	-system-zlib \
@@ -93,6 +92,9 @@ QT5BASE_DEPENDENCIES   += $(if $(BR2_PACKAGE_QT5BASE_JPEG),jpeg)
 QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_PNG),-system-libpng,-no-libpng)
 QT5BASE_DEPENDENCIES   += $(if $(BR2_PACKAGE_QT5BASE_PNG),libpng)
 
+QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_DBUS),-dbus,-no-dbus)
+QT5BASE_DEPENDENCIES   += $(if $(BR2_PACKAGE_QT5BASE_DBUS),dbus)
+
 # Build the list of libraries to be installed on the target
 QT5BASE_INSTALL_LIBS_y                                 += Qt5Core
 QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_NETWORK)    += Qt5Network
@@ -105,6 +107,8 @@ QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_GUI)          += Qt5Gui
 QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_WIDGETS)      += Qt5Widgets
 QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_PRINTSUPPORT) += Qt5PrintSupport
 
+QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_DBUS) += Qt5DBus
+
 # Ideally, we could use -device-option to substitute variable values
 # in our linux-buildroot-g++/qmake.config, but this mechanism doesn't
 # nicely support variable values that contain spaces. So we use the
-- 
1.7.9.5

  parent reply	other threads:[~2013-03-07 20:18 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-07 20:18 [Buildroot] [PATCH 00/32 v3] Add Qt5 packages Thomas Petazzoni
2013-03-07 20:18 ` [Buildroot] [PATCH 01/32] xcb-util: add dependency on libxcb Thomas Petazzoni
2013-03-09 11:11   ` Peter Korsgaard
2013-03-07 20:18 ` [Buildroot] [PATCH 02/32] x11r7/xcb-util-wm: new package Thomas Petazzoni
2013-03-09 11:13   ` Peter Korsgaard
2013-03-07 20:18 ` [Buildroot] [PATCH 03/32] x11r7/xcb-util-image: " Thomas Petazzoni
2013-03-09 11:13   ` Peter Korsgaard
2013-03-07 20:18 ` [Buildroot] [PATCH 04/32] rpi-userland: add .pc files for OpenGLESv2 and EGL libs Thomas Petazzoni
2013-03-09 21:25   ` Peter Korsgaard
2013-03-07 20:18 ` [Buildroot] [PATCH 05/32] rpi-userland: add bcm_host to egl.pc Thomas Petazzoni
2013-03-09 21:26   ` Peter Korsgaard
2013-03-07 20:18 ` [Buildroot] [PATCH 06/32] efl/libeet, efl/libevas: use host-libjpeg instead of host-jpeg Thomas Petazzoni
2013-03-09 21:26   ` Peter Korsgaard
2013-03-07 20:18 ` [Buildroot] [PATCH 07/32] jpeg: convert to a real package Thomas Petazzoni
2013-03-09 21:27   ` Peter Korsgaard
2013-03-07 20:18 ` [Buildroot] [PATCH 08/32] qt5: base infrastructure Thomas Petazzoni
2013-03-10 21:40   ` Peter Korsgaard
2013-03-07 20:18 ` [Buildroot] [PATCH 09/32] qt5: add macro to fixup Qt5 .la and .prl files Thomas Petazzoni
2013-03-10 21:40   ` Peter Korsgaard
2013-03-07 20:18 ` [Buildroot] [PATCH 10/32] qt5base: new package Thomas Petazzoni
2013-03-10 21:41   ` Peter Korsgaard
2013-03-07 20:18 ` [Buildroot] [PATCH 11/32] qt5base: add GUI support Thomas Petazzoni
2013-03-10 21:42   ` Peter Korsgaard
2013-03-07 20:18 ` [Buildroot] [PATCH 12/32] qt5base: support debug or release modes Thomas Petazzoni
2013-03-10 21:43   ` Peter Korsgaard
2013-03-07 20:18 ` [Buildroot] [PATCH 13/32] qt5base: add OpenSSL support Thomas Petazzoni
2013-03-10 21:55   ` Peter Korsgaard
2013-03-07 20:18 ` [Buildroot] [PATCH 14/32] qt5base: add eglfs graphics backend Thomas Petazzoni
2013-03-10 21:59   ` Peter Korsgaard
2013-03-10 23:26     ` Yann E. MORIN
2013-03-07 20:18 ` [Buildroot] [PATCH 15/32] qt5base: add support for fontconfig, png, jpeg, gif Thomas Petazzoni
2013-03-07 20:18 ` Thomas Petazzoni [this message]
2013-03-07 20:18 ` [Buildroot] [PATCH 17/32] qt5base: add glib support Thomas Petazzoni
2013-03-07 20:18 ` [Buildroot] [PATCH 18/32] qt5base: add support to build against ICU Thomas Petazzoni
2013-03-07 20:18 ` [Buildroot] [PATCH 19/32] qt5base: add rPi EGL glue code Thomas Petazzoni
2013-03-07 20:18 ` [Buildroot] [PATCH 20/32] qt5base: install bundled fonts to target Thomas Petazzoni
2013-03-07 20:18 ` [Buildroot] [PATCH 21/32] qt5: factor Qt5 version Thomas Petazzoni
2013-03-07 20:18 ` [Buildroot] [PATCH 22/32] qt5/qt5svg: new package Thomas Petazzoni
2013-03-07 20:18 ` [Buildroot] [PATCH 23/32] qt5/qt5script: " Thomas Petazzoni
2013-03-07 20:18 ` [Buildroot] [PATCH 24/32] qt5/qt5imageformats: " Thomas Petazzoni
2013-03-07 20:18 ` [Buildroot] [PATCH 25/32] qt5/qt5xmlpatterns: " Thomas Petazzoni
2013-03-07 20:18 ` [Buildroot] [PATCH 26/32] qt5/qt5jsbackend: " Thomas Petazzoni
2013-03-12 10:37   ` [Buildroot] [PATCH] qt5jsbackend: Remove dependency on bz2 module Arnout Vandecappelle
2013-03-12 12:36     ` Thomas Petazzoni
2013-03-12 13:59       ` Arnout Vandecappelle
2013-03-07 20:18 ` [Buildroot] [PATCH 27/32] qt5/qt5declarative: new package Thomas Petazzoni
2013-03-07 20:18 ` [Buildroot] [PATCH 28/32] qt5/qt5graphicaleffects: " Thomas Petazzoni
2013-03-07 20:18 ` [Buildroot] [PATCH 29/32] qt5/qt5multimedia: " Thomas Petazzoni
2013-03-07 20:18 ` [Buildroot] [PATCH 30/32] qt5/qt5quick1: " Thomas Petazzoni
2013-03-07 20:18 ` [Buildroot] [PATCH 31/32] qt5/qt5webkit: " Thomas Petazzoni
2013-03-07 20:19 ` [Buildroot] [PATCH 32/32] qt5webkit: add EGL dir to includepath Thomas Petazzoni
2013-03-11 14:35 ` [Buildroot] [PATCH 00/32 v3] Add Qt5 packages Arnout Vandecappelle
2013-03-11 21:28   ` Thomas Petazzoni

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1362687540-19440-17-git-send-email-thomas.petazzoni@free-electrons.com \
    --to=thomas.petazzoni@free-electrons.com \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.