From 87cb692c6a1880b51ee4d3f6558db6428030c08c Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Fri, 6 Jan 2017 04:25:30 -0800 Subject: [PATCH] meson: Add missing zlib dependency --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 5c55f48..4df1189 100644 --- a/meson.build +++ b/meson.build @@ -5,7 +5,7 @@ compiler = meson.get_compiler('cpp') thread_dep = dependency('threads') kiwixlib_dep = dependency('kiwix') microhttpd_dep = dependency('libmicrohttpd') - +z_dep = dependency('zlib') # Idealy we should not have more dependency, however : # We should declare we use ctpp2 in kiwixlib in the pkg-config file. # But there is no pkg-config file for ctpp2. Once one exists, no need to @@ -34,7 +34,7 @@ else ctpp2_dep = declare_dependency(include_directories:ctpp2_include_path, dependencies:[ctpp2_lib]) endif -all_deps = [thread_dep, kiwixlib_dep, microhttpd_dep, ctpp2_dep] +all_deps = [thread_dep, kiwixlib_dep, microhttpd_dep, ctpp2_dep, z_dep] #subdir('include') subdir('static')