diff --git a/build/boost/doc/Jamfile.jam b/build/boost/doc/Jamfile.jam index f407aed..bf5b54d 100644 --- a/build/boost/doc/Jamfile.jam +++ b/build/boost/doc/Jamfile.jam @@ -39,10 +39,9 @@ boostbook standalone nav.layout=horizontal ; -# not needed anymore once in boost project example : requirements - ../../../../.. + ../include ; rule compile-examples diff --git a/build/boost/test/Jamfile.jam b/build/boost/test/Jamfile.jam index 16b16bf..79e96fd 100644 --- a/build/boost/test/Jamfile.jam +++ b/build/boost/test/Jamfile.jam @@ -8,7 +8,12 @@ import testing ; -project : requirements BOOST_AUTO_TEST_MAIN BOOST_ALL_NO_LIB ; +project + : requirements + BOOST_AUTO_TEST_MAIN + BOOST_ALL_NO_LIB + ../include +; rule run-test ( name ) { diff --git a/build/build.xml b/build/build.xml index 35b9d23..5c87853 100644 --- a/build/build.xml +++ b/build/build.xml @@ -143,10 +143,9 @@ - - - + + @@ -168,45 +167,38 @@ + - - - + - + - + - - - - - - @@ -238,15 +230,18 @@ - - + + + + + - + diff --git a/test/detail/test_is_functor.cpp b/test/detail/test_is_functor.cpp index e5c63ff..ea357c2 100644 --- a/test/detail/test_is_functor.cpp +++ b/test/detail/test_is_functor.cpp @@ -12,7 +12,7 @@ #pragma warning( push, 0 ) #endif #include -#include +#include #ifdef BOOST_MSVC #pragma warning( pop ) #endif diff --git a/test/test_log.cpp b/test/test_log.cpp index b8b44f0..6722c44 100644 --- a/test/test_log.cpp +++ b/test/test_log.cpp @@ -15,8 +15,8 @@ #ifdef BOOST_MSVC #pragma warning( push, 0 ) #endif -#include -#include +#include +#include #ifndef BOOST_MSVC // this produces an ICE with all versions of MSVC #include #include diff --git a/turtle/config.hpp b/turtle/config.hpp index 36b90f8..b1262b2 100644 --- a/turtle/config.hpp +++ b/turtle/config.hpp @@ -22,6 +22,7 @@ # define MOCK_MAX_ARGS 9 #elif BOOST_PP_LESS(9, MOCK_MAX_ARGS) # define MOCK_USE_BOOST_PHOENIX +# define BOOST_PHOENIX_USE_V2_OVER_V3 #endif #ifndef MOCK_MAX_SEQUENCES diff --git a/turtle/detail/lambda.hpp b/turtle/detail/lambda.hpp index e805ab6..4ee35d7 100644 --- a/turtle/detail/lambda.hpp +++ b/turtle/detail/lambda.hpp @@ -11,7 +11,7 @@ #include "../config.hpp" #ifdef MOCK_USE_BOOST_PHOENIX -#include +#include #else #include #endif