]> git.pld-linux.org Git - packages/boost.git/blob - boost-atomicity.patch
- updated to 1.34.1.
[packages/boost.git] / boost-atomicity.patch
1 diff -urN boost.org/detail/atomic_count_gcc.hpp boost/detail/atomic_count_gcc.hpp
2 --- boost.org/detail/atomic_count_gcc.hpp       2005-04-02 11:37:53.000000000 +0000
3 +++ boost/detail/atomic_count_gcc.hpp   2007-04-24 19:03:25.516377811 +0000
4 @@ -17,7 +17,11 @@
5  //  http://www.boost.org/LICENSE_1_0.txt)
6  //
7  
8 -#include <bits/atomicity.h>
9 +#if (__GNUC__ >= 4 && __GNUC_MINOR__ >= 2)
10 +#include <ext/atomicity.h>
11 +#else
12 +#include <bits/atomicity.h>
13 +#endif
14  
15  namespace boost
16  {
This page took 0.05305 seconds and 3 git commands to generate.