On Wednesday ** 2022-03-02 19:00 **, Pablo Neira Ayuso wrote: >On Wed, Mar 02, 2022 at 10:11:11AM -0700, Shuah Khan wrote: >> On 3/1/22 10:29 PM, Geliang Tang wrote: >> > This patch fixed the following build error on openSUSE Leap 15.3: >> > nf-queue.c:13:10: fatal error: libmnl/libmnl.h: No such file or directory >> > #include <libmnl/libmnl.h> >> > diff --git a/tools/testing/selftests/netfilter/Makefile b/tools/testing/selftests/netfilter/Makefile >> > index e4f845dd942b..8136c1fab7ab 100644 >> > --- a/tools/testing/selftests/netfilter/Makefile >> > +++ b/tools/testing/selftests/netfilter/Makefile >> > @@ -8,6 +8,7 @@ TEST_PROGS := nft_trans_stress.sh nft_fib.sh nft_nat.sh bridge_brouter.sh \ >> > ipip-conntrack-mtu.sh conntrack_tcp_unreplied.sh \ >> > conntrack_vrf.sh nft_synproxy.sh >> > +CFLAGS += $(shell pkg-config --cflags libmnl 2>/dev/null || echo "-I/usr/include/libmnl") >> > LDLIBS = -lmnl >> > TEST_GEN_FILES = nf-queue >> >> Adding Pablo to the thread. >> This looks good to me. I can take this through linux-kselftest tree. >> Or if it is going through netfilter tree: >> Reviewed-by: Shuah Khan <skhan@xxxxxxxxxxxxxxxxxxx> > >If this does not cause any issue when running tests in any other >distros, then it is fine with me. Since a pkgconfig file exists, it ought to be used. That also means you need the same/similar incantation in LDLIBS, with `pkg-config --libs libmnl`.