Initialize padlock in shared build.

This commit is contained in:
Andy Polyakov 2007-01-04 22:55:25 +00:00
parent 6211633273
commit 78d4d87e39

View File

@ -67,6 +67,9 @@ void ENGINE_load_builtin_engines(void)
* *no* builtin implementations). */ * *no* builtin implementations). */
#if 0 #if 0
ENGINE_load_openssl(); ENGINE_load_openssl();
#endif
#if !defined(OPENSSL_NO_HW) && !defined(OPENSSL_NO_HW_PADLOCK)
ENGINE_load_padlock();
#endif #endif
ENGINE_load_dynamic(); ENGINE_load_dynamic();
#ifndef OPENSSL_NO_STATIC_ENGINE #ifndef OPENSSL_NO_STATIC_ENGINE
@ -95,16 +98,15 @@ void ENGINE_load_builtin_engines(void)
#ifndef OPENSSL_NO_HW_UBSEC #ifndef OPENSSL_NO_HW_UBSEC
ENGINE_load_ubsec(); ENGINE_load_ubsec();
#endif #endif
#ifndef OPENSSL_NO_HW_PADLOCK
ENGINE_load_padlock();
#endif
#endif
#if defined(__OpenBSD__) || defined(__FreeBSD__)
ENGINE_load_cryptodev();
#endif #endif
#if !defined(OPENSSL_NO_GMP) && !defined(OPENSSL_NO_HW_GMP) #if !defined(OPENSSL_NO_GMP) && !defined(OPENSSL_NO_HW_GMP)
ENGINE_load_gmp(); ENGINE_load_gmp();
#endif #endif
#endif
#ifndef OPENSSL_NO_HW
#if defined(__OpenBSD__) || defined(__FreeBSD__)
ENGINE_load_cryptodev();
#endif
#endif #endif
} }