Hello,

Boost.Test does not currently honor BOOST_DISABLE_WIN32. The attacched patch
fixes it. Can someone review & apply this patch?

Thanks
Giovanni Bajo
Index: execution_monitor.cpp
===================================================================
RCS file: /cvsroot/boost/boost/libs/test/src/execution_monitor.cpp,v
retrieving revision 1.21
diff -u -w -r1.21 execution_monitor.cpp
--- execution_monitor.cpp       17 Feb 2003 10:04:21 -0000      1.21
+++ execution_monitor.cpp       9 Jun 2003 17:16:27 -0000
@@ -43,7 +43,7 @@
 #endif
 
 // Microsoft + other compatible compilers such as Intel
-#if defined(_MSC_VER) || (defined(__INTEL__) && defined(__MWERKS__) && __MWERKS__ >= 
0x3000)
+#if !defined(BOOST_DISABLE_WIN32) && (defined(_MSC_VER) || (defined(__INTEL__) && 
defined(__MWERKS__) && __MWERKS__ >= 0x3000))
 
 #define BOOST_MS_STRCTURED_EXCEPTION_HANDLING
 #include <wtypes.h>
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

Reply via email to