diff options
author | joerg <joerg@pkgsrc.org> | 2006-05-12 09:54:52 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-05-12 09:54:52 +0000 |
commit | 4beaa3b67b72460848bf2ada0c3fe0dd9d59fe4f (patch) | |
tree | d540d7782202d2df1e8ab4d95be78715d4dae575 /security | |
parent | 1405d33c92bfe4c90fb8c46a7532288c225048de (diff) | |
download | pkgsrc-4beaa3b67b72460848bf2ada0c3fe0dd9d59fe4f.tar.gz |
Don't include both net/bpf.h and pcap.h on DragonFly.
XXX Are both needed on any platform at all?
Diffstat (limited to 'security')
-rw-r--r-- | security/ssldump/distinfo | 3 | ||||
-rw-r--r-- | security/ssldump/patches/patch-ab | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/security/ssldump/distinfo b/security/ssldump/distinfo index 656da5844e4..79fb3a31e1a 100644 --- a/security/ssldump/distinfo +++ b/security/ssldump/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.5 2005/12/11 18:29:53 salo Exp $ +$NetBSD: distinfo,v 1.6 2006/05/12 09:54:52 joerg Exp $ SHA1 (ssldump-0.9b3.tar.gz) = a633a9a811a138eac5ed440d583473b644135ef5 RMD160 (ssldump-0.9b3.tar.gz) = 941cf8f2ef8459ec4f9ce65772e134505d46566f Size (ssldump-0.9b3.tar.gz) = 137435 bytes SHA1 (patch-aa) = 8ab6a65c0e338e99249a0c90b87340252494020a +SHA1 (patch-ab) = 47511205c19f31b3020a295309e3c0c58229298c diff --git a/security/ssldump/patches/patch-ab b/security/ssldump/patches/patch-ab new file mode 100644 index 00000000000..77b5026a120 --- /dev/null +++ b/security/ssldump/patches/patch-ab @@ -0,0 +1,14 @@ +$NetBSD: patch-ab,v 1.1 2006/05/12 09:54:52 joerg Exp $ + +--- base/pcap-snoop.c.orig 2006-05-12 09:50:49.000000000 +0000 ++++ base/pcap-snoop.c +@@ -49,7 +49,9 @@ static char *RCSSTRING="$Id: pcap-snoop. + + #include <pcap.h> + #include <unistd.h> ++#if !defined(__DragonFly__) + #include <net/bpf.h> ++#endif + #ifndef _WIN32 + #include <sys/param.h> + #endif |