summaryrefslogtreecommitdiff
path: root/graphics/GraphicsMagick/Makefile.common
diff options
context:
space:
mode:
authoradam <adam>2015-11-17 20:05:48 +0000
committeradam <adam>2015-11-17 20:05:48 +0000
commit64a2aecffaa2574028d7865b90750430193cba9a (patch)
treef386445f706eea2c6c58928489ec857bd1b70e91 /graphics/GraphicsMagick/Makefile.common
parent307b90f14599f62ca91c3dd12a75c66ef216c269 (diff)
downloadpkgsrc-64a2aecffaa2574028d7865b90750430193cba9a.tar.gz
Changes 1.3.23:
Special Issues: * Due to GCC bug 53967, several key agorithms (e.g. convolution) may execute much faster (e.g. 2-3X) for x86-64 and/or when SSE is enabled for floating point math (-mfpmath=sse) if the GCC option -frename-registers is used. Default 32-bit builds do not experience the problem since they use '387 math. It is not clear in what version of GCC this problem started but it was not noticed by the developers until the GCC 4.6 timeframe. Other compilers do not suffer from this bug. Please lobby the GCC project to fix this embarrassing performance bug. Security Fixes: * ScaleImage(): While not strictly a security issue, requesting to scale an image while retaining the original number of rows will lead to a program crash or memory corruption due to double-free. Bug fixes: * ScaleImage(): Fix problem with new width/height match original (regression added by 1.3.22). * ScaleImage(): Fix double-free when new rows matches original rows (regression added by 1.3.22). * MinGW build fix related to eliminating a sleep() macro which conflicts with a MinGW-provided inline sleep() function. * PNG: Issue a warning instead of an error when attempting to read a PNG file containing a zero-length profile. This allows the file to be read. * identify: Fix problem in that identify -format "%A" (to test if transparency is supported in image) does not always produce the correct results.
Diffstat (limited to 'graphics/GraphicsMagick/Makefile.common')
-rwxr-xr-xgraphics/GraphicsMagick/Makefile.common4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/GraphicsMagick/Makefile.common b/graphics/GraphicsMagick/Makefile.common
index f24200d9908..e2d8c3b6632 100755
--- a/graphics/GraphicsMagick/Makefile.common
+++ b/graphics/GraphicsMagick/Makefile.common
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile.common,v 1.12 2015/10/06 16:50:31 adam Exp $
+# $NetBSD: Makefile.common,v 1.13 2015/11/17 20:05:48 adam Exp $
# used by graphics/GraphicsMagick/Makefile
# used by graphics/p5-GraphicsMagick/Makefile
GM_MAJOR_VER= 1.3
-GM_MINOR_VER= 22
+GM_MINOR_VER= 23
DISTVERSION= ${GM_MAJOR_VER}.${GM_MINOR_VER}
DISTNAME= GraphicsMagick-${DISTVERSION}
CATEGORIES= graphics