Commit 337067a8 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

iphlpapi: Include netinet/if_inarp.h for NetBSD.

parent bcfc2027
...@@ -7926,6 +7926,7 @@ done ...@@ -7926,6 +7926,7 @@ done
for ac_header in \ for ac_header in \
netinet/ip.h \ netinet/ip.h \
net/if.h \ net/if.h \
...@@ -7934,6 +7935,7 @@ for ac_header in \ ...@@ -7934,6 +7935,7 @@ for ac_header in \
net/if_types.h \ net/if_types.h \
net/route.h \ net/route.h \
netinet/if_ether.h \ netinet/if_ether.h \
netinet/if_inarp.h \
netinet/in_pcb.h \ netinet/in_pcb.h \
netinet/ip_icmp.h \ netinet/ip_icmp.h \
netinet/ip_var.h \ netinet/ip_var.h \
......
...@@ -386,6 +386,7 @@ AC_CHECK_HEADERS(\ ...@@ -386,6 +386,7 @@ AC_CHECK_HEADERS(\
net/if_types.h \ net/if_types.h \
net/route.h \ net/route.h \
netinet/if_ether.h \ netinet/if_ether.h \
netinet/if_inarp.h \
netinet/in_pcb.h \ netinet/in_pcb.h \
netinet/ip_icmp.h \ netinet/ip_icmp.h \
netinet/ip_var.h \ netinet/ip_var.h \
......
...@@ -64,6 +64,9 @@ ...@@ -64,6 +64,9 @@
#ifdef HAVE_NETINET_IF_ETHER_H #ifdef HAVE_NETINET_IF_ETHER_H
#include <netinet/if_ether.h> #include <netinet/if_ether.h>
#endif #endif
#ifdef HAVE_NETINET_IF_INARP_H
#include <netinet/if_inarp.h>
#endif
#ifdef HAVE_NETINET_IP_H #ifdef HAVE_NETINET_IP_H
#include <netinet/ip.h> #include <netinet/ip.h>
#endif #endif
......
...@@ -456,6 +456,9 @@ ...@@ -456,6 +456,9 @@
/* Define to 1 if you have the <netinet/if_ether.h> header file. */ /* Define to 1 if you have the <netinet/if_ether.h> header file. */
#undef HAVE_NETINET_IF_ETHER_H #undef HAVE_NETINET_IF_ETHER_H
/* Define to 1 if you have the <netinet/if_inarp.h> header file. */
#undef HAVE_NETINET_IF_INARP_H
/* Define to 1 if you have the <netinet/in.h> header file. */ /* Define to 1 if you have the <netinet/in.h> header file. */
#undef HAVE_NETINET_IN_H #undef HAVE_NETINET_IN_H
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment