From: Francesco Chemolli <5175948+kinkie@users.noreply.github.com> Date: Fri, 14 Mar 2025 00:40:13 +0000 (+0000) Subject: MinGW: add libnettle to negotiate_sspi_auth (#2024) X-Git-Tag: SQUID_7_0_2~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c5244ca16455a36e22d57d73429d21e67a94dc1;p=thirdparty%2Fsquid.git MinGW: add libnettle to negotiate_sspi_auth (#2024) libnettle is needed to build negotiate_sspi_auth. This change fixes many errors similar to: negotiate_sspi_auth.cc:126: undefined reference to nettle_base64_decode_init --- diff --git a/src/auth/negotiate/SSPI/Makefile.am b/src/auth/negotiate/SSPI/Makefile.am index beb23f5241..b5a0e6f87b 100644 --- a/src/auth/negotiate/SSPI/Makefile.am +++ b/src/auth/negotiate/SSPI/Makefile.am @@ -17,6 +17,7 @@ negotiate_sspi_auth_LDADD = \ $(top_builddir)/lib/sspi/libsspwin32.la \ $(top_builddir)/lib/libmiscencoding.la \ $(COMPAT_LIB) \ + $(LIBNETTLE_LIBS) \ -ladvapi32 \ $(XTRA_LIBS)