[bind9] Add libnghttp2 to Dockerfile and build.sh for main branch (#5124)

This commit is contained in:
Ondřej Surý 2021-02-05 15:12:04 +01:00 committed by GitHub
parent 6e38a76220
commit 1a577209fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -23,9 +23,10 @@ RUN apt-get -y install \
autotools-dev \
bison \
build-essential \
libnghttp2-dev \
libssl-dev \
libtool \
libtool-bin \
libssl-dev \
libuv1-dev \
pkg-config \
zip

View File

@ -23,7 +23,7 @@ autoreconf -fi
LIBISC_CFLAGS="-Ilib/isc/unix/include -Ilib/isc/pthreads/include -Ilib/isc/include"
LIBDNS_CFLAGS="-Ilib/dns/include"
LIBISC_LIBS="lib/isc/.libs/libisc.a -Wl,-Bstatic -lssl -lcrypto -luv -Wl,-Bdynamic"
LIBISC_LIBS="lib/isc/.libs/libisc.a -Wl,-Bstatic -lssl -lcrypto -luv -lnghttp2 -Wl,-Bdynamic"
LIBDNS_LIBS="lib/dns/.libs/libdns.a -Wl,-Bstatic -lcrypto -Wl,-Bdynamic"
for fuzzer in fuzz/*.c; do