summaryrefslogtreecommitdiffstats
path: root/server/conf_macros.m4
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2009-01-26 16:01:26 -0500
committerSimo Sorce <idra@samba.org>2009-01-27 11:44:12 -0500
commitde38bb8f2f04dcefbbe4a998c9bd8532c844bcc0 (patch)
tree07302d5e1c9c5c19e2df77dd7c19bf998ae14ac5 /server/conf_macros.m4
parent27ee5a204b8927adcc1e340b12d2edf1c70d9ba5 (diff)
downloadsssd-de38bb8f2f04dcefbbe4a998c9bd8532c844bcc0.tar.gz
sssd-de38bb8f2f04dcefbbe4a998c9bd8532c844bcc0.tar.xz
sssd-de38bb8f2f04dcefbbe4a998c9bd8532c844bcc0.zip
Preliminary support for enabling InfoPipe to listen on the D-BUS system bus. It will connect and authenticate successfully (using the included D-BUS policy file installed in the correct /etc directory. Does not yet listen for requests.
Diffstat (limited to 'server/conf_macros.m4')
-rw-r--r--server/conf_macros.m414
1 files changed, 14 insertions, 0 deletions
diff --git a/server/conf_macros.m4 b/server/conf_macros.m4
index 9aac02c5b..33290d892 100644
--- a/server/conf_macros.m4
+++ b/server/conf_macros.m4
@@ -57,3 +57,17 @@ AC_DEFUN(WITH_PIPE_PATH,
AC_SUBST(pipepath)
AC_DEFINE_UNQUOTED(PIPE_PATH, "$pipepath", [Where to store pipe files for the SSSD interconnects])
])
+
+AC_DEFUN(WITH_DBUS_SYSBUS_PATH,
+ [ AC_ARG_WITH([dbus-sysbus-path],
+ [AC_HELP_STRING([--with-dbus-sysbus-path=PATH],
+ [Where to store policy files for the D-BUS system bus [/etc/dbus-1/system.d]]
+ )
+ ]
+ )
+ sysbuspath="/etc/dbus-1/system.d"
+ if test x"$with_dbus_sysbus_path" != x; then
+ sysbuspath=$with_dbus_sysbus_path
+ fi
+ AC_SUBST(sysbuspath)
+ ])