From: Alyssa Ross Date: Sun, 21 Jul 2024 12:24:13 +0000 (+0200) Subject: meson: fix name of DBUS_ENABLE_LAUNCHD macro X-Git-Tag: dbus-1.15.10~9^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02ae9dfdbdbd66aa6cc08c1282ab79eff260efb6;p=thirdparty%2Fdbus.git 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") --- 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')