external/curl/ExternalProject_curl.mk | 2 +- external/curl/curl-msvc-disable-protocols.patch.1 | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-)
New commits: commit 4ad768c0d2a327a44f90c46842577cbcf6a4397e Author: Michael Stahl <[email protected]> AuthorDate: Fri Jan 16 10:29:36 2026 +0100 Commit: Xisco Fauli <[email protected]> CommitDate: Tue Jan 20 17:18:33 2026 +0100 curl: disable ipfs protocol, not needed Change-Id: Ie16206b6e853a130e51fbc664224091090f78ff0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/197473 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Stephan Bergmann <[email protected]> (cherry picked from commit ae9260a063ec51ee87dc7b85d0bd48d982a12b95) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/197573 Reviewed-by: Michael Stahl <[email protected]> Tested-by: Jenkins (cherry picked from commit a61f371ee54ea2535c5333473a320a79bff2a7cb) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/197657 Reviewed-by: Xisco Fauli <[email protected]> (cherry picked from commit 260e768e21a00fc4f8c97d575baef396b9db4d76) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/197675 diff --git a/external/curl/ExternalProject_curl.mk b/external/curl/ExternalProject_curl.mk index df2ee9e78ce5..81eb9c8651e5 100644 --- a/external/curl/ExternalProject_curl.mk +++ b/external/curl/ExternalProject_curl.mk @@ -49,7 +49,7 @@ $(call gb_ExternalProject_get_state_target,curl,build): --without-ngtcp2 --without-quiche \ --without-zstd --without-hyper --without-libgsasl \ $(if $(WITH_GSSAPI),--with-gssapi,--without-gssapi) \ - --disable-mqtt --disable-ares \ + --disable-ipfs --disable-mqtt --disable-ares \ --disable-dict --disable-file --disable-gopher --disable-imap \ --disable-ldap --disable-ldaps --disable-manual --disable-pop3 \ --disable-rtsp --disable-smb --disable-smtp --disable-telnet \ diff --git a/external/curl/curl-msvc-disable-protocols.patch.1 b/external/curl/curl-msvc-disable-protocols.patch.1 index fcf90b0ab2f8..5ad8834820ce 100644 --- a/external/curl/curl-msvc-disable-protocols.patch.1 +++ b/external/curl/curl-msvc-disable-protocols.patch.1 @@ -2,7 +2,7 @@ disable protocols nobody needs in MSVC build --- curl/lib/config-win32.h.orig 2017-08-09 16:43:29.464000000 +0200 +++ curl/lib/config-win32.h 2017-08-09 16:47:38.549200000 +0200 -@@ -500,6 +500,22 @@ +@@ -500,6 +500,23 @@ # endif /* UNDER_CE */ #endif /* !CURL_OS */ @@ -12,6 +12,7 @@ disable protocols nobody needs in MSVC build +#define CURL_DISABLE_GOPHER 1 +#undef CURL_DISABLE_HTTP +#define CURL_DISABLE_IMAP 1 ++#define CURL_DISABLE_IPFS 1 +#define CURL_DISABLE_LDAP 1 +#define CURL_DISABLE_LDAPS 1 +#define CURL_DISABLE_MQTT 1
