summaryrefslogtreecommitdiffstats
path: root/src/make_jack_driver.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/make_jack_driver.hpp')
-rw-r--r--src/make_jack_driver.hpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/make_jack_driver.hpp b/src/make_jack_driver.hpp
index abd1ba1..38aef65 100644
--- a/src/make_jack_driver.hpp
+++ b/src/make_jack_driver.hpp
@@ -18,7 +18,6 @@
#define PATCHAGE_MAKE_JACK_DRIVER_HPP
#include "Driver.hpp"
-#include "patchage_config.h"
#include <memory>
@@ -27,21 +26,9 @@ namespace patchage {
class AudioDriver;
class ILog;
-#if defined(PATCHAGE_LIBJACK) || defined(HAVE_JACK_DBUS)
-
std::unique_ptr<AudioDriver>
make_jack_driver(ILog& log, Driver::EventSink emit_event);
-#else
-
-inline std::unique_ptr<AudioDriver>
-make_jack_driver(ILog&, Driver::EventSink)
-{
- return nullptr;
-}
-
-#endif
-
} // namespace patchage
#endif // PATCHAGE_MAKE_JACK_DRIVER_HPP