Skip to content

Commit

Permalink
(#24732) subunit: add build requirements
Browse files Browse the repository at this point in the history
automake, libtool and pkgconfig are required to configure project
successfully
  • Loading branch information
vsbogd committed Jul 31, 2024
1 parent 37a10d4 commit 2dcfbc8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions recipes/subunit/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,10 @@ def build_requirements(self):
self.win_bash = True
if not self.conf.get("tools.microsoft.bash:path", check_type=str):
self.tool_requires("msys2/cci.latest")
if is_msvc(self):
self.tool_requires("automake/1.16.5")
self.tool_requires("libtool/2.4.7")
self.tool_requires("pkgconf/2.2.0")
self.tool_requires("automake/1.16.5")

def source(self):
get(self, **self.conan_data["sources"][self.version], strip_root=True)

Expand Down

0 comments on commit 2dcfbc8

Please sign in to comment.