
----- Original Message ----- From: "Bryce Lelbach" <admin@thefireflyproject.us> To: <boost@lists.boost.org> Sent: Saturday, January 22, 2011 6:45 PM Subject: Re: [boost] [config][pathscale] Configurations for older versions
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On Sat, 22 Jan 2011 17:12:18 -0000 John Maddock <boost.regex@virgin.net> wrote:
So... the plan B would be to change select_compiler.hpp to only forward to pathscale.hpp when __PATHSCALE__ >= 4.
I wrote it to do this. If it doesn't do it, then someone reverted/changed it.
select_compiler.hpp constains #elif defined __PATHSCALE__ // PathScale EKOPath compiler (has to come before clang and gcc) # define BOOST_COMPILER_CONFIG "boost/config/compiler/pathscale.hpp" and boost/config/compiler/pathscale.hpp add difies only if __PATHCC__ >= 4. #if __PATHCC__ >= 4 # define BOOST_MSVC6_MEMBER_TEMPLATES ... I think the best will to don't change select_compiler.hpp and if __PATHCC__ < 4 include boost/config/compiler/gcc.hpp in the file pathscale.hpp. Best, Vicente