summaryrefslogtreecommitdiffstats
path: root/deps/qt5/qt5.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'deps/qt5/qt5.SlackBuild')
-rwxr-xr-xdeps/qt5/qt5.SlackBuild11
1 files changed, 9 insertions, 2 deletions
diff --git a/deps/qt5/qt5.SlackBuild b/deps/qt5/qt5.SlackBuild
index 830448d..b06e42c 100755
--- a/deps/qt5/qt5.SlackBuild
+++ b/deps/qt5/qt5.SlackBuild
@@ -1,6 +1,6 @@
#!/bin/sh
-# Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 Patrick J. Volkerding, Sebeka, MN, USA
+# Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 Patrick J. Volkerding, Sebeka, MN, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -52,9 +52,11 @@
# Modifications for qt 5.9.0 2017 by Eric Hameleers, Eindhoven, NL
# Modifications for qt 5.9.1 2017 by Eric Hameleers, Eindhoven, NL
# Modifications for qt 5.9.2 2017 by Eric Hameleers, Eindhoven, NL
+# Modifications for qt 5.9.3 2017 by Eric Hameleers, Eindhoven, NL
+# Modifications for qt 5.9.4 2018 by Eric Hameleers, Eindhoven, NL
PKGNAM=qt5
-VERSION=${VERSION:-5.9.3}
+VERSION=${VERSION:-5.9.4}
PKGSRC=$(echo $VERSION |cut -d- -f1)
PKGVER=$(echo $VERSION |tr - _)
BUILD=${BUILD:-1}
@@ -137,6 +139,11 @@ fi
# Fix path to mysql header:
cat $CWD/patches/qt5.mysql.h.diff | patch -p1 --verbose || exit 1
+# Fix a bug, evident in Plasma5 where drag'n'drop makes wrong icon hover:
+cd qtbase
+ cat $CWD/patches/qt5.qtbug-66103.patch | patch -p1 --verbose || exit 1
+cd -
+
# Fix missing private includes: QTBUG-37417
sed -e '/CMAKE_NO_PRIVATE_INCLUDES\ \=\ true/d' \
-i qtbase/mkspecs/features/create_cmake.prf