svn commit: r442456 - in head/x11/konsole: . files
Tobias C. Berner
tcberner at FreeBSD.org
Fri Jun 2 19:36:47 UTC 2017
Author: tcberner
Date: Fri Jun 2 19:36:45 2017
New Revision: 442456
URL: https://svnweb.freebsd.org/changeset/ports/442456
Log:
Fix ambiguity of qFuzzyCompare on armv6
PR: 217079
Submitted by: Mikaël Urankar <mikael.urankar at gmail.com>
Added:
head/x11/konsole/files/patch-src_ColorScheme.cpp (contents, props changed)
Modified:
head/x11/konsole/Makefile
Modified: head/x11/konsole/Makefile
==============================================================================
--- head/x11/konsole/Makefile Fri Jun 2 19:35:58 2017 (r442455)
+++ head/x11/konsole/Makefile Fri Jun 2 19:36:45 2017 (r442456)
@@ -2,7 +2,7 @@
PORTNAME= konsole
PORTVERSION= ${KDE4_VERSION}
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= x11 kde kde-kde4
MAINTAINER= kde at FreeBSD.org
Added: head/x11/konsole/files/patch-src_ColorScheme.cpp
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/x11/konsole/files/patch-src_ColorScheme.cpp Fri Jun 2 19:36:45 2017 (r442456)
@@ -0,0 +1,13 @@
+Fix ambiguous call on armv6.
+
+--- src/ColorScheme.cpp.orig 2017-01-12 05:40:22 UTC
++++ src/ColorScheme.cpp
+@@ -406,7 +406,7 @@ bool ColorSchemeWallpaper::draw(QPainter
+ if (!_picture || _picture->isNull())
+ return false;
+
+- if (qFuzzyCompare(1.0, opacity)) {
++ if (qFuzzyCompare(qreal(1.0), opacity)) {
+ painter.drawTiledPixmap(rect, *_picture, rect.topLeft());
+ return true;
+ }
More information about the svn-ports-all
mailing list