Module: wine Branch: master Commit: 53d3c46bf92b19d82f554bb1cc4d61530e4eddc4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=53d3c46bf92b19d82f554bb1cc...
Author: Austin English austinenglish@gmail.com Date: Mon Jan 26 23:47:49 2009 -0600
configure: Fix <netinet/tcp_var.h> detection on OpenBSD.
---
configure | 3 +++ configure.ac | 3 +++ 2 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/configure b/configure index f7a5ea7..19d95a0 100755 --- a/configure +++ b/configure @@ -8049,6 +8049,9 @@ cat >>conftest.$ac_ext <<_ACEOF #ifdef HAVE_SYS_SOCKETVAR_H # include <sys/socketvar.h> #endif + #ifdef HAVE_SYS_TIMEOUT_H + # include <sys/timeout.h> + #endif #ifdef HAVE_NETINET_IN_H # include <netinet/in.h> #endif diff --git a/configure.ac b/configure.ac index 122191d..063ea15 100644 --- a/configure.ac +++ b/configure.ac @@ -423,6 +423,9 @@ AC_CHECK_HEADERS([netinet/tcp_timer.h netinet/udp_var.h netinet/icmp_var.h netin #ifdef HAVE_SYS_SOCKETVAR_H # include <sys/socketvar.h> #endif + #ifdef HAVE_SYS_TIMEOUT_H + # include <sys/timeout.h> + #endif #ifdef HAVE_NETINET_IN_H # include <netinet/in.h> #endif