From c07cb39ef9468cf7a1b374a5ef4623f66ac18154 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Petr=20=C5=A0pa=C4=8Dek?= Date: Tue, 22 Oct 2019 15:04:38 +0200 Subject: [PATCH] doh debug: add depedency on openssl to meson build --- modules/http/meson.build | 4 ++++ 1 file changed, 4 insertions(+) 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, + ], ) -- 2.47.2