mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-03 09:01:54 -05:00
Remove libv4l2 dependency
It's not used anywhere right now.
This commit is contained in:
parent
3cb400bb61
commit
51e900c9d3
2 changed files with 1 additions and 4 deletions
|
|
@ -30,9 +30,6 @@ if get_option('spa-plugins')
|
||||||
avcodec_dep = dependency('libavcodec')
|
avcodec_dep = dependency('libavcodec')
|
||||||
avformat_dep = dependency('libavformat')
|
avformat_dep = dependency('libavformat')
|
||||||
endif
|
endif
|
||||||
if get_option('v4l2')
|
|
||||||
v4l2_dep = dependency('libv4l2')
|
|
||||||
endif
|
|
||||||
|
|
||||||
subdir('plugins')
|
subdir('plugins')
|
||||||
endif
|
endif
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,6 @@ v4l2_sources = ['v4l2.c',
|
||||||
v4l2lib = shared_library('spa-v4l2',
|
v4l2lib = shared_library('spa-v4l2',
|
||||||
v4l2_sources,
|
v4l2_sources,
|
||||||
include_directories : [ spa_inc ],
|
include_directories : [ spa_inc ],
|
||||||
dependencies : [ v4l2_dep, libudev_dep ],
|
dependencies : [ libudev_dep ],
|
||||||
install : true,
|
install : true,
|
||||||
install_dir : '@0@/spa/v4l2'.format(get_option('libdir')))
|
install_dir : '@0@/spa/v4l2'.format(get_option('libdir')))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue