(cc'd to openssl-dev since this sort of is a bug)
This one's been there since pre SSLeay6.6 days. In the makefile
you'll notice two compiler options /W3 and /WX, which are actuallly
"conflicting". WX is a very strict option which causes error C2220
which treats all warnings as errors. /W3 on the otherhand is a less
strict level for compiler output for warnings.
W3 is sufficient enough for debug builds (and many production builds
for that matter.) - I was doing alot of work
within the bignum library a while back and never had any problems
using only /W3 for debug builds.
Easy answer - remove /WX from the makefile.
Or fix the conversion - ;-)
I've always removed /WX and as i remember it is the only warning
generated in a win32 debug build.
Andrew
______________________________________________________________________
OpenSSL Project http://www.openssl.org
Development Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]