build-sys: build bus-driverd if kdbus support is enabled

This commit is contained in:
Lennart Poettering 2013-12-17 01:36:59 +01:00
parent a4475f577b
commit cd49e2f664
2 changed files with 10 additions and 15 deletions

View file

@ -1899,6 +1899,7 @@ bus-proxyd-uninstall-hook:
INSTALL_EXEC_HOOKS += bus-proxyd-install-hook
UNINSTALL_EXEC_HOOKS += bus-proxyd-uninstall-hook
if ENABLE_KDBUS
nodist_systemunit_DATA += \
units/systemd-bus-proxyd@.service
@ -1910,6 +1911,7 @@ dist_userunit_DATA += \
USER_UNIT_ALIASES += \
$(systemunitdir)/systemd-bus-proxyd@.service systemd-bus-proxyd@.service
endif
EXTRA_DIST += \
units/systemd-bus-proxyd@.service.in
@ -3697,7 +3699,14 @@ dist_zshcompletion_DATA += \
endif
if ENABLE_BUS_DRIVERD
polkitpolicy_in_files += \
src/hostname/org.freedesktop.hostname1.policy.in
EXTRA_DIST += \
units/systemd-hostnamed.service.in
# ------------------------------------------------------------------------------
if ENABLE_KDBUS
systemd_bus_driverd_SOURCES = \
src/bus-driverd/bus-driverd.c
@ -3711,12 +3720,6 @@ rootlibexec_PROGRAMS += \
systemd-bus-driverd
endif
polkitpolicy_in_files += \
src/hostname/org.freedesktop.hostname1.policy.in
EXTRA_DIST += \
units/systemd-hostnamed.service.in
# ------------------------------------------------------------------------------
if ENABLE_LOCALED
systemd_localed_SOURCES = \

View file

@ -750,14 +750,6 @@ if test "x$enable_timedated" != "xno"; then
fi
AM_CONDITIONAL(ENABLE_TIMEDATED, [test "$have_timedated" = "yes"])
# ------------------------------------------------------------------------------
have_bus_driverd=no
AC_ARG_ENABLE(bus_driverd, AS_HELP_STRING([--disable-bus-driverd], [disable systemd bus-driver daemon]))
if test "x$enable_bus_driverd" != "xno"; then
have_bus_driverd=yes
fi
AM_CONDITIONAL(ENABLE_BUS_DRIVERD, [test "$have_bus_driverd" = "yes"])
# ------------------------------------------------------------------------------
have_localed=no
AC_ARG_ENABLE(localed, AS_HELP_STRING([--disable-localed], [disable locale daemon]))