]> diplodocus.org Git - nmh/commitdiff
Here's an even simpler fix to enable TLS by default.
authorDavid Levine <levinedl@acm.org>
Mon, 7 Jul 2014 03:22:38 +0000 (22:22 -0500)
committerDavid Levine <levinedl@acm.org>
Mon, 7 Jul 2014 03:22:38 +0000 (22:22 -0500)
configure.ac

index 7fb5002583d8793870a1d6716e2f62a88a7d9875..62d8cbbe384aaf1095e563974a537e30b008cbe1 100644 (file)
@@ -42,7 +42,7 @@ AS_IF([test x"$with_cyrus_sasl" != x -a x"$with_cyrus_sasl" != x"no"],[
 
 dnl Do you want client-side support for encryption with TLS?
 AC_ARG_WITH([tls], AS_HELP_STRING([--with-tls], [Enable TLS support]))
-AS_IF([test x"$with_tls" = x -o x"$with_tls" != x"no"],[
+AS_IF([test x"$with_tls" != x"no"],[
       AC_DEFINE([TLS_SUPPORT], [1], [Support TLS for session encryption.])dnl
       tls_support=yes],[tls_support=no])