diff options
2 files changed, 0 insertions, 38 deletions
diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-rpicamsrc-add-vchostif-library-as-it-is-required-to-.patch b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-rpicamsrc-add-vchostif-library-as-it-is-required-to-.patch deleted file mode 100644 index ea5ee71..0000000 --- a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-rpicamsrc-add-vchostif-library-as-it-is-required-to-.patch +++ /dev/null | |||
@@ -1,31 +0,0 @@ | |||
1 | From 3ec4fe5507a39383b161f1ab7687acb4a57c32f8 Mon Sep 17 00:00:00 2001 | ||
2 | From: Jose Quaresma <quaresma.jose@gmail.com> | ||
3 | Date: Sun, 15 Nov 2020 11:30:07 +0000 | ||
4 | Subject: [PATCH] rpicamsrc: add vchostif library as it is required to build | ||
5 | successful | ||
6 | |||
7 | fix: undefined reference to `vc_gencmd' | ||
8 | /usr/src/debug/gstreamer1.0-plugins-good/1.18.1-r0/build/../gst-plugins-good-1.18.1/sys/rpicamsrc/RaspiCamControl.c:1440: undefined reference to `vc_gencmd' | ||
9 | |||
10 | Upstream-Status: Submitted [https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/818] | ||
11 | Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com> | ||
12 | --- | ||
13 | sys/rpicamsrc/meson.build | 2 +- | ||
14 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
15 | |||
16 | diff --git a/sys/rpicamsrc/meson.build b/sys/rpicamsrc/meson.build | ||
17 | index dc18a8345..48b2ceb66 100644 | ||
18 | --- a/sys/rpicamsrc/meson.build | ||
19 | +++ b/sys/rpicamsrc/meson.build | ||
20 | @@ -34,7 +34,7 @@ if not cc.has_header('bcm_host.h', args: rpi_inc_args) | ||
21 | endif | ||
22 | |||
23 | mmal_deps = [] | ||
24 | -foreach rpi_lib : ['mmal_core', 'mmal_util', 'mmal_vc_client', 'vcos', 'bcm_host'] | ||
25 | +foreach rpi_lib : ['mmal_core', 'mmal_util', 'mmal_vc_client', 'vcos', 'vchostif', 'bcm_host'] | ||
26 | l = cc.find_library(rpi_lib, dirs: rpi_lib_path, required: false) | ||
27 | if not l.found() | ||
28 | if get_option('rpicamsrc').enabled() | ||
29 | -- | ||
30 | 2.29.2 | ||
31 | |||
diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.18.%.bbappend b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.18.%.bbappend index c2a1877..80a324f 100644 --- a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.18.%.bbappend +++ b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.18.%.bbappend | |||
@@ -1,8 +1 @@ | |||
1 | FILESEXTRAPATHS_prepend_rpi := "${THISDIR}/${PN}:" | ||
2 | |||
3 | SRC_URI_append_rpi = " file://0001-rpicamsrc-add-vchostif-library-as-it-is-required-to-.patch" | ||
4 | |||
5 | EXTRA_OEMESON_remove_rpi = "-Drpicamsrc=disabled" | ||
6 | PACKAGECONFIG[rpi] = "-Drpicamsrc=enabled,-Drpicamsrc=disabled,userland" | ||
7 | |||
8 | PACKAGECONFIG_append_rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', ' rpi', d)}" | PACKAGECONFIG_append_rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', ' rpi', d)}" | |