David Byron's fix to make libcurl build fine with both .NET and VC6 version

of MSVC
This commit is contained in:
Daniel Stenberg 2003-12-18 08:56:20 +00:00
parent f4e987cd19
commit aff9a817b4

View File

@ -27,7 +27,7 @@
#define ssize_t int
/* Define this to 'int' if socklen_t is not an available typedefed type */
#if !defined(ENABLE_IPV6) && !defined(USE_SSLEAY)
#if !defined(ENABLE_IPV6) && ((_MSC_VER < 1300) || !defined(USE_SSLEAY))
#define socklen_t int
#endif