Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r76448 - trunk/boost/asio/detail
From: chris_at_[hidden]
Date: 2012-01-13 07:58:00


Author: chris_kohlhoff
Date: 2012-01-13 07:57:59 EST (Fri, 13 Jan 2012)
New Revision: 76448
URL: http://svn.boost.org/trac/boost/changeset/76448

Log:
Disable object_handle on Windows CE.
Text files modified:
   trunk/boost/asio/detail/config.hpp | 4 +++-
   1 files changed, 3 insertions(+), 1 deletions(-)

Modified: trunk/boost/asio/detail/config.hpp
==============================================================================
--- trunk/boost/asio/detail/config.hpp (original)
+++ trunk/boost/asio/detail/config.hpp 2012-01-13 07:57:59 EST (Fri, 13 Jan 2012)
@@ -314,7 +314,9 @@
 // Windows: object handles.
 #if !defined(BOOST_ASIO_DISABLE_WINDOWS_OBJECT_HANDLE)
 # if defined(BOOST_WINDOWS) || defined(__CYGWIN__)
-# define BOOST_ASIO_HAS_WINDOWS_OBJECT_HANDLE 1
+# if !defined(UNDER_CE)
+# define BOOST_ASIO_HAS_WINDOWS_OBJECT_HANDLE 1
+# endif // !defined(UNDER_CE)
 # endif // defined(BOOST_WINDOWS) || defined(__CYGWIN__)
 #endif // !defined(BOOST_ASIO_DISABLE_WINDOWS_OBJECT_HANDLE)
 


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