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',
'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',
],

Loading…
Cancel
Save