summaryrefslogtreecommitdiffstats
path: root/src/PortID.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/PortID.hpp')
-rw-r--r--src/PortID.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/PortID.hpp b/src/PortID.hpp
index dc32ec6..022dc82 100644
--- a/src/PortID.hpp
+++ b/src/PortID.hpp
@@ -21,7 +21,7 @@
#include "config.h"
#include <cstring>
-#ifdef HAVE_JACK
+#ifdef USE_LIBJACK
#include <jack/jack.h>
#endif
#ifdef HAVE_ALSA
@@ -35,7 +35,7 @@ struct PortID {
enum { NULL_PORT_ID, JACK_ID, ALSA_ADDR } type;
-#ifdef HAVE_JACK
+#ifdef USE_LIBJACK
PortID(jack_port_id_t jack_id, bool ign=false)
: type(JACK_ID) { id.jack_id = jack_id; }
#endif
@@ -48,7 +48,7 @@ struct PortID {
#endif
union {
-#ifdef HAVE_JACK
+#ifdef USE_LIBJACK
jack_port_id_t jack_id;
#endif
#ifdef HAVE_ALSA