summaryrefslogtreecommitdiffstats
path: root/src/PatchageEvent.cpp
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 /src/PatchageEvent.cpp
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 'src/PatchageEvent.cpp')
-rw-r--r--src/PatchageEvent.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/PatchageEvent.cpp b/src/PatchageEvent.cpp
index 53dd612..1c1f755 100644
--- a/src/PatchageEvent.cpp
+++ b/src/PatchageEvent.cpp
@@ -22,11 +22,10 @@
#include "PatchageModule.hpp"
#include "PatchageEvent.hpp"
#include "Driver.hpp"
-#ifdef HAVE_JACK
-#include "JackDriver.hpp"
-#endif
-#ifdef HAVE_JACK_DBUS
+#if defined(HAVE_JACK_DBUS)
#include "JackDbusDriver.hpp"
+#elif defined(HAVE_JACK)
+#include "JackDriver.hpp"
#endif
#ifdef HAVE_ALSA
#include "AlsaDriver.hpp"