]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
rec: sync Dockerfile build options with packages 14917/head
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Tue, 3 Dec 2024 08:25:19 +0000 (09:25 +0100)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Tue, 3 Dec 2024 08:28:23 +0000 (09:28 +0100)
Fixes #14915

Before:
Features: libcrypto-ecdsa libcrypto-ed25519 libcrypto-ed448 libcrypto-eddsa lua nod protobuf dnstap-framestream sodium curl scrypt

After:
Features: libcrypto-ecdsa libcrypto-ed25519 libcrypto-ed448 libcrypto-eddsa lua nod protobuf dnstap-framestream snmp sodium curl DoT scrypt

Dockerfile-recursor

index 0f700781ee224aac33602010af45cabbc1ce1b19..0a083917fd7f7f7e56e03dd6e6ed6f9f3619759f 100644 (file)
@@ -56,7 +56,13 @@ RUN mkdir /build && \
     LUAVER=$([ -z "${NO_LUA_JIT##*$(dpkg --print-architecture)*}" ] && echo 'lua5.3' || echo 'luajit') && \
     apt-get install -y lib${LUAVER}-*dev && \
     ./configure \
+      --with-libcap \
+      --with-libsodium \
       --with-lua=${LUAVER} \
+      --with-net-snmp \
+      --enable-dns-over-tls \
+      --enable-dnstap \
+      --enable-nod \
       LDFLAGS=-rdynamic \
       --sysconfdir=/etc/powerdns \
       --enable-option-checking=fatal && \