diff options
author | marino <marino@pkgsrc.org> | 2011-11-23 22:36:27 +0000 |
---|---|---|
committer | marino <marino@pkgsrc.org> | 2011-11-23 22:36:27 +0000 |
commit | 98f285cd644214a5c7d76287614dd16036093c92 (patch) | |
tree | 66f20726c41370b97dbe414ea953c64d82cb143b /chat | |
parent | ea31a0b579efd48744aacf3342893485459865e4 (diff) | |
download | pkgsrc-98f285cd644214a5c7d76287614dd16036093c92.tar.gz |
chat/kmess: Fix DragonFly breakage
Conditionally add <strings.h> for DragonFly.
No PKGREVISION bump required.
Diffstat (limited to 'chat')
-rw-r--r-- | chat/kmess/distinfo | 3 | ||||
-rw-r--r-- | chat/kmess/patches/patch-af | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/chat/kmess/distinfo b/chat/kmess/distinfo index b34f00ec45c..56b831b9fba 100644 --- a/chat/kmess/distinfo +++ b/chat/kmess/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.7 2006/06/01 11:42:42 joerg Exp $ +$NetBSD: distinfo,v 1.8 2011/11/23 22:36:27 marino Exp $ SHA1 (kmess-1.4.3.tar.gz) = 1613c65c7b9ffaa6a1f55396297d25ab7ee3103d RMD160 (kmess-1.4.3.tar.gz) = 280bab4275903389d2f7d5b3884df937a83addf7 Size (kmess-1.4.3.tar.gz) = 1869940 bytes SHA1 (patch-aa) = 098da7e84f8b1eb70815949dca210184c91da6aa SHA1 (patch-ab) = 90a3f7af4e2ded731b233b87e075e1df10709828 +SHA1 (patch-af) = be107778b5395fa753f53589c8abbaf734091189 diff --git a/chat/kmess/patches/patch-af b/chat/kmess/patches/patch-af new file mode 100644 index 00000000000..e5691da2c87 --- /dev/null +++ b/chat/kmess/patches/patch-af @@ -0,0 +1,14 @@ +$NetBSD: patch-af,v 1.1 2011/11/23 22:36:27 marino Exp $ + +--- kmess/crypt/sha1.cpp.orig 2004-05-21 02:00:44.000000000 +0000 ++++ kmess/crypt/sha1.cpp +@@ -37,6 +37,9 @@ + + #include <stdio.h> + #include <sys/stat.h> ++#if defined (__DragonFly__) ++#include <string.h> ++#endif + + Sha1::Sha1() + { |