Hopefully fixed Intel C++ on linux by adding BOOST_NO_STDC_NAMESPACE

(the C++ headers for this compiler seem to do an incomplete job of
importing C functions into std:: as per usual).


[SVN r14018]
This commit is contained in:
John Maddock
2002-05-23 11:41:10 +00:00
parent edc44fc45d
commit 52a0dc9a14

View File

@ -32,6 +32,13 @@
# define BOOST_NO_STDC_NAMESPACE
#endif
//
// Intel on linux doesn't have swprintf in std::
//
#ifdef __ICC
# define BOOST_NO_STDC_NAMESPACE
#endif
//
// If glibc is past version 2 then we definitely have
// gettimeofday, earlier versions may or may not have it: