mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
Link v4l2 plugin to libinotify on FreeBSD
This commit is contained in:
parent
6f26210361
commit
fd544544ab
2 changed files with 5 additions and 1 deletions
|
|
@ -354,6 +354,10 @@ epoll_shim_dep = (build_machine.system() == 'freebsd'
|
|||
? dependency('epoll-shim', required: true)
|
||||
: dependency('', required: false))
|
||||
|
||||
libinotify_dep = (build_machine.system() == 'freebsd'
|
||||
? dependency('libinotify', required: true)
|
||||
: dependency('', required: false))
|
||||
|
||||
alsa_dep = (get_option('pipewire-alsa')
|
||||
? dependency('alsa', version : '>=1.1.7')
|
||||
: dependency('', required: false))
|
||||
|
|
|
|||
|
|
@ -6,6 +6,6 @@ v4l2_sources = ['v4l2.c',
|
|||
v4l2lib = shared_library('spa-v4l2',
|
||||
v4l2_sources,
|
||||
include_directories : [ spa_inc ],
|
||||
dependencies : [ libudev_dep, ],
|
||||
dependencies : [ libudev_dep, libinotify_dep ],
|
||||
install : true,
|
||||
install_dir : join_paths(spa_plugindir, 'v4l2'))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue