From 3797a7df233d7e3036fec740ab4e1ffc08c7dce4 Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Tue, 28 Apr 2026 21:28:27 +0100 Subject: [PATCH] When using system Harfbuzz, link the harfbuzz-raster component --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 06652cb4..b5cb0053 100755 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ def _configure_extensions_with_system_libs() -> List[Extension]: libraries = [] library_dirs = [] - harfbuzz_components = ["harfbuzz-subset"] + harfbuzz_components = ["harfbuzz-subset", "harfbuzz-raster"] for harfbuzz_component in harfbuzz_components: harfbuzz_component_configuration = pkgconfig.parse(harfbuzz_component) include_dirs += harfbuzz_component_configuration["include_dirs"]