You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by je...@apache.org on 2006/07/12 21:24:40 UTC

svn commit: r421381 - /apr/apr/trunk/include/arch/win32/apr_arch_networkio.h

Author: jerenkrantz
Date: Wed Jul 12 12:24:40 2006
New Revision: 421381

URL: http://svn.apache.org/viewvc?rev=421381&view=rev
Log:
Do not support multicast on Win32 unless we're using MSVC++ as mingw
apparently doesn't define ip_mreq in its Winsock headers.

Modified:
    apr/apr/trunk/include/arch/win32/apr_arch_networkio.h

Modified: apr/apr/trunk/include/arch/win32/apr_arch_networkio.h
URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/arch/win32/apr_arch_networkio.h?rev=421381&r1=421380&r2=421381&view=diff
==============================================================================
--- apr/apr/trunk/include/arch/win32/apr_arch_networkio.h (original)
+++ apr/apr/trunk/include/arch/win32/apr_arch_networkio.h Wed Jul 12 12:24:40 2006
@@ -64,8 +64,9 @@
 } WSABUF, FAR * LPWSABUF;
 #endif
 #else
-/* Not sure if this is the right place to define this */
+#ifdef _MSC_VER
 #define HAVE_STRUCT_IPMREQ
+#endif
 #endif
 
 apr_status_t status_from_res_error(int);