Ken Thomases : configure: netinet/in_pcb.h and netinet/ip_var. h require netinet/in.h on Mac OS X.
Module: wine Branch: master Commit: ffd78b153bbed44e9c5d82b1e58e22b041535ff4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ffd78b153bbed44e9c5d82b1e5... Author: Ken Thomases <ken(a)codeweavers.com> Date: Fri Oct 19 16:18:27 2007 -0500 configure: netinet/in_pcb.h and netinet/ip_var.h require netinet/in.h on Mac OS X. --- configure | 3 +++ configure.ac | 3 +++ 2 files changed, 6 insertions(+), 0 deletions(-) diff --git a/configure b/configure index efcf3ad..86adc79 100755 --- a/configure +++ b/configure @@ -7169,6 +7169,9 @@ cat >>conftest.$ac_ext <<_ACEOF #if HAVE_SYS_SOCKETVAR_H # include <sys/socketvar.h> #endif + #if HAVE_NETINET_IN_H + # include <netinet/in.h> + #endif #include <$ac_header> _ACEOF diff --git a/configure.ac b/configure.ac index 199e2bb..55c6562 100644 --- a/configure.ac +++ b/configure.ac @@ -284,6 +284,9 @@ AC_CHECK_HEADERS([netinet/in_pcb.h netinet/ip_var.h net/if.h net/if_arp.h net/if #endif #if HAVE_SYS_SOCKETVAR_H # include <sys/socketvar.h> + #endif + #if HAVE_NETINET_IN_H + # include <netinet/in.h> #endif]) AC_CHECK_HEADERS([netinet/tcp_var.h],,,
participants (1)
-
Alexandre Julliard