You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(33) |
Dec
(20) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(7) |
Feb
(44) |
Mar
(51) |
Apr
(43) |
May
(43) |
Jun
(36) |
Jul
(61) |
Aug
(44) |
Sep
(25) |
Oct
(82) |
Nov
(97) |
Dec
(47) |
| 2005 |
Jan
(77) |
Feb
(143) |
Mar
(42) |
Apr
(31) |
May
(93) |
Jun
(93) |
Jul
(35) |
Aug
(78) |
Sep
(56) |
Oct
(44) |
Nov
(72) |
Dec
(75) |
| 2006 |
Jan
(116) |
Feb
(99) |
Mar
(181) |
Apr
(171) |
May
(112) |
Jun
(86) |
Jul
(91) |
Aug
(111) |
Sep
(77) |
Oct
(72) |
Nov
(57) |
Dec
(51) |
| 2007 |
Jan
(64) |
Feb
(116) |
Mar
(70) |
Apr
(74) |
May
(53) |
Jun
(40) |
Jul
(519) |
Aug
(151) |
Sep
(132) |
Oct
(74) |
Nov
(282) |
Dec
(190) |
| 2008 |
Jan
(141) |
Feb
(67) |
Mar
(69) |
Apr
(96) |
May
(227) |
Jun
(404) |
Jul
(399) |
Aug
(96) |
Sep
(120) |
Oct
(205) |
Nov
(126) |
Dec
(261) |
| 2009 |
Jan
(136) |
Feb
(136) |
Mar
(119) |
Apr
(124) |
May
(155) |
Jun
(98) |
Jul
(136) |
Aug
(292) |
Sep
(174) |
Oct
(126) |
Nov
(126) |
Dec
(79) |
| 2010 |
Jan
(109) |
Feb
(83) |
Mar
(139) |
Apr
(91) |
May
(79) |
Jun
(164) |
Jul
(184) |
Aug
(146) |
Sep
(163) |
Oct
(128) |
Nov
(70) |
Dec
(73) |
| 2011 |
Jan
(235) |
Feb
(165) |
Mar
(147) |
Apr
(86) |
May
(74) |
Jun
(118) |
Jul
(65) |
Aug
(75) |
Sep
(162) |
Oct
(94) |
Nov
(48) |
Dec
(44) |
| 2012 |
Jan
(49) |
Feb
(40) |
Mar
(88) |
Apr
(35) |
May
(52) |
Jun
(69) |
Jul
(90) |
Aug
(123) |
Sep
(112) |
Oct
(120) |
Nov
(105) |
Dec
(116) |
| 2013 |
Jan
(76) |
Feb
(26) |
Mar
(78) |
Apr
(43) |
May
(61) |
Jun
(53) |
Jul
(147) |
Aug
(85) |
Sep
(83) |
Oct
(122) |
Nov
(18) |
Dec
(27) |
| 2014 |
Jan
(58) |
Feb
(25) |
Mar
(49) |
Apr
(17) |
May
(29) |
Jun
(39) |
Jul
(53) |
Aug
(52) |
Sep
(35) |
Oct
(47) |
Nov
(110) |
Dec
(27) |
| 2015 |
Jan
(50) |
Feb
(93) |
Mar
(96) |
Apr
(30) |
May
(55) |
Jun
(83) |
Jul
(44) |
Aug
(8) |
Sep
(5) |
Oct
|
Nov
(1) |
Dec
(1) |
| 2016 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
(3) |
Sep
(1) |
Oct
(3) |
Nov
|
Dec
|
| 2017 |
Jan
|
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
|
Sep
(7) |
Oct
|
Nov
|
Dec
|
| 2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
|
|
|
|
1
(4) |
|
2
(3) |
3
(12) |
4
(8) |
5
(10) |
6
(21) |
7
(25) |
8
(3) |
|
9
(3) |
10
(4) |
11
(6) |
12
(20) |
13
(32) |
14
(15) |
15
(4) |
|
16
(2) |
17
(4) |
18
(2) |
19
(3) |
20
(3) |
21
(7) |
22
(16) |
|
23
(2) |
24
(14) |
25
(11) |
26
(4) |
27
(2) |
28
(3) |
29
(5) |
|
30
(26) |
31
(18) |
|
|
|
|
|
|
From: Ryanitus <rya...@ho...> - 2009-08-21 23:24:35
|
Hello.
I was doing a simple test using a FIFOBuffer. I set the dataLim parameter
to the dataLim of a Line2D plot. After adding a value to the FIFO, it
raises an exception. It looks like the FIFO is trying to call
Bbox.update(), but that method does not exist. Other update_*() methods do.
Any ideas?
Here's a snippet:
import matplotlib.pyplot as plt
from matplotlib.mlab import FIFOBuffer as FIFO
f = FIFO(100)
p = plt.plot([0,1,2],[0,1,2])
f.dataLim = p[0].get_axes().dataLim
plt.draw()
f.add(3,3)
Here's the exception:
Traceback (most recent call last):
File "C:\fifo.py", line 9, in <module>
f.add(3,3)
File "C:\Python26\lib\site-packages\matplotlib\mlab.py", line 1103, in add
self.dataLim.update(xys, -1) #-1 means use the default ignore setting
AttributeError: 'Bbox' object has no attribute 'update'
--
View this message in context: http://www.nabble.com/FIFOBuffer.add%28%29-calls-Bbox.update%28%29%2C-not-a-method-tp25088841p25088841.html
Sent from the matplotlib - devel mailing list archive at Nabble.com.
|
|
From: Tobias W. <t.w...@im...> - 2009-08-21 17:47:58
|
Hi, I've been having the same problem. I've done some digging and now know why this is happening, but have no idea how to fix it! Someone has updated _macosx.m to use the new CTFont functionality in the 10.5 SDK. Unfortunately, the #ifdef checks they have put in to ensure that the 10.5 SDK is being used don't seem to work properly, and the matplotlib build process specifies the 10.4 SDK. Currently the checks are done using: #ifdef MAC_OS_X_VERSION_10_5 but if you are building on 10.5 this seems to always be defined, even with the SDK specified to 10.4. I've spent a while reading through the Apple docs but have to admit I'm a little mystified as to how to properly check for the SDK version. Out of curiosity, why is the 10.4 SDK specified and how? Is this part of distutils? And why, even with the 10.4 SDK, is the resulting output bundle called 10.3 fat? Toby On 20 Aug 2009, at 16:33, Michael Hearne wrote: > I'm attempting to build matplotlib from source (0.99.0 from > sourceforge) on Mac OS 10.5, and I'm getting the build output below > (with errors). Is there some setting I need to make for the mac OS > backend? > > --Mike > > = > = > = > = > = > = > ====================================================================== > BUILDING MATPLOTLIB > matplotlib: 0.99.0 > python: 2.5.4 |EPD_Py25 4.3.0| (r254:67916, May 17 > 2009, > 20:07:12) [GCC 4.0.1 (Apple Computer, Inc. > build > 5370)] > platform: darwin > > REQUIRED DEPENDENCIES > numpy: 1.3.0 > freetype2: 9.20.3 > > OPTIONAL BACKEND DEPENDENCIES > libpng: 1.2.37 > Tkinter: Tkinter: 67737, Tk: 8.4, Tcl: 8.4 > wxPython: 2.8.7.1 > * WxAgg extension not required for wxPython >> = 2.8 > Gtk+: no > * Building for Gtk+ requires pygtk; you must > be able > * to "import gtk" in your build/install > environment > Mac OS X native: yes > Qt: no > Qt4: no > Cairo: no > > OPTIONAL DATE/TIMEZONE DEPENDENCIES > datetime: present, version unknown > dateutil: 1.4 > pytz: 2008c > > OPTIONAL USETEX DEPENDENCIES > dvipng: no > ghostscript: 8.54 > latex: no > > [Edit setup.cfg to suppress the above messages] > = > = > = > = > = > = > ====================================================================== > pymods ['pylab'] > packages ['matplotlib', 'matplotlib.backends', > 'matplotlib.projections', 'mpl_toolkits', 'mpl_toolkits.mplot3d', > 'mpl_toolkits.axes_grid', 'matplotlib.sphinxext', > 'matplotlib.numerix', 'matplotlib.numerix.mlab', > 'matplotlib.numerix.ma', 'matplotlib.numerix.linear_algebra', > 'matplotlib.numerix.random_array', 'matplotlib.numerix.fft', > 'matplotlib.delaunay'] > running build > running build_py > copying lib/matplotlib/mpl-data/matplotlibrc -> build/lib.macosx-10.3- > fat-2.5/matplotlib/mpl-data > copying lib/matplotlib/mpl-data/matplotlib.conf -> build/ > lib.macosx-10.3-fat-2.5/matplotlib/mpl-data > running build_ext > building 'matplotlib.backends._macosx' extension > creating build/temp.macosx-10.3-fat-2.5 > creating build/temp.macosx-10.3-fat-2.5/src > creating build/temp.macosx-10.3-fat-2.5/CXX > gcc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict- > aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno- > common - > dynamic -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include - > DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/ > Python.framework/Versions/4.3.0/lib/python2.5/site-packages/ > numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/ > local/include -I/usr/include -I/sw/include -I. -I/Library/Frameworks/ > Python.framework/Versions/4.3.0/lib/python2.5/site-packages/ > numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -Isrc - > Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/ > 4.3.0/include/python2.5 -c src/_macosx.m -o build/temp.macosx-10.3- > fat-2.5/src/_macosx.o > src/_macosx.m:1885: error: syntax error before ‘setfont’ > src/_macosx.m: In function ‘setfont’: > src/_macosx.m:1895: error: ‘CTFontRef’ undeclared (first use in this > function) > src/_macosx.m:1895: error: (Each undeclared identifier is reported > only once > src/_macosx.m:1895: error: for each function it appears in.) > src/_macosx.m:1895: error: syntax error before ‘font’ > src/_macosx.m:2095: error: ‘font’ undeclared (first use in this > function) > src/_macosx.m: In function ‘GraphicsContext_draw_text’: > src/_macosx.m:2138: error: ‘CTFontRef’ undeclared (first use in this > function) > src/_macosx.m:2138: error: syntax error before ‘font’ > src/_macosx.m:2163: error: ‘font’ undeclared (first use in this > function) > src/_macosx.m:2168: warning: assignment makes pointer from integer > without a cast > src/_macosx.m:2170: error: ‘kCTFontAttributeName’ undeclared (first > use in this function) > src/_macosx.m:2171: error: ‘kCTForegroundColorAttributeName’ > undeclared (first use in this function) > src/_macosx.m:2191: error: ‘CTLineRef’ undeclared (first use in this > function) > src/_macosx.m:2191: error: syntax error before ‘line’ > src/_macosx.m:2194: error: ‘line’ undeclared (first use in this > function) > src/_macosx.m: In function > ‘GraphicsContext_get_text_width_height_descent’: > src/_macosx.m:2238: error: ‘CTFontRef’ undeclared (first use in this > function) > src/_macosx.m:2238: error: syntax error before ‘font’ > src/_macosx.m:2251: error: ‘font’ undeclared (first use in this > function) > src/_macosx.m:2256: error: ‘kCTFontAttributeName’ undeclared (first > use in this function) > src/_macosx.m:2274: error: ‘CTLineRef’ undeclared (first use in this > function) > src/_macosx.m:2274: error: syntax error before ‘line’ > src/_macosx.m:2277: error: ‘line’ undeclared (first use in this > function) > src/_macosx.m:2285: error: incompatible types in assignment > error: command 'gcc' failed with exit status 1 > > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > 30-Day > trial. Simplify your report design, integration and deployment - and > focus on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel |
|
From: John H. <jd...@gm...> - 2009-08-21 16:15:29
|
On Fri, Aug 21, 2009 at 10:41 AM, Jouni K. Seppänen<jk...@ik...> wrote:
> Eric Bruning <eri...@gm...> writes:
>
>> ld warning: in /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libgcc_s.10.4.dylib,
>> missing required architecture ppc in file
>> ld: in /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libgcc_s.1.dylib,
>> missing required architecture ppc in file for architecture ppc
>
> Somehow your gcc is picking up libraries from /usr/local/lib, where you
> have presumably installed an x86-only version of gcc (could be a side
> effect of installing GNU Fortran). I don't know how to prevent that,
> except perhaps by moving /usr/local away for the duration of the
> compilation command, e.g.
I think you should edit setupext.py and edit basedir directory, and
remove all the /sw, /usr/local, etc from basedir in the 'darwin'
entry, which reads:
darwin' : ['/sw/lib/freetype2', '/sw/lib/freetype219', '/usr/local',
'/usr', '/sw'],
Then do a clean rebuild and see if that helps.
JDH
|
|
From: Ludwig S. <lud...@gm...> - 2009-08-21 15:57:43
|
Hi, Just my $0.10 on this topic: Stick with the default system Python 2.5.1 on Leopard and save yourself a lot of potential hassle. In the days of Tiger and its antiquated and hamstrung Python 2.3, many people were forced to install Python themselves just to get going. They had to choose between several alternatives: MacPython, Enthought's EPD, ActiveState Python, etc. This notion of installing Python on Mac OS X persists to this day, and many people still assume it is necessary. If you really want the latest Python or the convenience of a pre-packaged distribution, go ahead and install one of the fine Mac Pythons out there. On the other hand, if you just want to get matplotlib going, the system Python will do just fine. In my experience it saves you many hassles with CPU architectures during builds (which has gotten worse under Leopard). I successfully built and ran the latest MPL r7514 by simply typing "python setup.py build". No environment variables to be set... On an aside, Snow Leopard (Mac OS 10.6) looks to have a whole range of Pythons, from 2.5 all the way up to 3.1. This could make the default system Python even more of a no-brainer. Regards, Ludwig |
|
From: Jouni K. S. <jk...@ik...> - 2009-08-21 15:41:38
|
Eric Bruning <eri...@gm...> writes: > ld warning: in /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libgcc_s.10.4.dylib, > missing required architecture ppc in file > ld: in /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libgcc_s.1.dylib, > missing required architecture ppc in file for architecture ppc Somehow your gcc is picking up libraries from /usr/local/lib, where you have presumably installed an x86-only version of gcc (could be a side effect of installing GNU Fortran). I don't know how to prevent that, except perhaps by moving /usr/local away for the duration of the compilation command, e.g. sudo mv /usr/local /usr/local.renamed make installers sudo mv /usr/local.renamed /usr/local -- Jouni K. Seppänen http://www.iki.fi/jks |
|
From: Eric B. <eri...@gm...> - 2009-08-21 13:59:02
|
On Tue, Aug 18, 2009 at 5:08 PM, Uri Laserson<las...@mi...> wrote:
> Hi Eric,
>
> I have been trying to do the same on my own machine and have run into the
> same problems. I originally tried to rebuild libpng etc for both i386 and
> ppc, which worked. The MPL build then went smoothly, but when I tried to
> import matplotlib.pyplot, I got the following error (see my post from
> 07/30/09):
>
> ImportError: dlopen(/Library/Frameworks/
> Python.framework/Versions/4.0.30002/lib/python2.5/site-packages/matplotlib/_png.so,
> 2): Symbol not found: _png_create_info_struct
> Referenced from:
> /Library/Frameworks/Python.framework/Versions/4.0.30002/lib/python2.5/site-packages/matplotlib/_png.so
> Expected in: /usr/local/lib/libpng12.0.dylib
>
> Anyway, I just tried your method, and the build breaks. I am using the
> enthought python distribution on Mac OS X 10.5. I checked out a fresh copy
> of MPL and edited setupext.py so that the 'darwin' key only has '/usr/X11R6'
> and nothing else. The output of the build below:
My 'darwin' key looks like:
'darwin' : ['/sw/lib/freetype2', '/sw/lib/freetype219', '/usr/local',
'/usr', '/sw', '/usr/X11R6'],
I then
export PKG_CONFIG_PATH=/usr/X11/lib/pkgconfig,
and the command you give below builds fine. I'm wondering if you see
an architecture mismatch that I don't since you're building against
Enthought Python; I'm using MacPython from python.org.
-Eric
>
> The command I ran was:
> env ARCHFLAGS='-arch i386' CFLAGS="-Os -arch i386" LDFLAGS="-Os -arch i386"
> python setup.py build
>
> The output was:
> ============================================================================
> BUILDING MATPLOTLIB
> matplotlib: 1.0.svn
> python: 2.5.4 |EPD_Py25 4.3.0| (r254:67916, May 17 2009,
> 20:07:12) [GCC 4.0.1 (Apple Computer, Inc. build
> 5370)]
> platform: darwin
>
> REQUIRED DEPENDENCIES
> numpy: 1.3.0
> freetype2: 9.20.3
>
> OPTIONAL BACKEND DEPENDENCIES
> libpng: 1.2.38
> Tkinter: Tkinter: 67737, Tk: 8.4, Tcl: 8.4
> wxPython: 2.8.7.1
> * WxAgg extension not required for wxPython >= 2.8
> Gtk+: no
> * Building for Gtk+ requires pygtk; you must be able
> * to "import gtk" in your build/install environment
> Mac OS X native: yes
> Qt: no
> Qt4: no
> Cairo: no
>
> OPTIONAL DATE/TIMEZONE DEPENDENCIES
> datetime: present, version unknown
> dateutil: 1.4
> pytz: 2008c
>
> OPTIONAL USETEX DEPENDENCIES
> dvipng: 1.11
> ghostscript: 8.62
> latex: 3.1415926
>
> [Edit setup.cfg to suppress the above messages]
> ============================================================================
> pymods ['pylab']
> packages ['matplotlib', 'matplotlib.backends', 'matplotlib.projections',
> 'mpl_toolkits', 'mpl_toolkits.mplot3d', 'mpl_toolkits.axes_grid',
> 'matplotlib.sphinxext', 'matplotlib.numerix', 'matplotlib.numerix.mlab',
> 'matplotlib.numerix.ma', 'matplotlib.numerix.linear_algebra',
> 'matplotlib.numerix.random_array', 'matplotlib.numerix.fft',
> 'matplotlib.delaunay']
> running build
> running build_py
> creating build
> creating build/lib.macosx-10.3-fat-2.5
> copying lib/pylab.py -> build/lib.macosx-10.3-fat-2.5
> creating build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/__init__.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/_cm.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/_mathtext_data.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/_pylab_helpers.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/afm.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/artist.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/axes.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/axis.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/backend_bases.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/bezier.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/blocking_input.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/cbook.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/cm.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/collections.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/colorbar.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/colors.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/contour.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/dates.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/docstring.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/dviread.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/figure.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/finance.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/font_manager.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/fontconfig_pattern.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/hatch.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/image.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/legend.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/lines.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/mathtext.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/mlab.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/mpl.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/offsetbox.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/patches.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/path.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/pylab.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/pyparsing.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/pyplot.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/quiver.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/rcsetup.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/scale.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/spines.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/table.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/texmanager.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/text.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/ticker.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/tight_bbox.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/transforms.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/type1font.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/units.py -> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/widgets.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> copying lib/matplotlib/windowing.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib
> creating build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/__init__.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_agg.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_cairo.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_cocoaagg.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_emf.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_fltkagg.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_gdk.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_gtk.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_gtkagg.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_gtkcairo.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_macosx.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_mixed.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_pdf.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_ps.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_qt.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_qt4.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_qt4agg.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_qtagg.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_svg.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_template.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_tkagg.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_wx.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/backend_wxagg.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> copying lib/matplotlib/backends/tkagg.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends
> creating build/lib.macosx-10.3-fat-2.5/matplotlib/projections
> copying lib/matplotlib/projections/__init__.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/projections
> copying lib/matplotlib/projections/geo.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/projections
> copying lib/matplotlib/projections/polar.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/projections
> creating build/lib.macosx-10.3-fat-2.5/mpl_toolkits
> copying lib/mpl_toolkits/__init__.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits
> copying lib/mpl_toolkits/exceltools.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits
> copying lib/mpl_toolkits/gtktools.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits
> creating build/lib.macosx-10.3-fat-2.5/mpl_toolkits/mplot3d
> copying lib/mpl_toolkits/mplot3d/__init__.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/mplot3d
> copying lib/mpl_toolkits/mplot3d/art3d.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/mplot3d
> copying lib/mpl_toolkits/mplot3d/axes3d.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/mplot3d
> copying lib/mpl_toolkits/mplot3d/axis3d.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/mplot3d
> copying lib/mpl_toolkits/mplot3d/proj3d.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/mplot3d
> creating build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid
> copying lib/mpl_toolkits/axes_grid/__init__.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid
> copying lib/mpl_toolkits/axes_grid/anchored_artists.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid
> copying lib/mpl_toolkits/axes_grid/angle_helper.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid
> copying lib/mpl_toolkits/axes_grid/axes_divider.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid
> copying lib/mpl_toolkits/axes_grid/axes_grid.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid
> copying lib/mpl_toolkits/axes_grid/axes_rgb.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid
> copying lib/mpl_toolkits/axes_grid/axes_size.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid
> copying lib/mpl_toolkits/axes_grid/axislines.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid
> copying lib/mpl_toolkits/axes_grid/clip_path.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid
> copying lib/mpl_toolkits/axes_grid/grid_finder.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid
> copying lib/mpl_toolkits/axes_grid/grid_helper_curvelinear.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid
> copying lib/mpl_toolkits/axes_grid/inset_locator.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid
> copying lib/mpl_toolkits/axes_grid/parasite_axes.py ->
> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid
> creating build/lib.macosx-10.3-fat-2.5/matplotlib/sphinxext
> copying lib/matplotlib/sphinxext/__init__.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/sphinxext
> copying lib/matplotlib/sphinxext/mathmpl.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/sphinxext
> copying lib/matplotlib/sphinxext/only_directives.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/sphinxext
> copying lib/matplotlib/sphinxext/plot_directive.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/sphinxext
> creating build/lib.macosx-10.3-fat-2.5/matplotlib/numerix
> copying lib/matplotlib/numerix/__init__.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/numerix
> copying lib/matplotlib/numerix/_sp_imports.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/numerix
> creating build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/mlab
> copying lib/matplotlib/numerix/mlab/__init__.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/mlab
> creating build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/ma
> copying lib/matplotlib/numerix/ma/__init__.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/ma
> creating build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/linear_algebra
> copying lib/matplotlib/numerix/linear_algebra/__init__.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/linear_algebra
> creating build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/random_array
> copying lib/matplotlib/numerix/random_array/__init__.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/random_array
> creating build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/fft
> copying lib/matplotlib/numerix/fft/__init__.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/fft
> creating build/lib.macosx-10.3-fat-2.5/matplotlib/delaunay
> copying lib/matplotlib/delaunay/__init__.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/delaunay
> copying lib/matplotlib/delaunay/interpolate.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/delaunay
> copying lib/matplotlib/delaunay/testfuncs.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/delaunay
> copying lib/matplotlib/delaunay/triangulate.py ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/delaunay
> creating build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data
> creating build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts
> creating build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/cmex10.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/cmmi10.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/cmr10.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/cmsy10.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/cmtt10.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pagd8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pagdo8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pagk8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pagko8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pbkd8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pbkdi8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pbkl8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pbkli8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pcrb8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pcrbo8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pcrr8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pcrro8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/phvb8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/phvb8an.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/phvbo8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/phvbo8an.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/phvl8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/phvlo8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/phvr8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/phvr8an.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/phvro8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/phvro8an.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pncb8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pncbi8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pncr8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pncri8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pplb8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pplbi8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pplr8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pplri8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/psyr.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/ptmb8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/ptmbi8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/ptmr8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/ptmri8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/putb8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/putbi8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/putr8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/putri8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pzcmi8a.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> copying lib/matplotlib/mpl-data/fonts/afm/pzdr.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm
> creating
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts
> copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Bold.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts
> copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-BoldOblique.afm
> -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts
> copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Oblique.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts
> copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts
> copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Bold.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts
> copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-BoldOblique.afm
> -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts
> copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Oblique.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts
> copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts
> copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Symbol.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts
> copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Bold.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts
> copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-BoldItalic.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts
> copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Italic.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts
> copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Roman.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts
> copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/ZapfDingbats.afm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts
> copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/readme.txt ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts
> creating build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/cmb10.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/cmex10.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/cmmi10.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/cmr10.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/cmss10.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/cmsy10.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/cmtt10.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneral.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralBol.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralBolIta.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralItalic.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUni.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniBol.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniBolIta.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniIta.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz1Sym.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz1SymBol.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz2Sym.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz2SymBol.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz3Sym.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz3SymBol.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz4Sym.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz4SymBol.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz5Sym.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/Vera.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/VeraBd.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/VeraBI.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/VeraIt.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/VeraMoBd.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/VeraMoBI.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/VeraMoIt.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/VeraMono.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/VeraSe.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> copying lib/matplotlib/mpl-data/fonts/ttf/VeraSeBd.ttf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf
> creating build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/back.xpm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/filesave.xpm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/forward.xpm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/hand.xpm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/home.xpm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/move.xpm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/stock_close.xpm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/stock_down.xpm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/stock_left.xpm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/stock_refresh.xpm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/stock_right.xpm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/stock_save_as.xpm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/stock_up.xpm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/stock_zoom-in.xpm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/stock_zoom-out.xpm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/subplots.xpm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/zoom_to_rect.xpm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/back.svg ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/filesave.svg ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/forward.svg ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/hand.svg ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/home.svg ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/matplotlib.svg ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/move.svg ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/zoom_to_rect.svg ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/back.png ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/filesave.png ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/forward.png ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/hand.png ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/home.png ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/matplotlib.png ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/move.png ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/subplots.png ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/zoom_to_rect.png ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/back.ppm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/filesave.ppm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/forward.ppm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/hand.ppm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/home.ppm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/move.ppm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/stock_close.ppm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/stock_down.ppm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/stock_left.ppm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/stock_refresh.ppm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/stock_right.ppm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/stock_save_as.ppm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/stock_up.ppm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/stock_zoom-in.ppm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/stock_zoom-out.ppm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/subplots.ppm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/images/zoom_to_rect.ppm ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images
> copying lib/matplotlib/mpl-data/matplotlibrc ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data
> copying lib/matplotlib/mpl-data/matplotlib.conf ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data
> copying lib/matplotlib/mpl-data/lineprops.glade ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data
> creating build/lib.macosx-10.3-fat-2.5/matplotlib/backends/Matplotlib.nib
> copying lib/matplotlib/backends/Matplotlib.nib/classes.nib ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends/Matplotlib.nib
> copying lib/matplotlib/backends/Matplotlib.nib/info.nib ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends/Matplotlib.nib
> copying lib/matplotlib/backends/Matplotlib.nib/keyedobjects.nib ->
> build/lib.macosx-10.3-fat-2.5/matplotlib/backends/Matplotlib.nib
> running build_ext
> building 'matplotlib.ft2font' extension
> creating build/temp.macosx-10.3-fat-2.5
> creating build/temp.macosx-10.3-fat-2.5/src
> creating build/temp.macosx-10.3-fat-2.5/CXX
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAYAUNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> src/ft2font.cpp -o build/temp.macosx-10.3-fat-2.5/src/ft2font.o
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAYAUNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> src/mplutils.cpp -o build/temp.macosx-10.3-fat-2.5/src/mplutils.o
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAYAUNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> CXX/cxx_extensions.cxx -o
> build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAYAUNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> CXX/cxxsupport.cxx -o build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAYAUNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> CXX/IndirectPythonInterface.cxx -o
> build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAYAUNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> CXX/cxxextensions.c -o build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o
> g++ -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g
> -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib
> -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386
> build/temp.macosx-10.3-fat-2.5/src/ft2font.o
> build/temp.macosx-10.3-fat-2.5/src/mplutils.o
> build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o
> build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o
> build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o
> build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o -L/usr/local/lib
> -L/usr/X11R6/lib -lfreetype -lz -lstdc++ -lm -o
> build/lib.macosx-10.3-fat-2.5/matplotlib/ft2font.so
> ld: warning in build/temp.macosx-10.3-fat-2.5/src/ft2font.o, file is not of
> required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/src/mplutils.o, file is not of
> required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o, file is
> not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o, file is not
> of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o,
> file is not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o, file is
> not of required architecture
> ld: warning in
> /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libfreetype.dylib, file is not
> of required architecture
> ld: warning in
> /Developer/SDKs/MacOSX10.4u.sdk/Library/Frameworks/Python.framework/Versions/4.3.0/lib/libz.dylib,
> file is not of required architecture
> building 'matplotlib.ttconv' extension
> creating build/temp.macosx-10.3-fat-2.5/ttconv
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> src/_ttconv.cpp -o build/temp.macosx-10.3-fat-2.5/src/_ttconv.o
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> ttconv/pprdrv_tt.cpp -o build/temp.macosx-10.3-fat-2.5/ttconv/pprdrv_tt.o
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> ttconv/pprdrv_tt2.cpp -o build/temp.macosx-10.3-fat-2.5/ttconv/pprdrv_tt2.o
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> ttconv/ttutil.cpp -o build/temp.macosx-10.3-fat-2.5/ttconv/ttutil.o
> g++ -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g
> -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib
> -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386
> build/temp.macosx-10.3-fat-2.5/src/_ttconv.o
> build/temp.macosx-10.3-fat-2.5/ttconv/pprdrv_tt.o
> build/temp.macosx-10.3-fat-2.5/ttconv/pprdrv_tt2.o
> build/temp.macosx-10.3-fat-2.5/ttconv/ttutil.o -L/usr/X11R6/lib -o
> build/lib.macosx-10.3-fat-2.5/matplotlib/ttconv.so
> ld: warning in build/temp.macosx-10.3-fat-2.5/src/_ttconv.o, file is not of
> required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/ttconv/pprdrv_tt.o, file is
> not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/ttconv/pprdrv_tt2.o, file is
> not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/ttconv/ttutil.o, file is not
> of required architecture
> building 'matplotlib._cntr' extension
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> src/cntr.c -o build/temp.macosx-10.3-fat-2.5/src/cntr.o
> gcc -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g
> -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib
> -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386
> build/temp.macosx-10.3-fat-2.5/src/cntr.o -L/usr/X11R6/lib -o
> build/lib.macosx-10.3-fat-2.5/matplotlib/_cntr.so
> ld: warning in build/temp.macosx-10.3-fat-2.5/src/cntr.o, file is not of
> required architecture
> building 'matplotlib._delaunay' extension
> creating build/temp.macosx-10.3-fat-2.5/lib
> creating build/temp.macosx-10.3-fat-2.5/lib/matplotlib
> creating build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> lib/matplotlib/delaunay/_delaunay.cpp -o
> build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/_delaunay.o
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> lib/matplotlib/delaunay/VoronoiDiagramGenerator.cpp -o
> build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/VoronoiDiagramGenerator.o
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> lib/matplotlib/delaunay/delaunay_utils.cpp -o
> build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/delaunay_utils.o
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> lib/matplotlib/delaunay/natneighbors.cpp -o
> build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/natneighbors.o
> g++ -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g
> -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib
> -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386
> build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/_delaunay.o
> build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/VoronoiDiagramGenerator.o
> build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/delaunay_utils.o
> build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/natneighbors.o
> -L/usr/X11R6/lib -o build/lib.macosx-10.3-fat-2.5/matplotlib/_delaunay.so
> ld: warning in
> build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/_delaunay.o, file is
> not of required architecture
> ld: warning in
> build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/VoronoiDiagramGenerator.o,
> file is not of required architecture
> ld: warning in
> build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/delaunay_utils.o,
> file is not of required architecture
> ld: warning in
> build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/natneighbors.o, file
> is not of required architecture
> building 'matplotlib.nxutils' extension
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> src/nxutils.c -o build/temp.macosx-10.3-fat-2.5/src/nxutils.o
> gcc -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g
> -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib
> -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386
> build/temp.macosx-10.3-fat-2.5/src/nxutils.o -L/usr/X11R6/lib -o
> build/lib.macosx-10.3-fat-2.5/matplotlib/nxutils.so
> ld: warning in build/temp.macosx-10.3-fat-2.5/src/nxutils.o, file is not of
> required architecture
> building 'matplotlib._path' extension
> creating build/temp.macosx-10.3-fat-2.5/agg24
> creating build/temp.macosx-10.3-fat-2.5/agg24/src
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -Isrc -Iagg24/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> agg24/src/agg_curves.cpp -o
> build/temp.macosx-10.3-fat-2.5/agg24/src/agg_curves.o
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -Isrc -Iagg24/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> agg24/src/agg_bezier_arc.cpp -o
> build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -Isrc -Iagg24/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> agg24/src/agg_trans_affine.cpp -o
> build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -Isrc -Iagg24/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> agg24/src/agg_vcgen_stroke.cpp -o
> build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_stroke.o
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -Isrc -Iagg24/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> src/agg_py_transforms.cpp -o
> build/temp.macosx-10.3-fat-2.5/src/agg_py_transforms.o
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -Isrc -Iagg24/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> src/path_cleanup.cpp -o build/temp.macosx-10.3-fat-2.5/src/path_cleanup.o
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -Isrc -Iagg24/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> src/path.cpp -o build/temp.macosx-10.3-fat-2.5/src/path.o
> g++ -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g
> -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib
> -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386
> build/temp.macosx-10.3-fat-2.5/agg24/src/agg_curves.o
> build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o
> build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o
> build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_stroke.o
> build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o
> build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o
> build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o
> build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o
> build/temp.macosx-10.3-fat-2.5/src/agg_py_transforms.o
> build/temp.macosx-10.3-fat-2.5/src/path_cleanup.o
> build/temp.macosx-10.3-fat-2.5/src/path.o -L/usr/X11R6/lib -lstdc++ -lm -o
> build/lib.macosx-10.3-fat-2.5/matplotlib/_path.so
> ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_curves.o, file
> is not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o,
> file is not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o,
> file is not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_stroke.o,
> file is not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o, file is
> not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o, file is not
> of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o,
> file is not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o, file is
> not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/src/agg_py_transforms.o, file
> is not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/src/path_cleanup.o, file is
> not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/src/path.o, file is not of
> required architecture
> building 'matplotlib.backends._backend_agg' extension
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -Isrc -Iagg24/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> agg24/src/agg_vcgen_dash.cpp -o
> build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_dash.o
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -Isrc -Iagg24/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> agg24/src/agg_image_filters.cpp -o
> build/temp.macosx-10.3-fat-2.5/agg24/src/agg_image_filters.o
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -Isrc -Iagg24/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> src/backend_agg.cpp -o build/temp.macosx-10.3-fat-2.5/src/backend_agg.o
> g++ -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g
> -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib
> -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386
> build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o
> build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o
> build/temp.macosx-10.3-fat-2.5/agg24/src/agg_curves.o
> build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_dash.o
> build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_stroke.o
> build/temp.macosx-10.3-fat-2.5/agg24/src/agg_image_filters.o
> build/temp.macosx-10.3-fat-2.5/src/mplutils.o
> build/temp.macosx-10.3-fat-2.5/src/agg_py_transforms.o
> build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o
> build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o
> build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o
> build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o
> build/temp.macosx-10.3-fat-2.5/src/backend_agg.o -L/usr/X11R6/lib
> -L/usr/local/lib -L/usr/X11R6/lib -lstdc++ -lm -lfreetype -lz -lstdc++ -lm
> -o build/lib.macosx-10.3-fat-2.5/matplotlib/backends/_backend_agg.so
> ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o,
> file is not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o,
> file is not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_curves.o, file
> is not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_dash.o,
> file is not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_stroke.o,
> file is not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_image_filters.o,
> file is not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/src/mplutils.o, file is not of
> required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/src/agg_py_transforms.o, file
> is not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o, file is
> not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o, file is not
> of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o,
> file is not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o, file is
> not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/src/backend_agg.o, file is not
> of required architecture
> ld: warning in
> /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libfreetype.dylib, file is not
> of required architecture
> ld: warning in
> /Developer/SDKs/MacOSX10.4u.sdk/Library/Frameworks/Python.framework/Versions/4.3.0/lib/libz.dylib,
> file is not of required architecture
> building 'matplotlib._image' extension
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -I/usr/X11R6/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include
> -Isrc -Iagg24/include -I.
> -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c
> src/image.cpp -o build/temp.macosx-10.3-fat-2.5/src/image.o
> g++ -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g
> -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib
> -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386
> build/temp.macosx-10.3-fat-2.5/src/image.o
> build/temp.macosx-10.3-fat-2.5/src/mplutils.o
> build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o
> build/temp.macosx-10.3-fat-2.5/agg24/src/agg_image_filters.o
> build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o
> build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o
> build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o
> build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o
> build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o -L/usr/X11R6/lib -lstdc++
> -lm -o build/lib.macosx-10.3-fat-2.5/matplotlib/_image.so
> ld: warning in build/temp.macosx-10.3-fat-2.5/src/image.o, file is not of
> required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/src/mplutils.o, file is not of
> required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o,
> file is not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_image_filters.o,
> file is not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o,
> file is not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o, file is
> not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o, file is not
> of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o,
> file is not of required architecture
> ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o, file is
> not of required architecture
> building 'matplotlib._png' extension
> gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386
> -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/usr/lo...
[truncated message content] |
|
From: Eric B. <eri...@gm...> - 2009-08-21 13:58:47
|
Hi Jouni, Your changes helped, but I'm still seeing build errors against recent svn. On Thu, Aug 20, 2009 at 12:33 PM, Jouni K. Seppänen<jk...@ik...> wrote: > Eric Bruning <eri...@gm...> writes: > >> 2. The official recommendation at >> http://matplotlib.sourceforge.net/users/installing.html#build-osx >> doesn't work because OS X doesn't ship with wget and because the >> download URLs for zlib, libpng, and freetype are broken in >> matplotlib/release/osx > > I changed it to use curl, which OS X does have. Does this help? I cleaned out my build and tried again, following the instructions in release/osx/README.txt >From a current svn checkout, I successfully ran python setup.py sdist mv dist/matplotlib-1.0.svn.tar.gz release/osx/ Updated version numbers to: PYVERSION=2.6 PYTHON=python${PYVERSION} SRCDIR=${PWD} ZLIBVERSION=1.2.3 PNGVERSION=1.2.39 FREETYPEVERSION=2.3.9 MPLVERSION=1.0.svn BDISTMPKGVERSION=0.4.4 MPLSRC=matplotlib-${MPLVERSION} MACOSX_DEPLOYMENT_TARGET=10.4 The revised curl commands worked. (I had to grab zlib manually since zlib.net is down this morning!), and all the dependencies built with no problems. make installers fails with: ... g++ -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -bundle -undefined dynamic_lookup -arch ppc -arch i386 -L/Users/ebruning/sources/matplotlib/release/osx/zlib-1.2.3 -L/Users/ebruning/sources/matplotlib/release/osx/libpng-1.2.39 -L/Users/ebruning/sources/matplotlib/release/osx/freetype-2.3.9 -Os -arch ppc -arch i386 -I/Users/ebruning/sources/matplotlib/release/osx/zlib-1.2.3 -I/Users/ebruning/sources/matplotlib/release/osx/libpng-1.2.39 -I/Users/ebruning/sources/matplotlib/release/osx/freetype-2.3.9/include build/temp.macosx-10.3-fat-2.6/src/ft2font.o build/temp.macosx-10.3-fat-2.6/src/mplutils.o build/temp.macosx-10.3-fat-2.6/CXX/cxx_extensions.o build/temp.macosx-10.3-fat-2.6/CXX/cxxsupport.o build/temp.macosx-10.3-fat-2.6/CXX/IndirectPythonInterface.o build/temp.macosx-10.3-fat-2.6/CXX/cxxextensions.o -L/usr/local/lib -L/usr/local/lib -L/usr/lib -lfreetype -lz -lstdc++ -lm -o build/lib.macosx-10.3-fat-2.6/matplotlib/ft2font.so ld warning: in /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libgcc_s.10.4.dylib, missing required architecture ppc in file ld: in /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libgcc_s.1.dylib, missing required architecture ppc in file for architecture ppc collect2: ld returned 1 exit status lipo: can't open input file: /var/folders/RP/RPE-UjrSHZ4SQq6AJQBxqk+++TI/-Tmp-//ccAHjtZk.out (No such file or directory) error: command 'g++' failed with exit status 1 make: *** [installers] Error 1 Thanks, Eric > > -- > Jouni K. Seppänen > http://www.iki.fi/jks > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > |