diff options
author | Stefano Karapetsas <[email protected]> | 2014-11-10 11:42:22 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-11-10 11:42:22 +0100 |
commit | 4b955633d160456b5494c077fc4fb55fade3731f (patch) | |
tree | 616f7d82ff96840ffe4e825a0709841d28e3b6f5 | |
parent | 0b80b78b9cddba9aa96fa86ec21aa79c7fa62763 (diff) | |
download | mate-session-manager-4b955633d160456b5494c077fc4fb55fade3731f.tar.bz2 mate-session-manager-4b955633d160456b5494c077fc4fb55fade3731f.tar.xz |
Disable upower support by defaultmate-session-manager-1.9.2
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ 1.9.2 - * + * Disable upower support by default (use --enable-upower if you need it) 1.8.1 * Add autostart of accessibility apps diff --git a/configure.ac b/configure.ac index a3b6543..b4cd4dc 100644 --- a/configure.ac +++ b/configure.ac @@ -136,7 +136,7 @@ AC_ARG_ENABLE(upower, AS_HELP_STRING([--enable-upower], [Use upower to suspend/hibernate]), enable_upower=$enableval, - enable_upower=yes) + enable_upower=no) if test "x$enable_upower" = "xyes"; then PKG_CHECK_MODULES(UPOWER, upower-glib >= $UPOWER_REQUIRED, has_upower=yes, has_upower=no) |