summarylogtreecommitdiffstats
path: root/0001-Build-fixes-for-Qt-5.11.patch
diff options
context:
space:
mode:
Diffstat (limited to '0001-Build-fixes-for-Qt-5.11.patch')
-rw-r--r--0001-Build-fixes-for-Qt-5.11.patch39
1 files changed, 39 insertions, 0 deletions
diff --git a/0001-Build-fixes-for-Qt-5.11.patch b/0001-Build-fixes-for-Qt-5.11.patch
new file mode 100644
index 000000000000..7547deffd920
--- /dev/null
+++ b/0001-Build-fixes-for-Qt-5.11.patch
@@ -0,0 +1,39 @@
+From edeb0d979991966b5fc5ee901c9f06065e08a3bc Mon Sep 17 00:00:00 2001
+From: Nicolas Menard <nicolas.menard@wyss.harvard.edu>
+Date: Thu, 21 Jun 2018 09:13:55 -0400
+Subject: [PATCH] Build fixes for Qt 5.11
+
+---
+ cmake/modules/KstMacros.cmake | 2 +-
+ src/libkstapp/view.h | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/cmake/modules/KstMacros.cmake b/cmake/modules/KstMacros.cmake
+index 676d5731..d340185f 100644
+--- a/cmake/modules/KstMacros.cmake
++++ b/cmake/modules/KstMacros.cmake
+@@ -240,7 +240,7 @@ endmacro()
+ macro(kst_link)
+ target_link_libraries(${kst_name} ${ARGV})
+ if(kst_qt5)
+- qt5_use_modules(${kst_name} Widgets Xml Network PrintSupport Svg)
++ target_link_libraries(${kst_name} Qt5::Widgets Qt5::Xml Qt5::Network Qt5::PrintSupport Qt5::Svg)
+ else()
+ target_link_libraries(${kst_name}
+ ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} ${QT_QTXML_LIBRARY} ${QT_QTSVG_LIBRARY} ${QT_QTNETWORK_LIBRARY})
+diff --git a/src/libkstapp/view.h b/src/libkstapp/view.h
+index 95c8c6a5..607991b7 100644
+--- a/src/libkstapp/view.h
++++ b/src/libkstapp/view.h
+@@ -19,7 +19,7 @@
+
+ #include "curveplacement.h"
+
+-
++class QMenu;
+ class QUndoStack;
+ class QXmlStreamWriter;
+
+--
+2.17.1
+