From 70d8e28a56b19fade59016434ca34740fe794542 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Thu, 26 Dec 2019 20:20:41 +0100 Subject: [PATCH] Remove --enable-event-api in Unbound compilation Spotted by @mibere --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 506a7fe..7ae4740 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN apt-get update; apt-get install -qy --no-install-recommends $BUILD_DEPS && \ groupadd _unbound && \ useradd -g _unbound -s /etc -d /dev/null _unbound && \ ./configure --prefix=/opt/unbound --with-pthreads \ - --with-username=_unbound --with-libevent --enable-event-api && \ + --with-username=_unbound --with-libevent && \ make -j"$(getconf _NPROCESSORS_ONLN)" install && \ mv /opt/unbound/etc/unbound/unbound.conf /opt/unbound/etc/unbound/unbound.conf.example && \ apt-get -qy purge $BUILD_DEPS && apt-get -qy autoremove && \