Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 9 May 2020 16:55:24 +0000 (UTC)
From:      Matthias Andree <mandree@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r534789 - branches/2020Q2/graphics/darktable/files
Message-ID:  <202005091655.049GtOZK088900@repo.freebsd.org>

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

Log:
  MFH: r534788
  
  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)
  
  Note that his revealed a Tools/scripts/mfh bug where it does not currently
  check out the port directory, but only files/.
  https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=246336

Added:
  branches/2020Q2/graphics/darktable/files/patch-data_kernels_CMakeLists.txt
     - copied unchanged from r534788, head/graphics/darktable/files/patch-data_kernels_CMakeLists.txt
Modified:
Directory Properties:
  branches/2020Q2/   (props changed)

Copied: branches/2020Q2/graphics/darktable/files/patch-data_kernels_CMakeLists.txt (from r534788, head/graphics/darktable/files/patch-data_kernels_CMakeLists.txt)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2020Q2/graphics/darktable/files/patch-data_kernels_CMakeLists.txt	Sat May  9 16:55:24 2020	(r534789, copy of r534788, head/graphics/darktable/files/patch-data_kernels_CMakeLists.txt)
@@ -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?202005091655.049GtOZK088900>