Chris@16: /* Chris@101: Copyright Rene Rivera 2008-2013 Chris@16: Distributed under the Boost Software License, Version 1.0. Chris@16: (See accompanying file LICENSE_1_0.txt or copy at Chris@16: http://www.boost.org/LICENSE_1_0.txt) Chris@16: */ Chris@16: Chris@16: #ifndef BOOST_PREDEF_LIBRARY_STD_STLPORT_H Chris@16: #define BOOST_PREDEF_LIBRARY_STD_STLPORT_H Chris@16: Chris@16: #include Chris@16: Chris@16: #include Chris@16: #include Chris@16: Chris@16: /*` Chris@16: [heading `BOOST_LIB_STD_STLPORT`] Chris@16: Chris@16: [@http://sourceforge.net/projects/stlport/ STLport Standard C++] library. Chris@16: Version number available as major, minor, and patch. Chris@16: Chris@16: [table Chris@16: [[__predef_symbol__] [__predef_version__]] Chris@16: Chris@16: [[`__SGI_STL_PORT`] [__predef_detection__]] Chris@16: [[`_STLPORT_VERSION`] [__predef_detection__]] Chris@16: Chris@16: [[`_STLPORT_MAJOR`, `_STLPORT_MINOR`, `_STLPORT_PATCHLEVEL`] [V.R.P]] Chris@16: [[`_STLPORT_VERSION`] [V.R.P]] Chris@16: [[`__SGI_STL_PORT`] [V.R.P]] Chris@16: ] Chris@16: */ Chris@16: Chris@16: #define BOOST_LIB_STD_STLPORT BOOST_VERSION_NUMBER_NOT_AVAILABLE Chris@16: Chris@16: #if defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION) Chris@16: # undef BOOST_LIB_STD_STLPORT Chris@16: # if !defined(BOOST_LIB_STD_STLPORT) && defined(_STLPORT_MAJOR) Chris@16: # define BOOST_LIB_STD_STLPORT \ Chris@16: BOOST_VERSION_NUMBER(_STLPORT_MAJOR,_STLPORT_MINOR,_STLPORT_PATCHLEVEL) Chris@16: # endif Chris@16: # if !defined(BOOST_LIB_STD_STLPORT) && defined(_STLPORT_VERSION) Chris@16: # define BOOST_LIB_STD_STLPORT BOOST_PREDEF_MAKE_0X_VRP(_STLPORT_VERSION) Chris@16: # endif Chris@16: # if !defined(BOOST_LIB_STD_STLPORT) Chris@16: # define BOOST_LIB_STD_STLPORT BOOST_PREDEF_MAKE_0X_VRP(__SGI_STL_PORT) Chris@16: # endif Chris@16: #endif Chris@16: Chris@16: #if BOOST_LIB_STD_STLPORT Chris@16: # define BOOST_LIB_STD_STLPORT_AVAILABLE Chris@16: #endif Chris@16: Chris@16: #define BOOST_LIB_STD_STLPORT_NAME "STLport" Chris@16: Chris@16: #include Chris@16: BOOST_PREDEF_DECLARE_TEST(BOOST_LIB_STD_STLPORT,BOOST_LIB_STD_STLPORT_NAME) Chris@16: Chris@16: Chris@16: #endif