Fixed STLPort detection

[SVN r19413]
This commit is contained in:
John Maddock
2003-08-03 11:44:41 +00:00
parent 33c6aa103a
commit aee541b006

View File

@ -36,7 +36,7 @@
# define BOOST_REGEX_NO_TEST
#endif
#if defined(__GNUC__) && (__GNUC__ < 3) && defined(_STLP_VERSION) && defined(BOOST_REGEX_DYN_LINK)
#if defined(__GNUC__) && (__GNUC__ < 3) && (defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)) && defined(BOOST_REGEX_DYN_LINK)
// gcc2.95 + STLport runs out of memory trying to link, looks like a compiler bug...
# define BOOST_REGEX_NO_TEST
#endif