curl: mbedtls 3.6.0 bound should be forward not backward compat (#47029)

and add another backward compat bound for just 8.8
This commit is contained in:
Harmen Stoppels 2024-10-17 08:41:25 +02:00 committed by GitHub
parent 1eb2cb97ad
commit aa6caf9ee6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -114,9 +114,11 @@ class Curl(NMakePackage, AutotoolsPackage):
depends_on("gnutls", when="tls=gnutls") depends_on("gnutls", when="tls=gnutls")
with when("tls=mbedtls"): with when("tls=mbedtls"):
depends_on("mbedtls@:2 +pic", when="@:7.78") depends_on("mbedtls +pic")
depends_on("mbedtls@2: +pic", when="@7.79:") depends_on("mbedtls@:2", when="@:7.78")
depends_on("mbedtls@3.6.0: +pic", when="@8.8.0:") depends_on("mbedtls@:3.5", when="@:8.7")
depends_on("mbedtls@2:", when="@7.79:")
depends_on("mbedtls@3.2:", when="@8.8") # https://github.com/curl/curl/issues/13748
depends_on("nss", when="tls=nss") depends_on("nss", when="tls=nss")