hpx: disable HPX_WITH_PKGCONFIG (#50290)

This commit is contained in:
Patrick Diehl 2025-05-05 23:32:25 -06:00 committed by GitHub
parent ae582c45c3
commit e3fcc41162
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -97,7 +97,6 @@ class Hpx(CMakePackage, CudaPackage, ROCmPackage):
depends_on("cxx", type="build") depends_on("cxx", type="build")
depends_on("python", type=("build", "test", "run")) depends_on("python", type=("build", "test", "run"))
depends_on("pkgconfig", type="build")
depends_on("git", type="build") depends_on("git", type="build")
depends_on("cmake", type="build") depends_on("cmake", type="build")
@ -256,6 +255,7 @@ def cmake_args(self):
self.define("HPX_WITH_BOOST_ALL_DYNAMIC_LINK", True), self.define("HPX_WITH_BOOST_ALL_DYNAMIC_LINK", True),
self.define("BUILD_SHARED_LIBS", True), self.define("BUILD_SHARED_LIBS", True),
self.define("HPX_DATASTRUCTURES_WITH_ADAPT_STD_TUPLE", False), self.define("HPX_DATASTRUCTURES_WITH_ADAPT_STD_TUPLE", False),
self.define("HPX_WITH_PKGCONFIG", False),
] ]
# Enable unity builds when available # Enable unity builds when available