From: Robin Gareus Date: Fri, 18 Nov 2016 23:45:13 +0000 (+0100) Subject: Disable OSX 10.5/PPC support (MacVST is Cocoa UI only) X-Git-Tag: 5.5~111 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;ds=sidebyside;h=878635222a0c735346430564133827d888d9715d;p=ardour.git Disable OSX 10.5/PPC support (MacVST is Cocoa UI only) --- diff --git a/wscript b/wscript index 8beb5ecfb3..dbc73417b2 100644 --- a/wscript +++ b/wscript @@ -880,7 +880,9 @@ def configure(conf): conf.define ('HAVE_COREAUDIO', 1) conf.define ('AUDIOUNIT_SUPPORT', 1) - conf.define('MACVST_SUPPORT', 1) + + if not Options.options.ppc: + conf.define('MACVST_SUPPORT', 1) conf.define ('TOP_MENUBAR',1)