]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
doh debug: add depedency on openssl to meson build
authorPetr Špaček <petr.spacek@nic.cz>
Tue, 22 Oct 2019 13:04:38 +0000 (15:04 +0200)
committerTomas Krizek <tomas.krizek@nic.cz>
Wed, 20 Nov 2019 12:17:38 +0000 (13:17 +0100)
modules/http/meson.build

index 73eabefe40b60184a9b07817cda78ee6b94b052c..394f858445d12474b33dbe55fabf6842af1e0631 100644 (file)
@@ -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,
+  ],
 )