From 02ae9dfdbdbd66aa6cc08c1282ab79eff260efb6 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Sun, 21 Jul 2024 14:24:13 +0200 Subject: [PATCH] meson: fix name of DBUS_ENABLE_LAUNCHD macro This is the name used previously by autoconf, and still used by the C code. Presumably this meant that the launchd ended up never being built with Meson, even if launchd support was enabled. Signed-off-by: Alyssa Ross Fixes: cd2e3826 ("Add Meson build system") --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 55fa41df2..3221abf14 100644 --- a/meson.build +++ b/meson.build @@ -467,7 +467,7 @@ else error('launchd support requested but not found') endif endif -config.set('DBUS_BUS_ENABLE_LAUNCHD', use_launchd) +config.set('DBUS_ENABLE_LAUNCHD', use_launchd) if use_launchd launchd_agent_dir = get_option('launchd_agent_dir') -- 2.47.3