Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFedor Indutny <fedor.indutny@gmail.com>2013-04-03 16:58:10 +0400
committerFedor Indutny <fedor.indutny@gmail.com>2013-04-05 04:12:13 +0400
commit58f93ffc4a23aa7240808288acf8cf9f3022abea (patch)
treedf76a29baf9163a5b10a98bf2e026bf08fe7ae35 /node.gyp
parent0f460b03f3143e17cb783186df13a3ad769cfb06 (diff)
crypto: use better memory BIO implementation
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp3
1 files changed, 2 insertions, 1 deletions
diff --git a/node.gyp b/node.gyp
index fc7e2153f81..efeff539f02 100644
--- a/node.gyp
+++ b/node.gyp
@@ -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' ],