diff options
author | Randall S. Becker <rsbecker@nexbridge.com> | 2017-12-05 10:41:27 -0600 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-12-06 00:19:09 +0100 |
commit | 76ebd54175bad02b29769d797adf72fdf3df119f (patch) | |
tree | 4d4fd29ab506dd46dda8aa6cc86cbaa1ba064beb /configure.ac | |
parent | 0c65678e71580174686118d60b5947e2e2202605 (diff) | |
download | curl-76ebd54175bad02b29769d797adf72fdf3df119f.tar.gz |
configure: check for netinet/in6.h
Needed by HPE NonStop NSE and NSX systems
Fixes #2146
Closes #2155
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 001cf2ced..0433a7ccd 100755 --- a/configure.ac +++ b/configure.ac @@ -1206,6 +1206,9 @@ if test "$ipv6" = yes; then #include <ws2tcpip.h> #else #include <netinet/in.h> +#if defined (__TANDEM) +# include <netinet/in6.h> +#endif #endif] , struct sockaddr_in6 s; s.sin6_scope_id = 0; , have_sin6_scope_id=yes) if test "$have_sin6_scope_id" = yes; then @@ -3354,6 +3357,7 @@ AC_CHECK_HEADERS( arpa/inet.h \ net/if.h \ netinet/in.h \ + netinet/in6.h \ sys/un.h \ linux/tcp.h \ netinet/tcp.h \ @@ -3404,6 +3408,9 @@ dnl default includes #ifdef HAVE_NETINET_IN_H #include <netinet/in.h> #endif +#ifdef HAVE_NETINET_IN6_H +#include <netinet/in6.h> +#endif #ifdef HAVE_SYS_UN_H #include <sys/un.h> #endif |