diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-05-03 19:30:40 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-05-05 20:56:04 +0200 |
commit | d827163da06a8b3ec944dd680397933a9eb61d9e (patch) | |
tree | bad65a979eeb725a9b14bbda1081616e378c51e4 /www-client/chromium/files | |
parent | sys-devel/gcc: remove unused patch (diff) | |
download | gentoo-d827163da06a8b3ec944dd680397933a9eb61d9e.tar.gz gentoo-d827163da06a8b3ec944dd680397933a9eb61d9e.tar.bz2 gentoo-d827163da06a8b3ec944dd680397933a9eb61d9e.zip |
www-client/chromium: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/36536
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'www-client/chromium/files')
-rw-r--r-- | www-client/chromium/files/chromium-123-qt-gui-check.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/www-client/chromium/files/chromium-123-qt-gui-check.patch b/www-client/chromium/files/chromium-123-qt-gui-check.patch deleted file mode 100644 index 53c1ca89222f..000000000000 --- a/www-client/chromium/files/chromium-123-qt-gui-check.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 3a812de6e7e0b285eda21ebbb670ca809c4db2b5 Mon Sep 17 00:00:00 2001 -From: Matt Jolly <Matt.Jolly@footclan.ninja> -Date: Thu, 11 Apr 2024 12:42:17 +1000 -Subject: [PATCH] Add QtGui to the list of Qt modules - -Re: https://bugreports.qt.io/browse/QTBUG-124135 - certain versions of QT -(6.6.3, 6.7.0) produce pkg-config files that no longer emit dependencies. -This causes Chromium builds to fail as due to not seeing QtGui as a dependency -of QtWidgets: - - `gen/qt6/../../../../ui/qt/qt_shim.h:11:10: fatal error: 'QImage' file not found` - -While this has been resolved upstream, there will certainly be some users -that are still using these versions of QT. This patch adds QtGui to the list of -Qt modules that are required to build the Chromium UI. - -Bug: https://bugs.gentoo.org/928299 -Suggested-by: Chris Pritchard <chris@christopherpritchard.co.uk> -Signed-off-by: Matt Jolly <kangie@gentoo.org> ---- a/ui/qt/BUILD.gn -+++ b/ui/qt/BUILD.gn -@@ -60,6 +60,7 @@ template("qt_shim") { - pkg_config("qt" + invoker.qt_version + "_config") { - packages = [ - "Qt" + invoker.qt_version + "Core", -+ "Qt" + invoker.qt_version + "Gui", - "Qt" + invoker.qt_version + "Widgets", - ] - } --- -2.44.0 |