Răsfoiți Sursa

Someone fixed compiling issue on Win

Theo Hallenius 11 ani în urmă
părinte
comite
d98d3fb8ea

+ 5 - 1
drivers/builtin_openssl2/crypto/o_str.c

@@ -63,7 +63,11 @@
 #if !defined(OPENSSL_IMPLEMENTS_strncasecmp) && \
     !defined(OPENSSL_SYSNAME_WIN32) && \
     !defined(NETWARE_CLIB)
-# include <strings.h>
+#ifdef _WIN32
+#include <string.h>
+#else
+#include <strings.h>
+#endif
 #endif
 
 int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n)

+ 1 - 0
drivers/builtin_openssl2/openssl/rand.h

@@ -64,6 +64,7 @@
 #include <openssl/e_os2.h>
 
 #if defined(OPENSSL_SYS_WINDOWS)
+#define WIN32_LEAN_AND_MEAN
 #include <windows.h>
 #ifdef OCSP_RESPONSE
 #undef OCSP_RESPONSE