From a5f369c480c768173881486ad057335cae6228d9 Mon Sep 17 00:00:00 2001 From: raveit65 Date: Fri, 5 Aug 2016 15:07:13 +0200 Subject: cpu-freq: avoid deprecated polkit_authority_get And bump polkit requirement. polkit_authority_get is deprecated since polkit-0.97 from 2010. So the requirement bump should be save for all distros. --- configure.ac | 2 +- cpufreq/src/cpufreq-selector/cpufreq-selector-service.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index b618adb0..8e4eced2 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,7 @@ UPOWER_REQUIRED=0.9.4 DBUS_REQUIRED=1.1.2 DBUS_GLIB_REQUIRED=0.74 LIBXML_REQUIRED=2.5.0 -POLKIT_REQUIRED=0.92 +POLKIT_REQUIRED=0.97 dnl *************************************************************************** AM_MAINTAINER_MODE diff --git a/cpufreq/src/cpufreq-selector/cpufreq-selector-service.c b/cpufreq/src/cpufreq-selector/cpufreq-selector-service.c index e373c55c..e2962e16 100644 --- a/cpufreq/src/cpufreq-selector/cpufreq-selector-service.c +++ b/cpufreq/src/cpufreq-selector/cpufreq-selector-service.c @@ -231,7 +231,7 @@ cpufreq_selector_service_register (CPUFreqSelectorService *service, return FALSE; } - service->authority = polkit_authority_get (); + service->authority = polkit_authority_get_sync (NULL, NULL); service->system_bus = connection; -- cgit v1.2.1