output/plugins/OSXOutputPlugin: add boost meson dependency
This commit is contained in:
parent
0bb71f1f20
commit
0a6e484b1a
1
NEWS
1
NEWS
|
@ -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
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue