From 55c6fbd978d2d6922a2cd72c422ae8c581268721 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Sat, 4 Nov 2023 07:23:28 +0100 Subject: {CMakeLists.txt,src/service.c}: Make building against librda optional. --- CMakeLists.txt | 13 ++++++++++++- src/service.c | 9 +++++++-- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d278421..ba9f80a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,6 +16,7 @@ option(ENABLE_COVERAGE "Enable coverage reports (includes enabling all tests and option(ENABLE_WERROR "Treat all build warnings as errors" OFF) option(ENABLE_LOMIRI_FEATURES "Build with Lomiri-specific libraries, schemas and media" OFF) option(ENABLE_DEVICEINFO "Build with deviceinfo integration" OFF) +option(ENABLE_RDA "Build with RDA (remote desktop awareness) support" ON) if(ENABLE_COVERAGE) set(ENABLE_TESTS ON) @@ -73,7 +74,6 @@ set( gio-unix-2.0>=2.36 libnotify>=0.7.6 libayatana-common>=0.9.1 - rda ) if (ENABLE_LOMIRI_FEATURES) @@ -90,6 +90,17 @@ if (ENABLE_LOMIRI_FEATURES) ) endif () +if (ENABLE_RDA) + list ( + APPEND + SERVICE_DEPS + rda + ) + add_definitions ( + -DRDA_ENABLED + ) +endif () + pkg_check_modules (SERVICE_DEPS REQUIRED ${SERVICE_DEPS}) include_directories (SYSTEM ${SERVICE_DEPS_INCLUDE_DIRS}) diff --git a/src/service.c b/src/service.c index bcc3950..69de20b 100644 --- a/src/service.c +++ b/src/service.c @@ -22,7 +22,9 @@ #include #include -#include +#ifdef RDA_ENABLED +# include +#endif /* RDA_ENABLED */ #include #include "brightness.h" #include "dbus-shared.h" @@ -1189,11 +1191,14 @@ indicator_power_service_init (IndicatorPowerService * self) p->cancellable = g_cancellable_new (); +#ifdef RDA_ENABLED if (!ayatana_common_utils_is_lomiri()) { p->bLocal = rda_session_is_local (); } - else { + else +#endif /* RDA_ENABLED */ + { p->bLocal = TRUE; } p->settings = g_settings_new ("org.ayatana.indicator.power"); -- cgit v1.2.3