From 98223ce40e9b17a11e0644804ca8534448603d16 Mon Sep 17 00:00:00 2001 From: NP-Hardass Date: Mon, 3 Aug 2020 02:01:10 -0400 Subject: Switch default from libgnome-keyring to libsecret --- configure.ac | 12 ++++++------ 1 file 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"]) -- cgit v1.2.1