examples/multi_process: fix FreeBSD build
authorDavid Marchand <david.marchand@redhat.com>
Wed, 5 Jun 2019 11:30:26 +0000 (13:30 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 5 Jun 2019 13:13:06 +0000 (15:13 +0200)
Caught on FreeBSD 12:

/usr/include/netinet/ip.h:71:17: error: field 'ip_src' has incomplete type
  struct in_addr ip_src,ip_dst; /* source and dest address */
                 ^~~~~~

On FreeBSD, netinet/ip.h is not auto sufficient like on Linux.
But actually, this header is not used in the example, just remove it.

Fixes: 764bf26873b9 ("add FreeBSD support")
Cc: stable@dpdk.org
Signed-off-by: David Marchand <david.marchand@redhat.com>
Tested-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
examples/multi_process/client_server_mp/mp_server/main.c

index 9a8e422..0150533 100644 (file)
@@ -11,7 +11,6 @@
 #include <inttypes.h>
 #include <sys/queue.h>
 #include <errno.h>
-#include <netinet/ip.h>
 #include <signal.h>
 
 #include <rte_common.h>