Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
gyp: include opensslconf.h on x64
Browse files Browse the repository at this point in the history
Good news, it means we don't have to compile with OPENSSL_NO_ASM=1 after all.
  • Loading branch information
bnoordhuis committed Dec 19, 2011
1 parent 15d0fa6 commit 213b8af
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions deps/openssl/openssl.gyp
Expand Up @@ -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"',
Expand Down Expand Up @@ -39,7 +38,7 @@
'TERMIO',
],
}],
['target_arch=="ia32"', {
['target_arch=="ia32" or target_arch=="x64"', {
'include_dirs': [
'config/piii',
],
Expand Down

0 comments on commit 213b8af

Please sign in to comment.