From 277a71db58a4b959b43a2d9f018a92f61a1b4be2 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 6 Jan 2021 23:58:12 +0100 Subject: [PATCH] nodejs: change openssl build-option to OpenSSL --- srcpkgs/nodejs/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/nodejs/template b/srcpkgs/nodejs/template index 3d84f1c0de6..e89a169ad61 100644 --- a/srcpkgs/nodejs/template +++ b/srcpkgs/nodejs/template @@ -5,11 +5,11 @@ revision=1 wrksrc="node-v${version}" # Need these for host v8 for torque, see https://github.com/nodejs/node/pull/21079 hostmakedepends="which pkg-config python3 libatomic-devel zlib-devel - $(vopt_if icu icu-devel) $(vopt_if ssl libressl-devel) $(vopt_if libuv libuv-devel) + $(vopt_if icu icu-devel) $(vopt_if ssl openssl-devel) $(vopt_if libuv libuv-devel) $(vopt_if http_parser http-parser-devel) $(vopt_if nghttp2 nghttp2-devel) $(vopt_if cares c-ares-devel) $(vopt_if http_parser llhttp-devel)" makedepends="libatomic-devel zlib-devel $(vopt_if icu icu-devel) - $(vopt_if ssl libressl-devel) $(vopt_if libuv libuv-devel) + $(vopt_if ssl openssl-devel) $(vopt_if libuv libuv-devel) $(vopt_if http_parser http-parser-devel) $(vopt_if nghttp2 nghttp2-devel) $(vopt_if cares c-ares-devel) $(vopt_if http_parser llhttp-devel)" short_desc="Evented I/O for V8 javascript" @@ -21,7 +21,7 @@ checksum=8610d81b2d4afc3a79afbe6209d510125131c45cae22cac63bb767dcfec1cbf0 python_version=3 build_options="ssl libuv http_parser icu nghttp2 cares" -desc_option_ssl="Enable shared libressl" +desc_option_ssl="Enable shared openssl" desc_option_libuv="Enable shared libuv" desc_option_http_parser="Enable shared http-parser and llhttp" desc_option_icu="Enable shared icu"