From 8de2d7a34e55a25f96fba3482b6c9c8385812767 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20D=C3=ADaz=20M=C3=A1s?= Date: Thu, 22 Apr 2021 22:14:42 +0200 Subject: [PATCH] conan: fixes for Windows --- conanfile.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/conanfile.py b/conanfile.py index 608f3753..6afea2ec 100644 --- a/conanfile.py +++ b/conanfile.py @@ -30,16 +30,10 @@ class Exiv2Conan(ConanFile): if self.options.unitTests: self.requires('gtest/1.10.0') - if self.options.webready and not os_info.is_macos: - if os_info.is_windows: - self.options['libcurl'].with_ssl = 'darwinssl' - else: - self.options['libcurl'].with_ssl = 'openssl' - if self.options.xmp: self.requires('XmpSdk/2016.7@piponazo/stable') # from conan-piponazo else: - self.requires('expat/2.3.0') + self.requires('expat/2.2.7') def imports(self): self.copy('*.dll', dst='conanDlls', src='bin')