Enable GNU TLS by default.
* am/tls.m4: Use --without-gnutls instead of --with-gnutls.
Showing
2 changed files
with
7 additions
and
7 deletions
... | @@ -142,10 +142,10 @@ mailutils-specific configuration options: | ... | @@ -142,10 +142,10 @@ mailutils-specific configuration options: |
142 | 142 | ||
143 | Build 'mail' without readline support. | 143 | Build 'mail' without readline support. |
144 | 144 | ||
145 | --with-gnutls | 145 | --without-gnutls |
146 | 146 | ||
147 | Enable the TLS/SSL server-side encryption via GnuTLS | 147 | Disable the TLS/SSL encryption via GnuTLS (a Transport Layer |
148 | (a Transport Layer Security Library) in IMAP4/POP3 daemons. | 148 | Security Library) in IMAP4/POP3 daemons and utilities. |
149 | 149 | ||
150 | --with-gsasl | 150 | --with-gsasl |
151 | 151 | ... | ... |
1 | dnl This file is part of GNU mailutils. | 1 | dnl This file is part of GNU mailutils. |
2 | dnl Copyright (C) 2003, 2007 Free Software Foundation, Inc. | 2 | dnl Copyright (C) 2003, 2007, 2009 Free Software Foundation, Inc. |
3 | dnl | 3 | dnl |
4 | dnl GNU Mailutils is free software; you can redistribute it and/or modify | 4 | dnl GNU Mailutils is free software; you can redistribute it and/or modify |
5 | dnl it under the terms of the GNU General Public License as published by | 5 | dnl it under the terms of the GNU General Public License as published by |
... | @@ -20,10 +20,10 @@ AC_DEFUN([MU_CHECK_TLS], | ... | @@ -20,10 +20,10 @@ AC_DEFUN([MU_CHECK_TLS], |
20 | if test "x$WITH_GNUTLS" = x; then | 20 | if test "x$WITH_GNUTLS" = x; then |
21 | cached="" | 21 | cached="" |
22 | AC_ARG_WITH([gnutls], | 22 | AC_ARG_WITH([gnutls], |
23 | AC_HELP_STRING([--with-gnutls], | 23 | AC_HELP_STRING([--without-gnutls], |
24 | [use GNU TLS library]), | 24 | [do not use GNU TLS library]), |
25 | [WITH_GNUTLS=$withval], | 25 | [WITH_GNUTLS=$withval], |
26 | [WITH_GNUTLS=no]) | 26 | [WITH_GNUTLS=yes]) |
27 | 27 | ||
28 | if test "$WITH_GNUTLS" != "no"; then | 28 | if test "$WITH_GNUTLS" != "no"; then |
29 | AC_CHECK_HEADER(gnutls/gnutls.h, | 29 | AC_CHECK_HEADER(gnutls/gnutls.h, | ... | ... |
-
Please register or sign in to post a comment