summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNP-Hardass <[email protected]>2020-08-03 02:01:10 -0400
committerraveit65 <[email protected]>2020-10-20 10:34:23 +0200
commit98223ce40e9b17a11e0644804ca8534448603d16 (patch)
treed84ec2351200116f08f521fc9ef38226c424caca
parent4adf870bba859c693f9f4caf21bcfe911a64572d (diff)
downloadmate-power-manager-98223ce40e9b17a11e0644804ca8534448603d16.tar.bz2
mate-power-manager-98223ce40e9b17a11e0644804ca8534448603d16.tar.xz
Switch default from libgnome-keyring to libsecret
-rw-r--r--configure.ac12
1 files changed, 6 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index b4758dc..7fbc820 100644
--- a/configure.ac
+++ b/configure.ac
@@ -139,10 +139,10 @@ dnl ---------------------------------------------------------------------------
dnl - Build libsecret support
dnl ---------------------------------------------------------------------------
AC_ARG_WITH(libsecret,
- [AS_HELP_STRING([--with-libsecret],
- [Enable the use of libsecret])],
+ [AS_HELP_STRING([--without-libsecret],
+ [Disable the use of libsecret])],
[],
- [with_libsecret=no])
+ [with_libsecret=yes])
AM_CONDITIONAL([WITH_LIBSECRET],[test "$with_libsecret" = "yes"])
@@ -155,10 +155,10 @@ dnl ---------------------------------------------------------------------------
dnl - Build gnome-keyring support
dnl ---------------------------------------------------------------------------
AC_ARG_WITH(keyring,
- [AS_HELP_STRING([--without-keyring],
- [Disable the use of gnome-keyring])],
+ [AS_HELP_STRING([--with-keyring],
+ [Enable the use of gnome-keyring])],
[],
- [with_keyring=yes])
+ [with_keyring=no])
AM_CONDITIONAL([WITH_KEYRING],[test "$with_keyring" = "yes"])