From c0df001e378dcbdf22d8c310e1461d4299760da0 Mon Sep 17 00:00:00 2001 From: Simon Corrodi Date: Fri, 24 Jul 2026 00:51:46 -0500 Subject: [PATCH] require compiled Boost variants for uhal dependencies --- packages/uhal/package.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/uhal/package.py b/packages/uhal/package.py index f190f8b..6b03b16 100644 --- a/packages/uhal/package.py +++ b/packages/uhal/package.py @@ -34,7 +34,9 @@ class Uhal(MakefilePackage): variant("gui", default=True, description="Whether to build the GUI component") variant("python", default=True, description="Whether to build the Python bindings") - depends_on("boost") + # uhal links libboost_filesystem/regex/system/chrono directly (see Makefiles), + # so require the compiled Boost libraries rather than accepting a header-only Boost. + depends_on("boost+filesystem+regex+system+chrono+thread") depends_on("pugixml") depends_on("erlang", when="+controlhub")