This patch adds a configure function to check if libtirpc is installed
on the build system. If this is the case, it makes iproute2 to compile
with libtirpc support.
Signed-off-by: Andrea Claudi <aclaudi@redhat.com>
Signed-off-by: David Ahern <dsahern@kernel.org>
fi
}
+check_tirpc()
+{
+ if ${PKG_CONFIG} libtirpc --exists; then
+ echo "HAVE_RPC:=y" >>$CONFIG
+ echo "yes"
+
+ echo 'LDLIBS +=' `${PKG_CONFIG} --libs libtirpc` >>$CONFIG
+ echo 'CFLAGS += -DHAVE_RPC' `${PKG_CONFIG} --cflags libtirpc` >>$CONFIG
+ else
+ echo "no"
+ fi
+}
+
check_mnl()
{
if ${PKG_CONFIG} libmnl --exists; then
echo -n "SELinux support: "
check_selinux
+echo -n "libtirpc support: "
+check_tirpc
+
echo -n "libbpf support: "
check_libbpf