From baf4c9050f7a0e89563d2ffeb0d60fa43fd00017 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Sat, 31 Dec 2016 02:38:27 -0800 Subject: [PATCH] meson: Use 'libzim' name as a dependency With , the library is now registered with pkg-config as "libzim". --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 5fd749d9b..ef5d256ef 100644 --- a/meson.build +++ b/meson.build @@ -6,7 +6,7 @@ compiler = meson.get_compiler('cpp') thread_dep = dependency('threads') libicu_dep = dependency('icu-i18n') -libzim_dep = dependency('zimlib') +libzim_dep = dependency('libzim') pugixml_dep = dependency('pugixml') aria2_dep = find_program('aria2c') @@ -35,7 +35,7 @@ else ctpp2_dep = declare_dependency(include_directories:ctpp2_include_path, dependencies:[ctpp2_lib]) endif -pkg_requires = ['zimlib', 'icu-i18n', 'pugixml'] +pkg_requires = ['libzim', 'icu-i18n', 'pugixml'] xapian_dep = dependency('xapian-core', required:false) if xapian_dep.found() pkg_requires += ['xapian-core']