aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-09-01 13:43:14 +0000
committerChristian Grothoff <christian@grothoff.org>2010-09-01 13:43:14 +0000
commitac0043ff0ae833bcaea1b26440dfe6472f851486 (patch)
tree0938c9742bd9285edba240c5e84f06a2941a9b3a /configure.ac
parenta2da1819c6be4fa6949b13b7156aa34c054d555b (diff)
downloadlibmicrohttpd-ac0043ff0ae833bcaea1b26440dfe6472f851486.tar.gz
libmicrohttpd-ac0043ff0ae833bcaea1b26440dfe6472f851486.zip
From:
Amr Ali <amr.ali.cc@gmail.com> To: Christian Grothoff <christian@grothoff.org> Date: Today 15:24:06 Attachments: http_dauth_r5.patch Attached is a patch for all points discussed below.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac13
1 files changed, 4 insertions, 9 deletions
diff --git a/configure.ac b/configure.ac
index 99f7538b..617ca316 100644
--- a/configure.ac
+++ b/configure.ac
@@ -338,20 +338,15 @@ AC_ARG_ENABLE([dauth],
338 338
339if test "x$disable_dauth" != "xyes" 339if test "x$disable_dauth" != "xyes"
340then 340then
341 if test "$gcrypt" = "true" 341 AC_DEFINE([DAUTH_SUPPORT],[1],[include Digest Auth support])
342 then 342 enable_dauth="yes"
343 enable_dauth="yes"
344 MHD_LIBDEPS="$LIBGCRYPT_LIBS"
345 else
346 disable_dauth="yes (lacking libgcrypt)"
347 enable_dauth="no (lacking libgcrypt)"
348 fi
349else 343else
344 AC_DEFINE([DAUTH_SUPPORT],[0],[disable Digest Auth support])
350 enable_dauth="no" 345 enable_dauth="no"
351fi 346fi
352AC_MSG_RESULT($disable_dauth) 347AC_MSG_RESULT($disable_dauth)
353 348
354AM_CONDITIONAL(ENABLE_DAUTH, [test "x$disable_dauth" != "xyes" -a "$gcrypt" = "true"]) 349AM_CONDITIONAL(ENABLE_DAUTH, [test "x$disable_dauth" != "xyes"])
355 350
356MHD_LIB_LDFLAGS="-export-dynamic -no-undefined" 351MHD_LIB_LDFLAGS="-export-dynamic -no-undefined"
357 352