curl: upgrade to release 7.78.0
[LibreOffice.git] / external / curl / ExternalProject_curl.mk
blob81886b36fbc5277c3caccb96f11ca50085a93cdd
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 $(eval $(call gb_ExternalProject_ExternalProject,curl))
12 $(eval $(call gb_ExternalProject_use_externals,curl,\
13 $(if $(ENABLE_NSS),nss3) \
14 zlib \
17 $(eval $(call gb_ExternalProject_register_targets,curl,\
18 build \
21 ifneq ($(OS),WNT)
23 curl_CPPFLAGS :=
24 curl_LDFLAGS := $(if $(filter LINUX FREEBSD,$(OS)),-Wl$(COMMA)-z$(COMMA)origin -Wl$(COMMA)-rpath$(COMMA)\$$$$ORIGIN)
26 ifneq ($(OS),ANDROID)
27 ifneq ($(SYSBASE),)
28 curl_CPPFLAGS += -I$(SYSBASE)/usr/include
29 curl_LDFLAGS += -L$(SYSBASE)/usr/lib
30 endif
31 endif
33 # there are 2 include paths, the other one is passed to --with-nss below
34 ifeq ($(SYSTEM_NSS),)
35 curl_CPPFLAGS += -I$(call gb_UnpackedTarball_get_dir,nss)/dist/public/nss
36 endif
38 # use --with-secure-transport on Mac OS X >10.5 and iOS to get a native UI for SSL certs for CMIS usage
39 # use --with-nss only on platforms other than Mac OS X and iOS
40 $(call gb_ExternalProject_get_state_target,curl,build):
41 $(call gb_ExternalProject_run,build,\
42 ./configure \
43 $(if $(filter IOS MACOSX,$(OS)),\
44 --with-secure-transport,\
45 $(if $(ENABLE_NSS),--with-nss$(if $(SYSTEM_NSS),,="$(call gb_UnpackedTarball_get_dir,nss)/dist/out"),--without-nss)) \
46 --without-ssl --without-gnutls --without-polarssl --without-cyassl --without-axtls --without-mbedtls \
47 --enable-ftp --enable-http --enable-ipv6 \
48 --without-libidn2 --without-libpsl --without-librtmp \
49 --without-libssh2 --without-metalink --without-nghttp2 \
50 --without-libssh --without-brotli \
51 --without-ngtcp2 --without-quiche \
52 --without-zstd --without-hyper --without-gsasl --without-gssapi \
53 --disable-mqtt --disable-ares \
54 --disable-dict --disable-file --disable-gopher --disable-imap \
55 --disable-ldap --disable-ldaps --disable-manual --disable-pop3 \
56 --disable-rtsp --disable-smb --disable-smtp --disable-telnet \
57 --disable-tftp \
58 $(if $(filter LINUX,$(OS)),--without-ca-bundle --without-ca-path) \
59 $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \
60 $(if $(filter TRUE,$(DISABLE_DYNLOADING)),--disable-shared,--disable-static) \
61 $(if $(ENABLE_DEBUG),--enable-debug) \
62 $(if $(verbose),--disable-silent-rules,--enable-silent-rules) \
63 $(if $(filter MACOSX,$(OS)),--prefix=/@.__________________________________________________OOO) \
64 $(if $(filter MACOSX,$(OS)),CFLAGS='$(CFLAGS) \
65 -mmacosx-version-min=$(MAC_OS_X_VERSION_MIN_REQUIRED_DOTS)') \
66 CPPFLAGS='$(curl_CPPFLAGS)' \
67 LDFLAGS='$(curl_LDFLAGS)' \
68 ZLIB_CFLAGS='$(ZLIB_CFLAGS)' ZLIB_LIBS='$(ZLIB_LIBS)' \
69 && cd lib \
70 && $(MAKE) \
73 else ifeq ($(COM),MSC)
75 $(eval $(call gb_ExternalProject_use_nmake,curl,build))
77 $(call gb_ExternalProject_get_state_target,curl,build):
78 $(call gb_ExternalProject_run,build,\
79 nmake -f Makefile.vc \
80 mode=dll \
81 VC=12 \
82 $(if $(filter X86_64,$(CPUNAME)),MACHINE=x64,MACHINE=x86) \
83 GEN_PDB=$(if $(gb_SYMBOL),yes,no) \
84 DEBUG=$(if $(MSVC_USE_DEBUG_RUNTIME),yes,no) \
85 ENABLE_IPV6=yes \
86 ENABLE_SSPI=yes \
87 ENABLE_WINSSL=yes \
88 ,winbuild)
90 endif
92 # vim: set noet sw=4 ts=4: