From 4fc2f55f761d71aae1f145d5aa94ba929cc39676 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 11:34:30 +0200 Subject: Adding upstream version 1.7.3. Signed-off-by: Daniel Baumann --- m4/pdns_with_ebpf.m4 | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 m4/pdns_with_ebpf.m4 (limited to 'm4/pdns_with_ebpf.m4') diff --git a/m4/pdns_with_ebpf.m4 b/m4/pdns_with_ebpf.m4 new file mode 100644 index 0000000..760bd65 --- /dev/null +++ b/m4/pdns_with_ebpf.m4 @@ -0,0 +1,38 @@ +AC_DEFUN([PDNS_WITH_EBPF],[ + AC_MSG_CHECKING([if we have eBPF support]) + AC_ARG_WITH([ebpf], + AS_HELP_STRING([--with-ebpf],[enable eBPF support @<:@default=auto@:>@]), + [with_ebpf=$withval], + [with_ebpf=auto], + ) + AC_MSG_RESULT([$with_ebpf]) + + AS_IF([test "x$with_ebpf" != "xno"], [ + AS_IF([test "x$with_ebpf" = "xyes" -o "x$with_ebpf" = "xauto"], [ + AC_CHECK_HEADERS([linux/bpf.h], bpf_headers=yes, bpf_headers=no) + ]) + ]) + AS_IF([test "x$with_ebpf" = "xyes"], [ + AS_IF([test x"$bpf_headers" = "no"], [ + AC_MSG_ERROR([EBPF support requested but required eBPF headers were not found]) + ]) + ]) + AM_CONDITIONAL([HAVE_EBPF], [test x"$bpf_headers" = "xyes" ]) + AS_IF([test x"$bpf_headers" = "xyes" ], + [AC_CHECK_DECL(BPF_FUNC_tail_call, + [ AC_CHECK_DECL(SO_ATTACH_BPF, + [ AC_DEFINE([HAVE_EBPF], [1], [Define if using eBPF.]) ], + [ AS_IF([test "x$with_ebpf" = "xyes"], [ + AC_MSG_ERROR([EBPF support requested but SO_ATTACH_BPF not found]) + ])], + [#include + ] + )], + [ AS_IF([test "x$with_ebpf" = "xyes"], [ + AC_MSG_ERROR([EBPF support requested but BPF_FUNC_tail_call not found in the eBPF headers]) + ])], + [#include + ] + )] + ) +]) -- cgit v1.2.3