From a6575572c6120b379e2d3d39c7168a20854135da Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Mon, 1 Mar 2010 00:40:10 +0000 Subject: [PATCH] load cryptodev if HAVE_CRYPTODEV is set too --- crypto/engine/eng_all.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/engine/eng_all.c b/crypto/engine/eng_all.c index 623485d3d2..b03fa47867 100644 --- a/crypto/engine/eng_all.c +++ b/crypto/engine/eng_all.c @@ -68,7 +68,7 @@ void ENGINE_load_builtin_engines(void) * *no* builtin implementations). */ ENGINE_load_openssl(); #endif -#if defined(__OpenBSD__) || defined(__FreeBSD__) +#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV) ENGINE_load_cryptodev(); #endif #if !defined(OPENSSL_NO_HW) && !defined(OPENSSL_NO_HW_AESNI) -- 2.34.1