diff options
author | Gibson Fahnestock <gibfahn@gmail.com> | 2017-03-22 00:15:03 +0000 |
---|---|---|
committer | Gibson Fahnestock <gibfahn@gmail.com> | 2017-03-22 00:15:03 +0000 |
commit | a1028d5e3ee18dbf135c744b16d3d55068f6efc1 (patch) | |
tree | f5d0a042e05d8aa44ea7c76e2ef14aa39754ad95 /tools | |
parent | 7e6e7d34f31679062605c9093bab86020748af4f (diff) | |
download | node-new-a1028d5e3ee18dbf135c744b16d3d55068f6efc1.tar.gz |
build: remove cares headers from tarball
The bundled c-ares isn't very suitable for consumption by addons,
isn't kept stable, and isn't exported on windows.
PR-URL: https://github.com/nodejs/node/pull/10283
Refs: https://github.com/nodejs/node-gyp/pull/1055
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/install.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/install.py b/tools/install.py index d1100352c6..fdaf2b2e7a 100755 --- a/tools/install.py +++ b/tools/install.py @@ -159,9 +159,6 @@ def headers(action): subdir_files('deps/v8/include', 'include/node/', action) - if 'false' == variables.get('node_shared_cares'): - subdir_files('deps/cares/include', 'include/node/', action) - if 'false' == variables.get('node_shared_libuv'): subdir_files('deps/uv/include', 'include/node/', action) |