diff options
author | joerg <joerg@pkgsrc.org> | 2012-10-26 20:25:18 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2012-10-26 20:25:18 +0000 |
commit | 616dcb1b0cba8740a799230bf5e3fd938d32c54d (patch) | |
tree | 800a82bc217c93e13194184884792e0f3f5eb2bf /mail/courier-mta | |
parent | eaf5600a7b1b5389419b2a73da1a21c20dd5278a (diff) | |
download | pkgsrc-616dcb1b0cba8740a799230bf5e3fd938d32c54d.tar.gz |
Fix C++ syntax.
Diffstat (limited to 'mail/courier-mta')
-rw-r--r-- | mail/courier-mta/distinfo | 3 | ||||
-rw-r--r-- | mail/courier-mta/patches/patch-courier_webmlmd.H | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/mail/courier-mta/distinfo b/mail/courier-mta/distinfo index e4bd03ae89d..0178374659f 100644 --- a/mail/courier-mta/distinfo +++ b/mail/courier-mta/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.17 2012/06/09 11:45:38 adam Exp $ +$NetBSD: distinfo,v 1.18 2012/10/26 20:25:18 joerg Exp $ SHA1 (courier-0.68.1.tar.bz2) = fbd7cd0bc88876dc12d02b9404cea95877805ebe RMD160 (courier-0.68.1.tar.bz2) = 3f062aae0d34a71055a5ff5ad172ca191ab3f0e4 @@ -18,3 +18,4 @@ SHA1 (patch-an) = 2b78be9a0e8a9daf528da83007ba865f9b8cc402 SHA1 (patch-ax) = 8978eacb3aa13559905849e9a7038441c0dfef22 SHA1 (patch-ay) = d4b391e76167cd27012f928587d5feb57ea1b4ff SHA1 (patch-courier_cdfilters.C) = 1f9169de45355cd9a4ecb7e8ddac30df05d368d0 +SHA1 (patch-courier_webmlmd.H) = 3a66894c376bf84ae5a43f4c6f3dfbb687f9436e diff --git a/mail/courier-mta/patches/patch-courier_webmlmd.H b/mail/courier-mta/patches/patch-courier_webmlmd.H new file mode 100644 index 00000000000..a1b598a0a64 --- /dev/null +++ b/mail/courier-mta/patches/patch-courier_webmlmd.H @@ -0,0 +1,13 @@ +$NetBSD: patch-courier_webmlmd.H,v 1.1 2012/10/26 20:25:19 joerg Exp $ + +--- courier/webmlmd.H.orig 2012-10-26 15:29:55.000000000 +0000 ++++ courier/webmlmd.H +@@ -49,7 +49,7 @@ namespace webmlmd { + T t; + + t.reserve(s.size() * 6 / 5); +- class T::iterator b=s.begin(), e=s.end(), p=b; ++ typename T::iterator b=s.begin(), e=s.end(), p=b; + + while (b != e) + { |