Reviewed-by: Samer El-Haj-Mahmoud <[email protected]>
-----Original Message----- From: Long, Qin [[email protected]] Received: Monday, 02 May 2016, 9:03PM To: Wu, Jiaxin [[email protected]]; [email protected] [[email protected]] CC: El-Haj-Mahmoud, Samer [[email protected]] Subject: RE: [edk2] [staging/HTTPS-TLS][PATCH] CryptoPkg: Fix ssl build error. This looks good to me. Reviewed-by: Qin Long <[email protected]> Best Regards & Thanks LONG, Qin > -----Original Message----- > From: Wu, Jiaxin > Sent: Tuesday, May 03, 2016 8:43 AM > To: Wu, Jiaxin; [email protected] > Cc: Samer El-Haj-Mahmoud; Long, Qin > Subject: RE: [edk2] [staging/HTTPS-TLS][PATCH] CryptoPkg: Fix ssl build error. > > Samer and Qin, > > Please help to review this patch. > > Thanks. > Jiaxin > > > > -----Original Message----- > > From: edk2-devel [mailto:[email protected]] On Behalf Of > > Jiaxin Wu > > Sent: Friday, April 29, 2016 9:31 AM > > To: [email protected] > > Cc: Samer El-Haj-Mahmoud <[email protected]>; Long, Qin > > <[email protected]> > > Subject: [edk2] [staging/HTTPS-TLS][PATCH] CryptoPkg: Fix ssl build error. > > > > This patch is used to fix ssl unresolved external build error. > > > > Cc: Samer El-Haj-Mahmoud <[email protected]> > > Cc: Thomas Palmer <[email protected]> > > Cc: Long Qin <[email protected]> > > Contributed-under: TianoCore Contribution Agreement 1.0 > > Signed-off-by: Jiaxin Wu <[email protected]> > > --- > > CryptoPkg/Library/BaseCryptLib/SysCall/CrtWrapper.c | 10 ++++++++++ > > 1 file changed, 10 insertions(+) > > > > diff --git a/CryptoPkg/Library/BaseCryptLib/SysCall/CrtWrapper.c > > b/CryptoPkg/Library/BaseCryptLib/SysCall/CrtWrapper.c > > index c0ccc0e..a2386bc 100644 > > --- a/CryptoPkg/Library/BaseCryptLib/SysCall/CrtWrapper.c > > +++ b/CryptoPkg/Library/BaseCryptLib/SysCall/CrtWrapper.c > > @@ -382,10 +382,15 @@ FILE *fopen (const char *c, const char *m) > > 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; > > } > > > > @@ -446,5 +451,10 @@ void syslog (int a, const char *c, ...) > > > > ssize_t write (int f, const void *b, size_t l) { > > return 0; > > } > > + > > +int printf (char const *fmt, ...) > > +{ > > + return 0; > > +} > > -- > > 1.9.5.msysgit.1 > > > > _______________________________________________ > > edk2-devel mailing list > > [email protected] > > https://lists.01.org/mailman/listinfo/edk2-devel _______________________________________________ edk2-devel mailing list [email protected] https://lists.01.org/mailman/listinfo/edk2-devel

