summaryrefslogtreecommitdiff
path: root/mail/spamprobe
diff options
context:
space:
mode:
authorhtodd <htodd@pkgsrc.org>2014-01-05 00:29:35 +0000
committerhtodd <htodd@pkgsrc.org>2014-01-05 00:29:35 +0000
commitee205201a758d6cb842b8c48a3f0adf69c87ebe6 (patch)
treea87e424f7a8d4519c7a2f1ee336121c315b49494 /mail/spamprobe
parentaec1737c830fb35c1baf93bb43138e92f1d918ec (diff)
downloadpkgsrc-ee205201a758d6cb842b8c48a3f0adf69c87ebe6.tar.gz
Fix build for changed DGifOpen in giflib.
Diffstat (limited to 'mail/spamprobe')
-rw-r--r--mail/spamprobe/distinfo3
-rw-r--r--mail/spamprobe/patches/patch-src_parser_GifParser.cc13
2 files changed, 15 insertions, 1 deletions
diff --git a/mail/spamprobe/distinfo b/mail/spamprobe/distinfo
index e3382390bc3..ecc32c085af 100644
--- a/mail/spamprobe/distinfo
+++ b/mail/spamprobe/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.17 2013/05/28 19:03:09 joerg Exp $
+$NetBSD: distinfo,v 1.18 2014/01/05 00:29:35 htodd Exp $
SHA1 (spamprobe-1.4d.tar.gz) = fbcd65eb21097cd860d5e5ee2c4c2524c717a237
RMD160 (spamprobe-1.4d.tar.gz) = 4a9e098b92e6900d8b03d7ed5e8d052f2b2e8c56
@@ -9,3 +9,4 @@ SHA1 (patch-src_includes_LRUCache.h) = 2e1eadf262b0de7965155c6dba794f92247397fc
SHA1 (patch-src_includes_MultiLineSubString.h) = bd6def3ef4e261ee4fe56d58447c89d7fce8e9e3
SHA1 (patch-src_includes_Ref.h) = 767c0cecc4431dc7384fc43aa4905eb148ef178e
SHA1 (patch-src_includes_util.h) = 5c7f02ac7f3852c6d751afd07df752cef7a1f06e
+SHA1 (patch-src_parser_GifParser.cc) = 0d3d44cdae38de9443f4b092ba5d82b38fb2cae3
diff --git a/mail/spamprobe/patches/patch-src_parser_GifParser.cc b/mail/spamprobe/patches/patch-src_parser_GifParser.cc
new file mode 100644
index 00000000000..20f397bccbe
--- /dev/null
+++ b/mail/spamprobe/patches/patch-src_parser_GifParser.cc
@@ -0,0 +1,13 @@
+$NetBSD: patch-src_parser_GifParser.cc,v 1.1 2014/01/05 00:29:35 htodd Exp $
+
+--- src/parser/GifParser.cc.orig 2006-11-17 07:24:49.000000000 +0000
++++ src/parser/GifParser.cc
+@@ -99,7 +99,7 @@ bool GifParser::parseImage()
+ void GifParser::openImage()
+ {
+ m_nextByteIndex = 0;
+- m_gif = DGifOpen(this, readFromBuffer);
++ m_gif = DGifOpen(this, readFromBuffer, NULL);
+ if (!m_gif) {
+ throw runtime_error("open gif failed");
+ }