aboutsummaryrefslogtreecommitdiff
path: root/graphics/darktable/files/patch-src_external_rawspeed_cmake_Modules_CheckZLIB.cmake
Commit message (Collapse)AuthorAgeFilesLines
* graphics/darktable: Update to 4.8.1Jean-Sébastien Pédron2024-07-291-2/+2
| | | | | | | | | Release notes: * https://github.com/darktable-org/darktable/releases/tag/release-4.8.0 * https://github.com/darktable-org/darktable/releases/tag/release-4.8.1 PR: 277742, 280065, 280450 Reported by: Andrew <andrew_terekhov@yahoo.com>
* graphics/darktable: Update to 4.6.0Jean-Sébastien Pédron2023-12-271-2/+2
| | | | | Release notes: * https://github.com/darktable-org/darktable/releases/tag/release-4.6.0
* graphics/darktable: Update to 4.4.1Jean-Sébastien Pédron2023-07-171-2/+2
| | | | | | | | | | | Release notes: * https://github.com/darktable-org/darktable/releases/tag/release-4.4.0 * https://github.com/darktable-org/darktable/releases/tag/release-4.4.1 Support for MIDI devices is currently turned off even though it probably works just fine. The port already has many options that make it complicated enough. If there is demand for MIDI devices, I will add the option.
* graphics/darktable: update to 3.0.2Matthias Andree2020-05-131-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is an upgrade for darktable from 3.0.0 to 3.0.2, with Ludger's changes from the original PR submission: - export to Flickr, Facebook and Google Photo removed as [they are] no longer supported in 3.0.2 And these changes by mandree@: - rediff patches - reshuffle Makefile per portclippy recommendation - remove COLORD option, it's not technically required to build, but a a raw image processing application without color management makes little sense. This option was default-on anyways. Changes 3.0.0 -> 3.0.1: https://www.darktable.org/2020/03/darktable-301-released/ https://github.com/darktable-org/darktable/releases/tag/release-3.0.1 Changes 3.0.1 -> 3.0.2: https://www.darktable.org/2020/04/darktable-302-released/ https://github.com/darktable-org/darktable/releases/tag/release-3.0.2 PR: 246065 Submitted by: Ludger Bolmerg <lbolmerg@posteo.de> Approved by: Jean-Sébastien Pédron <dumbbell@> (maintainer) Notes: svn path=/head/; revision=535105
* graphics/darktable: Include `stddef.h` when testing zError() symbolJean-Sébastien Pédron2018-01-281-0/+11
The `CheckZlib.cmake` module uses `NULL` in the test source code to check for the `zError()` symbol. This fails to build on FreeBSD 10.3 with the following error: CheckPrototypeDefinition.c:15:10: error: use of undeclared identifier 'NULL' return NULL; ^ I don't know the root cause for this failure, but including `stddef.h` in this test source code fixes the problem. PR: 225501 Reported by: cpm@ Notes: svn path=/head/; revision=460168