From: Harlan Stenn Date: Thu, 20 Jul 2006 19:50:44 +0000 (-0400) Subject: [Bug 671] Windows wants TYPEOF_IP_MULTICAST_SPOOL=BOOL X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a33af0eddc21fbf809fa288d05bcdb342d1b32c;p=thirdparty%2Fntp.git [Bug 671] Windows wants TYPEOF_IP_MULTICAST_SPOOL=BOOL bk: 44bfde94LJD3Ni_Xq0swvH8jtbE9kw --- diff --git a/configure.ac b/configure.ac index 0a492c3f2d..2a58f8528d 100644 --- a/configure.ac +++ b/configure.ac @@ -1755,9 +1755,12 @@ case "$ac_cv_var_mcast" in AC_CACHE_CHECK([[arg type needed for IP*_MULTICAST_LOOP for setsockopt()]], ac_cv_var_typeof_ip_multicast_loop, [case "$host" in - *-*-netbsd*|*-*-linux*|*-*-winnt*) + *-*-netbsd*|*-*-linux*) ac_cv_var_typeof_ip_multicast_loop=u_int ;; + *-*-winnt*) + ac_cv_var_typeof_ip_multicast_loop=BOOL + ;; *) ac_cv_var_typeof_ip_multicast_loop=u_char ;; esac])