diff options
author | simon <simon@FreeBSD.org> | 2006-08-11 04:33:38 +0800 |
---|---|---|
committer | simon <simon@FreeBSD.org> | 2006-08-11 04:33:38 +0800 |
commit | cd5b22ddfb3d9310ac2320f21b06fe84cc7a0306 (patch) | |
tree | 2b8d38f0e310990633b2565b739a3ea55c57db6b /security | |
parent | 2a3271c57d05dc7e1f0fefd374f49012470349fb (diff) | |
download | freebsd-ports-gnome-cd5b22ddfb3d9310ac2320f21b06fe84cc7a0306.tar.gz freebsd-ports-gnome-cd5b22ddfb3d9310ac2320f21b06fe84cc7a0306.tar.zst freebsd-ports-gnome-cd5b22ddfb3d9310ac2320f21b06fe84cc7a0306.zip |
Fix compile with OpenSSL 0.9.8b from -CURRENT.
Problem reported by: kris
Diffstat (limited to 'security')
-rw-r--r-- | security/fressh/files/patch-crypto::ssh_crypto_openssl.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/security/fressh/files/patch-crypto::ssh_crypto_openssl.c b/security/fressh/files/patch-crypto::ssh_crypto_openssl.c index 7b43df90b662..a992a2d8910a 100644 --- a/security/fressh/files/patch-crypto::ssh_crypto_openssl.c +++ b/security/fressh/files/patch-crypto::ssh_crypto_openssl.c @@ -1,13 +1,16 @@ $FreeBSD$ ---- crypto/ssh_crypto_openssl.c 2001/04/18 16:00:03 1.1 -+++ crypto/ssh_crypto_openssl.c 2001/04/18 16:00:24 -@@ -44,6 +44,7 @@ +--- crypto/ssh_crypto_openssl.c.orig ++++ crypto/ssh_crypto_openssl.c +@@ -44,8 +44,10 @@ #include <stdlib.h> #include <errno.h> #include <string.h> +#include <sys/types.h> #include <openssl/rand.h> ++#include <openssl/sha.h> + + #include <openssl/opensslv.h> |