diff options
| author | Mark Murray <markm@FreeBSD.org> | 2004-08-14 13:38:35 +0000 |
|---|---|---|
| committer | Mark Murray <markm@FreeBSD.org> | 2004-08-14 13:38:35 +0000 |
| commit | 1f9bb6cd2551e99f570c3a36d016fc74c05bbc12 (patch) | |
| tree | b5a7aec3d73271d863f637ed2313b3bcb93b2324 | |
| parent | 71fd4f60dafb4cf82f0ae8c8ba514879d20d4f9e (diff) | |
Notes
| -rw-r--r-- | crypto/openssl/crypto/engine/eng_all.c | 3 | ||||
| -rw-r--r-- | crypto/openssl/crypto/engine/eng_padlock.c | 2 | ||||
| -rw-r--r-- | secure/lib/libcrypto/Makefile | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/crypto/openssl/crypto/engine/eng_all.c b/crypto/openssl/crypto/engine/eng_all.c index 0f6992a40dbf..938d1ac8037a 100644 --- a/crypto/openssl/crypto/engine/eng_all.c +++ b/crypto/openssl/crypto/engine/eng_all.c @@ -86,6 +86,9 @@ void ENGINE_load_builtin_engines(void) #ifndef OPENSSL_NO_HW_UBSEC ENGINE_load_ubsec(); #endif +#ifndef OPENSSL_NO_HW_PADLOCK + ENGINE_load_padlock(); +#endif #ifndef OPENSSL_NO_HW_AEP ENGINE_load_aep(); #endif diff --git a/crypto/openssl/crypto/engine/eng_padlock.c b/crypto/openssl/crypto/engine/eng_padlock.c index db9c52bfb566..4ca4f39d8969 100644 --- a/crypto/openssl/crypto/engine/eng_padlock.c +++ b/crypto/openssl/crypto/engine/eng_padlock.c @@ -65,7 +65,7 @@ #include <stdio.h> #include <string.h> -#include <malloc.h> +#include <stdlib.h> #ifdef _MSC_VER # define alloca _alloca # define snprintf _snprintf diff --git a/secure/lib/libcrypto/Makefile b/secure/lib/libcrypto/Makefile index 81ac3c3ecb08..22c367f7a2fd 100644 --- a/secure/lib/libcrypto/Makefile +++ b/secure/lib/libcrypto/Makefile @@ -129,7 +129,7 @@ INCS+= ec.h # engine SRCS+= eng_all.c eng_cnf.c eng_ctrl.c eng_dyn.c eng_err.c eng_fat.c \ - eng_init.c eng_lib.c eng_list.c eng_openssl.c eng_pkey.c \ + eng_init.c eng_lib.c eng_list.c eng_openssl.c eng_padlock.c eng_pkey.c \ eng_table.c hw_4758_cca.c hw_4758_cca_err.c hw_aep.c hw_aep_err.c \ hw_atalla.c hw_atalla_err.c hw_cryptodev.c hw_cswift.c \ hw_cswift_err.c hw_ncipher.c hw_ncipher_err.c hw_nuron.c \ |
