From dbd023718ff09dade1ee337d9b33c7dbd3432dcb Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Tue, 9 Dec 2014 17:49:42 +0100 Subject: [PATCH] openssl: don't define SIXTY_FOUR_BIT_LONG on Windows On Windows a long integer is always 32-bits, even when the target architecture uses 64-bit pointers. PR-URL: https://github.com/iojs/io.js/pull/124 Reviewed-By: Ben Noordhuis --- deps/openssl/config/opensslconf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/openssl/config/opensslconf.h b/deps/openssl/config/opensslconf.h index 37e5c4f54ae558..2e7732b926260d 100644 --- a/deps/openssl/config/opensslconf.h +++ b/deps/openssl/config/opensslconf.h @@ -221,7 +221,7 @@ # undef SIXTEEN_BIT # undef EIGHT_BIT # if defined(_M_X64) || defined(__x86_64__) -# if defined(_WIN64) || defined(_LP64) +# if defined(_LP64) # define SIXTY_FOUR_BIT_LONG # else # define SIXTY_FOUR_BIT