From fe788ee4a68d2a8ba3bc3f938172294589c36fc4 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Mon, 6 Sep 2010 11:20:51 -0500 Subject: Fix libfetch configure checking I don't know what I tested in commit 3e7b90ff6950, but it definitely wasn't working as advertised. Fix the checks in the source code itself to match the right define (HAVE_LIBFETCH), as well as make sure the configure check defaults to looking for the library but not bailing if it could not be found. Signed-off-by: Dan McGee --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 4341f1f5..b4570f58 100644 --- a/configure.ac +++ b/configure.ac @@ -150,7 +150,7 @@ AM_CONDITIONAL([HAVE_LIBSSL], [test "x$ac_cv_lib_ssl_MD5_Final" = "xyes"]) # Enable or disable usage of libfetch AC_MSG_CHECKING(whether to link with libfetch) -AS_IF([test "x$with_fetch" = "xyes"], +AS_IF([test "x$with_fetch" != "xno"], [AC_MSG_RESULT(yes) AC_CHECK_LIB([fetch], [fetchParseURL], , [if test "x$with_fetch" != "xcheck"; then -- cgit v1.2.3-24-g4f1b