mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 18:50:05 +00:00
Disable compile time selection of certs on Linux. SSL cert location is not standardized
This commit is contained in:
parent
3537a233ca
commit
152d072242
1 changed files with 3 additions and 1 deletions
|
|
@ -31,7 +31,9 @@ class SupercellWxConan(ConanFile):
|
||||||
if self.settings.os == "Windows":
|
if self.settings.os == "Windows":
|
||||||
self.options["libcurl"].with_ssl = "schannel"
|
self.options["libcurl"].with_ssl = "schannel"
|
||||||
elif self.settings.os == "Linux":
|
elif self.settings.os == "Linux":
|
||||||
self.options["openssl"].shared = True
|
self.options["openssl"].shared = True
|
||||||
|
self.options["libcurl"].ca_bundle = "none"
|
||||||
|
self.options["libcurl"].ca_path = "none"
|
||||||
|
|
||||||
def requirements(self):
|
def requirements(self):
|
||||||
if self.settings.os == "Linux":
|
if self.settings.os == "Linux":
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue