From 89ee5cfb38b22f9ff68c34aa55ca2c242be90826 Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Thu, 10 Nov 2022 16:30:16 +0100 Subject: [PATCH] curl-rustls.m4: on macOS, rustls also needs the Security framework Closes #9883 --- m4/curl-rustls.m4 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/m4/curl-rustls.m4 b/m4/curl-rustls.m4 index 6fd8235aad..32fba041ec 100644 --- a/m4/curl-rustls.m4 +++ b/m4/curl-rustls.m4 @@ -38,6 +38,14 @@ if test "x$OPT_RUSTLS" != xno; then OPT_RUSTLS="" fi + case $host_os in + darwin*) + LDFLAGS="$LDFLAGS -framework Security" + ;; + *) + ;; + esac + if test -z "$OPT_RUSTLS" ; then dnl check for lib first without setting any new path -- 2.47.3