summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojciech Polak <polak@gnu.org>2009-08-01 09:33:53 +0200
committerWojciech Polak <polak@gnu.org>2009-08-01 09:35:17 +0200
commit7fb746b5ac15d43e071944c1503dea43ef24d732 (patch)
treeadcbdeee2917a5f78f40a03edc1c646d3a63fdfd
parent8aabb8182b093d6b7acf3b99d749e606bf9f5d47 (diff)
downloadmailutils-7fb746b5ac15d43e071944c1503dea43ef24d732.tar.gz
mailutils-7fb746b5ac15d43e071944c1503dea43ef24d732.tar.bz2
Enable GNU TLS by default.
* am/tls.m4: Use --without-gnutls instead of --with-gnutls.
-rw-r--r--README6
-rw-r--r--am/tls.m48
2 files changed, 7 insertions, 7 deletions
diff --git a/README b/README
index d774bd543..7204a5770 100644
--- a/README
+++ b/README
@@ -142,10 +142,10 @@ mailutils-specific configuration options:
Build 'mail' without readline support.
- --with-gnutls
+ --without-gnutls
- Enable the TLS/SSL server-side encryption via GnuTLS
- (a Transport Layer Security Library) in IMAP4/POP3 daemons.
+ Disable the TLS/SSL encryption via GnuTLS (a Transport Layer
+ Security Library) in IMAP4/POP3 daemons and utilities.
--with-gsasl
diff --git a/am/tls.m4 b/am/tls.m4
index 61a6beb8d..a95d9083f 100644
--- a/am/tls.m4
+++ b/am/tls.m4
@@ -1,5 +1,5 @@
dnl This file is part of GNU mailutils.
-dnl Copyright (C) 2003, 2007 Free Software Foundation, Inc.
+dnl Copyright (C) 2003, 2007, 2009 Free Software Foundation, Inc.
dnl
dnl GNU Mailutils is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
@@ -20,10 +20,10 @@ AC_DEFUN([MU_CHECK_TLS],
if test "x$WITH_GNUTLS" = x; then
cached=""
AC_ARG_WITH([gnutls],
- AC_HELP_STRING([--with-gnutls],
- [use GNU TLS library]),
+ AC_HELP_STRING([--without-gnutls],
+ [do not use GNU TLS library]),
[WITH_GNUTLS=$withval],
- [WITH_GNUTLS=no])
+ [WITH_GNUTLS=yes])
if test "$WITH_GNUTLS" != "no"; then
AC_CHECK_HEADER(gnutls/gnutls.h,

Return to:

Send suggestions and report system problems to the System administrator.