Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 9 May 2020 16:42:41 +0000 (UTC)
From:      Matthias Andree <mandree@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r534788 - head/graphics/darktable/files
Message-ID:  <202005091642.049GgfYE082256@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mandree
Date: Sat May  9 16:42:40 2020
New Revision: 534788
URL: https://svnweb.freebsd.org/changeset/ports/534788

Log:
  graphics/darktable: fix broken build, data/kernels/ related
  
  This patch is to fix this problem:
  
  | CMake Error at data/kernels/CMakeLists.txt:34 (foreach):
  |   Unknown argument:
  | /usr/ports/graphics/darktable/work/darktable-3.0.0/data/kernels/atrous.cl
  
  Approved by:	portmgr@ (blanket approval to fix broken builds)

Added:
  head/graphics/darktable/files/patch-data_kernels_CMakeLists.txt   (contents, props changed)

Added: head/graphics/darktable/files/patch-data_kernels_CMakeLists.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/darktable/files/patch-data_kernels_CMakeLists.txt	Sat May  9 16:42:40 2020	(r534788)
@@ -0,0 +1,13 @@
+--- data/kernels/CMakeLists.txt.orig	2020-04-15 07:10:53 UTC
++++ data/kernels/CMakeLists.txt
+@@ -31,8 +31,8 @@ macro (testcompile_opencl_kernel IN)
+ endmacro (testcompile_opencl_kernel)
+ 
+ if (TESTBUILD_OPENCL_PROGRAMS)
+-  foreach(IN ${DT_OPENCL_KERNELS})
+-    testcompile_opencl_kernel(${IN})
++  foreach(i ${DT_OPENCL_KERNELS})
++    testcompile_opencl_kernel(${i})
+   endforeach()
+ endif()
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005091642.049GgfYE082256>