alsa: depend on epoll-shim and libinotify on FreeBSD

FreeBSD does not have epoll or inotify in the base.
They are implemented in third-party libraries.
This commit is contained in:
Evgeniy Khramtsov 2021-04-23 20:52:24 +03:00
parent 962d3b9127
commit 7888be6eb3

View file

@ -16,7 +16,7 @@ spa_alsa = shared_library(
[ spa_alsa_sources ],
c_args : acp_c_args,
include_directories : [spa_inc, configinc],
dependencies : [ alsa_dep, libudev_dep, mathlib ],
dependencies : [ alsa_dep, libudev_dep, mathlib, epoll_shim_dep, libinotify_dep ],
link_with : [ acp_lib ],
install : true,
install_dir : spa_plugindir / 'alsa'
@ -38,7 +38,7 @@ executable('spa-acp-tool',
executable('test-timer',
[ 'test-timer.c' ],
dependencies : [ alsa_dep, mathlib ],
dependencies : [ alsa_dep, mathlib, epoll_shim_dep ],
install : false,
)