Skip to content

Commit d0d2110

Browse files
committed
fix swab bug so mpl will compile on solaris with cxx 6
svn path=/trunk/matplotlib/; revision=8484
1 parent c716d21 commit d0d2110

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

CHANGELOG

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2010-07-02 Modified CXX/WrapPython.h to fix "swab bug" on solaris so
2+
mpl can compile on Solaris with CXX6 in the trunk. Closes
3+
tracker bug 3022815 - JDH
4+
15
2010-06-30 Added autoscale convenience method and corresponding
26
pyplot function for simplified control of autoscaling;
37
and changed axis, set_xlim, and set_ylim so that by

CXX/WrapPython.h

+3
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@
4848
#if defined(_XPG4)
4949
#undef _XPG4
5050
#endif
51+
#if defined(_XPG3)
52+
#undef _XPG3
53+
#endif
5154
#endif
5255

5356
// Python.h will redefine these and generate warning in the process

0 commit comments

Comments
 (0)