diff options
author | wiz <wiz@pkgsrc.org> | 2006-07-17 17:55:43 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2006-07-17 17:55:43 +0000 |
commit | a5c6b68a4d060ae0842934ce42407ae9256f28fe (patch) | |
tree | 3ce17751a21063fef13f87fe53e05cb9030cf5d1 /devel/prcs | |
parent | 91159755cd5ce9c1fc613ef54ea638d68a46074f (diff) | |
download | pkgsrc-a5c6b68a4d060ae0842934ce42407ae9256f28fe.tar.gz |
Fix build with gcc-4.1.2. Patch provided by Ryo HAYASAKA in PR 33914.
Diffstat (limited to 'devel/prcs')
-rw-r--r-- | devel/prcs/distinfo | 3 | ||||
-rw-r--r-- | devel/prcs/patches/patch-ac | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/devel/prcs/distinfo b/devel/prcs/distinfo index 822fcc39c07..02f4a3680b3 100644 --- a/devel/prcs/distinfo +++ b/devel/prcs/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.7 2006/06/03 01:13:40 joerg Exp $ +$NetBSD: distinfo,v 1.8 2006/07/17 17:55:43 wiz Exp $ SHA1 (prcs-1.3.3.tar.gz) = 0f1770289ee4e9e8028c1aee9e19fd4fae8d2da6 RMD160 (prcs-1.3.3.tar.gz) = 85d90b12eb7e00585f1fd880939ee01642293b4e Size (prcs-1.3.3.tar.gz) = 907482 bytes SHA1 (patch-aa) = 46cfb535d79cce8b337dc28d1c421db8676e3d69 SHA1 (patch-ab) = d13c14c776fc4abab32b50f1fca82469e9dfd855 +SHA1 (patch-ac) = 3325292dc27785dc01beaa6586b23ced6cbc4c42 diff --git a/devel/prcs/patches/patch-ac b/devel/prcs/patches/patch-ac new file mode 100644 index 00000000000..050c5c87b80 --- /dev/null +++ b/devel/prcs/patches/patch-ac @@ -0,0 +1,14 @@ +$NetBSD: patch-ac,v 1.3 2006/07/17 17:55:43 wiz Exp $ + +--- src/include/projdesc.h.orig 2004-05-10 00:40:55.000000000 +0000 ++++ src/include/projdesc.h +@@ -130,6 +130,9 @@ public: + + class AttrDesc { public: const char* name; AttrType type; }; + ++bool attrs_equal(const PrcsAttrs*const& x, const PrcsAttrs*const& y); ++int attrs_hash(const PrcsAttrs*const& s, int M); ++ + class PrcsAttrs { + friend class ProjectDescriptor; + friend class FileEntry; |