From 524f9b090f109de7fa7beaf323ca0e9181708b8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20A=C3=9Fhauer?= Date: Wed, 1 Jul 2026 12:56:48 +0200 Subject: [PATCH] curl: re-enable NTLM MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Curl requires a compile-time opt-in for NTLM support since 8.20 [1]. To be able to allow Git for Windows users to opt-in to NTLM use at run time we need to build libcurl with NTLM support. This fixes git-for-windows/git#6308 [1] https://daniel.haxx.se/blog/2026/03/22/ntlm-and-smb-go-opt-in/ Signed-off-by: Matthias Aßhauer --- mingw-w64-curl/PKGBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mingw-w64-curl/PKGBUILD b/mingw-w64-curl/PKGBUILD index e934990d48815..98303c31b1060 100644 --- a/mingw-w64-curl/PKGBUILD +++ b/mingw-w64-curl/PKGBUILD @@ -6,7 +6,7 @@ pkgname=("${MINGW_PACKAGE_PREFIX}-${_realname}" "${MINGW_PACKAGE_PREFIX}-${_realname}-gnutls" "${MINGW_PACKAGE_PREFIX}-${_realname}-winssl") pkgver=8.21.0 -pkgrel=1 +pkgrel=2 pkgdesc="Command line tool and library for transferring data with URLs (mingw-w64)" arch=('any') mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32' 'clangarm64') @@ -154,6 +154,7 @@ do_build() { --enable-sspi \ --enable-ldap \ --enable-ldaps \ + --enable-ntlm \ --with-brotli \ --with-ldap-lib=wldap32 \ --with-libssh2 \