From 69a82b5806fcb8610d11d848dfb0b46a51417f5a Mon Sep 17 00:00:00 2001 From: romeroalx Date: Thu, 11 Apr 2024 17:15:19 +0200 Subject: [PATCH] meson: enable systemd for auth-configure --- tasks.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tasks.py b/tasks.py index ad5327cfac..16dbcea353 100644 --- a/tasks.py +++ b/tasks.py @@ -469,8 +469,7 @@ def get_base_configure_cmd_meson(build_dir, additional_c_flags='', additional_cx f"CC='{get_c_compiler()}'", f"CXX='{get_cxx_compiler()}'", f'. {repo_home}/.venv/bin/activate && meson setup {build_dir}', - # TODO - # "--enable-systemd" if enable_systemd else '', + "-D systemd={}".format("enabled" if enable_systemd else "disabled"), "-D signers-libsodium={}".format("enabled" if enable_sodium else "disabled"), "-D hardening-fortify-source=auto", "-D auto-var-init=pattern", -- 2.47.2