Browse Source

gyp: include opensslconf.h on x64

Good news, it means we don't have to compile with OPENSSL_NO_ASM=1 after all.
v0.7.4-release
Ben Noordhuis 13 years ago
parent
commit
213b8af2f6
  1. 3
      deps/openssl/openssl.gyp

3
deps/openssl/openssl.gyp

@ -8,7 +8,6 @@
'target_name': 'openssl', 'target_name': 'openssl',
'type': '<(library)', 'type': '<(library)',
'defines': [ 'defines': [
'OPENSSL_NO_ASM=1', # revisit, this slows down most algorithms
'L_ENDIAN', 'L_ENDIAN',
'OPENSSLDIR="ssl"', 'OPENSSLDIR="ssl"',
'ENGINESDIR="ssl/lib/engines"', 'ENGINESDIR="ssl/lib/engines"',
@ -39,7 +38,7 @@
'TERMIO', 'TERMIO',
], ],
}], }],
['target_arch=="ia32"', { ['target_arch=="ia32" or target_arch=="x64"', {
'include_dirs': [ 'include_dirs': [
'config/piii', 'config/piii',
], ],

Loading…
Cancel
Save