diff options
| author | Naveen Saini <naveen.kumar.saini@intel.com> | 2021-01-13 11:07:22 +0800 | 
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-01-13 23:13:46 +0000 | 
| commit | c750a47a5e98e768e68b1f15f524b12173fba685 (patch) | |
| tree | c55b631cbf2f0873e37807386e6850a4e90938ad | |
| parent | 43e8dd7934c635e0aa576d51a2da14e0e9921d60 (diff) | |
| download | poky-c750a47a5e98e768e68b1f15f524b12173fba685.tar.gz | |
gstreamer1.0-plugins-bad: fix msdk pkgconfig build failure
Error log:
| Run-time dependency libmfx found: YES 1.34
| Has header "mfx/mfxdefs.h" : YES
|
| ../gst-plugins-bad-1.18.2/sys/msdk/meson.build:75:2: ERROR: Include dir /usr/include/mfx does not exist.
|
| A full log can be found at /home/s
When msdk is enable in PACKAGECONFIG, plugin fails to locate includedir, so
adding a patch which prepend PKG_CONFIG_SYSROOT_DIR to the dir path
(From OE-Core rev: 204aa9cfa6ac99846ac494778dd143a13746ac7e)
Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0005-msdk-fix-includedir-path.patch | 31 | ||||
| -rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.18.2.bb | 1 | 
2 files changed, 32 insertions, 0 deletions
| diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0005-msdk-fix-includedir-path.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0005-msdk-fix-includedir-path.patch new file mode 100644 index 0000000000..cb3bb7d361 --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0005-msdk-fix-includedir-path.patch | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | From 1f00d5026118ebd48e4ccf83d32d67155c4e7f60 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Naveen Saini <naveen.kumar.saini@intel.com> | ||
| 3 | Date: Wed, 30 Dec 2020 16:37:47 +0800 | ||
| 4 | Subject: [PATCH] msdk: fix includedir path | ||
| 5 | |||
| 6 | In cross compilation, need to prepend PKG_CONFIG_SYSROOT_DIR to the dir path. | ||
| 7 | |||
| 8 | Upstream-Status: Inappropriate [OE-specific] | ||
| 9 | |||
| 10 | Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com> | ||
| 11 | --- | ||
| 12 | sys/msdk/meson.build | 2 ++ | ||
| 13 | 1 file changed, 2 insertions(+) | ||
| 14 | |||
| 15 | diff --git a/sys/msdk/meson.build b/sys/msdk/meson.build | ||
| 16 | index 6346c9451..068f38548 100644 | ||
| 17 | --- a/sys/msdk/meson.build | ||
| 18 | +++ b/sys/msdk/meson.build | ||
| 19 | @@ -40,7 +40,9 @@ endif | ||
| 20 | |||
| 21 | mfx_dep = dependency('libmfx', required: false) | ||
| 22 | if mfx_dep.found() | ||
| 23 | + pkgconf_sysroot = run_command(python3, '-c', 'import os; print(os.environ.get("PKG_CONFIG_SYSROOT_DIR"))').stdout().strip() | ||
| 24 | mfx_incdir = mfx_dep.get_pkgconfig_variable('includedir') | ||
| 25 | + mfx_incdir = pkgconf_sysroot + mfx_incdir | ||
| 26 | mfx_inc = [] | ||
| 27 | else | ||
| 28 | # Old versions of MediaSDK don't provide a pkg-config file | ||
| 29 | -- | ||
| 30 | 2.17.1 | ||
| 31 | |||
| diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.18.2.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.18.2.bb index d37a223254..6d0c988b7a 100644 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.18.2.bb +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.18.2.bb | |||
| @@ -5,6 +5,7 @@ SRC_URI = "https://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad | |||
| 5 | file://0002-avoid-including-sys-poll.h-directly.patch \ | 5 | file://0002-avoid-including-sys-poll.h-directly.patch \ | 
| 6 | file://0003-ensure-valid-sentinals-for-gst_structure_get-etc.patch \ | 6 | file://0003-ensure-valid-sentinals-for-gst_structure_get-etc.patch \ | 
| 7 | file://0004-opencv-resolve-missing-opencv-data-dir-in-yocto-buil.patch \ | 7 | file://0004-opencv-resolve-missing-opencv-data-dir-in-yocto-buil.patch \ | 
| 8 | file://0005-msdk-fix-includedir-path.patch \ | ||
| 8 | " | 9 | " | 
| 9 | SRC_URI[sha256sum] = "8ad5822f1118fe46a19af54422b74e3a16d79a6800dcb173b49e199a496b341a" | 10 | SRC_URI[sha256sum] = "8ad5822f1118fe46a19af54422b74e3a16d79a6800dcb173b49e199a496b341a" | 
| 10 | 11 | ||
