From: David Levine Date: Mon, 7 Jul 2014 03:22:38 +0000 (-0500) Subject: Here's an even simpler fix to enable TLS by default. X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/f1f778e727253c88411d312eb5d6b9db07af6ee3?ds=sidebyside;hp=-c Here's an even simpler fix to enable TLS by default. --- f1f778e727253c88411d312eb5d6b9db07af6ee3 diff --git a/configure.ac b/configure.ac index 7fb50025..62d8cbbe 100644 --- a/configure.ac +++ b/configure.ac @@ -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])