diff options
| -rw-r--r-- | meta-oe/recipes-multimedia/mplayer/libplacebo/0001-meson-add-glslang-lib-for-15.0.0-linking.patch | 34 | ||||
| -rw-r--r-- | meta-oe/recipes-multimedia/mplayer/libplacebo_7.349.0.bb | 10 |
2 files changed, 43 insertions, 1 deletions
diff --git a/meta-oe/recipes-multimedia/mplayer/libplacebo/0001-meson-add-glslang-lib-for-15.0.0-linking.patch b/meta-oe/recipes-multimedia/mplayer/libplacebo/0001-meson-add-glslang-lib-for-15.0.0-linking.patch new file mode 100644 index 0000000000..8d784da0cc --- /dev/null +++ b/meta-oe/recipes-multimedia/mplayer/libplacebo/0001-meson-add-glslang-lib-for-15.0.0-linking.patch | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | From d18a23cc275576bcefbdcc179d08ae643eeb3f3e Mon Sep 17 00:00:00 2001 | ||
| 2 | From: =?UTF-8?q?Kacper=20Michaj=C5=82ow?= <kasper93@gmail.com> | ||
| 3 | Date: Mon, 2 Dec 2024 17:10:00 +0100 | ||
| 4 | Subject: [PATCH] meson: add glslang lib for 15.0.0 linking | ||
| 5 | |||
| 6 | Glslang 15.0.0 moved some code around, add also linking to glslang, | ||
| 7 | while this is not needed for older versions, it will still work. | ||
| 8 | |||
| 9 | Unfortunately CMake config embedded in distributions is not usable | ||
| 10 | without installing additional package like glslang-tools, because at | ||
| 11 | least Ubuntu splits it. On Arch it would work, but generally the CMake | ||
| 12 | config require cmake binary to work also, so let's keep it as-is for | ||
| 13 | now. | ||
| 14 | |||
| 15 | Upstream-Status: Backport [https://github.com/haasn/libplacebo/commit/056b852018db04aa2ebc0982e27713afcea8106b] | ||
| 16 | --- | ||
| 17 | src/glsl/meson.build | 4 ++++ | ||
| 18 | 1 file changed, 4 insertions(+) | ||
| 19 | |||
| 20 | diff --git a/src/glsl/meson.build b/src/glsl/meson.build | ||
| 21 | index 5a881960..8fb5e699 100644 | ||
| 22 | --- a/src/glsl/meson.build | ||
| 23 | +++ b/src/glsl/meson.build | ||
| 24 | @@ -39,6 +39,10 @@ elif not glslang_req.disabled() | ||
| 25 | |||
| 26 | glslang_deps += spirv | ||
| 27 | |||
| 28 | + # Glslang 15.0.0 moved some code around, add also linking to glslang, while | ||
| 29 | + # this is not needed for older versions, it will still work. | ||
| 30 | + glslang_deps += cxx.find_library('glslang', required: required, static: static) | ||
| 31 | + | ||
| 32 | if static | ||
| 33 | glslang_deps += [ | ||
| 34 | # Always required for static linking | ||
diff --git a/meta-oe/recipes-multimedia/mplayer/libplacebo_7.349.0.bb b/meta-oe/recipes-multimedia/mplayer/libplacebo_7.349.0.bb index 15f324ff49..a5b38db335 100644 --- a/meta-oe/recipes-multimedia/mplayer/libplacebo_7.349.0.bb +++ b/meta-oe/recipes-multimedia/mplayer/libplacebo_7.349.0.bb | |||
| @@ -4,7 +4,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=435ed639f84d4585d93824e7da3d85da" | |||
| 4 | 4 | ||
| 5 | DEPENDS += "fastfloat glad-native python3-mako-native python3-jinja2-native vulkan-headers" | 5 | DEPENDS += "fastfloat glad-native python3-mako-native python3-jinja2-native vulkan-headers" |
| 6 | 6 | ||
| 7 | SRC_URI = "git://code.videolan.org/videolan/libplacebo.git;protocol=https;branch=v7.349" | 7 | SRC_URI = "git://code.videolan.org/videolan/libplacebo.git;protocol=https;branch=v7.349 \ |
| 8 | file://0001-meson-add-glslang-lib-for-15.0.0-linking.patch" | ||
| 8 | SRCREV = "1fd3c7bde7b943fe8985c893310b5269a09b46c5" | 9 | SRCREV = "1fd3c7bde7b943fe8985c893310b5269a09b46c5" |
| 9 | 10 | ||
| 10 | inherit meson pkgconfig | 11 | inherit meson pkgconfig |
| @@ -20,3 +21,10 @@ PACKAGECONFIG[lcms] = "-Dlcms=enabled,-Dlcms=disabled,lcms" | |||
| 20 | PACKAGECONFIG[demos] = "-Ddemos=true,-Ddemos=false,ffmpeg libsdl2 libsdl2-image" | 21 | PACKAGECONFIG[demos] = "-Ddemos=true,-Ddemos=false,ffmpeg libsdl2 libsdl2-image" |
| 21 | 22 | ||
| 22 | EXTRA_OEMESON = "-Dvulkan-registry=${STAGING_DATADIR}/vulkan/registry/vk.xml" | 23 | EXTRA_OEMESON = "-Dvulkan-registry=${STAGING_DATADIR}/vulkan/registry/vk.xml" |
| 24 | |||
| 25 | do_install:append(){ | ||
| 26 | if [ -f ${D}${libdir}/pkgconfig/libplacebo.pc ]; then | ||
| 27 | sed -i "s,${RECIPE_SYSROOT}${libdir}/libSPIRV.so,-lSPIRV,g" ${D}${libdir}/pkgconfig/libplacebo.pc | ||
| 28 | sed -i "s,${RECIPE_SYSROOT}${libdir}/libglslang.so,-lglslang,g" ${D}${libdir}/pkgconfig/libplacebo.pc | ||
| 29 | fi | ||
| 30 | } | ||
