From e2d1fe32254791ec1e40ddf90cab137e90cf94c8 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 24 Jan 2022 10:55:59 +0000 Subject: [PATCH] various fixes for gcc6 Origin: http://pkgs.fedoraproject.org/cgit/rpms/qt.git/tree/qt-everywhere-opensource-src-4.8.7-gcc6.patch Forwarded: not-needed Last-Update: 2016-05-03 This patch solves two issues: - Use the correct key for the compiler. - Avoid a shift overflow. Gbp-Pq: Name qt-everywhere-opensource-src-4.8.7-gcc6.patch --- configure | 4 ++-- src/xmlpatterns/api/qcoloroutput_p.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index 5eca02ab4..e2c1ab260 100755 --- a/configure +++ b/configure @@ -7797,7 +7797,7 @@ case "$XPLATFORM" in *-g++*) # Check gcc's version case "$(${QMAKE_CONF_COMPILER} -dumpversion)" in - 5*|4*|3.4*) + 8*|7*|6*|5*|4*|3.4*) ;; 3.3*) canBuildWebKit="no" @@ -8113,7 +8113,7 @@ g++*) 3.*) COMPILER_VERSION="3.*" ;; - 5*|4.*) + 8*|7*|6*|5*|4.*) COMPILER_VERSION="4" ;; *) diff --git a/src/xmlpatterns/api/qcoloroutput_p.h b/src/xmlpatterns/api/qcoloroutput_p.h index 7911e8962..be284d140 100644 --- a/src/xmlpatterns/api/qcoloroutput_p.h +++ b/src/xmlpatterns/api/qcoloroutput_p.h @@ -70,8 +70,8 @@ namespace QPatternist ForegroundShift = 10, BackgroundShift = 20, SpecialShift = 20, - ForegroundMask = ((1 << ForegroundShift) - 1) << ForegroundShift, - BackgroundMask = ((1 << BackgroundShift) - 1) << BackgroundShift + ForegroundMask = 0x1f << ForegroundShift, + BackgroundMask = 0x7 << BackgroundShift }; public: -- 2.30.2