From 93eb19334f4186ac75db2b946a3bcaf0b8a6adc2 Mon Sep 17 00:00:00 2001 From: fritsch Date: Sat, 23 Jul 2016 21:34:05 +0200 Subject: [PATCH] Curl: Support libcurl version 7.5.0 Signed-off-by: Bernd Kuhls (Downloaded from upstream PR: https://github.com/xbmc/xbmc/pull/10160) --- xbmc/filesystem/CurlFile.h | 6 ++++++ xbmc/filesystem/DllLibCurl.h | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/xbmc/filesystem/CurlFile.h b/xbmc/filesystem/CurlFile.h index b4f5046..81a5ae5 100644 --- a/xbmc/filesystem/CurlFile.h +++ b/xbmc/filesystem/CurlFile.h @@ -24,11 +24,17 @@ #include #include #include "utils/HttpHeader.h" +#include namespace XCURL { +#if LIBCURL_VERSION_NUM >= 0x073200 + typedef struct Curl_easy CURL_HANDLE; + typedef struct Curl_multi CURLM; +#else typedef void CURL_HANDLE; typedef void CURLM; +#endif struct curl_slist; } diff --git a/xbmc/filesystem/DllLibCurl.h b/xbmc/filesystem/DllLibCurl.h index db97f92..3128999 100644 --- a/xbmc/filesystem/DllLibCurl.h +++ b/xbmc/filesystem/DllLibCurl.h @@ -52,7 +52,11 @@ namespace XCURL virtual CURLMcode multi_fdset(CURLM *multi_handle, fd_set *read_fd_set, fd_set *write_fd_set, fd_set *exc_fd_set, int *max_fd)=0; virtual CURLMcode multi_timeout(CURLM *multi_handle, long *timeout)=0; virtual CURLMsg* multi_info_read(CURLM *multi_handle, int *msgs_in_queue)=0; +#if LIBCURL_VERSION_NUM >= 0x073200 + virtual void multi_cleanup(CURLM * handle )=0; +#else virtual void multi_cleanup(CURL_HANDLE * handle )=0; +#endif virtual struct curl_slist* slist_append(struct curl_slist *, const char *)=0; virtual void slist_free_all(struct curl_slist *)=0; };