From: Otto Moerbeek Date: Thu, 19 Jun 2025 07:01:38 +0000 (+0200) Subject: dnsdist meson: followup to #15685 to avoid compiler warnings X-Git-Tag: dnsdist-2.0.0-beta1~6^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F15695%2Fhead;p=thirdparty%2Fpdns.git dnsdist meson: followup to #15685 to avoid compiler warnings Signed-off-by: Otto Moerbeek --- diff --git a/pdns/dnsdistdist/meson/libcrypto/meson.build b/pdns/dnsdistdist/meson/libcrypto/meson.build index 3df544eb22..85d1348da2 100644 --- a/pdns/dnsdistdist/meson/libcrypto/meson.build +++ b/pdns/dnsdistdist/meson/libcrypto/meson.build @@ -44,8 +44,7 @@ if not dep_libcrypto.found() have = cxx.has_header(dir / 'include/openssl/crypto.h') if have dep_libcrypto = declare_dependency( - compile_args: ['-L' + dir / 'lib'], - link_args: ['-lcrypto'], + link_args: ['-L' + dir / 'lib', '-lcrypto'], include_directories: include_directories(dir / 'include', is_system: false), ) break