Merge pull request #1722 from bhipple/fix-for-older-libcurl

Fix for builds with system libcurl < 7.30
This commit is contained in:
Eelco Dolstra 2017-12-12 11:48:08 +01:00 committed by GitHub
commit 1ca8e95178
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -369,11 +369,13 @@ struct CurlDownloader : public Downloader
curlm = curl_multi_init();
#if LIBCURL_VERSION_NUM >= 0x072b00 // correct?
#if LIBCURL_VERSION_NUM >= 0x072b00 // Multiplex requires >= 7.43.0
curl_multi_setopt(curlm, CURLMOPT_PIPELINING, CURLPIPE_MULTIPLEX);
#endif
#if LIBCURL_VERSION_NUM >= 0x071e00 // Max connections requires >= 7.30.0
curl_multi_setopt(curlm, CURLMOPT_MAX_TOTAL_CONNECTIONS,
settings.binaryCachesParallelConnections.get());
#endif
enableHttp2 = settings.enableHttp2;