Check for sys/uio.h, net/if_tun.h and net/if_tap.h

This commit is contained in:
Guus Sliepen 2004-11-01 17:04:28 +00:00
parent 1f00810da3
commit dced64c5c3
3 changed files with 24 additions and 7 deletions

12
have.h
View file

@ -77,6 +77,10 @@
#include <sys/param.h>
#endif
#ifdef HAVE_SYS_UIO_H
#include <sys/uio.h>
#endif
/* SunOS really wants sys/socket.h BEFORE net/if.h,
and FreeBSD wants these lines below the rest. */
@ -92,6 +96,14 @@
#include <net/if.h>
#endif
#ifdef HAVE_NET_IF_TUN_H
#include <net/if_tun.h>
#endif
#ifdef HAVE_NET_IF_TAP_H
#include <net/if_tap.h>
#endif
#ifdef HAVE_NETINET_IN_SYSTM_H
#include <netinet/in_systm.h>
#endif