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.

(cherry picked from commit 2c6d0d4)
  • Loading branch information
vnen authored and akien-mga committed Jul 10, 2016
1 parent 9cc9b45 commit 78883ea
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 78883ea

Please sign in to comment.