From 5dbfca995342dde7bfccf9ac3dd52ab3a20ccb29 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 1 Mar 2016 12:04:58 -0500 Subject: [PATCH] Fix build on El Capitan In which Apple once again changed the name of the MIDI kit from CoreMidi to CoreMIDI, something they did for the Lion release of OS X --- libs/backends/coreaudio/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/backends/coreaudio/wscript b/libs/backends/coreaudio/wscript index 8030af2be8..8dc0300b3b 100644 --- a/libs/backends/coreaudio/wscript +++ b/libs/backends/coreaudio/wscript @@ -31,7 +31,7 @@ def build(bld): obj.use = 'libardour libpbd' obj.uselib = 'GLIBMM XML' obj.framework = [ 'CoreAudio', 'AudioToolbox', 'CoreServices' ] - if bld.env['build_target'] not in [ 'lion' ] and (not bld.env['build_arch'] == "ppc"): + if bld.env['build_target'] not in [ 'lion', 'el_capitan' ] and (not bld.env['build_arch'] == "ppc"): obj.framework += [ 'CoreMidi' ] else: obj.framework += [ 'CoreMIDI' ]