summaryrefslogtreecommitdiffstats
path: root/server/conf_macros.m4
diff options
context:
space:
mode:
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)
+ ])