This patch fixes a problem with compiling on Windows for options OPENSSL_USE_IPV6 and a windows requirement of having _WIN32_WINNT being at least 0x0501. Anybody willing to commit it? Or come up w/ a better solution?
Thanks! diff -r1.103 e_os.h 255a256,262 > #ifndef OPENSSL_USE_IPV6 > # define OPENSSL_USE_IPV6 0 > /* Need at least WINNT 501 for IPV6 */ > #else > # define _WIN32_WINNT 0x0501 > # define OPENSSL_USE_IPV6 1 > #endif 270a278 > #ifndef _WIN32_WINNT 271a280 > #endif RCS file: /v/openssl/cvs/openssl/crypto/bio/bss_dgram.c,v retrieving revision 1.38 diff -r1.38 bss_dgram.c 61,62d60 < #include <stdio.h> < #include <errno.h> 63a62 > #include "e_os.h" 64a64,65 > #include <stdio.h> > #include <errno.h> Erick Wodarz Habit is habit, and not to be flung out of the window by any man, but coaxed down the stairs a step at a time. Mark Twain ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List [email protected] Automated List Manager [email protected]
