summaryrefslogtreecommitdiff
path: root/libs/backends/coreaudio/wscript
AgeCommit message (Collapse)Author
2020-01-25Explicitly use OSXRobin Gareus
Previously this was inherited via PBD. On MacOS/X, this adds "-undefined dynamic_lookup -flat_namespace" and various "-framework .." options to linkflags Without this flag, .dylibs fail to link usually because of missing `-lintl` (Undefined symbols: "_libintl_dgettext") On other systems this is a NO-OP: CFLAGS_OSX, CXXFLAGS_OSX and LINKFLAGS_OSX are only set on the darwin platform.
2016-03-01Fix build on El CapitanPaul Davis
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
2016-02-28prepare for update to waf 1.8Robin Gareus
uselib is no longer implicit (inherited by .use). This is still incomplete, some uselibs for non-linux variants may be missing. bld.is_defined("HAVE_XXX") also no longer works and will have to be changed (I think to bld.env["HAVE_XXX"]) in countless places.
2015-07-24coreaudio aggregate device fix for 10.5Robin Gareus
2015-04-20allow coreaudio backend to build on OS X LionPaul Davis
2015-03-07no more gcc/ppc complaintsRobin Gareus
2015-03-07Hard Core AudioRobin Gareus
* allow to change buffersizes * subscribe to buffersize & samplerate changes * add support for half-duplex devices. * aggregate Devices (not yet used) code from JACK2 * unify deprecated API wrappers * properly keep track of MIDI ports * disable MidiI/O during freewheeling * various small fixes & cleanup
2015-03-06build system tweaks for coreaudio/waves-coreaudioRobin Gareus
2015-03-06cont’d work on the coreaudio backend & cleanupRobin Gareus
2015-03-05get started on coreaudio/midi backendRobin Gareus