From 294c866023d05162880b056fea5242d25cd9e865 Mon Sep 17 00:00:00 2001 From: Daniel Mack Date: Sat, 30 Nov 2013 00:45:53 +0100 Subject: Add bus-driverd systemd-bus-driverd is a small daemon that connects to kdbus and implements the org.freedesktop.DBus interface. IOW, it provides the bus functions traditionally taken care for by dbus-daemon. Calls are proxied to kdbus, either via libsystemd-bus (were applicable) or with the open-coded use of ioctl(). Note that the implementation is not yet finished as the functions to add and remove matches and to start services by name are still missing. --- Makefile.am | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index fa57559bda..dcf0bb3bb3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3697,6 +3697,20 @@ dist_zshcompletion_DATA += \ endif +if ENABLE_BUS_DRIVERD +systemd_bus_driverd_SOURCES = \ + src/bus-driverd/bus-driverd.c + +systemd_bus_driverd_LDADD = \ + libsystemd-bus-internal.la \ + libsystemd-id128-internal.la \ + libsystemd-daemon-internal.la \ + libsystemd-shared.la + +rootlibexec_PROGRAMS += \ + systemd-bus-driverd +endif + polkitpolicy_in_files += \ src/hostname/org.freedesktop.hostname1.policy.in -- cgit v1.2.3-54-g00ecf