diff options
author | NP-Hardass <[email protected]> | 2020-08-03 02:01:10 -0400 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-10-20 10:34:23 +0200 |
commit | 98223ce40e9b17a11e0644804ca8534448603d16 (patch) | |
tree | d84ec2351200116f08f521fc9ef38226c424caca | |
parent | 4adf870bba859c693f9f4caf21bcfe911a64572d (diff) | |
download | mate-power-manager-98223ce40e9b17a11e0644804ca8534448603d16.tar.bz2 mate-power-manager-98223ce40e9b17a11e0644804ca8534448603d16.tar.xz |
Switch default from libgnome-keyring to libsecret
-rw-r--r-- | configure.ac | 12 |
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"]) |