The v4l2gl application uses argp_parse(), but is missing the dependency on argp. This causes compilation failures in environments where the function is provided by an external library. Fix it. Signed-off-by: Laurent Pinchart <laurent.pinchart@xxxxxxxxxxxxxxxx> --- contrib/test/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/test/meson.build b/contrib/test/meson.build index 29b51df640e0..48ee67b1e350 100644 --- a/contrib/test/meson.build +++ b/contrib/test/meson.build @@ -107,6 +107,7 @@ if dep_gl.found() and dep_glu.found() and dep_x11.found() ) v4l2gl_deps = [ + dep_argp, dep_gl, dep_glu, dep_libv4l2, base-commit: f105c1eff03489f9e317009c4d9f56a61171ee5f -- Regards, Laurent Pinchart