1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-31 12:49:46 +00:00

sysprof: fix floating dependency on polkit

Fix the floating dependency on polkit by providing a PACKAGECONFIG
option. Then, package the newly created files appropriately.

[YOCTO #9987]

(From OE-Core rev: a1ecd168b092a0cc7322431913fd1f42cfa9a37e)

Signed-off-by: Maxin B. John <maxin.john@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Maxin B. John
2016-07-22 09:26:33 +03:00
committed by Richard Purdie
parent 71d0c871c9
commit 6660e95cbf
2 changed files with 47 additions and 2 deletions
@@ -0,0 +1,41 @@
From 2b4005d72d3393933a7914be102ea65505c536cc Mon Sep 17 00:00:00 2001
From: "Maxin B. John" <maxin.john@intel.com>
Date: Thu, 21 Jul 2016 11:53:31 +0300
Subject: [PATCH] configure: Add option to enable/disable polkit
Changes the configure behaviour from autodetecting the polkit by default
to having an option to disable it explicitly
Upstream-Status: Pending
Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
configure.ac | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/configure.ac b/configure.ac
index 2246d5a..3d3fe0f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -104,10 +104,18 @@ PKG_CHECK_MODULES(GTK,
[gtk+-3.0 >= gtk_required_version],
[have_gtk=yes],
[have_gtk=no])
+AC_ARG_ENABLE([polkit],
+ AS_HELP_STRING([--disable-polkit], [Do not use Polkit]),
+ [enable_polkit="$enableval"], [enable_polkit="yes"])
+
+AS_IF([test "x$enable_polkit" = "xyes"], [
PKG_CHECK_MODULES(POLKIT,
[polkit-gobject-1],
[have_polkit=yes],
[have_polkit=no])
+ ])
+AM_CONDITIONAL([HAVE_POLKIT], [test "x$enable_polkit" = "xyes"])
+
PKG_CHECK_MODULES(SYSTEMD,
[libsystemd >= systemd_required_version],
[have_systemd=yes],
--
2.4.0