Update of /cvsroot/boost/boost/boost/asio/detail
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv22916

Modified Files:
        old_win_sdk_compat.hpp 
Log Message:
Use IN6ADDR_ANY_INIT rather than IPPROTO_IPV6 to detect whether the Windows
Platform SDK supports IPv6, since the Vista Platform SDK has changed
IPPROTO_IPV6 to an enum.


Index: old_win_sdk_compat.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/asio/detail/old_win_sdk_compat.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- old_win_sdk_compat.hpp      6 Jan 2007 09:10:54 -0000       1.3
+++ old_win_sdk_compat.hpp      6 Feb 2007 22:34:02 -0000       1.4
@@ -24,9 +24,9 @@
 #if defined(BOOST_WINDOWS) || defined(__CYGWIN__)
 
 // Guess whether we are building against on old Platform SDK.
-#if !defined(IPPROTO_IPV6)
+#if !defined(IN6ADDR_ANY_INIT)
 #define BOOST_ASIO_HAS_OLD_WIN_SDK 1
-#endif // !defined(IPPROTO_IPV6)
+#endif // !defined(IN6ADDR_ANY_INIT)
 
 #if defined(BOOST_ASIO_HAS_OLD_WIN_SDK)
 


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to