X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=acinclude.m4;h=19a47dd44d4c27b6ddaadf53aded193718ac5881;hb=d30e714ccb9d13caf39d14d5b2fc9523b678ed51;hp=f0610c90e2dd84e9e6b3fe5fafa284897254a622;hpb=b40dcae74fb2c1e58d48a38b5da178a78f9bf8a6;p=sliver-openvswitch.git diff --git a/acinclude.m4 b/acinclude.m4 index f0610c90e..19a47dd44 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1,6 +1,6 @@ # -*- autoconf -*- -# Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira, Inc. +# Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -295,6 +295,8 @@ AC_DEFUN([OVS_CHECK_IF_PACKET], fi]) dnl Checks for net/if_dl.h. +dnl +dnl (We use this as a proxy for checking whether we're building on FreeBSD.) AC_DEFUN([OVS_CHECK_IF_DL], [AC_CHECK_HEADER([net/if_dl.h], [HAVE_IF_DL=yes], @@ -303,6 +305,9 @@ AC_DEFUN([OVS_CHECK_IF_DL], if test "$HAVE_IF_DL" = yes; then AC_DEFINE([HAVE_IF_DL], [1], [Define to 1 if net/if_dl.h is available.]) + + # On FreeBSD we use libpcap to access network devices. + AC_SEARCH_LIBS([pcap_open_live], [pcap]) fi]) dnl Checks for buggy strtok_r.