output/plugins/OSXOutputPlugin: add boost meson dependency

This commit is contained in:
Jacob Vosmaer 2019-03-16 21:00:01 +01:00 committed by Max Kellermann
parent 0bb71f1f20
commit 0a6e484b1a
2 changed files with 5 additions and 1 deletions

1
NEWS
View File

@ -9,6 +9,7 @@ ver 0.21.6 (not yet released)
- opus: fix replay gain when there are no other tags - opus: fix replay gain when there are no other tags
* output * output
- pulse: work around error with unusual channel count - pulse: work around error with unusual channel count
- osx: fix build failure
* playlist * playlist
- flac: fix use-after-free bug - flac: fix use-after-free bug
* support abstract sockets on Linux * support abstract sockets on Linux

View File

@ -76,7 +76,10 @@ if is_darwin
audiounit_dep = declare_dependency( audiounit_dep = declare_dependency(
link_args: [ link_args: [
'-framework', 'AudioUnit', '-framework', 'CoreAudio', '-framework', 'CoreServices', '-framework', 'AudioUnit', '-framework', 'CoreAudio', '-framework', 'CoreServices',
] ],
dependencies: [
boost_dep,
],
) )
else else
audiounit_dep = dependency('', required: false) audiounit_dep = dependency('', required: false)