From: Jan Engelhardt Date: Wed, 21 Nov 2012 23:05:42 +0000 (+0100) Subject: build: support for Linux 3.7 UAPI X-Git-Tag: v6.16~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0c3884a5e10ede59969383f87320ff06470c1b2d;p=ipset build: support for Linux 3.7 UAPI In Linux 3.7, nfnetlink.h moved below include/uapi/. Make configure recognize that. Furthermore, we can drop the unnecessary indirection via backticks and just ask grep directly if there was any result. Signed-off-by: Jozsef Kadlecsik --- diff --git a/configure.ac b/configure.ac index 7a6aa33..dea392d 100644 --- a/configure.ac +++ b/configure.ac @@ -68,7 +68,8 @@ fi AC_PROG_GREP -if test "X`$GREP 'NFNL_SUBSYS_IPSET' $ksourcedir/include/linux/netfilter/nfnetlink.h`" = "X" +if ! $GREP -q "NFNL_SUBSYS_IPSET" "$ksourcedir/include/linux/netfilter/nfnetlink.h" && \ + ! $GREP -q "NFNL_SUBSYS_IPSET" "$ksourcedir/include/uapi/linux/netfilter/nfnetlink.h"; then AC_MSG_ERROR([The kernel source directory $ksourcedir is not patched with netlink.patch to support ipset]) fi