mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
meson: Fix missing variable in v4l2 build
This commit is contained in:
parent
7679412b69
commit
1c645f83f6
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ v4l2_sources = [
|
||||||
|
|
||||||
v4l2 = get_option('v4l2')
|
v4l2 = get_option('v4l2')
|
||||||
if v4l2.disabled()
|
if v4l2.disabled()
|
||||||
build_v4l2 = false
|
have_v4l2 = false
|
||||||
message('V4L2 plugin is disabled')
|
message('V4L2 plugin is disabled')
|
||||||
else
|
else
|
||||||
have_v4l2 = cc.has_header('linux/videodev2.h') or cc.has_header('sys/videodev2.h') or cc.has_header('sys/videoio.h')
|
have_v4l2 = cc.has_header('linux/videodev2.h') or cc.has_header('sys/videodev2.h') or cc.has_header('sys/videoio.h')
|
||||||
|
|
Loading…
Reference in a new issue