diff options
author | joerg <joerg@pkgsrc.org> | 2006-02-17 14:43:49 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-02-17 14:43:49 +0000 |
commit | 7470e2be4193fbfef9253fd974c6caf47e777fdd (patch) | |
tree | 1d2e57176db97a3b9de2a45b41646a0180532fe2 /security/libssh | |
parent | 3c650473e456bc854fbca172854d844069545f54 (diff) | |
download | pkgsrc-7470e2be4193fbfef9253fd974c6caf47e777fdd.tar.gz |
Add DragonFly support.
Diffstat (limited to 'security/libssh')
-rw-r--r-- | security/libssh/distinfo | 4 | ||||
-rw-r--r-- | security/libssh/patches/patch-aa | 6 |
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 |