From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga05.intel.com (mga05.intel.com []) by mx.groups.io with SMTP id smtpd.web11.10079.1603703131777658711 for ; Mon, 26 Oct 2020 02:05:36 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: zhichao.gao@intel.com) IronPort-SDR: KGMHqhDqE57LRAxyOhocMomM8wB3uXlT9k9WuHg+ZCtOU8bMWMTY1tOt7vkT+STU+IBv9badtY UcNPS/BLZHbg== X-IronPort-AV: E=McAfee;i="6000,8403,9785"; a="252595223" X-IronPort-AV: E=Sophos;i="5.77,417,1596524400"; d="scan'208";a="252595223" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Oct 2020 02:05:35 -0700 IronPort-SDR: IkNGLnoOh74HEbVWOYWn8Pv0LBm1hd0KnwkQwuSsQFsGbvdQ1QbjYHgmc3VeUH2o6I+aGe5ltj r4BG/AwQFuXQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,417,1596524400"; d="scan'208";a="350038509" Received: from fieedk001.ccr.corp.intel.com ([10.239.153.118]) by fmsmga004.fm.intel.com with ESMTP; 26 Oct 2020 02:05:35 -0700 From: "Gao, Zhichao" To: devel@edk2.groups.io Cc: Jiewen Yao , Jian J Wang Subject: [PATCH 3/5] SecurityPkg/dsc: Explicitly enable MD5 for package build Date: Mon, 26 Oct 2020 17:03:41 +0800 Message-Id: <20201026090343.13048-4-zhichao.gao@intel.com> X-Mailer: git-send-email 2.21.0.windows.1 In-Reply-To: <20201026090343.13048-1-zhichao.gao@intel.com> References: <20201026090343.13048-1-zhichao.gao@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3021 Hash2DxeCrypto.inf supports MD5. MD5 would be disable as default setting for edk2. Explicitly enable MD5 thru ENABLE_MD5_DEPRECATED_INTERFACES for package build. Cc: Jiewen Yao Cc: Jian J Wang Signed-off-by: Zhichao Gao --- SecurityPkg/SecurityPkg.dsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SecurityPkg/SecurityPkg.dsc b/SecurityPkg/SecurityPkg.dsc index 36d15b79f9..7af0a8c7eb 100644 --- a/SecurityPkg/SecurityPkg.dsc +++ b/SecurityPkg/SecurityPkg.dsc @@ -342,5 +342,5 @@ [BuildOptions] MSFT:*_*_IA32_DLINK_FLAGS = /ALIGN:256 INTEL:*_*_IA32_DLINK_FLAGS = /ALIGN:256 - *_*_*_CC_FLAGS = -D DISABLE_NEW_DEPRECATED_INTERFACES + *_*_*_CC_FLAGS = -D DISABLE_NEW_DEPRECATED_INTERFACES -D ENABLE_MD5_DEPRECATED_INTERFACES -- 2.21.0.windows.1