m4: remove useless include from netlink check
authorDaniele Di Proietto <daniele.di.proietto@gmail.com>
Fri, 24 Jan 2014 18:00:05 +0000 (19:00 +0100)
committerBen Pfaff <blp@nicira.com>
Mon, 3 Feb 2014 23:43:24 +0000 (15:43 -0800)
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>
m4/openvswitch.m4

index c0af6d4..7a0465b 100644 (file)
@@ -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