[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: yadifa: Explicitly enable DNSSEC & caching.
From: |
Tobias Geerinckx-Rice |
Subject: |
02/02: gnu: yadifa: Explicitly enable DNSSEC & caching. |
Date: |
Fri, 23 Dec 2016 22:54:08 +0000 (UTC) |
nckx pushed a commit to branch master
in repository guix.
commit 4d2fd1c016c1ffeb613692949c9557083f946c82
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Fri Dec 23 23:52:27 2016 +0100
gnu: yadifa: Explicitly enable DNSSEC & caching.
* gnu/packages/dns.scm (yadifa)[arguments]: Add configure flags to
consistently enable the ‘nsec’, ‘nsec3’, ‘tsig’, and ‘caching’ features.
---
gnu/packages/dns.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm
index 175864f..55cfc02 100644
--- a/gnu/packages/dns.scm
+++ b/gnu/packages/dns.scm
@@ -285,6 +285,8 @@ asynchronous fashion.")
#:configure-flags (list "--sysconfdir=/etc" "--localstatedir=/var"
"--enable-shared" "--disable-static"
"--enable-messages" "--enable-ctrl"
+ "--enable-nsec" "--enable-nsec3"
+ "--enable-tsig" "--enable-caching"
;; NSID is a rarely-used debugging aid, that
also
;; causes the build to fail. Just disable it.
"--disable-nsid")))