Fix builtin OpenSSL configuration

Fixes a bug that happens on Windows 64-bits.

(cherry picked from commit 2c6d0d4905)
This commit is contained in:
George Marques 2016-07-09 20:02:26 -03:00 committed by Rémi Verschelde
parent 9cc9b45948
commit 78883ea57d

View file

@ -213,8 +213,13 @@ extern "C" {
#ifdef OPENSSL_USE_64_BITS
#define SIXTY_FOUR_BIT_LONG
#undef SIXTY_FOUR_BIT
# ifdef _WIN32
# undef SIXTY_FOUR_BIT_LONG
# define SIXTY_FOUR_BIT
# else
# define SIXTY_FOUR_BIT_LONG
# undef SIXTY_FOUR_BIT
# endif
#undef THIRTY_TWO_BIT
#else