oxygen: remove very old workaround for machines not building kdeclarative

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
This commit is contained in:
Andreas Müller
2020-06-22 21:40:39 +02:00
parent 260178fbdf
commit a4c074d09f
2 changed files with 0 additions and 44 deletions

View File

@@ -1,43 +0,0 @@
From 70183d51ee4fe116ffac2c7ef5f2b28e47a68b0a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com>
Date: Tue, 1 Sep 2015 09:57:07 +0200
Subject: [PATCH] kstyle: add an option BUILD_OXYGEN_SETTINGS disabled by
default
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
on machines not supporting x11-egl (Raspberrypi / TI armv7) kdeclarative fails
to build and kcmutils depends on kdeclarative. By this option we get the chance
to build the library for these machines.
Upstream-Status: Inappropriate [configuration]
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
kstyle/config/CMakeLists.txt | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/kstyle/config/CMakeLists.txt b/kstyle/config/CMakeLists.txt
index 3d5387e..1625a06 100644
--- a/kstyle/config/CMakeLists.txt
+++ b/kstyle/config/CMakeLists.txt
@@ -53,6 +53,9 @@ else()
endif()
+option(BUILD_OXYGEN_SETTINGS "Build oxygen settings" OFF)
+if(BUILD_OXYGEN_SETTINGS)
+
########### next target ###############
if(NOT OXYGEN_USE_KDE4)
@@ -78,3 +81,5 @@ if(NOT OXYGEN_USE_KDE4)
THEME hicolor )
endif()
endif()
+
+endif()
--
2.1.0

View File

@@ -27,7 +27,6 @@ DEPENDS += " \
PV = "${PLASMA_VERSION}"
SRC_URI[md5sum] = "5bb3e172c4f514efa5598fd8e0d942d6"
SRC_URI[sha256sum] = "0fd50db0d08ecf7d04a1cc0740f41cb8e6fc56cb904d5daec644648f7e69aae6"
SRC_URI += "file://0001-kstyle-add-an-option-BUILD_OXYGEN_SETTINGS-disabled-.patch"
PACKAGECONFIG ??= ""
PACKAGECONFIG[settings] = "-DBUILD_OXYGEN_SETTINGS=ON,-DBUILD_OXYGEN_SETTINGS=OFF,kcmutils"