Disable libpsl requirement in curl

This commit is contained in:
Jeremy Soller 2024-06-11 09:04:54 -06:00
parent 503b1f8e5e
commit 7a87b79719
No known key found for this signature in database
GPG Key ID: D02FD439211AF56F
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,6 @@ dependencies = [
"curl",
"libiconv",
"liborbital",
"libpsl",
"llvm",
"mesa",
"nghttp2",

View File

@ -6,7 +6,7 @@ upstream = "https://github.com/curl/curl.git"
[build]
template = "custom"
dependencies = [
"libpsl",
#TODO: git fails to build when this is a dependency: "libpsl",
"nghttp2",
"openssl1",
"zlib"
@ -31,6 +31,7 @@ COOKBOOK_CONFIGURE_FLAGS=(
--with-nghttp2="${COOKBOOK_SYSROOT}"
--with-ssl="${COOKBOOK_SYSROOT}"
--with-zlib="${COOKBOOK_SYSROOT}"
--without-libpsl
)
cookbook_configure
"""