diff options
author | David Shaw <[email protected]> | 2006-04-26 21:48:29 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2006-04-26 21:48:29 +0000 |
commit | e87d36ccf624d2bbb731a0187e0bcff94243d83d (patch) | |
tree | 929d931a82d14d4af3389f643355863f9757d047 /keyserver/gpgkeys_hkp.c | |
parent | * keyserver.c: Fix build problem with platforms that stick libcurl in (diff) | |
download | gnupg-e87d36ccf624d2bbb731a0187e0bcff94243d83d.tar.gz gnupg-e87d36ccf624d2bbb731a0187e0bcff94243d83d.zip |
* Makefile.am: Don't build gpgkeys_http or gpgkeys_(old)hkp any longer as
this is done via curl or fake-curl.
* ksutil.h, ksutil.c, gpgkeys_hkp.c, gpgkeys_curl.c: Minor #include tweaks
as FAKE_CURL is no longer meaningful.
Diffstat (limited to 'keyserver/gpgkeys_hkp.c')
-rw-r--r-- | keyserver/gpgkeys_hkp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/keyserver/gpgkeys_hkp.c b/keyserver/gpgkeys_hkp.c index c1160fa33..b3ebcf1a9 100644 --- a/keyserver/gpgkeys_hkp.c +++ b/keyserver/gpgkeys_hkp.c @@ -28,10 +28,10 @@ #ifdef HAVE_GETOPT_H #include <getopt.h> #endif -#ifdef FAKE_CURL -#include "curl-shim.h" -#else +#ifdef HAVE_LIBCURL #include <curl/curl.h> +#else +#include "curl-shim.h" #endif #include "keyserver.h" #include "ksutil.h" |