From 0ae634cb1e9733e6bade823b45473464efa4bac6 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Fri, 1 Jul 2016 19:08:52 +0200 Subject: [PATCH] fix jack_port_rename() detection --- libs/backends/jack/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/backends/jack/wscript b/libs/backends/jack/wscript index d9dbbb785f..8de15ef74d 100644 --- a/libs/backends/jack/wscript +++ b/libs/backends/jack/wscript @@ -49,7 +49,7 @@ def configure(conf): uselib = 'JACK') # Check to see if jack_port_rename() is available and working - if Options.options.libjack_link == 'link': + if conf.env['libjack_link'] == 'link': 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,