summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2017-02-14 21:29:01 +0000
committerjoerg <joerg@pkgsrc.org>2017-02-14 21:29:01 +0000
commitb824bfab2098d4123542556e5a365be9252b95a6 (patch)
treee37403e6d4eec13936d637028fb55abc65ed43a7 /graphics
parente12a7fd5992d4e279f6641517bbb860c5178d820 (diff)
downloadpkgsrc-b824bfab2098d4123542556e5a365be9252b95a6.tar.gz
Provide an actual dtor implementation.
Diffstat (limited to 'graphics')
-rw-r--r--graphics/gmic/distinfo3
-rw-r--r--graphics/gmic/patches/patch-src_gmic.h13
2 files changed, 15 insertions, 1 deletions
diff --git a/graphics/gmic/distinfo b/graphics/gmic/distinfo
index ad9e8175b23..a2e1ebfe85f 100644
--- a/graphics/gmic/distinfo
+++ b/graphics/gmic/distinfo
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.4 2016/09/18 06:57:24 dholland Exp $
+$NetBSD: distinfo,v 1.5 2017/02/14 21:29:01 joerg Exp $
SHA1 (gmic_1.5.9.3.tar.gz) = c795fd628a4e416538dd5521581307326d1785df
RMD160 (gmic_1.5.9.3.tar.gz) = 19f7edd3200ec1fb199d1584b2999d6137a1273f
SHA512 (gmic_1.5.9.3.tar.gz) = e8f9128ae819d07dbd87f0b13fd7b96926efad02ee8cf4371247912a47332d199aa1572fd06f62423af394f7921c4d772d8c79253f74e06a48721a4ad387829c
Size (gmic_1.5.9.3.tar.gz) = 2791352 bytes
SHA1 (patch-src_Makefile) = 8d6518d6517a1601419067546be46e0d9156f40b
+SHA1 (patch-src_gmic.h) = face3d3cc938c172090c51331a47d97488baac74
diff --git a/graphics/gmic/patches/patch-src_gmic.h b/graphics/gmic/patches/patch-src_gmic.h
new file mode 100644
index 00000000000..3df6ee70afb
--- /dev/null
+++ b/graphics/gmic/patches/patch-src_gmic.h
@@ -0,0 +1,13 @@
+$NetBSD: patch-src_gmic.h,v 1.1 2017/02/14 21:29:01 joerg Exp $
+
+--- src/gmic.h.orig 2015-12-24 22:27:45.000000000 +0000
++++ src/gmic.h
+@@ -138,7 +138,7 @@ namespace cimg_library {
+ CImg<T> *_data; // Pointer to the first image of the list.
+
+ // Destructor.
+- ~CImgList();
++ ~CImgList() {}
+ // Empty constructor.
+ CImgList():_width(0),_allocated_width(0),_data(0) {}
+ // Use to allocate a new image list with specified dimension.