diff options
author | Fedor Indutny <fedor.indutny@gmail.com> | 2013-04-03 16:58:10 +0400 |
---|---|---|
committer | Fedor Indutny <fedor.indutny@gmail.com> | 2013-04-05 04:12:13 +0400 |
commit | 58f93ffc4a23aa7240808288acf8cf9f3022abea (patch) | |
tree | df76a29baf9163a5b10a98bf2e026bf08fe7ae35 /node.gyp | |
parent | 0f460b03f3143e17cb783186df13a3ad769cfb06 (diff) | |
download | nodejs-58f93ffc4a23aa7240808288acf8cf9f3022abea.tar.gz nodejs-58f93ffc4a23aa7240808288acf8cf9f3022abea.tar.bz2 nodejs-58f93ffc4a23aa7240808288acf8cf9f3022abea.zip |
crypto: use better memory BIO implementation
Diffstat (limited to 'node.gyp')
-rw-r--r-- | node.gyp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -110,6 +110,7 @@ 'src/node_buffer.h', 'src/node_constants.h', 'src/node_crypto.h', + 'src/node_crypto_bio.h', 'src/node_extensions.h', 'src/node_file.h', 'src/node_http_parser.h', @@ -147,7 +148,7 @@ 'conditions': [ [ 'node_use_openssl=="true"', { 'defines': [ 'HAVE_OPENSSL=1' ], - 'sources': [ 'src/node_crypto.cc' ], + 'sources': [ 'src/node_crypto.cc', 'src/node_crypto_bio.cc' ], 'conditions': [ [ 'node_shared_openssl=="false"', { 'dependencies': [ './deps/openssl/openssl.gyp:openssl' ], |