diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-08-12 09:19:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-08-12 09:19:14 +0000 |
commit | ecc5838aff97659dd679f03edc8838205f868848 (patch) | |
tree | 85848124743d10e50adce2e36e3566b3d37b4ce7 /README.md | |
parent | Adding upstream version 2.6.0. (diff) | |
download | dnsperf-ecc5838aff97659dd679f03edc8838205f868848.tar.xz dnsperf-ecc5838aff97659dd679f03edc8838205f868848.zip |
Adding upstream version 2.7.0.upstream/2.7.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | README.md | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -46,25 +46,26 @@ environment with autoconf, automake, libtool and pkgconfig. - [OpenSSL](https://www.openssl.org/) - for TSIG support - [Concurrency Kit](http://concurrencykit.org/) - for atomic operations - [LDNS](https://nlnetlabs.nl/projects/ldns/about/) - optional for dynamic update support +- [nghttp2](https://nghttp2.org) - for DNS-over-HTTPS support using HTTP/2 To install the dependencies under Debian/Ubuntu: ``` -apt-get install -y libssl-dev libldns-dev libck-dev +apt-get install -y libssl-dev libldns-dev libck-dev libnghttp2-dev ``` To install the dependencies under CentOS (with EPEL enabled): ``` -yum install -y openssl-devel ldns-devel ck-devel +yum install -y openssl-devel ldns-devel ck-devel libnghttp2-devel ``` To install the dependencies under FreeBSD 12+ using `pkg`: ``` -pkg install -y openssl ldns concurrencykit +pkg install -y openssl ldns concurrencykit libnghttp2 ``` To install the dependencies under OpenBSD 6+ using `pkg_add`: ``` -pkg_add libldns +pkg_add libldns nghttp2 ``` ## Building from source tarball |