From 0e9c20ec12815530bddf9bf8c847aecc714a7f1e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Gustavo=20Andr=C3=A9=20dos=20Santos=20Lopes?= Date: Sun, 4 Mar 2012 19:17:49 +0000 Subject: [PATCH] - Allow Windows builds targeting Vista and above have access to the RFC 3678 API for multicasting. --- ext/sockets/multicast.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ext/sockets/multicast.h b/ext/sockets/multicast.h index ccd9b1d2a8..1b8c3c9e0a 100644 --- a/ext/sockets/multicast.h +++ b/ext/sockets/multicast.h @@ -18,8 +18,7 @@ /* $Id$ */ -#if defined(MCAST_JOIN_GROUP) && \ - (!defined(PHP_WIN32) || (_WIN32_WINNT >= 0x600 && SOCKETS_ENABLE_VISTA_API)) +#if defined(MCAST_JOIN_GROUP) #define RFC3678_API 1 /* has block/unblock and source membership, in this case for both IPv4 and IPv6 */ #define HAS_MCAST_EXT 1 -- 2.40.0