diff options
author | James Le Cuirot <chewi@gentoo.org> | 2024-01-01 22:08:50 +0000 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2024-01-01 22:08:50 +0000 |
commit | e2293e58381d1e797cfd79ab951c9c91a8a5f399 (patch) | |
tree | fd403d19069d6c2499e03d92ced7625f49dc954c | |
parent | media-libs/amf-headers: Keyword 1.4.30 for ~arm64 (diff) | |
download | gentoo-e2293e58381d1e797cfd79ab951c9c91a8a5f399.tar.gz gentoo-e2293e58381d1e797cfd79ab951c9c91a8a5f399.tar.bz2 gentoo-e2293e58381d1e797cfd79ab951c9c91a8a5f399.zip |
media-libs/libv4l: Patch to fix musl build for missing argp dependency
Closes: https://bugs.gentoo.org/920277
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
-rw-r--r-- | media-libs/libv4l/files/libv4l-1.26.0-meson.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/media-libs/libv4l/files/libv4l-1.26.0-meson.patch b/media-libs/libv4l/files/libv4l-1.26.0-meson.patch index 0c993dd0da96..9f8384033865 100644 --- a/media-libs/libv4l/files/libv4l-1.26.0-meson.patch +++ b/media-libs/libv4l/files/libv4l-1.26.0-meson.patch @@ -84,3 +84,28 @@ index 2fa046c0..53cf832f 100644 -- 2.42.1 +From 8927b2e98efa070999fdf2c3c61825e672044ffd Mon Sep 17 00:00:00 2001 +From: James Le Cuirot <chewi@gentoo.org> +Date: Mon, 1 Jan 2024 22:05:34 +0000 +Subject: [PATCH] meson: Fix missing v4l2gl dependency on argp + +Signed-off-by: James Le Cuirot <chewi@gentoo.org> +--- + contrib/test/meson.build | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/contrib/test/meson.build b/contrib/test/meson.build +index 29b51df6..48ee67b1 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, +-- +2.43.0 + |