From b19ce03f92d310d8fef5781ee3384572e6ae10f8 Mon Sep 17 00:00:00 2001 From: "Anton V. Boyarshinov" Date: Mon, 8 Apr 2013 18:33:55 +0400 Subject: add logind sleep ability With upower 0.9.20, sleep and hybernate functions of upower declared deprecated. All applications should use logind for sleep/hybernate. So, there is an implementation of logind-powered sleep for mpm. --- configure.ac | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 9a4e570..f4bd119 100644 --- a/configure.ac +++ b/configure.ac @@ -304,6 +304,27 @@ fi AM_CONDITIONAL(WITH_SYSTEMD_INHIBIT, test x$use_systemdinhibit = xyes) AC_SUBST(WITH_SYSTEMD_INHIBIT) +dnl --------------------------------------------------------------------------- +dnl systemd sleep +dnl --------------------------------------------------------------------------- + +AC_ARG_WITH(systemdsleep, + AS_HELP_STRING([--with-systemdsleep], + [Use logind for suspend and hibernate instead of upower]),, + with_systemdsleep=auto) + +use_systemdsleep=no +if test "x$with_systemdsleep" != "xno" ; then + PKG_CHECK_MODULES(SYSTEMD_SLEEP, libsystemd-login >= 195 libsystemd-daemon >= 195 , use_systemdsleep=yes, use_systemdsleep=no) + + if test "x$use_systemdsleep" = "xyes"; then + AC_DEFINE(WITH_SYSTEMD_SLEEP, 1, [systemdsleeo support]) + fi + +fi +AM_CONDITIONAL(WITH_SYSTEMD_SLEEP, test x$use_systemdsleep = xyes) +AC_SUBST(WITH_SYSTEMD_SLEEP) + dnl --------------------------------------------------------------------------- dnl - DocBook Documentation dnl --------------------------------------------------------------------------- @@ -419,6 +440,7 @@ echo " Self test support: ${have_tests} Use libunique: ${enable_libunique} systemd support: ${use_systemdinhibit} + systemd sleep support: ${use_systemdsleep} Docbook support: ${enable_docbook_docs} documentation dir: $DOCDIR dbus-1 services dir: $DBUS_SERVICES_DIR -- cgit v1.2.1