]> diplodocus.org Git - nmh/blobdiff - configure.ac
When mhparam(1) is going to output the value for spoollocking,
[nmh] / configure.ac
index 923a0fea4a5e2fcf8299105f276b287cca8aea7c..62d8cbbe384aaf1095e563974a537e30b008cbe1 100644 (file)
@@ -1,6 +1,8 @@
 dnl
 dnl configure.ac -- autoconf template for nmh
 dnl
+
+dnl Move this up a bit
 AC_PREREQ([2.68])
 
 AC_INIT([nmh], m4_normalize(m4_include([VERSION])), [nmh-workers@nongnu.org])
@@ -36,13 +38,13 @@ AS_IF([test x"$with_cyrus_sasl" != x -a x"$with_cyrus_sasl" != x"no"],[
       AS_IF([test x"$with_cyrus_sasl" != xyes],[
            AC_MSG_WARN([Arguments to --with-cyrus-sasl now ignored])
            AC_MSG_WARN([Please pass the appropriate arguments to CPPFLAGS/LDFLAGS])])
-      sasl_support=no], [sasl_support=yes])
+      sasl_support=yes], [sasl_support=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 -a 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=no],[tls_support=yes])
+      tls_support=yes],[tls_support=no])
 
 dnl Set the backup prefix
 AC_ARG_WITH([hash-backup],