diff --git a/recipes/azure-storage-cpp/all/conanfile.py b/recipes/azure-storage-cpp/all/conanfile.py index e9f526218cd0e..2ffdc2537aa11 100644 --- a/recipes/azure-storage-cpp/all/conanfile.py +++ b/recipes/azure-storage-cpp/all/conanfile.py @@ -64,7 +64,7 @@ def requirements(self): self.requires("cpprestsdk/2.10.19", transitive_headers=True, transitive_libs=True) # LibXML2 v2.12+ from CCI is not compatible. Needs to be built with -DLIBXML_OUTPUT_ENABLED: # https://github.com/GNOME/libxml2/commit/5d2dbe79fae5618d0bd2a7e52be9cf98b11d98ad - self.requires("libxml2/2.11.5", transitive_headers=True, transitive_libs=True) + self.requires("libxml2/[>=2.12.5 <3]", transitive_headers=True, transitive_libs=True) if self.settings.os != "Windows": # Boost.Asio is used in a public header here: # https://github.com/Azure/azure-storage-cpp/blob/v7.5.0/Microsoft.WindowsAzure.Storage/includes/wascore/timer_handler.h#L27 @@ -72,7 +72,7 @@ def requirements(self): self.requires("util-linux-libuuid/2.39.2", transitive_headers=True, transitive_libs=True) self.requires("openssl/[>=1.1 <4]") if is_apple_os(self): - self.requires("libgettext/0.21") + self.requires("libgettext/0.22") def validate(self): if self.settings.compiler.cppstd: