configure.ac: Fix a couple more includes on NetBSD.
This commit is contained in:
parent
fd3c7be0e0
commit
0317393bf1
|
@ -7965,6 +7965,9 @@ cat >>conftest.$ac_ext <<_ACEOF
|
||||||
#ifdef HAVE_NETINET_IN_H
|
#ifdef HAVE_NETINET_IN_H
|
||||||
# include <netinet/in.h>
|
# include <netinet/in.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_NETINET_IN_SYSTM_H
|
||||||
|
# include <netinet/in_systm.h>
|
||||||
|
#endif
|
||||||
#ifdef HAVE_NETINET_IP_H
|
#ifdef HAVE_NETINET_IP_H
|
||||||
# include <netinet/ip.h>
|
# include <netinet/ip.h>
|
||||||
#endif
|
#endif
|
||||||
|
@ -8019,7 +8022,7 @@ done
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
for ac_header in netinet/tcp_var.h netinet/udp_var.h netinet/icmp_var.h netinet/tcp_timer.h
|
for ac_header in netinet/tcp_timer.h netinet/udp_var.h netinet/icmp_var.h netinet/tcp_var.h
|
||||||
do
|
do
|
||||||
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
||||||
{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5
|
{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5
|
||||||
|
@ -8046,6 +8049,9 @@ cat >>conftest.$ac_ext <<_ACEOF
|
||||||
#ifdef HAVE_NETINET_IN_H
|
#ifdef HAVE_NETINET_IN_H
|
||||||
# include <netinet/in.h>
|
# include <netinet/in.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_NETINET_IN_SYSTM_H
|
||||||
|
# include <netinet/in_systm.h>
|
||||||
|
#endif
|
||||||
#ifdef HAVE_NETINET_IP_H
|
#ifdef HAVE_NETINET_IP_H
|
||||||
# include <netinet/ip.h>
|
# include <netinet/ip.h>
|
||||||
#endif
|
#endif
|
||||||
|
@ -8061,6 +8067,9 @@ cat >>conftest.$ac_ext <<_ACEOF
|
||||||
#ifdef HAVE_NETINET_TCP_H
|
#ifdef HAVE_NETINET_TCP_H
|
||||||
# include <netinet/tcp.h>
|
# include <netinet/tcp.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_NETINET_TCP_TIMER_H
|
||||||
|
#include <netinet/tcp_timer.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <$ac_header>
|
#include <$ac_header>
|
||||||
_ACEOF
|
_ACEOF
|
||||||
|
|
11
configure.ac
11
configure.ac
|
@ -402,11 +402,14 @@ AC_CHECK_HEADERS(\
|
||||||
#ifdef HAVE_NETINET_IN_H
|
#ifdef HAVE_NETINET_IN_H
|
||||||
# include <netinet/in.h>
|
# include <netinet/in.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_NETINET_IN_SYSTM_H
|
||||||
|
# include <netinet/in_systm.h>
|
||||||
|
#endif
|
||||||
#ifdef HAVE_NETINET_IP_H
|
#ifdef HAVE_NETINET_IP_H
|
||||||
# include <netinet/ip.h>
|
# include <netinet/ip.h>
|
||||||
#endif])
|
#endif])
|
||||||
|
|
||||||
AC_CHECK_HEADERS([netinet/tcp_var.h netinet/udp_var.h netinet/icmp_var.h netinet/tcp_timer.h ],,,
|
AC_CHECK_HEADERS([netinet/tcp_timer.h netinet/udp_var.h netinet/icmp_var.h netinet/tcp_var.h ],,,
|
||||||
[#include <sys/types.h>
|
[#include <sys/types.h>
|
||||||
#ifdef HAVE_ALIAS_H
|
#ifdef HAVE_ALIAS_H
|
||||||
# include <alias.h>
|
# include <alias.h>
|
||||||
|
@ -420,6 +423,9 @@ AC_CHECK_HEADERS([netinet/tcp_var.h netinet/udp_var.h netinet/icmp_var.h netinet
|
||||||
#ifdef HAVE_NETINET_IN_H
|
#ifdef HAVE_NETINET_IN_H
|
||||||
# include <netinet/in.h>
|
# include <netinet/in.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_NETINET_IN_SYSTM_H
|
||||||
|
# include <netinet/in_systm.h>
|
||||||
|
#endif
|
||||||
#ifdef HAVE_NETINET_IP_H
|
#ifdef HAVE_NETINET_IP_H
|
||||||
# include <netinet/ip.h>
|
# include <netinet/ip.h>
|
||||||
#endif
|
#endif
|
||||||
|
@ -434,6 +440,9 @@ AC_CHECK_HEADERS([netinet/tcp_var.h netinet/udp_var.h netinet/icmp_var.h netinet
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_NETINET_TCP_H
|
#ifdef HAVE_NETINET_TCP_H
|
||||||
# include <netinet/tcp.h>
|
# include <netinet/tcp.h>
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_NETINET_TCP_TIMER_H
|
||||||
|
#include <netinet/tcp_timer.h>
|
||||||
#endif])
|
#endif])
|
||||||
|
|
||||||
AC_CHECK_HEADERS([linux/ipx.h],,,
|
AC_CHECK_HEADERS([linux/ipx.h],,,
|
||||||
|
|
Loading…
Reference in New Issue