You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: deps-src/Makefile
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -6,14 +6,14 @@ distclean:
6
6
- rm -fr ../deps/*
7
7
8
8
../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
12
12
13
13
../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
17
17
18
18
../deps/lib/libzlog.a:
19
19
wget -q -O - https://github.com/HardySimpson/zlog/archive/1.2.15.tar.gz | tar -xvz
@@ -31,16 +31,16 @@ distclean:
31
31
@rm -fr libevent-2.1.12-stable
32
32
33
33
../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
37
37
38
38
../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
42
42
43
43
../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
0 commit comments