diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-10-02 01:08:30 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-10-02 01:08:30 +0000 |
commit | d781efa527bfc318d086667f935ebe9e96747232 (patch) | |
tree | 55af87da180f0f3aec3225f2c8f84fee4652c0eb /user/spectacle/kconfig.patch | |
parent | b0ef6ab00e65bd0c0eb8857422cf0f61085c226c (diff) | |
download | packages-d781efa527bfc318d086667f935ebe9e96747232.tar.gz packages-d781efa527bfc318d086667f935ebe9e96747232.tar.bz2 packages-d781efa527bfc318d086667f935ebe9e96747232.tar.xz packages-d781efa527bfc318d086667f935ebe9e96747232.zip |
user/[KDE Applications]: bump to 19.08.1
Diffstat (limited to 'user/spectacle/kconfig.patch')
-rw-r--r-- | user/spectacle/kconfig.patch | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/user/spectacle/kconfig.patch b/user/spectacle/kconfig.patch deleted file mode 100644 index 2d1860f2e..000000000 --- a/user/spectacle/kconfig.patch +++ /dev/null @@ -1,40 +0,0 @@ -From cab0844fef8bc6e7491978307245aadf65d64409 Mon Sep 17 00:00:00 2001 -From: "A. Wilcox" <AWilcox@Wilcox-Tech.com> -Date: Thu, 15 Aug 2019 09:05:28 -0500 -Subject: [PATCH] Define QT_NO_FOREACH only if KConfig > 5.56.0 - -Spectacle cannot be compiled with KConfig <= 5.56.0 otherwise, because -KConfig uses Q_FOREACH in its public headers. - -Tested on: KConfig 5.54.0 / Qt 5.9.7 ---- - CMakeLists.txt | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 78eae41..79eb869 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -40,7 +40,7 @@ include(FeatureSummary) - include(ECMQtDeclareLoggingCategory) - include(ECMAddTests) - --add_definitions(-DQT_NO_URL_CAST_FROM_STRING -DQT_NO_CAST_FROM_ASCII -DQT_NO_FOREACH) -+add_definitions(-DQT_NO_URL_CAST_FROM_STRING -DQT_NO_CAST_FROM_ASCII) - - find_package( - Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED -@@ -67,6 +67,10 @@ find_package( - XmlGui - ) - -+if(${KF5Config_VERSION} STRGREATER "5.56.0") -+ add_definitions(-DQT_NO_FOREACH) -+endif() -+ - # optional components - - find_package(KF5Kipi) --- -2.22.0 - |