]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
libssl depends on libcrypto 15709/head
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Fri, 20 Jun 2025 13:50:14 +0000 (15:50 +0200)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Fri, 20 Jun 2025 13:50:14 +0000 (15:50 +0200)
Otherwise all kinds of meson setup logic goes wrong,
symptom: DoH connection from 127.0.0.1:44825 expected ALPN value 'h2', got ''

Signed-off-by: Otto Moerbeek <otto.moerbeek@open-xchange.com>
meson/libssl/meson.build

index 7651a3025a6dfc2e927d8d1266ab4afae22e4a55..68f7d4e09df46ee314774943d2e2c479216490c1 100644 (file)
@@ -4,6 +4,7 @@ opt_libssl_dir = get_option('tls-libssl-dir')
 
 if opt_libssl_dir != ''
   dep_libssl = declare_dependency(
+    dependencies: [dep_libcrypto],
     include_directories: [opt_libssl_dir / 'include'],
     link_args: ['-L' + opt_libssl_dir / 'lib', '-lssl'],
   )