summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"])