From 2c5244ca16455a36e22d57d73429d21e67a94dc1 Mon Sep 17 00:00:00 2001 From: Francesco Chemolli <5175948+kinkie@users.noreply.github.com> Date: Fri, 14 Mar 2025 00:40:13 +0000 Subject: [PATCH] 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 --- src/auth/negotiate/SSPI/Makefile.am | 1 + 1 file changed, 1 insertion(+) 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) -- 2.47.2