diff options
| author | Denis Pronin <dannftk@yandex.ru> | 2023-07-13 17:55:14 +0300 |
|---|---|---|
| committer | Sam James <sam@gentoo.org> | 2023-08-04 13:35:02 +0100 |
| commit | 6fb7d0a7131b5a5938b12673f4b260d66cc1a527 (patch) | |
| tree | 7fde1a5c17a66564c14fad60d456765ad47aa5af /dev-qt/qtwebengine/qtwebengine-5.15.10_p20230623.ebuild | |
| parent | 9bd0a1774d10a17f7a311813b314fee6953eb49d (diff) | |
| download | gentoo-6fb7d0a7131b5a5938b12673f4b260d66cc1a527.tar.gz gentoo-6fb7d0a7131b5a5938b12673f4b260d66cc1a527.tar.bz2 gentoo-6fb7d0a7131b5a5938b12673f4b260d66cc1a527.zip | |
dev-qt/qtwebengine: fix compiling with clang-16
clang-16 complains about casting an integer value that exceeds an
enumeration capacity in the class base::BitField
to not modify chromium code we just cancel warning about this
circumstance to prevent it from being converted to an error that fails
compilation
[sam: Note that this is a bandaid and won't work with Clang 17.]
Bug: https://bugs.gentoo.org/903573
Signed-off-by: Denis Pronin <dannftk@yandex.ru>
Closes: https://github.com/gentoo/gentoo/pull/31869
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-qt/qtwebengine/qtwebengine-5.15.10_p20230623.ebuild')
| -rw-r--r-- | dev-qt/qtwebengine/qtwebengine-5.15.10_p20230623.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dev-qt/qtwebengine/qtwebengine-5.15.10_p20230623.ebuild b/dev-qt/qtwebengine/qtwebengine-5.15.10_p20230623.ebuild index ce07a4c85372..937b8d59b20d 100644 --- a/dev-qt/qtwebengine/qtwebengine-5.15.10_p20230623.ebuild +++ b/dev-qt/qtwebengine/qtwebengine-5.15.10_p20230623.ebuild @@ -100,7 +100,10 @@ BDEPEND="${PYTHON_DEPS} ppc64? ( >=dev-util/gn-0.1807 ) " -PATCHES=( "${WORKDIR}/${PN}-5.15.8_p20230313-patchset" ) +PATCHES=( + "${WORKDIR}/${PN}-5.15.8_p20230313-patchset" + "${FILESDIR}/${PN}-5.15.10_p20230623-clang16.patch" +) qtwebengine_check-reqs() { # bug #307861 |
