]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
meson: fix name of DBUS_ENABLE_LAUNCHD macro
authorAlyssa Ross <hi@alyssa.is>
Sun, 21 Jul 2024 12:24:13 +0000 (14:24 +0200)
committerAlyssa Ross <hi@alyssa.is>
Sun, 21 Jul 2024 17:52:28 +0000 (19:52 +0200)
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 <hi@alyssa.is>
Fixes: cd2e3826 ("Add Meson build system")
meson.build

index 55fa41df29e5c9e868594fc09641eb50e03a5b6a..3221abf14091d3822b3ba128e8b1d91e82bc7fe6 100644 (file)
@@ -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')