Commit 8a68cad1 authored by Wayne Davison's avatar Wayne Davison

Add IPv6 detection on cygwin.

parent d03c0b1e
...@@ -196,7 +196,7 @@ AC_ARG_ENABLE(ipv6, ...@@ -196,7 +196,7 @@ AC_ARG_ENABLE(ipv6,
[don't even try to use IPv6])) [don't even try to use IPv6]))
if test x"$enable_ipv6" != x"no"; then if test x"$enable_ipv6" != x"no"; then
AC_MSG_CHECKING([ipv6 stack type]) AC_MSG_CHECKING([ipv6 stack type])
for i in inria kame linux-glibc linux-inet6 solaris toshiba v6d zeta; do for i in inria kame linux-glibc linux-inet6 solaris toshiba v6d zeta cygwin; do
case $i in case $i in
inria) inria)
# http://www.kame.net/ # http://www.kame.net/
...@@ -283,6 +283,15 @@ yes ...@@ -283,6 +283,15 @@ yes
ipv6libdir=/usr/local/v6/lib; ipv6libdir=/usr/local/v6/lib;
AC_DEFINE(INET6, 1, [true if you have IPv6])]) AC_DEFINE(INET6, 1, [true if you have IPv6])])
;; ;;
cygwin)
AC_EGREP_CPP(yes, [
#include <netinet/in.h>
#ifdef _CYGWIN_IN6_H
yes
#endif],
[ipv6type=$i;
AC_DEFINE(INET6, 1, [true if you have IPv6])])
;;
esac esac
if test "$ipv6type" != "unknown"; then if test "$ipv6type" != "unknown"; then
break break
......
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