summaryrefslogtreecommitdiff
path: root/libs/backends
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-03-01 12:04:58 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2016-03-01 12:20:59 -0500
commit5dbfca995342dde7bfccf9ac3dd52ab3a20ccb29 (patch)
tree8d841853dea9b5ab26ece5f1711d6d140eb5b3cb /libs/backends
parent79d9973fa04e17bc74e1347b9624813a186f4d93 (diff)
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
Diffstat (limited to 'libs/backends')
-rw-r--r--libs/backends/coreaudio/wscript2
1 files changed, 1 insertions, 1 deletions
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' ]