Ticket #2924: config.patch

File config.patch, 1.0 KB (added by Daniel James, 14 years ago)
  • boost/config/stdlib/libstdcpp3.hpp

     
    99//  config for libstdc++ v3
    1010//  not much to go in here:
    1111
     12#if !defined(__GLIBCXX__) && !defined(__GLIBCPP__)
     13#include <utility>
     14#endif
     15
    1216#ifdef __GLIBCXX__
    1317#define BOOST_STDLIB "GNU libstdc++ version " BOOST_STRINGIZE(__GLIBCXX__)
    1418#else
  • boost/config/select_stdlib_config.hpp

     
    3333// Rogue Wave library:
    3434#  define BOOST_STDLIB_CONFIG "boost/config/stdlib/roguewave.hpp"
    3535
    36 #elif defined(__GLIBCPP__) || defined(__GLIBCXX__)
     36#elif defined(__GLIBCPP__) || defined(__GLIBCXX__) || defined(_GLIBCXX_CSTDDEF)
    3737// GNU libstdc++ 3
    3838#  define BOOST_STDLIB_CONFIG "boost/config/stdlib/libstdcpp3.hpp"
    3939