diff options
author | Daniel Bevenius <daniel.bevenius@gmail.com> | 2017-09-05 13:08:17 +0200 |
---|---|---|
committer | Daniel Bevenius <daniel.bevenius@gmail.com> | 2017-09-07 06:36:55 +0200 |
commit | 343d9dca95ebc413393a5d541612c34949ba9c6f (patch) | |
tree | 33628a4945d02e5f8e4219ee2df4f6ade0cb0c8f /configure | |
parent | 8485a7c0b71fd1dd36947a6dd02b75387805d9b7 (diff) | |
download | node-new-343d9dca95ebc413393a5d541612c34949ba9c6f.tar.gz |
build: display HTTP2 configure --help options
Currently the options available for HTTP2 are not displayed when running
configure --help.
This commit enables the following HTTP2 section to be included in the
help output:
HTTP2:
Flags that allows you to control HTTP2 features in Node.js
--debug-http2 build with http2 debug statements on (default is
false)
--debug-nghttp2 build nghttp2 with DEBUGBUILD (default is false)
PR-URL: https://github.com/nodejs/node/pull/15198
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Evan Lucas <evanlucas@me.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -420,6 +420,8 @@ http2_optgroup.add_option('--debug-nghttp2', dest='debug_nghttp2', help='build nghttp2 with DEBUGBUILD (default is false)') +parser.add_option_group(http2_optgroup) + parser.add_option('--with-perfctr', action='store_true', dest='with_perfctr', |