From 4e927b4d212411b1b60020a995cf6a86f1baa6e8 Mon Sep 17 00:00:00 2001 From: zuxy Date: Tue, 30 Oct 2007 02:44:17 +0000 Subject: Detect IPv6 support on Windows git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24885 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index a04e3b7b1c..66709d759e 100755 --- a/configure +++ b/configure @@ -7128,12 +7128,16 @@ echocheck "inet6" if test "$_inet6" = auto ; then cat > $TMPC << EOF #include +#if !defined(_WIN32) || defined(__CYGWIN__) #include #include +#else +#include +#endif int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); } EOF _inet6=no - if cc_check ; then + if cc_check $_ld_sock ; then _inet6=yes fi fi -- cgit v1.2.3