diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2008-06-25 18:06:55 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2008-06-25 18:06:55 +0000 |
commit | ffc0e282927167f007d5ed298ddfaa49f352ef0c (patch) | |
tree | 97a5ba94370938957410d8b02323d61a38f3581d | |
parent | Update to 0.6.4. (diff) |
- enable cryptodev
124972
PR: 124972
Submitted by: Larry Baird
Obtained from: Simon L. Nielsen
Notes
Notes:
svn path=/head/; revision=215772
-rw-r--r-- | security/openssl/Makefile | 2 | ||||
-rw-r--r-- | security/openssl/files-beta/patch-eng_cryptodev.c | 12 |
2 files changed, 13 insertions, 1 deletions
diff --git a/security/openssl/Makefile b/security/openssl/Makefile index 97ad10b0b72a..acc7d8932207 100644 --- a/security/openssl/Makefile +++ b/security/openssl/Makefile @@ -11,7 +11,7 @@ PORTVERSION= 0.9.7m PORTREVISION?= 0 .else PORTVERSION= 0.9.8h -PORTREVISION?= 0 +PORTREVISION?= 1 .endif CATEGORIES= security devel MASTER_SITES= http://www.openssl.org/%SUBDIR%/ \ diff --git a/security/openssl/files-beta/patch-eng_cryptodev.c b/security/openssl/files-beta/patch-eng_cryptodev.c new file mode 100644 index 000000000000..3746331dacf4 --- /dev/null +++ b/security/openssl/files-beta/patch-eng_cryptodev.c @@ -0,0 +1,12 @@ +diff -ru openssl-0.9.8g.orig/crypto/engine/eng_cryptodev.c crypto/engine/eng_cryptodev.c +--- openssl-0.9.8g.orig/crypto/engine/eng_cryptodev.c 2004-06-15 13:45:42.000000000 +0200 ++++ crypto/engine/eng_cryptodev.c 2007-12-16 11:15:12.000000000 +0100 +@@ -32,7 +32,7 @@ + #include <openssl/bn.h> + + #if (defined(__unix__) || defined(unix)) && !defined(USG) && \ +- (defined(OpenBSD) || defined(__FreeBSD_version)) ++ (defined(OpenBSD) || defined(__FreeBSD__)) + #include <sys/param.h> + # if (OpenBSD >= 200112) || ((__FreeBSD_version >= 470101 && __FreeBSD_version < 500000) || __FreeBSD_version >= 500041) + # define HAVE_CRYPTODEV |