From c905be691d843e2a023840f69c0d8dbacbc5db96 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 4 Jul 2015 04:24:22 +0200 Subject: only compile, don’t link & run jack checks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- libs/backends/jack/wscript | 4 ++++ 1 file changed, 4 insertions(+) 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 \n#include \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 \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', -- cgit v1.2.3