clean bare metal support traces

Bare metal support has been gone for quite some time but we still had
some checks on system includes.

Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Thomas Monjalon <thomas@monjalon.net>
This commit is contained in:
David Marchand 2019-08-12 09:00:54 +02:00 committed by Thomas Monjalon
parent 5194299d6e
commit 384b0a33fe
5 changed files with 5 additions and 27 deletions

View File

@ -11,13 +11,9 @@
#include <termios.h>
#include <unistd.h>
#include <inttypes.h>
#ifndef __linux__
#ifndef __FreeBSD__
#include <net/socket.h>
#else
#ifdef __FreeBSD__
#include <sys/socket.h>
#endif
#endif
#include <netinet/in.h>
#include <sys/queue.h>

View File

@ -10,11 +10,6 @@
#include <stdlib.h>
#include <netinet/in.h>
#include <termios.h>
#ifndef __linux__
#ifndef __FreeBSD__
#include <net/socket.h>
#endif
#endif
#include <inttypes.h>
#include <errno.h>
#include <sys/queue.h>

View File

@ -6,14 +6,9 @@
#include <string.h>
#include <inttypes.h>
#include <netinet/in.h>
#ifndef __linux__
#ifndef __FreeBSD__
#include <net/socket.h>
#else
#ifdef __FreeBSD__
#include <sys/socket.h>
#endif
#endif
#include <rte_string_fns.h>

View File

@ -12,12 +12,8 @@
#include <errno.h>
#include <netinet/in.h>
#include <termios.h>
#ifndef __linux__
#ifdef __FreeBSD__
#include <sys/socket.h>
#else
#include <net/socket.h>
#endif
#ifdef __FreeBSD__
#include <sys/socket.h>
#endif
#include <cmdline_rdline.h>

View File

@ -13,13 +13,9 @@
#include <errno.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#ifndef __linux__
#ifndef __FreeBSD__
#include <net/socket.h>
#else
#ifdef __FreeBSD__
#include <sys/socket.h>
#endif
#endif
#include <rte_string_fns.h>