From b8191fb7c0a5314d0ce3a1069047da3ba02b7491 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Mon, 8 Feb 2010 05:30:13 +0000 Subject: [PATCH] fixed configure script to build with DHT logging --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index d7bbd8fbb..359dc595d 100644 --- a/configure.ac +++ b/configure.ac @@ -603,7 +603,7 @@ AS_CASE(["$ARG_WITH_LIBGEOIP"], # Setting conditional variables for Makefiles ############################################################################### -AM_CONDITIONAL([ENABLE_DHT], [test "x$ARG_ENABLE_DHT" = "xyes"]) +AM_CONDITIONAL([ENABLE_DHT], [test "x$ARG_ENABLE_DHT" = "xyes" -o "x$ARG_ENABLE_DHT" = "xlogging" ]) AM_CONDITIONAL([ENABLE_EXAMPLES], [test "x$ARG_ENABLE_EXAMPLES" = "xyes"]) AM_CONDITIONAL([ENABLE_TESTS], [test "x$ARG_ENABLE_TESTS" = "xyes"]) AM_CONDITIONAL([ENABLE_PYTHON_BINDING], [test "x$ARG_ENABLE_PYTHON_BINDING" = "xyes"])