Skip to content

Commit d15c411

Browse files
committed
Update dependencies to
- jemalloc-5.3.0 - openssl-3.1.2 - unbound-1.18.0 - nghttp2-1.55.1 - curl-8.2.1
1 parent 124befd commit d15c411

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

deps-src/Makefile

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ distclean:
66
- rm -fr ../deps/*
77

88
../deps/lib/libjemalloc.a:
9-
wget -q -O - https://github.com/jemalloc/jemalloc/releases/download/5.2.1/jemalloc-5.2.1.tar.bz2 | tar -xvj
10-
cd jemalloc-5.2.1 && ./configure --prefix=$(CURDIR)/../deps --disable-cxx && make all install
11-
@rm -fr jemalloc-5.2.1
9+
wget -q -O - https://github.com/jemalloc/jemalloc/releases/download/5.3.0/jemalloc-5.3.0.tar.bz2 | tar -xvj
10+
cd jemalloc-5.3.0 && ./configure --prefix=$(CURDIR)/../deps --disable-cxx && make all install
11+
@rm -fr jemalloc-5.3.0
1212

1313
../deps/lib/libssl.a:
14-
wget -q -O - https://www.openssl.org/source/openssl-1.1.1t.tar.gz | tar -xvz
15-
cd openssl-1.1.1t && ./config --prefix=$(CURDIR)/../deps --openssldir=$(CURDIR)/../deps && make all install
16-
@rm -fr openssl-1.1.1t
14+
wget -q -O - https://www.openssl.org/source/openssl-3.1.2.tar.gz | tar -xvz
15+
cd openssl-3.1.2 && ./config no-tests --prefix=$(CURDIR)/../deps --libdir=lib --openssldir=$(CURDIR)/../deps && make all install
16+
@rm -fr openssl-3.1.2
1717

1818
../deps/lib/libzlog.a:
1919
wget -q -O - https://github.com/HardySimpson/zlog/archive/1.2.15.tar.gz | tar -xvz
@@ -31,16 +31,16 @@ distclean:
3131
@rm -fr libevent-2.1.12-stable
3232

3333
../deps/lib/libunbound.a:
34-
wget -q -O - https://www.nlnetlabs.nl/downloads/unbound/unbound-1.17.1.tar.gz | tar -xvz
35-
cd unbound-1.17.1 && ./configure --prefix=$(CURDIR)/../deps --disable-flto --enable-pthreads --enable-event-api --with-libevent=$(CURDIR)/../deps --with-ssl=$(CURDIR)/../deps --with-libunbound-only && make all install
36-
@rm -fr unbound-1.17.1
34+
wget -q -O - https://www.nlnetlabs.nl/downloads/unbound/unbound-1.18.0.tar.gz | tar -xvz
35+
cd unbound-1.18.0 && ./configure --prefix=$(CURDIR)/../deps --disable-flto --enable-pthreads --enable-event-api --with-libevent=$(CURDIR)/../deps --with-ssl=$(CURDIR)/../deps --with-libunbound-only && make all install
36+
@rm -fr unbound-1.18.0
3737

3838
../deps/lib/libnghttp2.a:
39-
wget -q -O - https://github.com/nghttp2/nghttp2/releases/download/v1.43.0/nghttp2-1.43.0.tar.bz2 | tar -xvj
40-
cd nghttp2-1.43.0 && ./configure --prefix=$(CURDIR)/../deps --enable-lib-only && make all install
41-
@rm -fr nghttp2-1.43.0
39+
wget -q -O - https://github.com/nghttp2/nghttp2/releases/download/v1.55.1/nghttp2-1.55.1.tar.bz2 | tar -xvj
40+
cd nghttp2-1.55.1 && ./configure --prefix=$(CURDIR)/../deps --enable-lib-only && make all install
41+
@rm -fr nghttp2-1.55.1
4242

4343
../deps/lib/libcurl.a:
44-
wget -q -O - https://curl.haxx.se/download/curl-7.75.0.tar.gz | tar -xvz
45-
cd curl-7.75.0 && ./configure --prefix=$(CURDIR)/../deps --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt --with-nghttp2=$(CURDIR)/../deps --with-ssl=$(CURDIR)/../deps && make all install
46-
@rm -fr curl-7.75.0
44+
wget -q -O - https://curl.haxx.se/download/curl-8.2.1.tar.gz | tar -xvz
45+
cd curl-8.2.1 && ./configure --prefix=$(CURDIR)/../deps --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt --with-nghttp2=$(CURDIR)/../deps --with-ssl=$(CURDIR)/../deps && make all install
46+
@rm -fr curl-8.2.1

0 commit comments

Comments
 (0)