summaryrefslogtreecommitdiffstats
path: root/src/conf_macros.m4
diff options
context:
space:
mode:
Diffstat (limited to 'src/conf_macros.m4')
-rw-r--r--src/conf_macros.m47
1 files changed, 7 insertions, 0 deletions
diff --git a/src/conf_macros.m4 b/src/conf_macros.m4
index 2c8340319..af0834a75 100644
--- a/src/conf_macros.m4
+++ b/src/conf_macros.m4
@@ -667,3 +667,10 @@ AC_DEFUN([WITH_SAMBA],
fi
AM_CONDITIONAL([BUILD_SAMBA], [test x"$with_samba" = xyes])
])
+
+AC_ARG_ENABLE([dbus-tests],
+ [AS_HELP_STRING([--enable-dbus-tests],
+ [enable running tests using a dbus server instance [default=yes]])],
+ [build_dbus_tests=$enableval],
+ [build_dbus_tests=yes])
+AM_CONDITIONAL([BUILD_DBUS_TESTS], [test x$build_dbus_tests = xyes])