diff options
author | David Robillard <d@drobilla.net> | 2008-03-16 17:01:28 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-03-16 17:01:28 +0000 |
commit | 9b24c3ac59cd0a394672689aa82b6845628626cb (patch) | |
tree | dd1b7769da86c0f6545f96c21e4937f769430701 /src/PatchageEvent.cpp | |
parent | 25f833aac2100a9947dbd7ee1de7d8c6a6b41648 (diff) | |
download | patchage-9b24c3ac59cd0a394672689aa82b6845628626cb.tar.gz patchage-9b24c3ac59cd0a394672689aa82b6845628626cb.tar.bz2 patchage-9b24c3ac59cd0a394672689aa82b6845628626cb.zip |
Add Jack D-Bus driver (from Nedko).
git-svn-id: http://svn.drobilla.net/lad/patchage@1167 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/PatchageEvent.cpp')
-rw-r--r-- | src/PatchageEvent.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/PatchageEvent.cpp b/src/PatchageEvent.cpp index d123188..afab9ae 100644 --- a/src/PatchageEvent.cpp +++ b/src/PatchageEvent.cpp @@ -22,7 +22,12 @@ #include "PatchageModule.hpp" #include "PatchageEvent.hpp" #include "Driver.hpp" +#ifdef HAVE_JACK #include "JackDriver.hpp" +#endif +#ifdef HAVE_JACKDBUS +#include "JackDbusDriver.hpp" +#endif #ifdef HAVE_ALSA #include "AlsaDriver.hpp" #endif |