From 048da7bdaad8b1c8d04e2dde062337258e90fc97 Mon Sep 17 00:00:00 2001 From: Adrian Almenar Date: Wed, 9 Dec 2020 12:31:50 +0100 Subject: [PATCH 1/2] This should fix debian bug #973793 --- debian/control | 1 + debian/rules | 1 + 2 files changed, 2 insertions(+) diff --git a/debian/control b/debian/control index 35a08273..13a061c2 100644 --- a/debian/control +++ b/debian/control @@ -15,6 +15,7 @@ Build-Depends: libbsd-dev (>= 0.8.1~) [!linux-any], libevent-dev, libexpat1-dev, + libnghttp2-dev, libprotobuf-c-dev , libssl-dev , libsystemd-dev , diff --git a/debian/rules b/debian/rules index ef02e3a2..0d70e069 100755 --- a/debian/rules +++ b/debian/rules @@ -39,6 +39,7 @@ ifneq (,$(filter unbound unbound-anchor unbound-host,$(DOPACKAGES))) --with-pidfile=/run/unbound.pid \ --with-rootkey-file=/var/lib/unbound/root.key \ --with-libevent \ + --with-libnghttp2 \ --with-pythonmodule \ --enable-subnet \ --enable-dnstap \ -- GitLab From c241d2cebdec6b85ba89ff30efbe6bbc599198e0 Mon Sep 17 00:00:00 2001 From: Adrian Almenar Date: Thu, 10 Dec 2020 12:59:48 +0100 Subject: [PATCH 2/2] Enable CacheDB and the possibility to use Redis as a cache backend --- debian/control | 1 + debian/rules | 2 ++ 2 files changed, 3 insertions(+) diff --git a/debian/control b/debian/control index 13a061c2..574ea5e3 100644 --- a/debian/control +++ b/debian/control @@ -15,6 +15,7 @@ Build-Depends: libbsd-dev (>= 0.8.1~) [!linux-any], libevent-dev, libexpat1-dev, + libhiredis-dev, libnghttp2-dev, libprotobuf-c-dev , libssl-dev , diff --git a/debian/rules b/debian/rules index 0d70e069..fb9c897a 100755 --- a/debian/rules +++ b/debian/rules @@ -39,8 +39,10 @@ ifneq (,$(filter unbound unbound-anchor unbound-host,$(DOPACKAGES))) --with-pidfile=/run/unbound.pid \ --with-rootkey-file=/var/lib/unbound/root.key \ --with-libevent \ + --with-libhiredis \ --with-libnghttp2 \ --with-pythonmodule \ + --enable-cachedb \ --enable-subnet \ --enable-dnstap \ --enable-systemd \ -- GitLab