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

gcc 3.4 from gcc.gnu.org still suffers from the old static initialization bug under Mac OS 10: workaround adjusted accordingly

[SVN r22255]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2004-02-13 07:10:59 +00:00
parent ae1584ff3c
commit 355e155e69

View File

@@ -12,7 +12,7 @@
#include <boost/lexical_cast.hpp>
#if defined(__APPLE__) && defined(__MACH__) && defined(__GNUC__) \
&& __GNUC__ == 3 && __GNUC_MINOR__ == 3 && !defined(__APPLE_CC__)
&& __GNUC__ == 3 && __GNUC_MINOR__ <= 4 && !defined(__APPLE_CC__)
# define BOOST_PYTHON_CONVERTER_REGISTRY_APPLE_MACH_WORKAROUND
#endif