From 33f388112b552e536c2d1cb75541f5b14448f05a Mon Sep 17 00:00:00 2001 From: Jozsef Kadlecsik Date: Sat, 22 Feb 2020 12:51:24 +0100 Subject: Add checking system_power_efficient_wq in the kernel source tree --- configure.ac | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 69a97a9..2b80248 100644 --- a/configure.ac +++ b/configure.ac @@ -206,6 +206,16 @@ AC_CHECK_FUNCS(gethostbyname2) if test "$BUILDKMOD" == "yes" then dnl Check kernel incompatibilities... Ugly like hell + +AC_MSG_CHECKING([kernel source for system_power_efficient_wq]) +if test -f $ksourcedir/include/linux/workqueue.h && \ + $GREP -q 'system_power_efficient_wq' $ksourcedir/include/linux/workqueue.h; then + AC_MSG_RESULT(yes) +else + AC_MSG_RESULT(no) + AC_MSG_ERROR([Kernel source tree is too old, at least v3.11 is required]) +fi + AC_MSG_CHECKING([kernel source for struct xt_action_param]) if test -f $ksourcedir/include/linux/netfilter/x_tables.h && \ $GREP -q 'struct xt_action_param' $ksourcedir/include/linux/netfilter/x_tables.h; then -- cgit v1.2.3 From a2a846e09ab67202b11a4795de93130c85f51756 Mon Sep 17 00:00:00 2001 From: Jozsef Kadlecsik Date: Sat, 22 Feb 2020 12:53:21 +0100 Subject: ipset 7.6 released Signed-off-by: Jozsef Kadlecsik --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 2b80248..0167374 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ dnl Boilerplate -AC_INIT([ipset], [7.5], [kadlec@netfilter.org]) +AC_INIT([ipset], [7.6], [kadlec@netfilter.org]) AC_CONFIG_AUX_DIR([build-aux]) AC_CANONICAL_HOST AC_CONFIG_MACRO_DIR([m4]) -- cgit v1.2.3