summaryrefslogtreecommitdiff
path: root/graphics/enblend-enfuse/patches
diff options
context:
space:
mode:
authoradam <adam>2015-10-12 16:01:18 +0000
committeradam <adam>2015-10-12 16:01:18 +0000
commitda63f2b099de2d3ff379439c5449276b3cda6b90 (patch)
tree9b990c5ed8a6dbc5ddf3199550f35915bd5ed8f8 /graphics/enblend-enfuse/patches
parente9915469d2f97eee69ae26f0a3a46e21dbaede30 (diff)
downloadpkgsrc-da63f2b099de2d3ff379439c5449276b3cda6b90.tar.gz
Changes 4.1.4:
** New Commandline Options - The introduction of additional blend color spaces in the Development Branch requires a new option to select them. Here, in the Stable Branch, the new option `--blend-colorspace' just duplicates the functionality of `--ciecam' and `--no-ciecam'. The Stable Branch does *not* provide the additional blend colorspaces of the Development Branch. The following equivalences hold --ciecam <=> --blend-colorspace=ciecam --no-ciecam <=> --blend-colorspace=identity Both options `--ciecam' and `--no-ciecam' are deprecated in 4.2 and will be withdrawn in 4.3. Thus, users should prefer `--blend-colorspace'. ** Bug Fixes - [Enblend and Enfuse] Fix the nesting-depth counter for response files. This bug prohibited to load more than 20 images in a single response file. - [Enblend and Enfuse] Allow grayscale images to bring their own (grayscale) profiles. Previously grayscale images with ICC profiles were rejected. - [Enblend] Fix a possible domain error followed by a division-by-zero in the seam-line optimizer. - [Enblend and Enfuse] Avoid an undeserved warning about incompatible colorspaces if they only disagree on their meta-data (e.g. profile creation date/time). - [Enblend] Fix a bug in the Dijkstra Optimizer which could lead to undefined behavior in the placement of the (optimized) seam line. - [Enblend] Fix a non-dereferencable vector iterator which led to a segfault. - [Enblend] Avoid a division-by-zero in the Annealing Optimizer. - [Enblend] Fix a bug (1356551) in the seam-line vectorization code that was there since 2004. The fix changes the position of almost any coarse-mask seam line vertex by one pixel.
Diffstat (limited to 'graphics/enblend-enfuse/patches')
-rw-r--r--graphics/enblend-enfuse/patches/patch-aa13
1 files changed, 0 insertions, 13 deletions
diff --git a/graphics/enblend-enfuse/patches/patch-aa b/graphics/enblend-enfuse/patches/patch-aa
deleted file mode 100644
index afd7b900e5c..00000000000
--- a/graphics/enblend-enfuse/patches/patch-aa
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.2 2009/12/16 21:28:35 adam Exp $
-
---- src/error_message.cc.orig 2009-11-25 20:56:49.000000000 +0100
-+++ src/error_message.cc
-@@ -58,7 +58,7 @@ errorMessage(int anErrorNumber)
- return_code = 0;
- #else
- message = message_buffer.get();
-- return_code = strerror_r(anErrorNumber, message, buffer_size);
-+ return_code = strerror_r(anErrorNumber, (char *)message, buffer_size);
- #endif // STRERROR_R_CHAR_P
- #elif defined(HAVE_STRERROR)
- message = strerror(anErrorNumber);