Make is halting for Windows users using the default compiler option
/WX - treat warnings as errors.

The following changes are necessary to successfully build under the
Win32 platform:

crypto/conf/conf_api.c
Change line 70 from
   #include "e_os.h"
to
   #include <openssl/e_os.h>

ssl/s3_pkt.c:
Change line 248 from
   if (extra != (s->s3->rbuf_len - SSL3_RT_MAX_PACKET_SIZE))
to
   if (extra != ((int)(s->s3->rbuf_len - SSL3_RT_MAX_PACKET_SIZE)))

ssl/s3_pkt.c:
Change line 608 from
   if (s->s3->wbuf_len < prefix_len + SSL3_RT_MAX_PACKET_SIZE)
to
   if ((int)s->s3->wbuf_len < prefix_len + SSL3_RT_MAX_PACKET_SIZE)

ssl/ssltest.c
Change line 853 from
   if (r < num)
to
   if (r < (int)num)

*****************************************************************
DISCLAIMER:   The information contained in this e-mail may be confidential
and is intended solely for the use of the named addressee.  Access, copying
or re-use of the e-mail or any information contained therein by any other
person is not authorized.  If you are not the intended recipient please
notify us immediately by returning the e-mail to the originator.    
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to