diff options
author | alepulver <alepulver@FreeBSD.org> | 2007-02-09 12:27:53 +0800 |
---|---|---|
committer | alepulver <alepulver@FreeBSD.org> | 2007-02-09 12:27:53 +0800 |
commit | cf2c8d529af51e052575355fc7727e047fd28faa (patch) | |
tree | 448957864d92fcf220af6efcc9daaa5ecd3b7259 /security/dsniff | |
parent | c95a81e6850e246d2a4ec2b99924aa5fb05aa75f (diff) | |
download | freebsd-ports-gnome-cf2c8d529af51e052575355fc7727e047fd28faa.tar.gz freebsd-ports-gnome-cf2c8d529af51e052575355fc7727e047fd28faa.tar.zst freebsd-ports-gnome-cf2c8d529af51e052575355fc7727e047fd28faa.zip |
- Fix building when security/openssl is installed.
PR: ports/95733
Submitted by: "Jukka A. Ukkonen" <jau@iki.fi>
Diffstat (limited to 'security/dsniff')
-rw-r--r-- | security/dsniff/files/patch-sshcrypto.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/security/dsniff/files/patch-sshcrypto.c b/security/dsniff/files/patch-sshcrypto.c new file mode 100644 index 000000000000..cacfbb2d8929 --- /dev/null +++ b/security/dsniff/files/patch-sshcrypto.c @@ -0,0 +1,12 @@ +--- ./sshcrypto.c.orig Tue Nov 28 18:23:28 2000 ++++ ./sshcrypto.c Fri Feb 9 01:15:08 2007 +@@ -14,6 +14,9 @@ + + #include <sys/types.h> + #include <openssl/ssl.h> ++#include <openssl/blowfish.h> ++#include <openssl/des.h> ++#include <openssl/des_old.h> + + #include <err.h> + #include <stdio.h> |