diff options
-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) |