Skip to content
Snippets Groups Projects
Commit b162dd9e authored by Brad King's avatar Brad King
Browse files

Merge branch 'curl-pre-7.21.5' into release

parents 5b06896b 1ea55acf
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,11 @@
#include "cmCurl.h"
#include "cmSystemTools.h"
// curl versions before 7.21.5 did not provide this error code
#if defined(LIBCURL_VERSION_NUM) && LIBCURL_VERSION_NUM < 0x071505
# define CURLE_NOT_BUILT_IN 4
#endif
#define check_curl_result(result, errstr) \
if (result != CURLE_OK && result != CURLE_NOT_BUILT_IN) \
{ \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment