blob: 4a9505e58471c652b27ebe0a4df3761673c40ff6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-3.0-or-later
# shellcheck source=packaging/makeself/functions.sh
. "$(dirname "${0}")/../functions.sh" "${@}" || exit 1
fetch "curl-7.73.0" "https://curl.haxx.se/download/curl-7.73.0.tar.gz"
export CFLAGS="-I/openssl-static/include"
export LDFLAGS="-static -L/openssl-static/lib"
export PKG_CONFIG="pkg-config --static"
export PKG_CONFIG_PATH="/openssl-static/lib/pkgconfig"
run autoreconf -fi
run ./configure \
--prefix="${NETDATA_INSTALL_PATH}" \
--enable-optimize \
--disable-shared \
--enable-static \
--enable-http \
--enable-proxy \
--enable-ipv6 \
--enable-cookies \
--with-ca-fallback
# Curl autoconf does not honour the curl_LDFLAGS environment variable
run sed -i -e "s/curl_LDFLAGS =/curl_LDFLAGS = -all-static/" src/Makefile
run make clean
run make -j "$(nproc)"
run make install
if [ ${NETDATA_BUILD_WITH_DEBUG} -eq 0 ]; then
run strip "${NETDATA_INSTALL_PATH}"/bin/curl
fi
|