From 6645538dac7bbbeedd8de0a67aa07447ea9ff4e3 Mon Sep 17 00:00:00 2001 From: Bernd Kuhls Date: Sat, 26 Jul 2025 07:59:06 +0200 Subject: [PATCH] package/libcurl: remove configure option --disable-ntlm-wb Upstream removed this configure option in version 8.8.0: https://github.com/curl/curl/commit/50def7c881ba560ab6e0235990e8f07fa69f4bc8 which was added to buildroot with commit 50bdb2a3b7ace71065dc0b8a81bebc173f84a8c4. Signed-off-by: Bernd Kuhls Signed-off-by: Julien Olivain (cherry picked from commit 8ee654b28e0ccd06e25f8409d553c865d2a978d0) Signed-off-by: Thomas Perale --- package/libcurl/libcurl.mk | 6 ------ 1 file changed, 6 deletions(-) diff --git a/package/libcurl/libcurl.mk b/package/libcurl/libcurl.mk index e390c9d1bf..114ff3d70b 100644 --- a/package/libcurl/libcurl.mk +++ b/package/libcurl/libcurl.mk @@ -15,17 +15,11 @@ LIBCURL_LICENSE_FILES = COPYING LIBCURL_CPE_ID_VENDOR = haxx LIBCURL_INSTALL_STAGING = YES -# We disable NTLM delegation to winbinds ntlm_auth ('--disable-ntlm-wb') -# support because it uses fork(), which doesn't work on non-MMU platforms. -# Moreover, this authentication method is probably almost never used (see -# https://curl.se/docs/manpage.html#--ntlm), so disable NTLM support overall. -# # Likewise, there is no compiler on the target, so libcurl-option (to # generate C code) isn't very useful LIBCURL_CONF_OPTS = \ --disable-manual \ --disable-ntlm \ - --disable-ntlm-wb \ --with-random=/dev/urandom \ --disable-curldebug \ --disable-libcurl-option \