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 --- lib/libalpm/alpm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/libalpm/alpm.c') diff --git a/lib/libalpm/alpm.c b/lib/libalpm/alpm.c index 6f4f4a4c..3f9cfff3 100644 --- a/lib/libalpm/alpm.c +++ b/lib/libalpm/alpm.c @@ -24,7 +24,7 @@ #include "config.h" /* connection caching setup */ -#ifdef HAVE_FETCH +#ifdef HAVE_LIBFETCH #include #endif @@ -59,7 +59,7 @@ int SYMEXPORT alpm_initialize(void) bindtextdomain("libalpm", LOCALEDIR); #endif -#ifdef HAVE_FETCH +#ifdef HAVE_LIBFETCH fetchConnectionCacheInit(5, 1); #endif @@ -82,7 +82,7 @@ int SYMEXPORT alpm_release(void) _alpm_handle_free(handle); handle = NULL; -#ifdef HAVE_FETCH +#ifdef HAVE_LIBFETCH fetchConnectionCacheClose(); #endif -- cgit v1.2.3-24-g4f1b