Thu Dec 20 21:48:15 2012 UTC ()
Fix template look up.


(joerg)
diff -r1.15 -r1.16 pkgsrc/mail/spamprobe/distinfo
diff -r0 -r1.1 pkgsrc/mail/spamprobe/patches/patch-src_includes_Ref.h

cvs diff -r1.15 -r1.16 pkgsrc/mail/spamprobe/distinfo (expand / switch to unified diff)

--- pkgsrc/mail/spamprobe/distinfo 2011/12/06 19:52:57 1.15
+++ pkgsrc/mail/spamprobe/distinfo 2012/12/20 21:48:15 1.16
@@ -1,9 +1,10 @@ @@ -1,9 +1,10 @@
1$NetBSD: distinfo,v 1.15 2011/12/06 19:52:57 joerg Exp $ 1$NetBSD: distinfo,v 1.16 2012/12/20 21:48:15 joerg Exp $
2 2
3SHA1 (spamprobe-1.4d.tar.gz) = fbcd65eb21097cd860d5e5ee2c4c2524c717a237 3SHA1 (spamprobe-1.4d.tar.gz) = fbcd65eb21097cd860d5e5ee2c4c2524c717a237
4RMD160 (spamprobe-1.4d.tar.gz) = 4a9e098b92e6900d8b03d7ed5e8d052f2b2e8c56 4RMD160 (spamprobe-1.4d.tar.gz) = 4a9e098b92e6900d8b03d7ed5e8d052f2b2e8c56
5Size (spamprobe-1.4d.tar.gz) = 262761 bytes 5Size (spamprobe-1.4d.tar.gz) = 262761 bytes
6SHA1 (patch-aa) = 1a139882a9913537663a0d03b645e014b488ecbe 6SHA1 (patch-aa) = 1a139882a9913537663a0d03b645e014b488ecbe
7SHA1 (patch-ab) = da2cd2cbc3b37e529e45b67eb7eea127afcaa07c 7SHA1 (patch-ab) = da2cd2cbc3b37e529e45b67eb7eea127afcaa07c
8SHA1 (patch-src_includes_MultiLineSubString.h) = bd6def3ef4e261ee4fe56d58447c89d7fce8e9e3 8SHA1 (patch-src_includes_MultiLineSubString.h) = bd6def3ef4e261ee4fe56d58447c89d7fce8e9e3
 9SHA1 (patch-src_includes_Ref.h) = 767c0cecc4431dc7384fc43aa4905eb148ef178e
9SHA1 (patch-src_includes_util.h) = 5c7f02ac7f3852c6d751afd07df752cef7a1f06e 10SHA1 (patch-src_includes_util.h) = 5c7f02ac7f3852c6d751afd07df752cef7a1f06e

File Added: pkgsrc/mail/spamprobe/patches/patch-src_includes_Ref.h
$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;
   }