CryptoPkg: Enable ssl build in OpensslLib directly

This patch is used to enable ssl build in OpensslLib module
directly.

Cc: Wu Jiaxin <jiaxin.wu@intel.com>
Cc: Ye Ting <ting.ye@intel.com>
Cc: Long Qin <qin.long@intel.com>
Cc: Fu Siyuan <siyuan.fu@intel.com>
Cc: Zhang Lubo <lubo.zhang@intel.com>
Cc: Thomas Palmer <thomas.palmer@hpe.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Long Qin <qin.long@intel.com>
Reviewed-by: Wu Jiaxin <jiaxin.wu@intel.com>
Reviewed-by: Ye Ting <ting.ye@intel.com>
Tested-by: Wu Jiaxin <jiaxin.wu@intel.com>
This commit is contained in:
Jiaxin Wu
2016-12-14 10:30:32 +08:00
parent 885ccf972f
commit 32387e0081
6 changed files with 75 additions and 7 deletions

View File

@ -384,6 +384,11 @@ size_t fread (void *b, size_t c, size_t i, FILE *f)
return 0;
}
int fputs (const char *s, FILE *f)
{
return 0;
}
int fprintf (FILE *f, const char *s, ...)
{
return 0;
@ -448,3 +453,8 @@ ssize_t write (int f, const void *b, size_t l)
{
return 0;
}
int printf (char const *fmt, ...)
{
return 0;
}