commit 9e8530eea82f0c1d84f1eff5f01229e7ab6fd6d3
parent 4327f75e6752eca6ded53abc6ea48b48bf1eea17
Author: Christian Grothoff <christian@grothoff.org>
Date: Fri, 12 Sep 2014 15:35:01 +0000
fix #3543
Diffstat:
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,6 @@
+Fri Sep 12 17:32:09 CEST 2014
+ Fix --disable-dauth configure option (#3543). -doostee
+
Thu Jun 26 21:06:04 CEST 2014
Fix failure to terminate 'instantly' in thread-per-connection
mode if there is a client with open connections.
diff --git a/configure.ac b/configure.ac
@@ -726,7 +726,7 @@ AC_ARG_ENABLE([dauth],
[disable HTTP basic and digest Auth support]),
[enable_dauth=${enableval}],
[enable_dauth=yes])
-if test "$enable_dauth" != "xno"
+if test "x$enable_dauth" != "xno"
then
enable_dauth=yes
AC_DEFINE([DAUTH_SUPPORT],[1],[include digest Auth support])