summaryrefslogtreecommitdiff
path: root/gnu/packages/patches/qtwebengine-fix-system-libvpx.patch
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2025-09-04 15:04:30 +0900
committerMaxim Cournoyer <maxim@guixotic.coop>2025-09-12 23:52:42 +0900
commit6e5d03fb9cc640ad77a9430dab788d0bd791db8c (patch)
treea7dcd319bc5bc005ebb47e5e36c67981f7427ae7 /gnu/packages/patches/qtwebengine-fix-system-libvpx.patch
parente1f31b47cbb52914309aa36fab8a684d76a9d545 (diff)
gnu: qtwebengine: Update to 6.9.2.
* gnu/packages/qt.scm (qtwebengine): Update to 6.9.2. [source] <snippet>: Adjust for removed or moved and added bundled library dependencies. <patches>: Remove qtwebengine-fix-system-libvpx.patch, add qtwebengine-fix-dependencies.patch. [native-inputs]: Replace clang-18 with clang-20. [inputs]: replace icu4c-75 with icu4c. Delete fp16, which is bundled. * gnu/packages/patches/qtwebengine-fix-system-libvpx.patch: Delete file. * gnu/packages/patches/qtwebengine-fix-dependencies.patch: New file. * gnu/local.mk (dist_patch_DATA): Update accordingly. Change-Id: I31b2b3ae2a9240aaa72290cfc0467a04af18c91c
Diffstat (limited to 'gnu/packages/patches/qtwebengine-fix-system-libvpx.patch')
-rw-r--r--gnu/packages/patches/qtwebengine-fix-system-libvpx.patch58
1 files changed, 0 insertions, 58 deletions
diff --git a/gnu/packages/patches/qtwebengine-fix-system-libvpx.patch b/gnu/packages/patches/qtwebengine-fix-system-libvpx.patch
deleted file mode 100644
index c102fee01e..0000000000
--- a/gnu/packages/patches/qtwebengine-fix-system-libvpx.patch
+++ /dev/null
@@ -1,58 +0,0 @@
-From c4aa5cc8c87f301a7c3b208fb017468a88836d42 Mon Sep 17 00:00:00 2001
-From: Martin Negyokru <negyokru@inf.u-szeged.hu>
-Date: Fri, 17 Jan 2025 15:55:25 +0100
-Subject: [PATCH] Fix building with system libvpx
-
-Disable code path which depends on internal api.
-According to the upstream change it is only needed
-for logging. See https://crrev.com/c/chromium/src/+/5116580
-
-Fixes: QTBUG-129955
-Change-Id: I5f396fcd8b22402af71a9e557f9f2f7f177a8114
-Reviewed-on: https://codereview.qt-project.org/c/qt/qtwebengine-chromium/+/617894
-Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
-Reviewed-by: Moss Heim <moss.heim@qt.io>
-(cherry picked from commit 30e6fccd654e43b016637d25466b00d3897da0f9)
-Reviewed-on: https://codereview.qt-project.org/c/qt/qtwebengine-chromium/+/621129
-Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
----
-
-diff --git a/src/3rdparty/chromium/media/base/libvpx_thread_wrapper.cc b/src/3rdparty/chromium/media/base/libvpx_thread_wrapper.cc
-index 5566c8e..4821c0c 100644
---- a/src/3rdparty/chromium/media/base/libvpx_thread_wrapper.cc
-+++ b/src/3rdparty/chromium/media/base/libvpx_thread_wrapper.cc
-@@ -5,11 +5,14 @@
- #include "media/base/libvpx_thread_wrapper.h"
-
- #include "media/base/codec_worker_impl.h"
-+#if !BUILDFLAG(IS_QTWEBENGINE) || !defined(USE_SYSTEM_LIBVPX)
- #include "third_party/libvpx/source/libvpx/vpx_util/vpx_thread.h"
-+#endif
-
- namespace media {
-
- void InitLibVpxThreadWrapper() {
-+#if !BUILDFLAG(IS_QTWEBENGINE) || !defined(USE_SYSTEM_LIBVPX)
- const VPxWorkerInterface interface =
- CodecWorkerImpl<VPxWorkerInterface, VPxWorkerImpl, VPxWorker,
- VPxWorkerStatus, VPX_WORKER_STATUS_NOT_OK,
-@@ -17,6 +20,7 @@
- VPX_WORKER_STATUS_WORKING>::GetCodecWorkerInterface();
-
- CHECK(vpx_set_worker_interface(&interface));
-+#endif
- }
-
- } // namespace media
-diff --git a/src/3rdparty/chromium/third_party/libvpx/BUILD.gn b/src/3rdparty/chromium/third_party/libvpx/BUILD.gn
-index 6aedb08..2933bf4 100644
---- a/src/3rdparty/chromium/third_party/libvpx/BUILD.gn
-+++ b/src/3rdparty/chromium/third_party/libvpx/BUILD.gn
-@@ -634,6 +634,7 @@
- if (use_system_libvpx) {
- pkg_config("system_libvpx") {
- packages = [ "vpx" ]
-+ defines = ["USE_SYSTEM_LIBVPX=true"]
- }
- }
-