diff options
author | joerg <joerg@pkgsrc.org> | 2012-12-20 21:48:15 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2012-12-20 21:48:15 +0000 |
commit | 871c21b1c50ee99a6d929b87485d7e85a2621533 (patch) | |
tree | 20fd0f3306122370e5840ade6291cdf2f8df7184 /mail | |
parent | 073a50436897ca564fb263106186244821e93fa6 (diff) | |
download | pkgsrc-871c21b1c50ee99a6d929b87485d7e85a2621533.tar.gz |
Fix template look up.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/spamprobe/distinfo | 3 | ||||
-rw-r--r-- | mail/spamprobe/patches/patch-src_includes_Ref.h | 22 |
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; + } + |