mirror of https://github.com/acidanthera/audk.git
Nt32Pkg/Nt32Pkg.dsc: Change TLS_ENABLE flag to FALSE by default
TLS feature highly depends on the OpenSSL building. To avoid the default Nt32 platform build failure, we should change the default value of TLS_ENABLE to FALSE. The notes are also provided for Secure Boot and TLS features. Cc: Ni Ruiyu <ruiyu.ni@intel.com> Cc: Ye Ting <ting.ye@intel.com> Cc: Long Qin <qin.long@intel.com> Cc: Fu Siyuan <siyuan.fu@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Wu Jiaxin <jiaxin.wu@intel.com> Reviewed-by: Ye Ting <ting.ye@intel.com>
This commit is contained in:
parent
63f1d6a4c0
commit
5ea07b9d15
|
@ -44,6 +44,10 @@
|
|||
# Defines for default states. These can be changed on the command line.
|
||||
# -D FLAG=VALUE
|
||||
#
|
||||
# Note: Secure Boot feature highly depends on the OpenSSL building. To enable this
|
||||
# feature, please follow the instructions found in the file "Patch-HOWTO.txt"
|
||||
# located in CryptoPkg\Library\OpensslLib to enable the OpenSSL building first.
|
||||
#
|
||||
DEFINE SECURE_BOOT_ENABLE = FALSE
|
||||
|
||||
#
|
||||
|
@ -51,7 +55,11 @@
|
|||
# These can be changed on the command line.
|
||||
# -D FLAG=VALUE
|
||||
#
|
||||
DEFINE TLS_ENABLE = TRUE
|
||||
# Note: TLS feature highly depends on the OpenSSL building. To enable this
|
||||
# feature, please follow the instructions found in the file "Patch-HOWTO.txt"
|
||||
# located in CryptoPkg\Library\OpensslLib to enable the OpenSSL building first.
|
||||
#
|
||||
DEFINE TLS_ENABLE = FALSE
|
||||
|
||||
################################################################################
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue