dnsdist: update to 1.9.0

Signed-off-by: Peter van Dijk <peter.van.dijk@powerdns.com>
This commit is contained in:
Peter van Dijk 2024-02-15 16:35:28 +01:00 committed by Rosen Penev
parent 35ba14e50c
commit aa4fb5151a
2 changed files with 4 additions and 15 deletions

View File

@ -28,14 +28,6 @@ menu "Configuration"
"Enables DNS over HTTPS Support for dnsdist"
default y
config DNSDIST_DNS_OVER_HTTPS_OUTGOING
depends on DNSDIST_OPENSSL
depends on !DNSDIST_NOSSL
bool "Outgoing DNS over HTTPS Support"
help
"Enables Outgoing DNS over HTTPS Support for dnsdist"
default y
config DNSDIST_DNS_OVER_TLS
depends on !DNSDIST_NOSSL
bool "DNS over TLS Support"

View File

@ -1,12 +1,12 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=dnsdist
PKG_VERSION:=1.8.3
PKG_RELEASE:=2
PKG_VERSION:=1.9.0
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=https://downloads.powerdns.com/releases/
PKG_HASH:=858323f2ed5181488bb7558fbf4f84ec7198600b070b2c5375d15d40695727f4
PKG_HASH:=16bab15cad9245571806398a8e4a5dc32a92b6bb60e617c12fe958c945889c7c
PKG_MAINTAINER:=Peter van Dijk <peter.van.dijk@powerdns.com>
PKG_LICENSE:=GPL-2.0-only
@ -75,9 +75,8 @@ define Package/dnsdist
+DNSDIST_LIBEDIT:libedit \
+DNSDIST_DNSTAP:libfstrm \
+DNSDIST_GNUTLS:libgnutls \
+DNSDIST_DNS_OVER_HTTPS:libh2o-evloop \
+DNSDIST_DNS_OVER_HTTPS:libnghttp2 \
+DNSDIST_NET_SNMP:libnetsnmp \
+DNSDIST_DNS_OVER_HTTPS_OUTGOING:libnghttp2 \
+DNSDIST_OPENSSL:libopenssl \
+DNSDIST_SODIUM:libsodium \
+DNSDIST_LMDB:lmdb \
@ -95,7 +94,6 @@ define Package/dnsdist-full
+libedit \
+libfstrm \
+libgnutls \
+libh2o-evloop \
+libnetsnmp \
+libnghttp2 \
+libopenssl \
@ -165,7 +163,6 @@ CONFIGURE_ARGS+= \
$(if $(call IsEnabled,DNSDIST_IPCIPHER),--enable,--disable)-ipcipher \
$(if $(call IsEnabled,DNSDIST_EBPF),--with,--without)-ebpf \
$(if $(call IsEnabled,DNSDIST_DNS_OVER_HTTPS),--enable-dns-over-https,) \
$(if $(call IsEnabled,DNSDIST_DNS_OVER_HTTPS_OUTGOING),--with,--without)-nghttp2
$(eval $(call BuildPackage,dnsdist))
$(eval $(call BuildPackage,dnsdist-full))