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:
authorJohan Bergström <bugs@bergstroem.nu>2014-12-03 10:28:40 +0300
committerRod Vagg <rod@vagg.org>2014-12-04 13:20:28 +0300
commit766d063e0578c0f7758c3a965c971763f43fec85 (patch)
tree4f3aa5f5cddc2b865291bd9283735e052c0c76f8 /tools/install.py
parent206389d411c7ca13d90d3104ce21fdc284123d96 (diff)
configure: remove shared cares build option
Bundled cares differs from upstream which will result in a compilation error when trying to used a shared cares. Fixes: https://github.com/joyent/node/pull/8786 PR-URL: https://github.com/iojs/io.js/pull/38 Reviewed-By: Fedor Indutny <fedor@indutny.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'tools/install.py')
-rwxr-xr-xtools/install.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/install.py b/tools/install.py
index 52c11099411..c99dc1579bf 100755
--- a/tools/install.py
+++ b/tools/install.py
@@ -154,8 +154,7 @@ def files(action):
'src/smalloc.h',
], 'include/node/')
- if 'false' == variables.get('node_shared_cares'):
- subdir_files('deps/cares/include', 'include/node/', action)
+ subdir_files('deps/cares/include', 'include/node/', action)
if 'false' == variables.get('node_shared_libuv'):
subdir_files('deps/uv/include', 'include/node/', action)