[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20201203041101.11116-1-dsahern@kernel.org>
Date: Wed, 2 Dec 2020 21:11:01 -0700
From: David Ahern <dsahern@...nel.org>
To: netdev@...r.kernel.org
Cc: me@...chata.org, David Ahern <dsahern@...il.com>
Subject: [PATCH iproute2-next] Only compile mnl_utils when HAVE_LIBMNL is defined
From: David Ahern <dsahern@...il.com>
New lib/mnl_utils.c fails to compile if libmnl is not installed:
mnl_utils.c:9:10: fatal error: libmnl/libmnl.h: No such file or directory
9 | #include <libmnl/libmnl.h>
Make it dependent on HAVE_LIBMNL.
Fixes: 72858c7b77d0 ("lib: Extract from devlink/mnlg a helper, mnlu_socket_open()")
Signed-off-by: David Ahern <dsahern@...il.com>
---
lib/Makefile | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/lib/Makefile b/lib/Makefile
index e37585c6..603ea83e 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -13,7 +13,10 @@ UTILOBJ += bpf_libbpf.o
endif
endif
-NLOBJ=libgenl.o libnetlink.o mnl_utils.o
+NLOBJ=libgenl.o libnetlink.o
+ifeq ($(HAVE_LIBMNL),y)
+NLOBJ += mnl_utils.o
+endif
all: libnetlink.a libutil.a
--
2.27.0
Powered by blists - more mailing lists