From 7319fd3451d3daa13580405aae9546cff48e0b95 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Sun, 11 May 2025 00:23:28 +0200 Subject: [PATCH] build: fix defaults for shared llhttp --- configure.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.py b/configure.py index a145df1d92b302..2232cc6f3c06b9 100755 --- a/configure.py +++ b/configure.py @@ -277,7 +277,7 @@ shared_optgroup.add_argument('--shared-http-parser-libname', action='store', dest='shared_http_parser_libname', - default='http_parser', + default='llhttp', help='alternative lib name to link to [default: %(default)s]') shared_optgroup.add_argument('--shared-http-parser-libpath', @@ -2265,7 +2265,7 @@ def make_bin_override(): configure_node_cctest_sources(output) configure_napi(output) configure_library('zlib', output) -configure_library('http_parser', output) +configure_library('http_parser', output, pkgname='libllhttp') configure_library('libuv', output) configure_library('ada', output) configure_library('simdjson', output)