dnsdist: add dependency on tinycdb
authorSebastian Kemper <sebastian_ml@gmx.net>
Sun, 15 Dec 2019 09:49:20 +0000 (10:49 +0100)
committerSebastian Kemper <sebastian_ml@gmx.net>
Sun, 15 Dec 2019 09:49:22 +0000 (10:49 +0100)
If libcdb from tinycdb is available dnsdist will link to it. This commit
adds the dependency.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
net/dnsdist/Makefile

index 53a94f6583e5de4ee4e153dd2444e65b9a41d297..217c978de7ed43509751eb51d30281cbafa7c594 100644 (file)
@@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=dnsdist
 PKG_VERSION:=1.4.0
-PKG_RELEASE:=2
+PKG_RELEASE:=3
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
 PKG_SOURCE_URL:=https://downloads.powerdns.com/releases/
@@ -68,7 +68,22 @@ define Package/dnsdist
   CATEGORY:=Network
   SUBMENU:=IP Addresses and Names
   TITLE:=dnsdist DNS-, DOS- and abuse-aware loadbalancer
-  DEPENDS:=+DNSDIST_OPENSSL:libopenssl +DNSDIST_GNUTLS:libgnutls +protobuf +re2 +libcap +libedit +libfstrm +lmdb +lua +boost +libnetsnmp +libatomic +libsodium +DNSDIST_DNS_OVER_HTTPS:libh2o-evloop
+  DEPENDS:= \
+         +DNSDIST_DNS_OVER_HTTPS:libh2o-evloop \
+         +DNSDIST_GNUTLS:libgnutls \
+         +DNSDIST_OPENSSL:libopenssl \
+         +boost \
+         +libatomic \
+         +libcap \
+         +libedit \
+         +libfstrm \
+         +libnetsnmp \
+         +libsodium \
+         +lmdb \
+         +lua \
+         +protobuf \
+         +re2 \
+         +tinycdb
   URL:=https://dnsdist.org/
 endef