From be232d790e4f7899362cc939db01014f7b2052db Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 14 Aug 2024 14:27:06 +0200 Subject: [PATCH] Add xapian-core to base dependencies on Windows. --- kiwixbuild/dependencies/all_dependencies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiwixbuild/dependencies/all_dependencies.py b/kiwixbuild/dependencies/all_dependencies.py index 1894f57..25dba4f 100644 --- a/kiwixbuild/dependencies/all_dependencies.py +++ b/kiwixbuild/dependencies/all_dependencies.py @@ -14,7 +14,7 @@ class AllBaseDependencies(Dependency): @classmethod def get_dependencies(cls, configInfo, allDeps): if neutralEnv("distname") == "Windows": - return ["zlib", "zstd", "icu4c", "zim-testing-suite"] + return ["zlib", "zstd", "icu4c", "zim-testing-suite", "xapian-core"] if configInfo.build == "wasm" or environ.get("OS_NAME") == "manylinux": return ["zlib", "lzma", "zstd", "icu4c", "xapian-core"]