We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c466923 commit a8b48c0Copy full SHA for a8b48c0
Sources/_CFURLSessionInterface/include/CFURLSessionInterface.h
@@ -34,6 +34,11 @@
34
#if defined(_WIN32)
35
#include <winsock2.h>
36
#endif
37
+#include <curl/curlver.h>
38
+
39
+#if !defined(LIBCURL_VERSION_MAJOR)
40
+#error "LIBCURL_VERSION_MAJOR not defined, missing curlver.h"
41
+#endif
42
43
// 7.84.0 or later
44
#if LIBCURL_VERSION_MAJOR > 7 || (LIBCURL_VERSION_MAJOR == 7 && LIBCURL_VERSION_MINOR > 84) || (LIBCURL_VERSION_MAJOR == 7 && LIBCURL_VERSION_MINOR == 84 && LIBCURL_VERSION_PATCH >= 0)
0 commit comments