Commit 8b195913 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

iphplapi: Include <sys/timeout.h> for OpenBSD/NetBSD.

parent 0b98f45b
...@@ -7505,6 +7505,7 @@ done ...@@ -7505,6 +7505,7 @@ done
for ac_header in \ for ac_header in \
AudioUnit/AudioUnit.h \ AudioUnit/AudioUnit.h \
Carbon/Carbon.h \ Carbon/Carbon.h \
...@@ -7609,6 +7610,7 @@ for ac_header in \ ...@@ -7609,6 +7610,7 @@ for ac_header in \
sys/strtio.h \ sys/strtio.h \
sys/syscall.h \ sys/syscall.h \
sys/time.h \ sys/time.h \
sys/timeout.h \
sys/times.h \ sys/times.h \
sys/uio.h \ sys/uio.h \
sys/un.h \ sys/un.h \
......
...@@ -354,6 +354,7 @@ AC_CHECK_HEADERS(\ ...@@ -354,6 +354,7 @@ AC_CHECK_HEADERS(\
sys/strtio.h \ sys/strtio.h \
sys/syscall.h \ sys/syscall.h \
sys/time.h \ sys/time.h \
sys/timeout.h \
sys/times.h \ sys/times.h \
sys/uio.h \ sys/uio.h \
sys/un.h \ sys/un.h \
......
...@@ -37,6 +37,9 @@ ...@@ -37,6 +37,9 @@
#ifdef HAVE_SYS_SOCKETVAR_H #ifdef HAVE_SYS_SOCKETVAR_H
#include <sys/socketvar.h> #include <sys/socketvar.h>
#endif #endif
#ifdef HAVE_SYS_TIMEOUT_H
#include <sys/timeout.h>
#endif
#ifdef HAVE_NETINET_IN_H #ifdef HAVE_NETINET_IN_H
#include <netinet/in.h> #include <netinet/in.h>
#endif #endif
......
...@@ -900,6 +900,9 @@ ...@@ -900,6 +900,9 @@
/* Define to 1 if you have the <sys/thr.h> header file. */ /* Define to 1 if you have the <sys/thr.h> header file. */
#undef HAVE_SYS_THR_H #undef HAVE_SYS_THR_H
/* Define to 1 if you have the <sys/timeout.h> header file. */
#undef HAVE_SYS_TIMEOUT_H
/* Define to 1 if you have the <sys/times.h> header file. */ /* Define to 1 if you have the <sys/times.h> header file. */
#undef HAVE_SYS_TIMES_H #undef HAVE_SYS_TIMES_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