aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2008-07-22 08:01:35 +0000
committerImre Kaloz <kaloz@openwrt.org>2008-07-22 08:01:35 +0000
commitf9a423490d9f1741eb308e653e1ee5e1b75a2655 (patch)
treefbfcdd651896f5f4778f04b8b1ae4439f28b27eb /package
parentdd7ed18525e644facfca6dada16cb2d04a99b5e2 (diff)
downloadupstream-f9a423490d9f1741eb308e653e1ee5e1b75a2655.tar.gz
upstream-f9a423490d9f1741eb308e653e1ee5e1b75a2655.tar.bz2
upstream-f9a423490d9f1741eb308e653e1ee5e1b75a2655.zip
patch causes problems on some platforms, nuke it
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11904 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/openssl/patches/210-use_cryptodev_by_default_if_available.patch28
1 files changed, 0 insertions, 28 deletions
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 <stdio.h>
-+#ifndef OPENSSL_NO_ENGINE
-+#include <openssl/engine.h>
-+#endif
- #include <openssl/objects.h>
- #include <openssl/lhash.h>
- #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);
- }
-