Skip to content
Snippets Groups Projects
Commit 2f447bb4 authored by Bruno Jesus's avatar Bruno Jesus Committed by Alexandre Julliard
Browse files

configure: Make FreeBSD recognize struct __res_state for iphlpapi.

parent e28f2f49
No related branches found
No related tags found
No related merge requests found
...@@ -16711,7 +16711,13 @@ _ACEOF ...@@ -16711,7 +16711,13 @@ _ACEOF
fi fi
   
   
ac_fn_c_check_type "$LINENO" "struct __res_state" "ac_cv_type_struct___res_state" "#ifdef HAVE_RESOLV_H ac_fn_c_check_type "$LINENO" "struct __res_state" "ac_cv_type_struct___res_state" "#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#ifdef HAVE_RESOLV_H
#include <resolv.h> #include <resolv.h>
#endif #endif
" "
......
...@@ -2347,7 +2347,13 @@ AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id],,, ...@@ -2347,7 +2347,13 @@ AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id],,,
dnl Check for struct __res_state dnl Check for struct __res_state
AC_CHECK_TYPES([struct __res_state],,, AC_CHECK_TYPES([struct __res_state],,,
[#ifdef HAVE_RESOLV_H [#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#ifdef HAVE_RESOLV_H
#include <resolv.h> #include <resolv.h>
#endif]) #endif])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment