asio version 1.4.2 released
diff --git a/asio/README b/asio/README
index 3843fcc..758414c 100644
--- a/asio/README
+++ b/asio/README
@@ -1,4 +1,4 @@
-asio version 1.4.1
-Released Wednesday, 04 March 2009.
+asio version 1.4.2
+Released Friday, 26 June 2009.
 
 See doc/index.html for API documentation and a tutorial.
diff --git a/asio/asio.manifest b/asio/asio.manifest
index a1efaeb..78a4589 100644
--- a/asio/asio.manifest
+++ b/asio/asio.manifest
@@ -2842,6 +2842,8 @@
 /src/tests/performance/handler_allocator.hpp
 /src/tests/performance/server.cpp
 /src/tests/unit/
+/src/tests/unit/archetypes/
+/src/tests/unit/archetypes/io_control_command.hpp
 /src/tests/unit/basic_datagram_socket.cpp
 /src/tests/unit/basic_deadline_timer.cpp
 /src/tests/unit/basic_serial_port.cpp
diff --git a/asio/boost_asio.manifest b/asio/boost_asio.manifest
index e3c6a75..3b23e64 100644
--- a/asio/boost_asio.manifest
+++ b/asio/boost_asio.manifest
@@ -3059,6 +3059,8 @@
 /libs/asio/index.html
 /libs/asio/module.cmake
 /libs/asio/test/
+/libs/asio/test/archetypes/
+/libs/asio/test/archetypes/io_control_command.hpp
 /libs/asio/test/basic_datagram_socket.cpp
 /libs/asio/test/basic_deadline_timer.cpp
 /libs/asio/test/basic_serial_port.cpp
diff --git a/asio/configure.ac b/asio/configure.ac
index 0f61f12..e44a000 100644
--- a/asio/configure.ac
+++ b/asio/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT(asio, [1.4.1])
+AC_INIT(asio, [1.4.2])
 AC_CONFIG_SRCDIR(include/asio.hpp)
 AM_MAINTAINER_MODE
 AM_INIT_AUTOMAKE([tar-ustar])
@@ -17,37 +17,42 @@
   CPPFLAGS="$CPPFLAGS -I${withval}"
 ],
 [
-  BOOSTDIR="`pwd`/../boost_1_38_0"
+  BOOSTDIR="`pwd`/../boost_1_39_0"
   if test -d "${BOOSTDIR}"; then
     CPPFLAGS="$CPPFLAGS -I${BOOSTDIR}"
   else
-    BOOSTDIR="`pwd`/../boost_1_37_0"
+    BOOSTDIR="`pwd`/../boost_1_38_0"
     if test -d "${BOOSTDIR}"; then
       CPPFLAGS="$CPPFLAGS -I${BOOSTDIR}"
     else
-      BOOSTDIR="`pwd`/../boost_1_36_0"
+      BOOSTDIR="`pwd`/../boost_1_37_0"
       if test -d "${BOOSTDIR}"; then
         CPPFLAGS="$CPPFLAGS -I${BOOSTDIR}"
       else
-        BOOSTDIR="`pwd`/../boost_1_35_0"
+        BOOSTDIR="`pwd`/../boost_1_36_0"
         if test -d "${BOOSTDIR}"; then
           CPPFLAGS="$CPPFLAGS -I${BOOSTDIR}"
         else
-          BOOSTDIR="`pwd`/../boost_1_34_1"
+          BOOSTDIR="`pwd`/../boost_1_35_0"
           if test -d "${BOOSTDIR}"; then
             CPPFLAGS="$CPPFLAGS -I${BOOSTDIR}"
           else
-            BOOSTDIR="`pwd`/../boost_1_34_0"
+            BOOSTDIR="`pwd`/../boost_1_34_1"
             if test -d "${BOOSTDIR}"; then
               CPPFLAGS="$CPPFLAGS -I${BOOSTDIR}"
             else
-              BOOSTDIR="`pwd`/../boost_1_33_1"
+              BOOSTDIR="`pwd`/../boost_1_34_0"
               if test -d "${BOOSTDIR}"; then
                 CPPFLAGS="$CPPFLAGS -I${BOOSTDIR}"
               else
-                BOOSTDIR="`pwd`/../boost_1_33_0"
+                BOOSTDIR="`pwd`/../boost_1_33_1"
                 if test -d "${BOOSTDIR}"; then
                   CPPFLAGS="$CPPFLAGS -I${BOOSTDIR}"
+                else
+                  BOOSTDIR="`pwd`/../boost_1_33_0"
+                  if test -d "${BOOSTDIR}"; then
+                    CPPFLAGS="$CPPFLAGS -I${BOOSTDIR}"
+                  fi
                 fi
               fi
             fi
diff --git a/asio/include/asio/version.hpp b/asio/include/asio/version.hpp
index 6a107ba..0cc1e27 100644
--- a/asio/include/asio/version.hpp
+++ b/asio/include/asio/version.hpp
@@ -18,6 +18,6 @@
 // ASIO_VERSION % 100 is the sub-minor version
 // ASIO_VERSION / 100 % 1000 is the minor version
 // ASIO_VERSION / 100000 is the major version
-#define ASIO_VERSION 100401 // 1.4.1
+#define ASIO_VERSION 100402 // 1.4.2
 
 #endif // ASIO_VERSION_HPP