From: Petr Špaček Date: Tue, 22 Oct 2019 13:04:38 +0000 (+0200) Subject: doh debug: add depedency on openssl to meson build X-Git-Tag: v4.3.0~8^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c07cb39ef9468cf7a1b374a5ef4623f66ac18154;p=thirdparty%2Fknot-resolver.git doh debug: add depedency on openssl to meson build --- diff --git a/modules/http/meson.build b/modules/http/meson.build index 73eabefe4..394f85844 100644 --- a/modules/http/meson.build +++ b/modules/http/meson.build @@ -30,6 +30,7 @@ install_subdir( install_dir: join_paths(modules_dir, 'http'), ) +openssl = dependency('openssl') # auxiliary debug library for HTTP module debug_opensslkeylog_mod = shared_module( 'debug_opensslkeylog', @@ -39,4 +40,7 @@ debug_opensslkeylog_mod = shared_module( name_prefix: '', install: true, install_dir: lib_dir, + dependencies: [ + openssl, + ], )