krb5, xrootd: Make usable with OpenSSL 3 (#36728)
This commit is contained in:
parent
c35e59a6c4
commit
cb9ae0fa77
2 changed files with 4 additions and 2 deletions
|
@ -31,7 +31,8 @@ class Krb5(AutotoolsPackage):
|
||||||
|
|
||||||
depends_on("diffutils", type="build")
|
depends_on("diffutils", type="build")
|
||||||
depends_on("bison", type="build")
|
depends_on("bison", type="build")
|
||||||
depends_on("openssl@:1")
|
depends_on("openssl@:1", when="@:1.19")
|
||||||
|
depends_on("openssl")
|
||||||
depends_on("gettext")
|
depends_on("gettext")
|
||||||
|
|
||||||
variant(
|
variant(
|
||||||
|
|
|
@ -74,7 +74,8 @@ class Xrootd(CMakePackage):
|
||||||
depends_on("cmake@2.6:", type="build")
|
depends_on("cmake@2.6:", type="build")
|
||||||
depends_on("libxml2", when="+http")
|
depends_on("libxml2", when="+http")
|
||||||
depends_on("uuid", when="@4.11.0:")
|
depends_on("uuid", when="@4.11.0:")
|
||||||
depends_on("openssl@:1")
|
depends_on("openssl@:1", when="@:5.4")
|
||||||
|
depends_on("openssl")
|
||||||
depends_on("python", when="+python")
|
depends_on("python", when="+python")
|
||||||
depends_on("readline", when="+readline")
|
depends_on("readline", when="+readline")
|
||||||
depends_on("xz")
|
depends_on("xz")
|
||||||
|
|
Loading…
Reference in a new issue