diff options
author | Zurcher, Christopher J <christopher.j.zurcher@intel.com> | 2020-02-14 08:40:21 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2020-03-10 09:08:34 +0000 |
commit | 6b7855209ad8e3e077a24faa40f69acdc231ff4f (patch) | |
tree | 6cffbb6ab961421171597b4015ae6f860c3e9d89 /CryptoPkg | |
parent | c72ca4666886ecb8fa690ec27f4e69e35bf7876b (diff) | |
download | edk2-6b7855209ad8e3e077a24faa40f69acdc231ff4f.tar.gz edk2-6b7855209ad8e3e077a24faa40f69acdc231ff4f.tar.bz2 edk2-6b7855209ad8e3e077a24faa40f69acdc231ff4f.zip |
CryptoPkg/OpensslLib: Remove "no-autoalginit" flag from OpenSSL build
This is enabling a future EVP implementation to utilize the
EVP_get_digestbyname() function.
Cc: Jian J Wang <jian.j.wang@intel.com>
Cc: Xiaoyu Lu <xiaoyux.lu@intel.com>
Signed-off-by: Christopher J Zurcher <christopher.j.zurcher@intel.com>
Reviewed-by: Jian J Wang <jian.j.wang@intel.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Diffstat (limited to 'CryptoPkg')
-rw-r--r-- | CryptoPkg/Library/Include/openssl/opensslconf.h | 3 | ||||
-rwxr-xr-x | CryptoPkg/Library/OpensslLib/process_files.pl | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/CryptoPkg/Library/Include/openssl/opensslconf.h b/CryptoPkg/Library/Include/openssl/opensslconf.h index 2b4d538e92..bd34e53ef2 100644 --- a/CryptoPkg/Library/Include/openssl/opensslconf.h +++ b/CryptoPkg/Library/Include/openssl/opensslconf.h @@ -109,9 +109,6 @@ extern "C" { #ifndef OPENSSL_NO_ASYNC # define OPENSSL_NO_ASYNC #endif -#ifndef OPENSSL_NO_AUTOALGINIT -# define OPENSSL_NO_AUTOALGINIT -#endif #ifndef OPENSSL_NO_AUTOERRINIT # define OPENSSL_NO_AUTOERRINIT #endif diff --git a/CryptoPkg/Library/OpensslLib/process_files.pl b/CryptoPkg/Library/OpensslLib/process_files.pl index 11cd58cc4e..4ba25da407 100755 --- a/CryptoPkg/Library/OpensslLib/process_files.pl +++ b/CryptoPkg/Library/OpensslLib/process_files.pl @@ -51,7 +51,6 @@ BEGIN { "no-afalgeng",
"no-asm",
"no-async",
- "no-autoalginit",
"no-autoerrinit",
"no-autoload-config",
"no-bf",
|