diff mbox series

v4l2gl: Add missing dependency on argp

Message ID 20231221153440.30000-1-laurent.pinchart@ideasonboard.com (mailing list archive)
State New
Headers show
Series v4l2gl: Add missing dependency on argp | expand

Commit Message

Laurent Pinchart Dec. 21, 2023, 3:34 p.m. UTC
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@ideasonboard.com>
---
 contrib/test/meson.build | 1 +
 1 file changed, 1 insertion(+)


base-commit: f105c1eff03489f9e317009c4d9f56a61171ee5f
diff mbox series

Patch

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,