aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Ondřej Surý <ondrej@sury.org>2020-11-05 15:19:57 +0100
committerGravatar GitHub <noreply@github.com>2020-11-05 06:19:57 -0800
commitaeef1e43f1452aafca43fc0e6f901fa7354fb885 (patch)
tree0d328276e9966fff6c80ab34e3c0072fff4c4efc
parent24e1b863eb65a2a7b3cbabaf6c5aa42e1a37c322 (diff)
[bind9] Drop libltdl build as it was replaced by libuv in the upstream (#4602)
-rw-r--r--projects/bind9/build.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/projects/bind9/build.sh b/projects/bind9/build.sh
index 4340caa6..219cae2a 100644
--- a/projects/bind9/build.sh
+++ b/projects/bind9/build.sh
@@ -18,13 +18,12 @@
# build the project
autoreconf -fi
./configure --disable-shared --enable-static --enable-developer --without-cmocka --without-zlib --disable-linux-caps --prefix="$WORK" --enable-fuzzing=ossfuzz
-(cd libltdl && make -j"$(nproc)" all V=1)
(cd lib/isc && make -j"$(nproc)" all V=1)
(cd lib/dns && make -j"$(nproc)" all V=1)
LIBISC_CFLAGS="-Ilib/isc/unix/include -Ilib/isc/pthreads/include -Ilib/isc/include"
LIBDNS_CFLAGS="-Ilib/dns/include"
-LIBISC_LIBS="libltdl/.libs/libltdlc.a lib/isc/.libs/libisc.a -Wl,-Bstatic -lcrypto -luv -Wl,-Bdynamic"
+LIBISC_LIBS="lib/isc/.libs/libisc.a -Wl,-Bstatic -lcrypto -luv -Wl,-Bdynamic"
LIBDNS_LIBS="lib/dns/.libs/libdns.a -Wl,-Bstatic -lcrypto -Wl,-Bdynamic"
for fuzzer in fuzz/*.c; do