Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/uhal/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down