diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-18 22:01:33 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-18 22:01:33 +0000 |
commit | da60b2fb437c59bd61bb38f44906c9f541004f25 (patch) | |
tree | fe622ce07dbaf1d6e2b824e6d0a13e60aaa2d8a7 /editors | |
parent | 1df9a4aabdb33896c3e65f61da7359ea03e530a2 (diff) | |
download | pkgsrc-da60b2fb437c59bd61bb38f44906c9f541004f25.tar.gz |
Added a patch that includes the <memory> header, needed for std::auto_ptr.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/dasher/distinfo | 3 | ||||
-rw-r--r-- | editors/dasher/patches/patch-ab | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/editors/dasher/distinfo b/editors/dasher/distinfo index 646b6afe451..caef5fae987 100644 --- a/editors/dasher/distinfo +++ b/editors/dasher/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.10 2005/10/14 21:51:19 jmmv Exp $ +$NetBSD: distinfo,v 1.11 2005/12/18 22:01:33 rillig Exp $ SHA1 (dasher-3.2.18.tar.bz2) = bfa23eac087197d4ff231bbe59a4ed7d4e39f839 RMD160 (dasher-3.2.18.tar.bz2) = 49a7ed5c5123d33ea042ee112f885e1582bd4132 Size (dasher-3.2.18.tar.bz2) = 4758337 bytes SHA1 (patch-aa) = af87128e30cff75d12e491a0ee0b49cefddc0674 +SHA1 (patch-ab) = e10f10cd3a88299c02d20083786aacace2938408 diff --git a/editors/dasher/patches/patch-ab b/editors/dasher/patches/patch-ab new file mode 100644 index 00000000000..c659f01ac95 --- /dev/null +++ b/editors/dasher/patches/patch-ab @@ -0,0 +1,14 @@ +$NetBSD: patch-ab,v 1.1 2005/12/18 22:01:33 rillig Exp $ + +std::auto_ptr needs <memory>. + +--- Src/DasherCore/DasherInterface.cpp.orig Fri Aug 19 15:41:53 2005 ++++ Src/DasherCore/DasherInterface.cpp Sun Dec 18 22:50:11 2005 +@@ -11,6 +11,7 @@ + #include "CustomColours.h" + #include "DasherViewSquare.h" + ++#include <memory> + #include <iostream> + + #include "DasherInterface.h" |