From 213b8af2f605efc15b25ac33aaf55920962f7182 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Mon, 19 Dec 2011 23:24:29 +0100 Subject: [PATCH] gyp: include opensslconf.h on x64 Good news, it means we don't have to compile with OPENSSL_NO_ASM=1 after all. --- deps/openssl/openssl.gyp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/deps/openssl/openssl.gyp b/deps/openssl/openssl.gyp index 45933094de..1715c0fc71 100644 --- a/deps/openssl/openssl.gyp +++ b/deps/openssl/openssl.gyp @@ -8,7 +8,6 @@ 'target_name': 'openssl', 'type': '<(library)', 'defines': [ - 'OPENSSL_NO_ASM=1', # revisit, this slows down most algorithms 'L_ENDIAN', 'OPENSSLDIR="ssl"', 'ENGINESDIR="ssl/lib/engines"', @@ -39,7 +38,7 @@ 'TERMIO', ], }], - ['target_arch=="ia32"', { + ['target_arch=="ia32" or target_arch=="x64"', { 'include_dirs': [ 'config/piii', ],