diff options
author | jmmv <jmmv@pkgsrc.org> | 2006-09-20 13:10:10 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2006-09-20 13:10:10 +0000 |
commit | a16ab89c38effc1f904baae63a49e76be049b436 (patch) | |
tree | 0c1501dfcf0a28fbfd09589084c091378082410e /devel | |
parent | 3968e0d09063c9f99e66ebf4dbe4888c4efe7abe (diff) | |
download | pkgsrc-a16ab89c38effc1f904baae63a49e76be049b436.tar.gz |
Fix build with gcc 3.x (dunno why it compiled with 4.x...). From riz@.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/monotone/distinfo | 3 | ||||
-rw-r--r-- | devel/monotone/patches/patch-aa | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/devel/monotone/distinfo b/devel/monotone/distinfo index 05fd993e683..a4d782bdb22 100644 --- a/devel/monotone/distinfo +++ b/devel/monotone/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.20 2006/09/18 15:36:34 jmmv Exp $ +$NetBSD: distinfo,v 1.21 2006/09/20 13:10:10 jmmv Exp $ SHA1 (monotone-0.30.tar.gz) = e78356dcaa7f5cd2e8c7e6371a375369ab6feca7 RMD160 (monotone-0.30.tar.gz) = d58fe36d9f0686ec6be47dc2f39ec3f7ba2d40d9 Size (monotone-0.30.tar.gz) = 4663418 bytes +SHA1 (patch-aa) = 73f5a3066c7f82de8178c6f00848db12b60aa6ae diff --git a/devel/monotone/patches/patch-aa b/devel/monotone/patches/patch-aa new file mode 100644 index 00000000000..b23a7305f5b --- /dev/null +++ b/devel/monotone/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.9 2006/09/20 13:10:10 jmmv Exp $ + +--- cmd.hh.orig 2006-09-17 11:56:51.000000000 +0200 ++++ cmd.hh +@@ -207,7 +207,7 @@ namespace commands { + } \ + std::string commands::cmd_ ## C::desc() \ + { \ +- std:string result = _(desc_.c_str()); \ ++ std::string result = _(desc_.c_str()); \ + result += "\n"; \ + result += (F("Alias for %s") % #realcommand).str(); \ + return result; \ |