Boost logo

Boost-Commit :

From: chris_at_[hidden]
Date: 2007-10-17 03:58:40


Author: chris_kohlhoff
Date: 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
New Revision: 40108
URL: http://svn.boost.org/trac/boost/changeset/40108

Log:
Make Windows XP the default target Windows version as the latest Windows
SDK doesn't support IPv6 for Windows 2000 targets.

Text files modified:
   trunk/boost/asio/detail/socket_types.hpp | 6 +++---
   trunk/libs/asio/example/allocation/Jamfile.v2 | 2 +-
   trunk/libs/asio/example/buffers/Jamfile.v2 | 2 +-
   trunk/libs/asio/example/chat/Jamfile.v2 | 2 +-
   trunk/libs/asio/example/echo/Jamfile.v2 | 2 +-
   trunk/libs/asio/example/http/client/Jamfile.v2 | 2 +-
   trunk/libs/asio/example/http/server/Jamfile.v2 | 2 +-
   trunk/libs/asio/example/http/server2/Jamfile.v2 | 2 +-
   trunk/libs/asio/example/http/server3/Jamfile.v2 | 2 +-
   trunk/libs/asio/example/invocation/Jamfile.v2 | 2 +-
   trunk/libs/asio/example/iostreams/Jamfile.v2 | 2 +-
   trunk/libs/asio/example/multicast/Jamfile.v2 | 2 +-
   trunk/libs/asio/example/serialization/Jamfile.v2 | 2 +-
   trunk/libs/asio/example/services/Jamfile.v2 | 2 +-
   trunk/libs/asio/example/socks4/Jamfile.v2 | 2 +-
   trunk/libs/asio/example/ssl/Jamfile.v2 | 2 +-
   trunk/libs/asio/example/timeouts/Jamfile.v2 | 2 +-
   trunk/libs/asio/example/timers/Jamfile.v2 | 2 +-
   trunk/libs/asio/example/tutorial/Jamfile.v2 | 2 +-
   trunk/libs/asio/test/ssl/Jamfile.v2 | 2 +-
   20 files changed, 22 insertions(+), 22 deletions(-)

Modified: trunk/boost/asio/detail/socket_types.hpp
==============================================================================
--- trunk/boost/asio/detail/socket_types.hpp (original)
+++ trunk/boost/asio/detail/socket_types.hpp 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
@@ -29,12 +29,12 @@
 # if !defined(_WIN32_WINNT) && !defined(_WIN32_WINDOWS)
 # if defined(_MSC_VER) || defined(__BORLANDC__)
 # pragma message("Please define _WIN32_WINNT or _WIN32_WINDOWS appropriately")
-# pragma message("Assuming _WIN32_WINNT=0x0500 (i.e. Windows 2000 target)")
+# pragma message("Assuming _WIN32_WINNT=0x0501 (i.e. Windows XP target)")
 # else // defined(_MSC_VER) || defined(__BORLANDC__)
 # warning Please define _WIN32_WINNT or _WIN32_WINDOWS appropriately
-# warning Assuming _WIN32_WINNT=0x0500 (i.e. Windows 2000 target)
+# warning Assuming _WIN32_WINNT=0x0501 (i.e. Windows XP target)
 # endif // defined(_MSC_VER) || defined(__BORLANDC__)
-# define _WIN32_WINNT 0x0500
+# define _WIN32_WINNT 0x0501
 # endif // !defined(_WIN32_WINNT) && !defined(_WIN32_WINDOWS)
 # if defined(_MSC_VER)
 # if defined(_WIN32) && !defined(WIN32)

Modified: trunk/libs/asio/example/allocation/Jamfile.v2
==============================================================================
--- trunk/libs/asio/example/allocation/Jamfile.v2 (original)
+++ trunk/libs/asio/example/allocation/Jamfile.v2 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
@@ -29,7 +29,7 @@
     <threading>multi
     <os>SOLARIS:<library>socket
     <os>SOLARIS:<library>nsl
- <os>NT:<define>_WIN32_WINNT=0x0500
+ <os>NT:<define>_WIN32_WINNT=0x0501
     <os>NT,<toolset>gcc:<library>ws2_32
     <os>NT,<toolset>gcc:<library>mswsock
     <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS

Modified: trunk/libs/asio/example/buffers/Jamfile.v2
==============================================================================
--- trunk/libs/asio/example/buffers/Jamfile.v2 (original)
+++ trunk/libs/asio/example/buffers/Jamfile.v2 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
@@ -29,7 +29,7 @@
     <threading>multi
     <os>SOLARIS:<library>socket
     <os>SOLARIS:<library>nsl
- <os>NT:<define>_WIN32_WINNT=0x0500
+ <os>NT:<define>_WIN32_WINNT=0x0501
     <os>NT,<toolset>gcc:<library>ws2_32
     <os>NT,<toolset>gcc:<library>mswsock
     <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS

Modified: trunk/libs/asio/example/chat/Jamfile.v2
==============================================================================
--- trunk/libs/asio/example/chat/Jamfile.v2 (original)
+++ trunk/libs/asio/example/chat/Jamfile.v2 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
@@ -30,7 +30,7 @@
     <threading>multi
     <os>SOLARIS:<library>socket
     <os>SOLARIS:<library>nsl
- <os>NT:<define>_WIN32_WINNT=0x0500
+ <os>NT:<define>_WIN32_WINNT=0x0501
     <os>NT,<toolset>gcc:<library>ws2_32
     <os>NT,<toolset>gcc:<library>mswsock
     <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS

Modified: trunk/libs/asio/example/echo/Jamfile.v2
==============================================================================
--- trunk/libs/asio/example/echo/Jamfile.v2 (original)
+++ trunk/libs/asio/example/echo/Jamfile.v2 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
@@ -30,7 +30,7 @@
     <threading>multi
     <os>SOLARIS:<library>socket
     <os>SOLARIS:<library>nsl
- <os>NT:<define>_WIN32_WINNT=0x0500
+ <os>NT:<define>_WIN32_WINNT=0x0501
     <os>NT,<toolset>gcc:<library>ws2_32
     <os>NT,<toolset>gcc:<library>mswsock
     <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS

Modified: trunk/libs/asio/example/http/client/Jamfile.v2
==============================================================================
--- trunk/libs/asio/example/http/client/Jamfile.v2 (original)
+++ trunk/libs/asio/example/http/client/Jamfile.v2 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
@@ -29,7 +29,7 @@
     <threading>multi
     <os>SOLARIS:<library>socket
     <os>SOLARIS:<library>nsl
- <os>NT:<define>_WIN32_WINNT=0x0500
+ <os>NT:<define>_WIN32_WINNT=0x0501
     <os>NT,<toolset>gcc:<library>ws2_32
     <os>NT,<toolset>gcc:<library>mswsock
     <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS

Modified: trunk/libs/asio/example/http/server/Jamfile.v2
==============================================================================
--- trunk/libs/asio/example/http/server/Jamfile.v2 (original)
+++ trunk/libs/asio/example/http/server/Jamfile.v2 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
@@ -38,7 +38,7 @@
     <threading>multi
     <os>SOLARIS:<library>socket
     <os>SOLARIS:<library>nsl
- <os>NT:<define>_WIN32_WINNT=0x0500
+ <os>NT:<define>_WIN32_WINNT=0x0501
     <os>NT,<toolset>gcc:<library>ws2_32
     <os>NT,<toolset>gcc:<library>mswsock
     <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS

Modified: trunk/libs/asio/example/http/server2/Jamfile.v2
==============================================================================
--- trunk/libs/asio/example/http/server2/Jamfile.v2 (original)
+++ trunk/libs/asio/example/http/server2/Jamfile.v2 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
@@ -38,7 +38,7 @@
     <threading>multi
     <os>SOLARIS:<library>socket
     <os>SOLARIS:<library>nsl
- <os>NT:<define>_WIN32_WINNT=0x0500
+ <os>NT:<define>_WIN32_WINNT=0x0501
     <os>NT,<toolset>gcc:<library>ws2_32
     <os>NT,<toolset>gcc:<library>mswsock
     <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS

Modified: trunk/libs/asio/example/http/server3/Jamfile.v2
==============================================================================
--- trunk/libs/asio/example/http/server3/Jamfile.v2 (original)
+++ trunk/libs/asio/example/http/server3/Jamfile.v2 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
@@ -37,7 +37,7 @@
     <threading>multi
     <os>SOLARIS:<library>socket
     <os>SOLARIS:<library>nsl
- <os>NT:<define>_WIN32_WINNT=0x0500
+ <os>NT:<define>_WIN32_WINNT=0x0501
     <os>NT,<toolset>gcc:<library>ws2_32
     <os>NT,<toolset>gcc:<library>mswsock
     <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS

Modified: trunk/libs/asio/example/invocation/Jamfile.v2
==============================================================================
--- trunk/libs/asio/example/invocation/Jamfile.v2 (original)
+++ trunk/libs/asio/example/invocation/Jamfile.v2 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
@@ -29,7 +29,7 @@
     <threading>multi
     <os>SOLARIS:<library>socket
     <os>SOLARIS:<library>nsl
- <os>NT:<define>_WIN32_WINNT=0x0500
+ <os>NT:<define>_WIN32_WINNT=0x0501
     <os>NT,<toolset>gcc:<library>ws2_32
     <os>NT,<toolset>gcc:<library>mswsock
     <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS

Modified: trunk/libs/asio/example/iostreams/Jamfile.v2
==============================================================================
--- trunk/libs/asio/example/iostreams/Jamfile.v2 (original)
+++ trunk/libs/asio/example/iostreams/Jamfile.v2 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
@@ -29,7 +29,7 @@
     <threading>multi
     <os>SOLARIS:<library>socket
     <os>SOLARIS:<library>nsl
- <os>NT:<define>_WIN32_WINNT=0x0500
+ <os>NT:<define>_WIN32_WINNT=0x0501
     <os>NT,<toolset>gcc:<library>ws2_32
     <os>NT,<toolset>gcc:<library>mswsock
     <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS

Modified: trunk/libs/asio/example/multicast/Jamfile.v2
==============================================================================
--- trunk/libs/asio/example/multicast/Jamfile.v2 (original)
+++ trunk/libs/asio/example/multicast/Jamfile.v2 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
@@ -29,7 +29,7 @@
     <threading>multi
     <os>SOLARIS:<library>socket
     <os>SOLARIS:<library>nsl
- <os>NT:<define>_WIN32_WINNT=0x0500
+ <os>NT:<define>_WIN32_WINNT=0x0501
     <os>NT,<toolset>gcc:<library>ws2_32
     <os>NT,<toolset>gcc:<library>mswsock
     <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS

Modified: trunk/libs/asio/example/serialization/Jamfile.v2
==============================================================================
--- trunk/libs/asio/example/serialization/Jamfile.v2 (original)
+++ trunk/libs/asio/example/serialization/Jamfile.v2 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
@@ -30,7 +30,7 @@
     <threading>multi
     <os>SOLARIS:<library>socket
     <os>SOLARIS:<library>nsl
- <os>NT:<define>_WIN32_WINNT=0x0500
+ <os>NT:<define>_WIN32_WINNT=0x0501
     <os>NT,<toolset>gcc:<library>ws2_32
     <os>NT,<toolset>gcc:<library>mswsock
     <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS

Modified: trunk/libs/asio/example/services/Jamfile.v2
==============================================================================
--- trunk/libs/asio/example/services/Jamfile.v2 (original)
+++ trunk/libs/asio/example/services/Jamfile.v2 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
@@ -31,7 +31,7 @@
     <threading>multi
     <os>SOLARIS:<library>socket
     <os>SOLARIS:<library>nsl
- <os>NT:<define>_WIN32_WINNT=0x0500
+ <os>NT:<define>_WIN32_WINNT=0x0501
     <os>NT,<toolset>gcc:<library>ws2_32
     <os>NT,<toolset>gcc:<library>mswsock
     <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS

Modified: trunk/libs/asio/example/socks4/Jamfile.v2
==============================================================================
--- trunk/libs/asio/example/socks4/Jamfile.v2 (original)
+++ trunk/libs/asio/example/socks4/Jamfile.v2 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
@@ -29,7 +29,7 @@
     <threading>multi
     <os>SOLARIS:<library>socket
     <os>SOLARIS:<library>nsl
- <os>NT:<define>_WIN32_WINNT=0x0500
+ <os>NT:<define>_WIN32_WINNT=0x0501
     <os>NT,<toolset>gcc:<library>ws2_32
     <os>NT,<toolset>gcc:<library>mswsock
     <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS

Modified: trunk/libs/asio/example/ssl/Jamfile.v2
==============================================================================
--- trunk/libs/asio/example/ssl/Jamfile.v2 (original)
+++ trunk/libs/asio/example/ssl/Jamfile.v2 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
@@ -40,7 +40,7 @@
     <threading>multi
     <os>SOLARIS:<library>socket
     <os>SOLARIS:<library>nsl
- <os>NT:<define>_WIN32_WINNT=0x0500
+ <os>NT:<define>_WIN32_WINNT=0x0501
     <os>NT,<toolset>gcc:<library>ws2_32
     <os>NT,<toolset>gcc:<library>mswsock
     <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS

Modified: trunk/libs/asio/example/timeouts/Jamfile.v2
==============================================================================
--- trunk/libs/asio/example/timeouts/Jamfile.v2 (original)
+++ trunk/libs/asio/example/timeouts/Jamfile.v2 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
@@ -29,7 +29,7 @@
     <threading>multi
     <os>SOLARIS:<library>socket
     <os>SOLARIS:<library>nsl
- <os>NT:<define>_WIN32_WINNT=0x0500
+ <os>NT:<define>_WIN32_WINNT=0x0501
     <os>NT,<toolset>gcc:<library>ws2_32
     <os>NT,<toolset>gcc:<library>mswsock
     <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS

Modified: trunk/libs/asio/example/timers/Jamfile.v2
==============================================================================
--- trunk/libs/asio/example/timers/Jamfile.v2 (original)
+++ trunk/libs/asio/example/timers/Jamfile.v2 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
@@ -29,7 +29,7 @@
     <threading>multi
     <os>SOLARIS:<library>socket
     <os>SOLARIS:<library>nsl
- <os>NT:<define>_WIN32_WINNT=0x0500
+ <os>NT:<define>_WIN32_WINNT=0x0501
     <os>NT,<toolset>gcc:<library>ws2_32
     <os>NT,<toolset>gcc:<library>mswsock
     <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS

Modified: trunk/libs/asio/example/tutorial/Jamfile.v2
==============================================================================
--- trunk/libs/asio/example/tutorial/Jamfile.v2 (original)
+++ trunk/libs/asio/example/tutorial/Jamfile.v2 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
@@ -30,7 +30,7 @@
     <threading>multi
     <os>SOLARIS:<library>socket
     <os>SOLARIS:<library>nsl
- <os>NT:<define>_WIN32_WINNT=0x0500
+ <os>NT:<define>_WIN32_WINNT=0x0501
     <os>NT,<toolset>gcc:<library>ws2_32
     <os>NT,<toolset>gcc:<library>mswsock
     <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS

Modified: trunk/libs/asio/test/ssl/Jamfile.v2
==============================================================================
--- trunk/libs/asio/test/ssl/Jamfile.v2 (original)
+++ trunk/libs/asio/test/ssl/Jamfile.v2 2007-10-17 03:58:38 EDT (Wed, 17 Oct 2007)
@@ -40,7 +40,7 @@
     <threading>multi
     <os>SOLARIS:<library>socket
     <os>SOLARIS:<library>nsl
- <os>NT:<define>_WIN32_WINNT=0x0500
+ <os>NT:<define>_WIN32_WINNT=0x0501
     <os>NT,<toolset>gcc:<library>ws2_32
     <os>NT,<toolset>gcc:<library>mswsock
     <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk