pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/gcvs Fix build with gcc4. Patch from Kenneth Fre...
details: https://anonhg.NetBSD.org/pkgsrc/rev/42a9ba68b0f6
branches: trunk
changeset: 517052:42a9ba68b0f6
user: wiz <wiz%pkgsrc.org@localhost>
date: Thu Aug 03 18:35:43 2006 +0000
description:
Fix build with gcc4. Patch from Kenneth Freidank in PR 34132.
diffstat:
devel/gcvs/distinfo | 3 ++-
devel/gcvs/patches/patch-ar | 22 ++++++++++++++++++++++
2 files changed, 24 insertions(+), 1 deletions(-)
diffs (40 lines):
diff -r dfb4e78f215f -r 42a9ba68b0f6 devel/gcvs/distinfo
--- a/devel/gcvs/distinfo Thu Aug 03 18:23:51 2006 +0000
+++ b/devel/gcvs/distinfo Thu Aug 03 18:35:43 2006 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.5 2005/09/11 13:59:38 adrianp Exp $
+$NetBSD: distinfo,v 1.6 2006/08/03 18:35:43 wiz Exp $
SHA1 (gcvs-1.0.tar.gz) = 42b2469d0a9acc0e69a127b44000cd1b11bb895e
RMD160 (gcvs-1.0.tar.gz) = 195698283848cd1f22d00eb37df7dd0f6b52cffc
@@ -23,3 +23,4 @@
SHA1 (patch-ao) = 0c34855297bd4c8aa32d5f6ef14695c58f6d3e8c
SHA1 (patch-ap) = c14228e74fc433b06cf25b23aece71dfe74587aa
SHA1 (patch-aq) = 544d6b2d44cba7ab31fea66c13ff391d0cd81932
+SHA1 (patch-ar) = 05244267342a031e5470e4c2641ac359985c6334
diff -r dfb4e78f215f -r 42a9ba68b0f6 devel/gcvs/patches/patch-ar
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/gcvs/patches/patch-ar Thu Aug 03 18:35:43 2006 +0000
@@ -0,0 +1,22 @@
+$NetBSD: patch-ar,v 1.1 2006/08/03 18:35:43 wiz Exp $
+
+--- rf/ustr.h.orig 2002-03-06 14:13:01.000000000 +0000
++++ rf/ustr.h
+@@ -175,13 +175,13 @@ public :
+ //! concatenate
+ UStr & operator<<(int addToStr);
+ //! concatenate
+- UStr & UStr::operator+=(int addToStr);
++ UStr & operator+=(int addToStr);
+ //! concatenate
+- UStr & UStr::operator+=(char *addToStr);
++ UStr & operator+=(char *addToStr);
+ //! concatenate
+- UStr & UStr::operator+=(const char *addToStr);
++ UStr & operator+=(const char *addToStr);
+ //! concatenate
+- UStr & UStr::operator+=(const UStr & addToStr);
++ UStr & operator+=(const UStr & addToStr);
+
+ //! compare
+ inline int compare(const char *thestr) const { return strcmp(*this, thestr); }
Home |
Main Index |
Thread Index |
Old Index