PKGBUILDs/extra/digikam/0001-optionally-enable-OpenGL.patch

35 lines
1.5 KiB
Diff
Raw Normal View History

2017-01-10 01:47:08 +00:00
From 9b37ca152cbae4b86ce2b93f7b1af58f092d1ccf Mon Sep 17 00:00:00 2001
2016-07-06 00:59:39 +00:00
From: Kevin Mihelich <kevin@archlinuxarm.org>
Date: Tue, 5 Jul 2016 18:47:56 -0600
Subject: [PATCH] optionally enable OpenGL
Signed-off-by: Kevin Mihelich <kevin@archlinuxarm.org>
---
CMakeLists.txt | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
2017-01-10 01:47:08 +00:00
index 89e0682..b60d0b4 100644
2016-07-06 00:59:39 +00:00
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
2017-01-10 01:47:08 +00:00
@@ -105,6 +105,7 @@ option(ENABLE_KFILEMETADATASUPPORT "Build digiKam with KDE files indexer suppor
2016-09-23 12:46:52 +00:00
option(ENABLE_AKONADICONTACTSUPPORT "Build digiKam with KDE Mail Contacts support (default=OFF)" OFF)
2017-01-10 01:47:08 +00:00
option(ENABLE_MEDIAPLAYER "Build digiKam with Media Player support (default=OFF)" OFF)
2016-09-23 12:46:52 +00:00
option(ENABLE_DBUS "Build digiKam with DBUS support (default=ON)" ON)
2016-07-06 00:59:39 +00:00
+option(ENABLE_OPENGL "Build digiKam with OpenGL support (default=ON)" ON)
2016-09-23 12:46:52 +00:00
option(ENABLE_APPSTYLES "Build digiKam with support for changing the widget application style (default=OFF)" OFF)
2016-07-06 00:59:39 +00:00
# Mysql support options (experimental):
2017-01-10 01:47:08 +00:00
@@ -293,7 +294,7 @@ else()
2016-07-06 00:59:39 +00:00
endif()
# decide if Presentation tool can be built with OpenGL
-if(OPENGL_FOUND AND OPENGL_GLU_FOUND AND Qt5OpenGL_FOUND)
+if(OPENGL_FOUND AND OPENGL_GLU_FOUND AND Qt5OpenGL_FOUND AND ENABLE_OPENGL)
set(HAVE_OPENGL TRUE)
elseif()
set(HAVE_OPENGL FALSE)
--
2017-01-10 01:47:08 +00:00
2.10.2
2016-07-06 00:59:39 +00:00