From 39ad54f76c40dd859a55fe4e44782d8ffd109d44 Mon Sep 17 00:00:00 2001 From: Bruce Richardson <bruce.richardson@intel.com> Date: Thu, 2 May 2019 17:51:51 +0100 Subject: [PATCH] examples/l3fwd: fix build on FreeBSD On freebsd we need to include sys/socket.h to get the definition of AF_INET in order to compile. Fixes: d5ceea4ab160 ("examples/l3fwd: format IP addresses for printing") Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Luca Boccassi <bluca@debian.org> --- examples/l3fwd/l3fwd_lpm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/l3fwd/l3fwd_lpm.c b/examples/l3fwd/l3fwd_lpm.c index 172a036b27..60a00639e1 100644 --- a/examples/l3fwd/l3fwd_lpm.c +++ b/examples/l3fwd/l3fwd_lpm.c @@ -13,6 +13,7 @@ #include <errno.h> #include <getopt.h> #include <stdbool.h> +#include <sys/socket.h> #include <arpa/inet.h> #include <rte_debug.h> -- 2.39.5