summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-03-16 18:40:20 +0000
committerDavid Robillard <d@drobilla.net>2008-03-16 18:40:20 +0000
commit1297842468ec49ed1a7fb3155347f11c4b65f1c4 (patch)
treec8b80f552b11414e8a837e561b938903a43138c2 /configure.ac
parent2f1463e0f028a2e1fc122242dcffb9595d924a3b (diff)
downloadpatchage-1297842468ec49ed1a7fb3155347f11c4b65f1c4.tar.gz
patchage-1297842468ec49ed1a7fb3155347f11c4b65f1c4.tar.bz2
patchage-1297842468ec49ed1a7fb3155347f11c4b65f1c4.zip
Yet more Patchage D-Bus fixes.
git-svn-id: http://svn.drobilla.net/lad/patchage@1172 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac10
1 files changed, 8 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index d097e4a..610022a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -197,8 +197,14 @@ AC_MSG_RESULT([])
AC_MSG_RESULT([**********************************************************************])
AC_MSG_RESULT([Configuration:])
AC_MSG_RESULT([])
-AC_MSG_RESULT([Jack support: $build_jack])
-AC_MSG_RESULT([Jack D-Bus: $build_jack_dbus])
+# we are not building libjack driver if jackdbus driver is being built (src/Makefile.am)
+if test "$build_jack_dbus" = "yes"; then
+AC_MSG_RESULT([Jack support: yes (D-Bus)])
+elif test "$build_jack" = "yes"; then
+AC_MSG_RESULT([Jack support: yes (libjack)])
+else
+AC_MSG_RESULT([Jack support: no])
+fi
AC_MSG_RESULT([LASH support: $build_lash])
AC_MSG_RESULT([ALSA support: $ALSA_FOUND])
AC_MSG_RESULT([])