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:
authorOguz Bastemur <obastemur@gmail.com>2015-04-06 10:14:27 +0300
committerShigeki Ohtsu <ohtsu@iij.ad.jp>2015-04-06 11:20:36 +0300
commitec7fbf2bb269f5ce5fa65ad7daf5a24241af97ef (patch)
tree1ffea0cf8a51d67629c0e7be98f87efe76f5737d
parent644ece1f67cb5b6ed3102dee50203a80340dbaba (diff)
tools: fix install source path for openssl headers
This part is broken for a very long time. We noticed the problem while using jxcore native interface with embedded openssl. I've also sent a pull request to node.js repo. The problem may affect a native addon using builtin openssl. `opensslconf.h` is overwritten with `deps/openssl/conf/opensslconf.h` PR-URL: https://github.com/iojs/io.js/pull/1354 Reviewed-By: Shigeki Ohtsu <ohtsu@iij.ad.jp>
-rwxr-xr-xtools/install.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/install.py b/tools/install.py
index 5cf78b52814..2d00cf06d73 100755
--- a/tools/install.py
+++ b/tools/install.py
@@ -173,8 +173,8 @@ def files(action):
subdir_files('deps/uv/include', 'include/node/', action)
if 'false' == variables.get('node_shared_openssl'):
+ subdir_files('deps/openssl/openssl/include/openssl', 'include/node/openssl/', action)
action(['deps/openssl/config/opensslconf.h'], 'include/node/openssl/')
- subdir_files('deps/openssl/include/openssl', 'include/node/openssl/', action)
if 'false' == variables.get('node_shared_v8'):
subdir_files('deps/v8/include', 'include/node/', action)