2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-22 17:32:55 +00:00

Restore workaround for Compaq cxx and SGI CC (it is a generic EDG problem).

[SVN r13438]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2002-04-10 20:56:35 +00:00
parent 5dab2802b3
commit b704d42fe4

View File

@@ -81,7 +81,9 @@
# define BOOST_PYTHON_STATIC_LINK
#endif
#if defined(__MWERKS__)
#if defined(__MWERKS__) \
|| (defined(__DECCXX_VER) && __DECCXX_VER <= 60590002) \
|| (defined(__sgi) && defined(_COMPILER_VERSION) && _COMPILER_VERSION <= 730)
# define BOOST_PYTHON_NO_TEMPLATE_EXPORT
#endif