summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorjoerg <joerg>2012-12-20 21:48:15 +0000
committerjoerg <joerg>2012-12-20 21:48:15 +0000
commit75a55e6df933d4344aa98e1f87cb9bee5f0cc4b7 (patch)
tree20fd0f3306122370e5840ade6291cdf2f8df7184 /mail
parent0116b9b5d8dd9af83202c55027dd79c75213ff51 (diff)
downloadpkgsrc-75a55e6df933d4344aa98e1f87cb9bee5f0cc4b7.tar.gz
Fix template look up.
Diffstat (limited to 'mail')
-rw-r--r--mail/spamprobe/distinfo3
-rw-r--r--mail/spamprobe/patches/patch-src_includes_Ref.h22
2 files changed, 24 insertions, 1 deletions
diff --git a/mail/spamprobe/distinfo b/mail/spamprobe/distinfo
index 9357b022671..9854e29a162 100644
--- a/mail/spamprobe/distinfo
+++ b/mail/spamprobe/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.15 2011/12/06 19:52:57 joerg Exp $
+$NetBSD: distinfo,v 1.16 2012/12/20 21:48:15 joerg Exp $
SHA1 (spamprobe-1.4d.tar.gz) = fbcd65eb21097cd860d5e5ee2c4c2524c717a237
RMD160 (spamprobe-1.4d.tar.gz) = 4a9e098b92e6900d8b03d7ed5e8d052f2b2e8c56
@@ -6,4 +6,5 @@ Size (spamprobe-1.4d.tar.gz) = 262761 bytes
SHA1 (patch-aa) = 1a139882a9913537663a0d03b645e014b488ecbe
SHA1 (patch-ab) = da2cd2cbc3b37e529e45b67eb7eea127afcaa07c
SHA1 (patch-src_includes_MultiLineSubString.h) = bd6def3ef4e261ee4fe56d58447c89d7fce8e9e3
+SHA1 (patch-src_includes_Ref.h) = 767c0cecc4431dc7384fc43aa4905eb148ef178e
SHA1 (patch-src_includes_util.h) = 5c7f02ac7f3852c6d751afd07df752cef7a1f06e
diff --git a/mail/spamprobe/patches/patch-src_includes_Ref.h b/mail/spamprobe/patches/patch-src_includes_Ref.h
new file mode 100644
index 00000000000..711d144d00e
--- /dev/null
+++ b/mail/spamprobe/patches/patch-src_includes_Ref.h
@@ -0,0 +1,22 @@
+$NetBSD: patch-src_includes_Ref.h,v 1.1 2012/12/20 21:48:15 joerg Exp $
+
+--- src/includes/Ref.h.orig 2012-12-20 17:44:52.000000000 +0000
++++ src/includes/Ref.h
+@@ -189,7 +189,7 @@ public:
+
+ CRef<T> &operator=(const CRef<T> &other)
+ {
+- assign(other);
++ this->assign(other);
+ return *this;
+ }
+
+@@ -245,7 +245,7 @@ public:
+
+ Ref<T> &operator=(const Ref<T> &other)
+ {
+- assign(other);
++ this->assign(other);
+ return *this;
+ }
+