diff options
author | joerg <joerg@pkgsrc.org> | 2006-02-23 19:02:50 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-02-23 19:02:50 +0000 |
commit | e9850b9af2fd2e46abc5110e9de2faf622803430 (patch) | |
tree | 8051fc96d588f1f31d0f4b127d00a21c0d6eb786 /security | |
parent | 470f113c3654d6409126846f55603cbdf831d398 (diff) | |
download | pkgsrc-e9850b9af2fd2e46abc5110e9de2faf622803430.tar.gz |
Fix build on DragonFly.
Diffstat (limited to 'security')
-rw-r--r-- | security/openssh/distinfo | 3 | ||||
-rw-r--r-- | security/openssh/patches/patch-aw | 16 |
2 files changed, 18 insertions, 1 deletions
diff --git a/security/openssh/distinfo b/security/openssh/distinfo index d9a437bda41..104ea2b664a 100644 --- a/security/openssh/distinfo +++ b/security/openssh/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.51 2006/02/12 00:13:55 salo Exp $ +$NetBSD: distinfo,v 1.52 2006/02/23 19:02:50 joerg Exp $ SHA1 (openssh-4.3p1.tar.gz) = b1f379127829e7e820955b2825130edd1601ba59 RMD160 (openssh-4.3p1.tar.gz) = c1d69873ecc453b40d825a2f1b3a0909da815f5e @@ -28,3 +28,4 @@ SHA1 (patch-as) = 6af976b7c018c1a9b0841617edbffdb8b977a2d6 SHA1 (patch-at) = ffbcb38cf8578f05319b2af9cfcdb5ada2a57e78 SHA1 (patch-au) = 052b0b6d8869ad09144e4fc9e1b3c5e03c669c44 SHA1 (patch-av) = 5543fcf94eaad26e27043c1527921e23ecfefc77 +SHA1 (patch-aw) = 95d49965b0f24bf117e790785d3a8ef553865bda diff --git a/security/openssh/patches/patch-aw b/security/openssh/patches/patch-aw new file mode 100644 index 00000000000..db42bf74833 --- /dev/null +++ b/security/openssh/patches/patch-aw @@ -0,0 +1,16 @@ +$NetBSD: patch-aw,v 1.1 2006/02/23 19:02:50 joerg Exp $ + +--- openbsd-compat/port-tun.c.orig 2006-02-23 18:42:44.000000000 +0000 ++++ openbsd-compat/port-tun.c +@@ -93,7 +93,11 @@ sys_tun_open(int tun, int mode) + #ifdef SSH_TUN_FREEBSD + #include <sys/socket.h> + #include <net/if.h> ++#if defined(__DragonFly__) ++#include <net/tun/if_tun.h> ++#else + #include <net/if_tun.h> ++#endif + + int + sys_tun_open(int tun, int mode) |