FS-6457 --resolve

Upgrade to OpenSSL 1.0.1g in Windows build (Visual Studio 2010 and 2012)
This commit is contained in:
Peter Olsson
2014-04-11 16:49:30 +02:00
parent 2dba7dd367
commit 295964f0ec
33 changed files with 3243 additions and 3204 deletions

View File

@@ -368,6 +368,13 @@ static unsigned int _strlen31(const char *str)
# define DEFAULT_HOME "C:"
# endif
/* Avoid Windows 8 SDK GetVersion deprecated problems */
#if defined(_MSC_VER) && _MSC_VER>=1800
# define check_winnt() (1)
#else
# define check_winnt() (GetVersion() < 0x80000000)
#endif
#else /* The non-microsoft world */
# ifdef OPENSSL_SYS_VMS