From 3ff4b7ee10b8d8d356ad8c0c900e71224649fcfa Mon Sep 17 00:00:00 2001 From: Imre Kaloz Date: Tue, 22 Jul 2008 08:01:35 +0000 Subject: [PATCH] patch causes problems on some platforms, nuke it SVN-Revision: 11904 --- ...se_cryptodev_by_default_if_available.patch | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 package/openssl/patches/210-use_cryptodev_by_default_if_available.patch diff --git a/package/openssl/patches/210-use_cryptodev_by_default_if_available.patch b/package/openssl/patches/210-use_cryptodev_by_default_if_available.patch deleted file mode 100644 index 6bcb78601b..0000000000 --- a/package/openssl/patches/210-use_cryptodev_by_default_if_available.patch +++ /dev/null @@ -1,28 +0,0 @@ ---- openssl-0.9.8h/ssl/ssl_algs.c 2007-04-24 01:50:21.000000000 +0200 -+++ openssl-0.9.8h-ocf/ssl/ssl_algs.c 2008-07-12 17:34:27.000000000 +0200 -@@ -57,6 +57,9 @@ - */ - - #include -+#ifndef OPENSSL_NO_ENGINE -+#include -+#endif - #include - #include - #include "ssl_locl.h" -@@ -127,6 +130,15 @@ - #endif - /* initialize cipher/digest methods table */ - ssl_load_ciphers(); -+ -+#ifndef OPENSSL_NO_ENGINE -+ /* Initialize available hardware crypto engines */ -+ ENGINE_load_builtin_engines(); -+ ENGINE_register_all_complete(); -+ /* ...and set cryptodev to be the default. */ -+ ENGINE_set_default_ciphers(ENGINE_by_id("cryptodev")); -+#endif -+ - return(1); - } - -- 2.30.2