From patchwork Fri Feb 1 09:22:02 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: polkit: Enable systemd support Date: Fri, 01 Feb 2013 09:22:02 -0000 From: Radu Moisan X-Patchwork-Id: 43799 Message-Id: <1359710522-26839-1-git-send-email-radu.moisan@intel.com> To: openembedded-core@lists.openembedded.org enable/disable support as relevant Signed-off-by: Radu Moisan Signed-off-by: Andreas Müller --- meta/recipes-extended/polkit/polkit_0.104.bb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/meta/recipes-extended/polkit/polkit_0.104.bb b/meta/recipes-extended/polkit/polkit_0.104.bb index 2c0aaca..08e016a 100644 --- a/meta/recipes-extended/polkit/polkit_0.104.bb +++ b/meta/recipes-extended/polkit/polkit_0.104.bb @@ -7,8 +7,13 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=155db86cdbafa7532b41f390409283eb \ DEPENDS = "expat glib-2.0 intltool-native gobject-introspection-stub" -PACKAGECONFIG = "${@base_contains('DISTRO_FEATURES', 'pam', 'pam', '', d)}" +PACKAGECONFIG = "${@base_contains('DISTRO_FEATURES', 'pam', 'pam', '', d)} \ + ${@base_contains('DISTRO_FEATURES','systemd','systemd','consolekit',d)}" + PACKAGECONFIG[pam] = "--with-authfw=pam,--with-authfw=shadow,libpam,libpam" +PACKAGECONFIG[systemd] = "--enable-systemd,--disable-systemd,systemd" +# there is no --enable/--disable option for consolekit and it's not picked by shlibs, so add it to DEPENDS +PACKAGECONFIG[consolekit] = ",,,consolekit" PR = "r9"