aboutsummaryrefslogtreecommitdiff
path: root/src/curl
diff options
context:
space:
mode:
authorDaniel Golle <daniel@makrotopia.org>2016-04-18 14:28:26 +0000
committerDaniel Golle <daniel@makrotopia.org>2016-04-18 14:28:26 +0000
commitb6e9bdec3870351a286af06d8ae1ae7649b75665 (patch)
treef9ef0912237ba7e0c9730a3836f3c0fc0a175223 /src/curl
parenta7493f09eb70c41d58014941964daf54f6255910 (diff)
downloadgnunet-b6e9bdec3870351a286af06d8ae1ae7649b75665.tar.gz
gnunet-b6e9bdec3870351a286af06d8ae1ae7649b75665.zip
curl: fix building with gnurl/curl.h
Diffstat (limited to 'src/curl')
-rw-r--r--src/curl/curl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/curl/curl.c b/src/curl/curl.c
index 9276915b3..92761989f 100644
--- a/src/curl/curl.c
+++ b/src/curl/curl.c
@@ -21,7 +21,11 @@
21 * @author Christian Grothoff 21 * @author Christian Grothoff
22 */ 22 */
23#include "platform.h" 23#include "platform.h"
24#if HAVE_CURL_CURL_H
24#include <curl/curl.h> 25#include <curl/curl.h>
26#elif HAVE_GNURL_CURL_H
27#include <gnurl/curl.h>
28#endif
25#include <jansson.h> 29#include <jansson.h>
26#include "gnunet_curl_lib.h" 30#include "gnunet_curl_lib.h"
27 31