diff options
author | simon <simon@FreeBSD.org> | 2006-08-12 19:05:37 +0800 |
---|---|---|
committer | simon <simon@FreeBSD.org> | 2006-08-12 19:05:37 +0800 |
commit | 3cadd17a629e860461160c71aada36da8f4fb63f (patch) | |
tree | 59188610da83ded5df711d852202874c998f5437 /security | |
parent | 6f151011b1e6526561b36422a7d682275b23ae0a (diff) | |
download | freebsd-ports-gnome-3cadd17a629e860461160c71aada36da8f4fb63f.tar.gz freebsd-ports-gnome-3cadd17a629e860461160c71aada36da8f4fb63f.tar.zst freebsd-ports-gnome-3cadd17a629e860461160c71aada36da8f4fb63f.zip |
Fix compile with OpenSSL 0.9.8b from -CURRENT.
Problem reported by: kris
Diffstat (limited to 'security')
-rw-r--r-- | security/openscep/files/patch-lib_fingerprint.c | 13 | ||||
-rw-r--r-- | security/openscep/files/patch-lib_proxy.c | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/security/openscep/files/patch-lib_fingerprint.c b/security/openscep/files/patch-lib_fingerprint.c new file mode 100644 index 000000000000..898deebba5f2 --- /dev/null +++ b/security/openscep/files/patch-lib_fingerprint.c @@ -0,0 +1,13 @@ + +$FreeBSD$ + +--- lib/fingerprint.c.orig ++++ lib/fingerprint.c +@@ -9,6 +9,7 @@ + #include <fingerprint.h> + #include <openssl/bio.h> + #include <openssl/evp.h> ++#include <openssl/md5.h> + #include <init.h> + #include <string.h> + diff --git a/security/openscep/files/patch-lib_proxy.c b/security/openscep/files/patch-lib_proxy.c new file mode 100644 index 000000000000..4d03e0697cc4 --- /dev/null +++ b/security/openscep/files/patch-lib_proxy.c @@ -0,0 +1,13 @@ + +$FreeBSD$ + +--- lib/proxy.c.orig ++++ lib/proxy.c +@@ -10,6 +10,7 @@ + #include <scep.h> + #include <proxy.h> + #include <openssl/evp.h> ++#include <openssl/md5.h> + + /* + * proxy_authenticator compute the proxy authenticator hash value |