From f81619e73c41db02edc81d74ea1fc9a5f8d7a2ac Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Fri, 16 May 2025 14:55:50 +0200 Subject: [PATCH] [PATCH] build: fix defaults for shared llhttp PR-URL: https://github.com/nodejs/node/pull/58269 Reviewed-By: James M Snell Reviewed-By: Richard Lau Gbp-Pq: Topic deps Gbp-Pq: Name llhttp-defaults.patch --- configure.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.py b/configure.py index ef9b120b3..d3b6efc75 100755 --- a/configure.py +++ b/configure.py @@ -293,7 +293,7 @@ shared_optgroup.add_argument('--shared-http-parser-includes', 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', @@ -2321,7 +2321,7 @@ configure_node_cctest_sources(output) configure_napi(output) configure_debian(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) -- 2.30.2