summaryrefslogtreecommitdiff
path: root/libs/backends/jack
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-07-04 04:24:22 +0200
committerRobin Gareus <robin@gareus.org>2015-07-04 04:24:22 +0200
commitc905be691d843e2a023840f69c0d8dbacbc5db96 (patch)
tree0e70a7ce1b7944875f8b94cea38662e819aa9009 /libs/backends/jack
parent4753a5be56f55e4458e3c6f87e4a81df4c97a283 (diff)
only compile, don’t link & run jack checks
Diffstat (limited to 'libs/backends/jack')
-rw-r--r--libs/backends/jack/wscript4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/backends/jack/wscript b/libs/backends/jack/wscript
index 366fcd2687..d3d3516187 100644
--- a/libs/backends/jack/wscript
+++ b/libs/backends/jack/wscript
@@ -41,6 +41,8 @@ def configure(conf):
conf.check_cxx(fragment = "#include <jack/jack.h>\n#include <jack/metadata.h>\nint main(void) { jack_port_uuid(NULL); return 0; }\n",
mandatory = False,
msg = 'Checking for JACK metadata API',
+ execute = False,
+ features = ['cxx'],
okmsg = 'ok',
errmsg = 'not found (or broken). JACK metadata API will not be used',
define_name = 'HAVE_JACK_METADATA',
@@ -49,6 +51,8 @@ def configure(conf):
# Check to see if jack_port_rename() is available and working
conf.check_cxx(fragment = "#include <jack/jack.h>\nint main(void) { jack_client_t* c; jack_port_t* p; jack_port_rename (c, p, \"foo\"); return 0; }\n",
mandatory = False,
+ execute = False,
+ features = ['cxx'],
msg = 'Checking for jack_port_rename()',
okmsg = 'ok',
errmsg = 'not found (or broken). jack_port_rename() will not be used, and jack_port_set_name() will be used instead',