Skip to content

Commit

Permalink
Fix builtin OpenSSL configuration
Browse files Browse the repository at this point in the history
Fixes a bug that happens on Windows 64-bits.
  • Loading branch information
vnen committed Jul 9, 2016
1 parent 864c0e8 commit 2c6d0d4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions drivers/builtin_openssl2/openssl/opensslconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2c6d0d4

Please sign in to comment.