summaryrefslogtreecommitdiff
path: root/security/libssh
diff options
context:
space:
mode:
authorjoerg <joerg>2006-02-17 14:43:49 +0000
committerjoerg <joerg>2006-02-17 14:43:49 +0000
commit1cbdd1ad89971d05e6b7abfd3ae8045b154f217a (patch)
tree1d2e57176db97a3b9de2a45b41646a0180532fe2 /security/libssh
parent78392e3158cc74e218d0b7a3f34257b4e6594ca7 (diff)
downloadpkgsrc-1cbdd1ad89971d05e6b7abfd3ae8045b154f217a.tar.gz
Add DragonFly support.
Diffstat (limited to 'security/libssh')
-rw-r--r--security/libssh/distinfo4
-rw-r--r--security/libssh/patches/patch-aa6
2 files changed, 6 insertions, 4 deletions
diff --git a/security/libssh/distinfo b/security/libssh/distinfo
index 3dc93e618a9..8ec418b2c75 100644
--- a/security/libssh/distinfo
+++ b/security/libssh/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.2 2006/02/05 00:20:17 adrianp Exp $
+$NetBSD: distinfo,v 1.3 2006/02/17 14:43:49 joerg Exp $
SHA1 (libssh-0.11.tgz) = 307430249ded90332c4ec77a264913b3bc93a648
RMD160 (libssh-0.11.tgz) = 69c2cc00becb84a62555fe884345398f155815a4
Size (libssh-0.11.tgz) = 303761 bytes
-SHA1 (patch-aa) = 193a57b02988e5170ea4b40d4e5a5e36ab6f16ac
+SHA1 (patch-aa) = 6e72fcfe9ee9bcc6fd7c21baf66d09b15923a7f1
diff --git a/security/libssh/patches/patch-aa b/security/libssh/patches/patch-aa
index 8bf25f42f01..62bd283c0c6 100644
--- a/security/libssh/patches/patch-aa
+++ b/security/libssh/patches/patch-aa
@@ -1,14 +1,16 @@
-$NetBSD: patch-aa,v 1.1 2006/02/05 00:20:17 adrianp Exp $
+$NetBSD: patch-aa,v 1.2 2006/02/17 14:43:49 joerg Exp $
--- sample.c.orig 2005-03-04 19:54:59.000000000 +0000
+++ sample.c
-@@ -20,7 +20,12 @@ clients must be made or how a client sho
+@@ -20,7 +20,14 @@ clients must be made or how a client sho
#include <sys/select.h>
#include <sys/time.h>
+#if defined(__NetBSD__)
+#include <sys/types.h>
+#include <util.h> /* openpty() on NetBSD */
++#elif defined(__DragonFly__)
++#include <libutil.h>
+#else
#include <pty.h>
+#endif