diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 816d5c03..a5f8d827 100644 --- a/configure.ac +++ b/configure.ac @@ -133,6 +133,10 @@ dnl----------------------------------------------------------------------------- dnl Testing support dnl +dnl DBus testing support only with GIO 2.34 +PKG_CHECK_MODULES(DBUS_TEST_SUPPORT, [gio-2.0 >= 2.34], [have_dbus_test_support=yes], [have_dbus_test_support=no]) +AM_CONDITIONAL(BUILD_DBUS_TEST_SUPPORT, test "x$have_dbus_test_support" = "xyes") + dnl Code coverage (disabled by default) AX_CODE_COVERAGE |