summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorDaniele Di Proietto <daniele.di.proietto@gmail.com>2014-01-24 19:00:05 +0100
committerBen Pfaff <blp@nicira.com>2014-02-03 15:43:24 -0800
commit37cb736413c279505a4cc9951eda9bce20e1c19f (patch)
treedb262ec6da206cb66e6cc5b231ed1ea726c4b4de /m4
parent836fbda7fd9901d77e3d702ba66839dfa5f656de (diff)
downloadopenvswitch-37cb736413c279505a4cc9951eda9bce20e1c19f.tar.gz
m4: remove useless include from netlink check
linux/types.h is already included from linux/netlink.h (in every linux version). This will ease FreeBSD porting Signed-off-by: Daniele Di Proietto <daniele.di.proietto@gmail.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'm4')
-rw-r--r--m4/openvswitch.m41
1 files changed, 0 insertions, 1 deletions
diff --git a/m4/openvswitch.m4 b/m4/openvswitch.m4
index c0af6d47d..7a0465bc1 100644
--- a/m4/openvswitch.m4
+++ b/m4/openvswitch.m4
@@ -75,7 +75,6 @@ AC_DEFUN([OVS_CHECK_NETLINK],
[HAVE_NETLINK=yes],
[HAVE_NETLINK=no],
[#include <sys/socket.h>
- #include <linux/types.h>
])
AM_CONDITIONAL([HAVE_NETLINK], [test "$HAVE_NETLINK" = yes])
if test "$HAVE_NETLINK" = yes; then