summaryrefslogtreecommitdiff
path: root/libs/backends/jack/jack_portengine.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-04-23 09:29:35 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2015-04-23 09:29:45 -0400
commitf75518582598ec6044d8c43f97cafc28d5f1d9b5 (patch)
tree1bfa3df3658ff083e8c4b558a992fe7beef9b599 /libs/backends/jack/jack_portengine.cc
parentb13cedd56cc1b3125af6e9920c49801eda5771a5 (diff)
add a real check for functioning JACK metadata API; remove configure time option for this
Diffstat (limited to 'libs/backends/jack/jack_portengine.cc')
-rw-r--r--libs/backends/jack/jack_portengine.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/backends/jack/jack_portengine.cc b/libs/backends/jack/jack_portengine.cc
index caa962600b..1f0515b0e8 100644
--- a/libs/backends/jack/jack_portengine.cc
+++ b/libs/backends/jack/jack_portengine.cc
@@ -118,7 +118,7 @@ JACKAudioBackend::get_port_name (PortHandle port) const
int
JACKAudioBackend::get_port_property (PortHandle port, const std::string& key, std::string& value, std::string& type) const
{
-#ifndef NO_JACK_METADATA // really everyone ought to have this by now.
+#ifdef HAVE_JACK_METADATA // really everyone ought to have this by now.
int rv = -1;
char *cvalue = NULL;
char *ctype = NULL;