Le 09/10/2012 16:57, Jürgen Spitzmüller a écrit :
Jean-Marc Lasgouttes wrote:
../boost/boost/config/stdlib/libstdcpp3.hpp:42:0: warning:
"BOOST_DISABLE_THREADS" redefined [enabled by default]
In file included from BiblioInfo.cpp:13:0:
../config.h:628:0: note: this is the location of the previous definition

Is it only on branch?

Yes, I only see it on branch.

Can you check that the following patch helps?

JMarc



diff --git a/configure.ac b/configure.ac
index f9c35bf..670927e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -301,7 +301,9 @@ char * strerror(int n);
 #endif
 #define BOOST_ENABLE_ASSERT_HANDLER 1
 
-#define BOOST_DISABLE_THREADS 1
+#if !defined(BOOST_DISABLE_THREADS)
+#  define BOOST_DISABLE_THREADS 1
+#endif
 #define BOOST_NO_WREGEX 1
 #define BOOST_NO_WSTRING 1
 

Reply via email to