turn on auto link support for Intel (from John Maddock)

[SVN r21551]
This commit is contained in:
Beman Dawes
2004-01-09 00:52:02 +00:00
parent 176b94c8d4
commit 7bdb84544f

View File

@@ -81,7 +81,9 @@ BOOST_LIB_VERSION: The Boost version, in the form x_y, for Boost version x.y.
// //
// Only include what follows for known and supported compilers: // Only include what follows for known and supported compilers:
// //
#if defined(BOOST_MSVC) || defined(__BORLANDC__) #if (defined(BOOST_MSVC) && defined(_MSC_EXTENSIONS)) \
|| defined(__BORLANDC__) \
|| (defined(__ICL) && defined(_MSC_EXTENSIONS) && (_MSC_VER >= 1200))
#ifndef BOOST_VERSION_HPP #ifndef BOOST_VERSION_HPP
# include <boost/version.hpp> # include <boost/version.hpp>
@@ -122,6 +124,11 @@ BOOST_LIB_VERSION: The Boost version, in the form x_y, for Boost version x.y.
// CBuilder 6: // CBuilder 6:
# define BOOST_LIB_TOOLSET "bcb" # define BOOST_LIB_TOOLSET "bcb"
#elif defined(__ICL)
// Intel C++, no version number:
# define BOOST_LIB_TOOLSET "iw"
#endif #endif
// //