mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
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
This commit is contained in:
parent
79d9973fa0
commit
5dbfca9953
1 changed files with 1 additions and 1 deletions
|
|
@ -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' ]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue