diff options
author | Dan McGee <dan@archlinux.org> | 2010-09-02 19:29:29 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-09-02 19:30:36 +0200 |
commit | 3e7b90ff6950d1efe2aa8c16b8031b05fbe2f310 (patch) | |
tree | 0a84c765945c7035a0571b1c7bec0582f39d8288 /lib/libalpm/error.c | |
parent | eba521913d68da16cdd18d5e996c00c554408272 (diff) | |
download | pacman-3e7b90ff6950d1efe2aa8c16b8031b05fbe2f310.tar.gz pacman-3e7b90ff6950d1efe2aa8c16b8031b05fbe2f310.tar.xz |
Clean up libfetch checking in configure
Model it after the new OpenSSL check, and have it be a bit more useful. If
you do not explicitly pass a command line option, it will be linked if
available but will not error out if it is missing. Also bump the version to
that where connection caching was introduced as we use these new features in
the codebase.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/error.c')
-rw-r--r-- | lib/libalpm/error.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libalpm/error.c b/lib/libalpm/error.c index 8d8d0458..b64ee67c 100644 --- a/lib/libalpm/error.c +++ b/lib/libalpm/error.c @@ -31,7 +31,7 @@ #include <sys/param.h> /* MAXHOSTNAMELEN */ #endif -#if defined(INTERNAL_DOWNLOAD) +#ifdef HAVE_FETCH #include <fetch.h> /* fetchLastErrString */ #endif @@ -145,7 +145,7 @@ const char SYMEXPORT *alpm_strerror(int err) * error string instead. */ return _("libarchive error"); case PM_ERR_LIBFETCH: -#if defined(INTERNAL_DOWNLOAD) +#ifdef HAVE_FETCH return fetchLastErrString; #else /* obviously shouldn't get here... */ |