diff options
author | stacktic <stacktic@pkgsrc.org> | 2008-12-30 15:13:28 +0000 |
---|---|---|
committer | stacktic <stacktic@pkgsrc.org> | 2008-12-30 15:13:28 +0000 |
commit | 85ceaf10376dddf1e2b51da0fe5e00751a9123b1 (patch) | |
tree | ef6a321edc15f3f7402a3cf94ab38d1686f5d0a8 /security/qca2-ossl/patches | |
parent | ffa3c4352e7d37c2c508c94115627d1af0b61f42 (diff) | |
download | pkgsrc-85ceaf10376dddf1e2b51da0fe5e00751a9123b1.tar.gz |
Fixed build (removed whirlpool) (ok by wiz)
Diffstat (limited to 'security/qca2-ossl/patches')
-rw-r--r-- | security/qca2-ossl/patches/patch-aa | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/security/qca2-ossl/patches/patch-aa b/security/qca2-ossl/patches/patch-aa new file mode 100644 index 00000000000..494c5d97954 --- /dev/null +++ b/security/qca2-ossl/patches/patch-aa @@ -0,0 +1,29 @@ +$NetBSD: patch-aa,v 1.1 2008/12/30 15:13:28 stacktic Exp $ + +--- qca-ossl.cpp.orig 2007-12-11 07:34:57.000000000 +0100 ++++ qca-ossl.cpp +@@ -6597,9 +6597,11 @@ static QStringList all_hash_types() + #ifdef SHA512_DIGEST_LENGTH + list += "sha512"; + #endif ++/* + #ifdef OBJ_whirlpool + list += "whirlpool"; + #endif ++*/ + return list; + } + +@@ -6810,10 +6812,12 @@ public: + else if ( type == "sha512" ) + return new opensslHashContext( EVP_sha512(), this, type); + #endif ++/* + #ifdef OBJ_whirlpool + else if ( type == "whirlpool" ) + return new opensslHashContext( EVP_whirlpool(), this, type); + #endif ++*/ + else if ( type == "pbkdf1(sha1)" ) + return new opensslPbkdf1Context( EVP_sha1(), this, type ); + else if ( type == "pbkdf1(md2)" ) |