aboutsummaryrefslogtreecommitdiffstats
path: root/community/darktable/fix-cmake-none.patch
diff options
context:
space:
mode:
authorKevin Daudt <kdaudt@alpinelinux.org>2020-04-18 10:35:04 +0000
committerKevin Daudt <kdaudt@alpinelinux.org>2020-04-18 15:54:58 +0000
commit0f7602d4e0a39be7d6123fb557d7084c00a5f79f (patch)
treef0d1346c12cea55211de500815327e554e41b1cc /community/darktable/fix-cmake-none.patch
parentba4d29362c8776bcdfc87111d2d27f32f534ba1e (diff)
downloadaports-0f7602d4e0a39be7d6123fb557d7084c00a5f79f.tar.bz2
aports-0f7602d4e0a39be7d6123fb557d7084c00a5f79f.tar.xz
community/darktable: upgrade to 3.0.2
Diffstat (limited to 'community/darktable/fix-cmake-none.patch')
-rw-r--r--community/darktable/fix-cmake-none.patch16
1 files changed, 8 insertions, 8 deletions
diff --git a/community/darktable/fix-cmake-none.patch b/community/darktable/fix-cmake-none.patch
index 6cacc140b8..d005e1db34 100644
--- a/community/darktable/fix-cmake-none.patch
+++ b/community/darktable/fix-cmake-none.patch
@@ -1,13 +1,13 @@
diff --git a/src/external/rawspeed/cmake/build-type.cmake b/src/external/rawspeed/cmake/build-type.cmake
-index c04263c..c72f7cb 100644
+index 4c15761..f752d1b 100644
--- a/src/external/rawspeed/cmake/build-type.cmake
+++ b/src/external/rawspeed/cmake/build-type.cmake
-@@ -19,7 +19,7 @@ endif(NOT CMAKE_BUILD_TYPE)
+@@ -17,7 +17,7 @@ if(NOT CMAKE_BUILD_TYPE)
+ SET(CMAKE_BUILD_TYPE ${default_build_type} CACHE STRING "" FORCE)
+ endif(NOT CMAKE_BUILD_TYPE)
- # yes, these build types need to be specified here in upper-case.
- set(SPECIAL_BUILD_TYPES COVERAGE SANITIZE TSAN FUZZ)
--set(CMAKE_CONFIGURATION_TYPES DEBUG RELWITHDEBINFO RELEASE ${SPECIAL_BUILD_TYPES})
-+set(CMAKE_CONFIGURATION_TYPES DEBUG RELWITHDEBINFO RELEASE NONE ${SPECIAL_BUILD_TYPES})
- set(CMAKE_CONFIGURATION_TYPES "${CMAKE_CONFIGURATION_TYPES}" CACHE STRING "All the available build types" FORCE)
+-set(RAWSPEED_STANDARD_BUILD_TYPES Debug RelWithDebInfo Release)
++set(RAWSPEED_STANDARD_BUILD_TYPES Debug RelWithDebInfo Release None)
+ set(RAWSPEED_SPECIAL_BUILD_TYPES Coverage Sanitize TSan Fuzz)
+ set(CMAKE_CONFIGURATION_TYPES ${RAWSPEED_STANDARD_BUILD_TYPES} ${RAWSPEED_SPECIAL_BUILD_TYPES} CACHE STRING "All the available build types" FORCE)
- string(TOUPPER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE)