From: Remi Gacogne Date: Thu, 15 May 2025 08:42:17 +0000 (+0200) Subject: dnsdist: Switch eBPF support to `auto` when building with `meson` X-Git-Tag: dnsdist-2.0.0-alpha2~18^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a95f7fd1cef6c2f59caeb6118706f1f586e01226;p=thirdparty%2Fpdns.git dnsdist: Switch eBPF support to `auto` when building with `meson` It used to be that way with `autotools` and I don't see any good reason to disable it by default. --- diff --git a/pdns/dnsdistdist/meson_options.txt b/pdns/dnsdistdist/meson_options.txt index b245eb775a..5635782b2c 100644 --- a/pdns/dnsdistdist/meson_options.txt +++ b/pdns/dnsdistdist/meson_options.txt @@ -35,7 +35,7 @@ option('quiche', type: 'feature', value: 'auto', description: 'Enable Quiche lib option('re2', type: 'feature', value: 'auto', description: 'Enable re2 for regular expressions') option('xsk', type: 'feature', value: 'auto', description: 'Enable AF_XDP / XSK') option('fuzz-targets', type: 'boolean', value: false, description: 'Enable fuzzing targets') -option('ebpf', type: 'feature', value: 'disabled', description: 'Enable eBPF support') +option('ebpf', type: 'feature', value: 'auto', description: 'Enable eBPF support') option('fuzzer_ldflags', type: 'string', value: '', description: 'Linker flags used for the fuzzing targets (a path to the libFuzzer static library, for example)') option('yaml', type: 'feature', value: 'disabled', description: 'Enable YAML configuration') option('man-pages', type: 'boolean', value: true, description: 'Generate man pages')