Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

harfbuzz: Disable auto-features which pull in system dependencies #23011

Merged
merged 3 commits into from
Mar 16, 2024
Merged
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
5 changes: 3 additions & 2 deletions recipes/harfbuzz/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ def validate(self):
)

def build_requirements(self):
self.tool_requires("meson/1.2.3")
self.tool_requires("meson/1.3.2")
if not self.conf.get("tools.gnu:pkg_config", check_type=str):
self.tool_requires("pkgconf/2.0.3")
self.tool_requires("pkgconf/2.1.0")
if self.options.with_glib:
self.tool_requires("glib/<host_version>")
if self.settings.os == "Macos":
Expand Down Expand Up @@ -141,6 +141,7 @@ def is_vs_2017():

backend, cxxflags = meson_backend_and_flags()
tc = MesonToolchain(self, backend=backend)
tc.project_options["auto_features"] = "disabled"
tc.project_options.update({
"glib": is_enabled(self.options.with_glib),
"icu": is_enabled(self.options.with_icu),
Expand Down
Loading