mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
Removed unnecessary certificate bundling on NetBSD.
This commit is contained in:
parent
aefc80b222
commit
5d1b6d2475
|
@ -61,10 +61,7 @@ HttpReq::HttpReq(const std::string& url) : mStatus(REQ_IN_PROGRESS), mHandle(nul
|
||||||
// Mozilla project). There is a possibility to use the OS provided Schannel certificates
|
// Mozilla project). There is a possibility to use the OS provided Schannel certificates
|
||||||
// but I haven't been able to get this to work and it also seems to be problematic on
|
// but I haven't been able to get this to work and it also seems to be problematic on
|
||||||
// older Windows versions.
|
// older Windows versions.
|
||||||
// For NetBSD 9.1 there is something wrong with the bundled Mozilla certificates,
|
#if defined(_WIN64)
|
||||||
// requiring us to bundle our own certificates. Maybe this will be resolved in future
|
|
||||||
// NetBSD versions, in which case this code can be disabled.
|
|
||||||
#if defined(_WIN64) || defined(__NetBSD__)
|
|
||||||
curl_easy_setopt(mHandle, CURLOPT_CAINFO, ResourceManager::getInstance()->
|
curl_easy_setopt(mHandle, CURLOPT_CAINFO, ResourceManager::getInstance()->
|
||||||
getResourcePath(":/certificates/curl-ca-bundle.crt").c_str());
|
getResourcePath(":/certificates/curl-ca-bundle.crt").c_str());
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue