From 0a9af08a5661ceac87d7b9f98b204a9f80169333 Mon Sep 17 00:00:00 2001 From: Mark Rustad Date: Thu, 25 Oct 2012 04:49:23 +0000 Subject: [PATCH 4/7] build: Remove dependency on libnl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fcoe-utils really did not need to be dependent on libnl. It was only including netlink/netlink.h, not actually using the library, and the only real need for netlink/netlink.h was to get the including files stdint.h, linux/netlink.h and linux/rtnetlink.h. So, just include those directly and forget about libnl. Signed-off-by: Mark Rustad Tested-by: Ross Brattain Signed-off-by: Robert Love Signed-off-by: Petr Ĺ abata --- fcoemon.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fcoemon.c b/fcoemon.c index 9217552..daf9fab 100644 --- a/fcoemon.c +++ b/fcoemon.c @@ -24,6 +24,7 @@ #include #include #include +#include #include #include #include @@ -40,7 +41,8 @@ #include #include #include -#include +#include +#include #include #include #include -- 1.7.11.7