Hi,

The CMakeLists.txt file in libs/thread/src references exceptions.cpp in both pthread and win32 subdirectories, but neither of these files exist. I've removed the reference to both of these and would appreciate it if someone could commit this patch to Subversion (or I'll do it myself if that's okay with you).

-- Noel

Index: src/CMakeLists.txt
===================================================================
--- src/CMakeLists.txt  (revision 56696)
+++ src/CMakeLists.txt  (working copy)
@@ -5,10 +5,9 @@
 # See http://www.boost.org/LICENSE_1_0.txt
 #
 if (WIN32)
- set(THREAD_SOURCES win32/thread.cpp win32/exceptions.cpp win32/ tss_dll.cpp
-                     win32/tss_pe.cpp)
+ set(THREAD_SOURCES win32/thread.cpp win32/tss_dll.cpp win32/ tss_pe.cpp)
 else (WIN32)
- set(THREAD_SOURCES pthread/thread.cpp pthread/exceptions.cpp pthread/once.cpp)
+  set(THREAD_SOURCES pthread/thread.cpp pthread/once.cpp)
 endif (WIN32)

 boost_add_library(


_______________________________________________
Boost-cmake mailing list
Boost-cmake@lists.boost.org
http://lists.boost.org/mailman/listinfo.cgi/boost-cmake

Reply via email to