/*============================================================================= Copyright (c) 2011-2016 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ #ifndef SPROUT_CONFIG_STDLIB_HPP #define SPROUT_CONFIG_STDLIB_HPP // for STLport // !!! OLD: //#ifdef __cplusplus //# include //#else //# include //#endif #ifdef __cplusplus # include #else # include #endif #if defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION) # include #else #if !defined(__LIBCOMO__) && !defined(__STD_RWCOMPILER_H__) && !defined(_RWSTD_VER) \ && !defined(_LIBCPP_VERSION) && !defined(__GLIBCPP__) && !defined(__GLIBCXX__) \ && !defined(__STL_CONFIG_H) && !defined(__MSL_CPP__) && !defined(__IBMCPP__) \ && !defined(MSIPL_COMPILE_H) && !defined(_YVALS) && !defined(_CPPLIB_VER) # include #endif # if defined(__LIBCOMO__) # include # elif defined(__STD_RWCOMPILER_H__) || defined(_RWSTD_VER) # include # elif defined(_LIBCPP_VERSION) # include # elif defined(__GLIBCPP__) || defined(__GLIBCXX__) # include # elif defined(__STL_CONFIG_H) # include # elif defined(__MSL_CPP__) # include # elif defined(__IBMCPP__) # include # elif defined(MSIPL_COMPILE_H) # include # elif (defined(_YVALS) && !defined(__IBMCPP__)) || defined(_CPPLIB_VER) # include # endif #endif #endif // #ifndef SPROUT_CONFIG_STDLIB_HPP