1 | # $Id: Makefile.kmk 101410 2023-10-11 06:53:05Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the libcurl library.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2009-2023 Oracle and/or its affiliates.
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox base platform packages, as
|
---|
10 | # available from https://www.virtualbox.org.
|
---|
11 | #
|
---|
12 | # This program is free software; you can redistribute it and/or
|
---|
13 | # modify it under the terms of the GNU General Public License
|
---|
14 | # as published by the Free Software Foundation, in version 3 of the
|
---|
15 | # License.
|
---|
16 | #
|
---|
17 | # This program is distributed in the hope that it will be useful, but
|
---|
18 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | # General Public License for more details.
|
---|
21 | #
|
---|
22 | # You should have received a copy of the GNU General Public License
|
---|
23 | # along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | #
|
---|
25 | # SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | #
|
---|
27 |
|
---|
28 | SUB_DEPTH = ../../..
|
---|
29 | include $(KBUILD_PATH)/subheader.kmk
|
---|
30 | VBOX_PATH_LIBCURL = $(PATH_ROOT)/src/libs/curl-8.4.0
|
---|
31 |
|
---|
32 | LIBRARIES += VBox-libcurl
|
---|
33 | VBox-libcurl_TEMPLATE = VBoxR3RuntimeDllNonPedantic
|
---|
34 | VBox-libcurl_SDKS = VBoxZlib VBoxOpenSslStatic
|
---|
35 | VBox-libcurl_DEFS = \
|
---|
36 | CURL_STATICLIB \
|
---|
37 | OPENSSL_NO_ENGINE \
|
---|
38 | BUILDING_LIBCURL \
|
---|
39 | HAVE_CONFIG_H \
|
---|
40 | CURL_DISABLE_ALTSVC \
|
---|
41 | CURL_DISABLE_GOPHER \
|
---|
42 | CURL_DISABLE_FILE \
|
---|
43 | CURL_DISABLE_DICT \
|
---|
44 | CURL_DISABLE_HSTS \
|
---|
45 | CURL_DISABLE_IMAP \
|
---|
46 | CURL_DISABLE_MQTT \
|
---|
47 | CURL_DISABLE_NTLM \
|
---|
48 | CURL_DISABLE_POP3 \
|
---|
49 | CURL_DISABLE_RTSP \
|
---|
50 | CURL_DISABLE_SMTP \
|
---|
51 | CURL_DISABLE_TELNET
|
---|
52 | VBox-libcurl_CFLAGS.win += -wd4826 # formdata.c(390) : warning C4826: Conversion from 'char *' to 'curl_off_t' is sign-extended. This may cause unexpected runtime behavior.
|
---|
53 | VBox-libcurl_CFLAGS.win += -wd4310 # warnless.c(189) : warning C4310: cast truncates constant value
|
---|
54 | VBox-libcurl_CFLAGS.win += -wd4090 # openssl/lhash.h(198) : warning C4090: 'function' : different 'const' qualifiers
|
---|
55 | VBox-libcurl_CFLAGS.win += -wd4060 # curl-7.87.0/lib/connect.c(1588): warning C4060: switch statement contains no 'case' or 'default' labels
|
---|
56 | if "$(VBOX_VCC_TOOL_STEM)" >= "VCC140"
|
---|
57 | VBox-libcurl_CFLAGS.win += -wd4774 # mprintf.c(949): warning C4774: 'sprintf' : format string expected in argument 2 is not a string literal
|
---|
58 | endif
|
---|
59 | VBox-libcurl_INCS = \
|
---|
60 | include \
|
---|
61 | $(VBox-libcurl_0_OUTDIR)/lib \
|
---|
62 | $(VBOX_PATH_LIBCURL)/lib
|
---|
63 | VBox-libcurl_SOURCES = \
|
---|
64 | lib/base64.c \
|
---|
65 | lib/bufq.c \
|
---|
66 | lib/bufref.c \
|
---|
67 | lib/conncache.c \
|
---|
68 | lib/connect.c \
|
---|
69 | lib/content_encoding.c \
|
---|
70 | lib/cookie.c \
|
---|
71 | lib/cf-haproxy.c \
|
---|
72 | lib/cf-h1-proxy.c \
|
---|
73 | lib/cf-https-connect.c \
|
---|
74 | lib/cf-socket.c \
|
---|
75 | lib/cfilters.c \
|
---|
76 | lib/curl_addrinfo.c \
|
---|
77 | lib/curl_get_line.c \
|
---|
78 | lib/curl_fnmatch.c \
|
---|
79 | lib/curl_memrchr.c \
|
---|
80 | lib/curl_range.c \
|
---|
81 | lib/curl_sasl.c \
|
---|
82 | lib/curl_trc.c \
|
---|
83 | lib/doh.c \
|
---|
84 | lib/dynbuf.c \
|
---|
85 | lib/dynhds.c \
|
---|
86 | lib/easy.c \
|
---|
87 | lib/escape.c \
|
---|
88 | lib/fileinfo.c \
|
---|
89 | lib/fopen.c \
|
---|
90 | lib/formdata.c \
|
---|
91 | lib/ftp.c \
|
---|
92 | lib/ftplistparser.c \
|
---|
93 | lib/getenv.c \
|
---|
94 | lib/getinfo.c \
|
---|
95 | lib/hash.c \
|
---|
96 | lib/headers.c \
|
---|
97 | lib/hmac.c \
|
---|
98 | lib/hostip.c \
|
---|
99 | lib/hostip4.c \
|
---|
100 | lib/hostip6.c \
|
---|
101 | lib/hostsyn.c \
|
---|
102 | lib/http.c \
|
---|
103 | lib/http1.c \
|
---|
104 | lib/http_aws_sigv4.c \
|
---|
105 | lib/http_chunks.c \
|
---|
106 | lib/http_digest.c \
|
---|
107 | lib/http_proxy.c \
|
---|
108 | lib/if2ip.c \
|
---|
109 | lib/idn.c \
|
---|
110 | lib/inet_ntop.c \
|
---|
111 | lib/inet_pton.c \
|
---|
112 | lib/llist.c \
|
---|
113 | lib/md5.c \
|
---|
114 | lib/mime.c \
|
---|
115 | lib/mprintf.c \
|
---|
116 | lib/multi.c \
|
---|
117 | lib/netrc.c \
|
---|
118 | lib/nonblock.c \
|
---|
119 | lib/noproxy.c \
|
---|
120 | lib/parsedate.c \
|
---|
121 | lib/pingpong.c \
|
---|
122 | lib/progress.c \
|
---|
123 | lib/rand.c \
|
---|
124 | lib/rename.c \
|
---|
125 | lib/select.c \
|
---|
126 | lib/sendf.c \
|
---|
127 | lib/setopt.c \
|
---|
128 | lib/sha256.c \
|
---|
129 | lib/share.c \
|
---|
130 | lib/slist.c \
|
---|
131 | lib/socketpair.c \
|
---|
132 | lib/socks.c \
|
---|
133 | lib/speedcheck.c \
|
---|
134 | lib/splay.c \
|
---|
135 | lib/strcase.c \
|
---|
136 | lib/strdup.c \
|
---|
137 | lib/strerror.c \
|
---|
138 | lib/strtok.c \
|
---|
139 | lib/strtoofft.c \
|
---|
140 | lib/tftp.c \
|
---|
141 | lib/timediff.c \
|
---|
142 | lib/timeval.c \
|
---|
143 | lib/transfer.c \
|
---|
144 | lib/url.c \
|
---|
145 | lib/urlapi.c \
|
---|
146 | lib/vtls/openssl.c \
|
---|
147 | lib/vtls/vtls.c \
|
---|
148 | lib/warnless.c \
|
---|
149 | lib/version.c \
|
---|
150 | lib/vauth/digest.c \
|
---|
151 | lib/vauth/vauth.c \
|
---|
152 | lib/vquic/vquic.c \
|
---|
153 | lib/vtls/hostcheck.c \
|
---|
154 | lib/vtls/keylog.c
|
---|
155 | VBox-libcurl_SOURCES.win = \
|
---|
156 | lib/curl_multibyte.c \
|
---|
157 | lib/system_win32.c \
|
---|
158 | lib/version_win32.c
|
---|
159 | VBox-libcurl_SOURCES.darwin = \
|
---|
160 | lib/macos.c
|
---|
161 |
|
---|
162 | # Use checked in config.h instead of running ./configure for it.
|
---|
163 | VBox-libcurl_DEPS = $(VBox-libcurl_0_OUTDIR)/lib/curl_config.h
|
---|
164 | VBox-libcurl_CLEAN = $(VBox-libcurl_DEPS)
|
---|
165 | $$(VBox-libcurl_0_OUTDIR)/lib/curl_config.h: $(VBOX_PATH_LIBCURL)/config.h.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) | $$(dir $$@)
|
---|
166 | $(INSTALL_STAGING) -- "$^" "$@"
|
---|
167 |
|
---|
168 | ifdef VBOX_WITH_32_ON_64_MAIN_API # 32-bit edition.
|
---|
169 | LIBRARIES += VBox-libcurl-x86
|
---|
170 | VBox-libcurl-x86_TEMPLATE = VBoxR3DllNonPedantic-x86
|
---|
171 | VBox-libcurl-x86_EXTENDS = VBox-libcurl
|
---|
172 | VBox-libcurl-x86_INCS = \
|
---|
173 | include \
|
---|
174 | $(VBox-libcurl-x86_0_OUTDIR)/lib \
|
---|
175 | $(VBOX_PATH_LIBCURL)/lib
|
---|
176 | VBox-libcurl-x86_DEPS = $(VBox-libcurl-x86_0_OUTDIR)/lib/curl_config.h
|
---|
177 | VBox-libcurl-x86_CLEAN = $(VBox-libcurl-x86_DEPS)
|
---|
178 | $$(VBox-libcurl-x86_0_OUTDIR)/lib/curl_config.h: $(VBOX_PATH_LIBCURL)/config.h.$(KBUILD_TARGET).x86 | $$(dir $$@)
|
---|
179 | $(INSTALL_STAGING) -- "$^" "$@"
|
---|
180 |
|
---|
181 | endif
|
---|
182 |
|
---|
183 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
184 |
|
---|