summaryrefslogtreecommitdiff
path: root/configure.py
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2018-12-05 20:42:10 +0100
committerAnna Henningsen <anna@addaleax.net>2018-12-09 21:57:39 +0100
commit2cb8f247512d611d3dfe81c2441e8028bfb0e8f0 (patch)
tree289bd07340834a747902da429657ab7468b2546c /configure.py
parent951b1c3e09bae8395dde0d4f5cecb1fde117fa94 (diff)
downloadandroid-node-v8-2cb8f247512d611d3dfe81c2441e8028bfb0e8f0.tar.gz
android-node-v8-2cb8f247512d611d3dfe81c2441e8028bfb0e8f0.tar.bz2
android-node-v8-2cb8f247512d611d3dfe81c2441e8028bfb0e8f0.zip
http: switch default parser to llhttp
Refs: https://github.com/nodejs/node/pull/24739 Fixes: https://github.com/nodejs/node/issues/24730 PR-URL: https://github.com/nodejs/node/pull/24870 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/configure.py b/configure.py
index ca87082424..d13c622d54 100755
--- a/configure.py
+++ b/configure.py
@@ -187,7 +187,7 @@ parser.add_option('--openssl-system-ca-path',
parser.add_option('--experimental-http-parser',
action='store_true',
dest='experimental_http_parser',
- help='use llhttp instead of http_parser by default')
+ help='(no-op)')
shared_optgroup.add_option('--shared-http-parser',
action='store_true',
@@ -1118,9 +1118,6 @@ def configure_node(o):
else:
o['variables']['node_target_type'] = 'executable'
- o['variables']['node_experimental_http_parser'] = \
- b(options.experimental_http_parser)
-
def configure_library(lib, output):
shared_lib = 'shared_' + lib
output['variables']['node_' + shared_lib] = b(getattr(options, shared_lib))