From: Fred Morcos Date: Tue, 15 Aug 2023 11:24:29 +0000 (+0200) Subject: Meson: Fix libsystemd detection X-Git-Tag: rec-5.1.0-alpha1~80^2~262 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e0dce1f692fce0492dcda1edd9ccea6f9a2f7378;p=thirdparty%2Fpdns.git Meson: Fix libsystemd detection --- diff --git a/meson/systemd/meson.build b/meson/systemd/meson.build index 6aadb39738..1ef14a8799 100644 --- a/meson/systemd/meson.build +++ b/meson/systemd/meson.build @@ -1,9 +1,10 @@ # Systemd and unit file handling -# Inputs: conf +# Inputs: conf deps # Outputs: dep_systemd -dep_systemd = dependency('systemd', required: false) +dep_systemd = dependency('libsystemd', required: false) conf.set10('HAVE_SYSTEMD', dep_systemd.found(), description: 'Whether we have systemd') +deps += dep_systemd summary('Systemd', dep_systemd.found(), bool_yn: true, section: 'Configuration') if dep_systemd.found()