mirror of
https://github.com/LibreOffice/core.git
synced 2025-08-02 04:50:01 +00:00

Downloaded from https://curl.se/download/curl-8.12.0.tar.xz Windows build fails now with WARNING: The winbuild build system is deprecated and will be removed in September 2025 in favor of the CMake build system. Please see docs/INSTALL-CMAKE.md : "Migrating from winbuild builds" To use the winbuild build system you must acknowledge this warning by setting command line option WINBUILD_ACKNOWLEDGE_DEPRECATED=yes Makefile.vc(37) : fatal error U1050: The user must acknowledge the deprecation warning to continue. Stop. so building with WINBUILD_ACKNOWLEDGE_DEPRECATED=yes for now until the migration from winbuild is done Change-Id: I5d357b20a93863c81f7637f43abbf7d3167f6dd2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/181173 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
39 lines
1.2 KiB
Groff
39 lines
1.2 KiB
Groff
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 @@
|
|
# endif /* UNDER_CE */
|
|
#endif /* !CURL_OS */
|
|
|
|
+#define CURL_DISABLE_DICT 1
|
|
+#define CURL_DISABLE_FILE 1
|
|
+#define CURL_DISABLE_FTP 1
|
|
+#define CURL_DISABLE_GOPHER 1
|
|
+#undef CURL_DISABLE_HTTP
|
|
+#define CURL_DISABLE_IMAP 1
|
|
+#define CURL_DISABLE_LDAP 1
|
|
+#define CURL_DISABLE_LDAPS 1
|
|
+#define CURL_DISABLE_MQTT 1
|
|
+#define CURL_DISABLE_POP3 1
|
|
+#define CURL_DISABLE_RTSP 1
|
|
+#define CURL_DISABLE_SMB 1
|
|
+#define CURL_DISABLE_SMTP 1
|
|
+#define CURL_DISABLE_TELNET 1
|
|
+#define CURL_DISABLE_TFTP 1
|
|
+
|
|
/* ---------------------------------------------------------------- */
|
|
/* Windows CE */
|
|
/* ---------------------------------------------------------------- */
|
|
--- curl/winbuild/MakefileBuild.vc.orig 2017-10-23 23:41:21.393200000 +0200
|
|
+++ curl/winbuild/MakefileBuild.vc 2017-10-23 23:34:16.028000000 +0200
|
|
@@ -562,7 +562,7 @@
|
|
|
|
EXE_OBJS = $(CURL_OBJS) $(CURL_DIROBJ)\curl.res
|
|
|
|
-all : $(TARGET) $(PROGRAM_NAME)
|
|
+all : $(TARGET)
|
|
|
|
package: $(TARGET)
|
|
@cd $(DIRDIST)
|