summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2013-04-30 22:15:22 +0000
committerjoerg <joerg@pkgsrc.org>2013-04-30 22:15:22 +0000
commitf8892163ddea2054aad3512d083c23ccc7c85668 (patch)
tree804b863b2f0c1545b66b7551285ba775d2852fd1 /devel
parent969f78a94f0a9d648c63225d7157a5b3b171f3af (diff)
downloadpkgsrc-f8892163ddea2054aad3512d083c23ccc7c85668.tar.gz
Try harder to give the custom string class an operand that it
understands.
Diffstat (limited to 'devel')
-rw-r--r--devel/ddd/distinfo3
-rw-r--r--devel/ddd/patches/patch-ddd_VSLDefList.C13
2 files changed, 15 insertions, 1 deletions
diff --git a/devel/ddd/distinfo b/devel/ddd/distinfo
index 4f1ac10a81a..1f6de31a4ab 100644
--- a/devel/ddd/distinfo
+++ b/devel/ddd/distinfo
@@ -1,8 +1,9 @@
-$NetBSD: distinfo,v 1.17 2012/10/20 02:25:16 sbd Exp $
+$NetBSD: distinfo,v 1.18 2013/04/30 22:15:22 joerg Exp $
SHA1 (ddd-3.3.12.tar.gz) = b91d2dfb1145af409138bd34517a898341724e56
RMD160 (ddd-3.3.12.tar.gz) = fcc71b2b57f4d7a2c17ac817739674c89e1dd7a0
Size (ddd-3.3.12.tar.gz) = 5687115 bytes
SHA1 (patch-Makefile.in) = de1fb079a0870c73aac604ab48996f7a4f2c5258
SHA1 (patch-ai) = 513621cb015cde43736ad9c28e1535358c398992
+SHA1 (patch-ddd_VSLDefList.C) = b68263f97d117646dcd5eb577257e610a4a8cbbd
SHA1 (patch-ddd_strclass.C) = ad2453f8322d70846c9a816f28bef86e9b0410a3
diff --git a/devel/ddd/patches/patch-ddd_VSLDefList.C b/devel/ddd/patches/patch-ddd_VSLDefList.C
new file mode 100644
index 00000000000..ec9e10a769b
--- /dev/null
+++ b/devel/ddd/patches/patch-ddd_VSLDefList.C
@@ -0,0 +1,13 @@
+$NetBSD: patch-ddd_VSLDefList.C,v 1.1 2013/04/30 22:15:22 joerg Exp $
+
+--- ddd/VSLDefList.C.orig 2013-04-30 19:33:09.000000000 +0000
++++ ddd/VSLDefList.C
+@@ -60,7 +60,7 @@ const Box *VSLDefList::eval(Box *arg) co
+ {
+ std::ostringstream s;
+ s << *arg;
+- VSLLib::eval_error("no suiting definition for " + f_name() + s);
++ VSLLib::eval_error("no suiting definition for " + f_name() + s.str().c_str());
+ }
+
+ return d ? d->eval(arg) : 0;