diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-03 23:06:34 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-04 13:31:34 +0200 |
commit | 8e71f48c0c817b0ebdaebb8c82c7652e4415c732 (patch) | |
tree | d92274ee9d36b617eb7a2129466002c7c0c42ff8 /gnu/packages/dns.scm | |
parent | f97582dd8a666d4cbfc3064a3509cac8bc5c3ed5 (diff) |
gnu: knot: Unambiguously enable XDP.
* gnu/packages/dns.scm (knot)[arguments]: Replace "--enable-xdp=auto"
with "--enable-xdp=yes" which now supports using the system libbpf.
Diffstat (limited to 'gnu/packages/dns.scm')
-rw-r--r-- | gnu/packages/dns.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm index 9a1737f328..27bc01ff82 100644 --- a/gnu/packages/dns.scm +++ b/gnu/packages/dns.scm @@ -849,7 +849,7 @@ Extensions} (DNSSEC).") "--disable-static" ; static libraries are built by default "--enable-dnstap" ; let tools read/write capture files "--enable-fastparser" ; disabled by default when .git/ exists - "--enable-xdp=auto" ; XXX [=yes] currently means =embedded + "--enable-xdp=yes" "--with-module-dnstap=yes") ; detailed query capturing & logging #:phases (modify-phases %standard-phases |