SourceForge logo
SourceForge logo
Menu

matplotlib-users — Discussion related to using matplotlib

You can subscribe to this list here.

2003 Jan
Feb
Mar
Apr
May
(3)
Jun
Jul
Aug
(12)
Sep
(12)
Oct
(56)
Nov
(65)
Dec
(37)
2004 Jan
(59)
Feb
(78)
Mar
(153)
Apr
(205)
May
(184)
Jun
(123)
Jul
(171)
Aug
(156)
Sep
(190)
Oct
(120)
Nov
(154)
Dec
(223)
2005 Jan
(184)
Feb
(267)
Mar
(214)
Apr
(286)
May
(320)
Jun
(299)
Jul
(348)
Aug
(283)
Sep
(355)
Oct
(293)
Nov
(232)
Dec
(203)
2006 Jan
(352)
Feb
(358)
Mar
(403)
Apr
(313)
May
(165)
Jun
(281)
Jul
(316)
Aug
(228)
Sep
(279)
Oct
(243)
Nov
(315)
Dec
(345)
2007 Jan
(260)
Feb
(323)
Mar
(340)
Apr
(319)
May
(290)
Jun
(296)
Jul
(221)
Aug
(292)
Sep
(242)
Oct
(248)
Nov
(242)
Dec
(332)
2008 Jan
(312)
Feb
(359)
Mar
(454)
Apr
(287)
May
(340)
Jun
(450)
Jul
(403)
Aug
(324)
Sep
(349)
Oct
(385)
Nov
(363)
Dec
(437)
2009 Jan
(500)
Feb
(301)
Mar
(409)
Apr
(486)
May
(545)
Jun
(391)
Jul
(518)
Aug
(497)
Sep
(492)
Oct
(429)
Nov
(357)
Dec
(310)
2010 Jan
(371)
Feb
(657)
Mar
(519)
Apr
(432)
May
(312)
Jun
(416)
Jul
(477)
Aug
(386)
Sep
(419)
Oct
(435)
Nov
(320)
Dec
(202)
2011 Jan
(321)
Feb
(413)
Mar
(299)
Apr
(215)
May
(284)
Jun
(203)
Jul
(207)
Aug
(314)
Sep
(321)
Oct
(259)
Nov
(347)
Dec
(209)
2012 Jan
(322)
Feb
(414)
Mar
(377)
Apr
(179)
May
(173)
Jun
(234)
Jul
(295)
Aug
(239)
Sep
(276)
Oct
(355)
Nov
(144)
Dec
(108)
2013 Jan
(170)
Feb
(89)
Mar
(204)
Apr
(133)
May
(142)
Jun
(89)
Jul
(160)
Aug
(180)
Sep
(69)
Oct
(136)
Nov
(83)
Dec
(32)
2014 Jan
(71)
Feb
(90)
Mar
(161)
Apr
(117)
May
(78)
Jun
(94)
Jul
(60)
Aug
(83)
Sep
(102)
Oct
(132)
Nov
(154)
Dec
(96)
2015 Jan
(45)
Feb
(138)
Mar
(176)
Apr
(132)
May
(119)
Jun
(124)
Jul
(77)
Aug
(31)
Sep
(34)
Oct
(22)
Nov
(23)
Dec
(9)
2016 Jan
(26)
Feb
(17)
Mar
(10)
Apr
(8)
May
(4)
Jun
(8)
Jul
(6)
Aug
(5)
Sep
(9)
Oct
(4)
Nov
Dec
2017 Jan
(5)
Feb
(7)
Mar
(1)
Apr
(5)
May
Jun
(3)
Jul
(6)
Aug
(1)
Sep
Oct
(2)
Nov
(1)
Dec
2018 Jan
Feb
Mar
Apr
(1)
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2020 Jan
Feb
Mar
Apr
May
(1)
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2025 Jan
(1)
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
S M T W T F S


1
(3)
2
(21)
3
(16)
4
(4)
5
(7)
6
(1)
7
(2)
8
(12)
9
(23)
10
(6)
11
(2)
12
(1)
13
(1)
14
(4)
15
(14)
16
(7)
17
(15)
18
(12)
19
(5)
20
21
(1)
22
(7)
23
(7)
24
(6)
25
(5)
26
(9)
27
(6)
28
(4)
29
(4)
30
(27)



Showing results of 231

<< < 1 .. 4 5 6 7 8 .. 10 > >> (Page 6 of 10)
From: Gerald J. M. M. <Ger...@jp...> - 2005年11月15日 07:05:34
Attachments: swhk_jmean.png
Hi,
Sorry...newbie question:
Is there a simple way to add logo images to the plots produced
by matplotlib? I've attached a sample plot created in IDL
which shows the logo positioning I would like to achieve.
I wasn't able to find any examples that had logos (though
there was a logo.py in the examples tarball that was missing
the .dat file). Would I basically have to read in the
pngs with imread, resize them, do some voodoo with the figure
layout, and finally imshow them?
Thanks,
Gerald
From: John H. <jdh...@ac...> - 2005年11月15日 02:21:00
>>>>> "Humufr" == Humufr <hu...@ya...> writes:
 Humufr> Hello, I would like if there are an easy way
 Humufr> to define new type points (like a star or other
 Humufr> symbols). I would like to know if there are something
 Humufr> similar to this function who comes from supermongo.
 Humufr> http://www.astro.princeton.edu/~rhl/sm/sm.html#SYN57
The best way now is just to add it to lines.py and submit a patch.
With a little work, we could make this extensible, especially along
the lines of recent work my Martin Richter.
JDH
From: John H. <jdh...@ac...> - 2005年11月15日 02:20:16
>>>>> "Samuel" == Samuel GARCIA <sg...@ol...> writes:
 Samuel> I have a problem : I wrote a little GUI with glade, python
 Samuel> and pygtk. This GUI produce one or many figures to plot
 Samuel> results, depend on what the user click. To plot a new
 Samuel> figure, I use from pylab import * an figure(). My GUI is
 Samuel> a one windows GUI.
 Samuel> The problem is : when 1 figure + the main window is open
 Samuel> and I close this figure, the main window also close !
You should not mix pylab with GUI programming. You must use OO
matplotlib instead http://matplotlib.sf.net/faq.html#OO. pylab will
try and manage the figure windows for you, which is causing your
problem.
See examples/embedding_in_gtk*.py and examples/mpl_with_glade.py
 Samuel> When my main scipt is run with the ipython console with
 Samuel> 'run my_gui.py' , it works. But with 'python my_gui.py',
 Samuel> it doesn't work.
This is a quirk resulting from the fact that in "interactive" mode,
which ipython sets, destroying the last window managed by pylab
doesn't result in a main quit
 Samuel> What is trick ?
See above :-)
JDH
From: Humufr <hu...@ya...> - 2005年11月14日 16:57:19
 Hello,
I would like if there are an easy way to define new type points (like a 
star or other symbols). I would like to know if there are something 
similar to this function who comes from supermongo.
http://www.astro.princeton.edu/~rhl/sm/sm.html#SYN57
Thanks,
N.
From: Samuel G. <sg...@ol...> - 2005年11月14日 14:36:48
I have a problem :
I wrote a little GUI with glade, python and pygtk.
This GUI produce one or many figures to plot results, depend on what the 
user click.
To plot a new figure, I use from pylab import * an figure().
My GUI is a one windows GUI.
The problem is :
when 1 figure + the main window is open and I close this figure, the 
main window also close !
But when 2 (or more figure) + the main window are open when I close a 
figure, it close only this figure, non problem.
When my main scipt is run with the ipython console with 'run my_gui.py' 
, it works.
But with 'python my_gui.py', it doesn't work.
What is trick ?
thanks
samuel
-- 
Samuel GARCIA
CNRS - UMR5020
Universite Claude Bernard LYON 1
Laboratoire des Neurosciences et Systemes Sensoriels
50, avenue Tony Garnier
69366 LYON Cedex 07
04 37 28 74 64
From: frank h. <fra...@gm...> - 2005年11月14日 14:36:42
Thank you mark!
coming from gnuplot, this wasn't obvious to me, as the word "margin"
appears nowhere in the docs
-frank
On 11/14/05, Mark Bakker <ma...@gm...> wrote:
> To control the white space you can set the position and size of the axes:
>
> ax =3D gca()
> ax.set_position(pos)
>
> set_position(self, pos) method of matplotlib.axes.Subplot instance
> Set the axes position with pos =3D [left, bottom, width, height]
> in relative 0,1 coords
>
> ACCEPTS: len(4) sequence of floats
>
> You can also change the default values of figure.subplot in the
> matplotlibrc file.
>
> Mark
>
>
> > Hello,
> > I set my figure to a certain size and I want the plot to be scaled
> > into that figure canvas
> > Currently, that doesnt happen, there is a lot of whitespace at the marg=
ins
> > how do I control that whitespace?
> > thanks
> > -frank
>
From: Mark B. <ma...@gm...> - 2005年11月14日 10:38:52
To control the white space you can set the position and size of the axes:
ax =3D gca()
ax.set_position(pos)
set_position(self, pos) method of matplotlib.axes.Subplot instance
 Set the axes position with pos =3D [left, bottom, width, height]
 in relative 0,1 coords
 ACCEPTS: len(4) sequence of floats
You can also change the default values of figure.subplot in the
matplotlibrc file.
Mark
> Hello,
> I set my figure to a certain size and I want the plot to be scaled
> into that figure canvas
> Currently, that doesnt happen, there is a lot of whitespace at the margin=
s
> how do I control that whitespace?
> thanks
> -frank
From: Anthony R. <ri...@op...> - 2005年11月13日 07:03:07
Does anyone know how to do the following:
Having created a plot in matplotlib, export the plot's image
to a PIL image, so that the bytes of the PIL image can be
manipulated further in python, i.e, stored, inserted into a
pdf in reportlab, and so on. i.e, How do we do this without
doing savefig() to a temporary file, then reading the file
back again with Image.open() etc?
From: frank h. <fra...@gm...> - 2005年11月12日 19:31:19
Hello,
I set my figure to a certain size and I want the plot to be scaled
into that figure canvas
Currently, that doesnt happen, there is a lot of whitespace at the margins
how do I control that whitespace?
thanks
-frank
From: google g. <goo...@ho...> - 2005年11月11日 23:04:08
Hi,
I have got my data coming in the serial port as charecters, there decimal 
ascii value is what I would like to plot in real time, but i get some errors 
and can't figure out what im doing incorrectly and am seeking some guidance,
Yours Gratefully
David
ps :- please find my code below -
###########################################################
import time
import pylab
import serial
pylab.ion()
timefig = pylab.figure(1)
timesub = pylab.subplot(111)
dt = 1
ser = serial.Serial(0)
t = pylab.arange(0.0, 2.0, dt)
print t
b = ord(ser.read())
print b
lines = pylab.plot(t,b)
while 1:
	t = t + dt
	print "hello"
	x = ord(ser.read())
	b.append(x)
	print b
	lines[0].set_data(t,b)
	timesub.set_xlim((t[0],t[-1]))
	pylab.draw()
	time.sleep(1.0)
ser.close()
###########################################################
From: Alexander M. <ale...@co...> - 2005年11月11日 01:35:25
Mr. Kienzle,
 That fixed that problem. But now we have the error:
/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../../../i686-pc-cygwin/bin/ld: =
cannot find -ltk8.4
collect2: ld returned 1 exit status
error: command 'c++' failed with exit status 1
-Alex
From: Charlie M. <cw...@gm...> - 2005年11月10日 22:12:36
Google says:
Datei oder Verzeichnis nicht gefunden =3D=3D File not found
You should make sure you have tcl-dev and tk-dev installed. For
ubuntu I think the packages are tcl8.4-dev and tk8.4-dev. You will
also need the dev packages for zlib, png, freetype and possibly
others.
On 11/9/05, Oliver Gr=E4ser <oli...@un...> wrote:
> Hi,
>
> I'm running latest ubuntu on an Apple ibook G4 (1.33 GHz, 1GB ram and
> 2.5 GB free space on my linux partition in case that matters). I got
> python 2.4 and all the required packages installed, and apparently also
> managed to install agg 2.3 (At least make tells me there ain't anything
> left to do for 'make install'). Now, if I try to install matplotlib by
> 'python setup.py install' (tried with and without sudo rights), I end up
> with an error that gcc failed with exit status 1. A couple of other
> warnings before, though. I do have gcc 4 installed, also g++ and g77.
> Build output follows. Does anyone have any idea or experiences with
> running matplotlib on PPCLinux?
>
> Kindest Regards and Thanks a lot
>
> Oliver
>
>
> copying lib/pytz/zoneinfo/Australia/Yancowinna.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Canberra.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Broken_Hill.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Lord_Howe.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/LHI.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/NSW.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/West.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Tasmania.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Brisbane.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Melbourne.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Adelaide.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Perth.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Sydney.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Lindeman.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/North.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Darwin.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/__init__.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Hobart.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Queensland.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/South.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Victoria.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/ACT.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> creating build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/Bermuda.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/Faeroe.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/South_Georgia.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/Canary.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/Jan_Mayen.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/St_Helena.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/Azores.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/Madeira.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/Stanley.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/Cape_Verde.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/__init__.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/Reykjavik.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> creating build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/CST6CDT.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/YST9.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/EST5.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/AST4ADT.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/YST9YDT.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/MST7.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/EST5EDT.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/HST10.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/AST4.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/PST8.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/__init__.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/MST7MDT.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/PST8PDT.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/CST6.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> creating build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Ndjamena.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/El_Aaiun.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Monrovia.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Asmera.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Nouakchott.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Cairo.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Blantyre.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Khartoum.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Timbuktu.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Accra.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Brazzaville.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Kampala.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Abidjan.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Windhoek.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Bujumbura.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Tunis.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Lusaka.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Algiers.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Johannesburg.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Douala.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Kinshasa.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Freetown.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Lubumbashi.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Lagos.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Dar_es_Salaam.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Ouagadougou.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Libreville.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Casablanca.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Bissau.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Mogadishu.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Conakry.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Porto_minus_Novo.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Djibouti.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Maputo.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Lome.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Dakar.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Bamako.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Niamey.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Kigali.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Gaborone.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Malabo.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Ceuta.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Addis_Ababa.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Sao_Tome.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Luanda.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Harare.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/__init__.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Maseru.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Nairobi.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Bangui.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Mbabane.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Tripoli.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Banjul.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> creating build/lib.linux-ppc-2.4/matplotlib/enthought
> copying lib/matplotlib/enthought/__init__.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought
> creating build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/trait_base.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/traits.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/trait_handlers.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/standard.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/trait_notifiers.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/trait_numeric.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/trait_errors.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/info_traits.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/trait_db.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/has_traits.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/__init__.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/category.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> creating build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/ui_info.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/ui_traits.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/view_element.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/ui.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/toolkit.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/editor.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/group.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/menu.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/handler.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/view_elements.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/help.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/undo.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/view.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/tree_node.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/include.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/editors.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/editor_factory.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/__init__.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/help_template.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/helper.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/item.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> creating build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/null
> copying lib/matplotlib/enthought/traits/ui/null/font_trait.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/null
> copying lib/matplotlib/enthought/traits/ui/null/toolkit.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/null
> copying lib/matplotlib/enthought/traits/ui/null/rgb_color_trait.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/null
> copying lib/matplotlib/enthought/traits/ui/null/color_trait.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/nullcopying
> lib/matplotlib/enthought/traits/ui/null/rgba_color_trait.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/null
> copying lib/matplotlib/enthought/traits/ui/null/__init__.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/null
> creating build/lib.linux-ppc-2.4/matplotlib/enthought/resource
> copying lib/matplotlib/enthought/resource/resource_manager.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/resource
> copying lib/matplotlib/enthought/resource/resource_reference.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/resource
> copying lib/matplotlib/enthought/resource/resource_factory.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/resource
> copying lib/matplotlib/enthought/resource/resource_path.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/resource
> copying lib/matplotlib/enthought/resource/__init__.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/resource
> creating build/lib.linux-ppc-2.4/matplotlib/enthought/util
> copying lib/matplotlib/enthought/util/resource.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/util
> copying lib/matplotlib/enthought/util/__init__.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/util
> running build_ext
> building 'matplotlib._agg' extension
> creating build/temp.linux-ppc-2.4
> creating build/temp.linux-ppc-2.4/src
> creating build/temp.linux-ppc-2.4/agg23
> creating build/temp.linux-ppc-2.4/agg23/src
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> -I/usr/include/python2.4 -c src/agg.cxx -o
> build/temp.linux-ppc-2.4/src/agg.o
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> agg23/include/agg_conv_curve.h: In member function =BBunsigned int
> agg::conv_curve<VertexSource>::vertex(double*, double*) [with
> VertexSource =3D path_t]=AB:
> agg23/include/agg_conv_curve.h:123: Warnung: =BBend_y=AB k=F6nnte in dies=
er
> Funktion uninitialisiert verwendet werden
> agg23/include/agg_conv_curve.h:122: Warnung: =BBend_x=AB k=F6nnte in dies=
er
> Funktion uninitialisiert verwendet werden
> agg23/include/agg_conv_curve.h:121: Warnung: =BBct2_y=AB k=F6nnte in dies=
er
> Funktion uninitialisiert verwendet werden
> agg23/include/agg_conv_curve.h:120: Warnung: =BBct2_x=AB k=F6nnte in dies=
er
> Funktion uninitialisiert verwendet werden
> agg23/include/agg_conv_curve.h: In member function =BBunsigned int
> agg::conv_curve<VertexSource>::vertex(double*, double*) [with
> VertexSource =3D transpath_t]=AB:
> agg23/include/agg_conv_curve.h:123: Warnung: =BBend_y=AB k=F6nnte in dies=
er
> Funktion uninitialisiert verwendet werden
> agg23/include/agg_conv_curve.h:122: Warnung: =BBend_x=AB k=F6nnte in dies=
er
> Funktion uninitialisiert verwendet werden
> agg23/include/agg_conv_curve.h:121: Warnung: =BBct2_y=AB k=F6nnte in dies=
er
> Funktion uninitialisiert verwendet werden
> agg23/include/agg_conv_curve.h:120: Warnung: =BBct2_x=AB k=F6nnte in dies=
er
> Funktion uninitialisiert verwendet werden
> agg23/include/agg_rasterizer_scanline_aa.h: In function
> =BBPyObject* _wrap_rasterizer_scanline_aa_add_path(PyObject*, PyObject*)=
=AB:
> agg23/include/agg_rasterizer_scanline_aa.h:462: Warnung: =BBy=AB k=F6nnte=
 in
> dieser Funktion uninitialisiert verwendet werden
> agg23/include/agg_rasterizer_scanline_aa.h:461: Warnung: =BBx=AB k=F6nnte=
 in
> dieser Funktion uninitialisiert verwendet werden
> agg23/include/agg_rasterizer_scanline_aa.h:462: Warnung: =BBy=AB k=F6nnte=
 in
> dieser Funktion uninitialisiert verwendet werden
> agg23/include/agg_rasterizer_scanline_aa.h:461: Warnung: =BBx=AB k=F6nnte=
 in
> dieser Funktion uninitialisiert verwendet werden
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> -I/usr/include/python2.4 -c agg23/src/agg_trans_affine.cpp -o
> build/temp.linux-ppc-2.4/agg23/src/agg_trans_affine.o
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> -I/usr/include/python2.4 -c agg23/src/agg_path_storage.cpp -o
> build/temp.linux-ppc-2.4/agg23/src/agg_path_storage.o
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> agg23/src/agg_path_storage.cpp: In member function =BBvoid
> agg::path_storage::curve3(double, double)=AB:
> agg23/src/agg_path_storage.cpp:221: Warnung: =BBy0=AB k=F6nnte in dieser
> Funktion uninitialisiert verwendet werden
> agg23/src/agg_path_storage.cpp:220: Warnung: =BBx0=AB k=F6nnte in dieser
> Funktion uninitialisiert verwendet werden
> agg23/src/agg_path_storage.cpp:225: Warnung: =BBy_ctrl=AB k=F6nnte in die=
ser
> Funktion uninitialisiert verwendet werden
> agg23/src/agg_path_storage.cpp:224: Warnung: =BBx_ctrl=AB k=F6nnte in die=
ser
> Funktion uninitialisiert verwendet werden
> agg23/src/agg_path_storage.cpp: In member function =BBvoid
> agg::path_storage::curve4(double, double, double, double)=AB:
> agg23/src/agg_path_storage.cpp:279: Warnung: =BBy0=AB k=F6nnte in dieser
> Funktion uninitialisiert verwendet werden
> agg23/src/agg_path_storage.cpp:278: Warnung: =BBx0=AB k=F6nnte in dieser
> Funktion uninitialisiert verwendet werden
> agg23/src/agg_path_storage.cpp:283: Warnung: =BBy_ctrl1=AB k=F6nnte in di=
eser
> Funktion uninitialisiert verwendet werden
> agg23/src/agg_path_storage.cpp:282: Warnung: =BBx_ctrl1=AB k=F6nnte in di=
eser
> Funktion uninitialisiert verwendet werden
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> -I/usr/include/python2.4 -c agg23/src/agg_bezier_arc.cpp -o
> build/temp.linux-ppc-2.4/agg23/src/agg_bezier_arc.o
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> -I/usr/include/python2.4 -c agg23/src/agg_vcgen_dash.cpp -o
> build/temp.linux-ppc-2.4/agg23/src/agg_vcgen_dash.o
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> -I/usr/include/python2.4 -c agg23/src/agg_vcgen_stroke.cpp -o
> build/temp.linux-ppc-2.4/agg23/src/agg_vcgen_stroke.o
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> -I/usr/include/python2.4 -c agg23/src/agg_rasterizer_scanline_aa.cpp -o
> build/temp.linux-ppc-2.4/agg23/src/agg_rasterizer_scanline_aa.o
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> -I/usr/include/python2.4 -c agg23/src/agg_curves.cpp -o
> build/temp.linux-ppc-2.4/agg23/src/agg_curves.o
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> g++ -pthread -shared build/temp.linux-ppc-2.4/src/agg.o
> build/temp.linux-ppc-2.4/agg23/src/agg_trans_affine.o
> build/temp.linux-ppc-2.4/agg23/src/agg_path_storage.o
> build/temp.linux-ppc-2.4/agg23/src/agg_bezier_arc.o
> build/temp.linux-ppc-2.4/agg23/src/agg_vcgen_dash.o
> build/temp.linux-ppc-2.4/agg23/src/agg_vcgen_stroke.o
> build/temp.linux-ppc-2.4/agg23/src/agg_rasterizer_scanline_aa.o
> build/temp.linux-ppc-2.4/agg23/src/agg_curves.o -lstdc++ -lm -o
> build/lib.linux-ppc-2.4/matplotlib/_agg.so
> building 'matplotlib._na_transforms' extension
> creating build/temp.linux-ppc-2.4/CXX
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Isrc -I. -I -I/usr/local/include
> -I/usr/include -I/usr/include/python2.4 -c src/_na_transforms.cpp -o
> build/temp.linux-ppc-2.4/src/_na_transforms.o -DNUMARRAY=3D1
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> In Datei, eingef=FCgt von /usr/include/python2.4/Python.h:8,
> von ./CXX/Objects.hxx:9,
> von ./CXX/Extensions.hxx:19,
> von src/_transforms.h:12,
> von src/_na_transforms.cpp:2:
> /usr/include/python2.4/pyconfig.h:835:1: Warnung: =BB_POSIX_C_SOURCE=AB
> redefiniert
> In Datei, eingef=FCgt von /usr/include/c
> ++/4.0.2/powerpc-linux-gnu/bits/os_defines.h:39,
> von /usr/include/c++/4.0.2/powerpc-linux-gnu/bits/c
> ++config.h:35,
> von /usr/include/c++/4.0.2/functional:53,
> von src/_na_transforms.cpp:1:
> /usr/include/features.h:150:1: Warnung: dies ist die Stelle der
> vorherigen Definition
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D LazyValue]=AB:
> src/_transforms.h:27: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Func]=AB:
> src/_transforms.h:376: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D FuncXY]=AB:
> src/_transforms.h:435: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Transformation]=
=AB:
> src/_transforms.h:479: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Point]=AB:
> src/_na_transforms.cpp:120: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Interval]=AB:
> src/_na_transforms.cpp:135: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Bbox]=AB:
> src/_na_transforms.cpp:184: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Isrc -I. -I -I/usr/local/include
> -I/usr/include -I/usr/include/python2.4 -c src/mplutils.cpp -o
> build/temp.linux-ppc-2.4/src/mplutils.o -DNUMARRAY=3D1
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Isrc -I. -I -I/usr/local/include
> -I/usr/include -I/usr/include/python2.4 -c CXX/cxx_extensions.cxx -o
> build/temp.linux-ppc-2.4/CXX/cxx_extensions.o -DNUMARRAY=3D1
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D
> Py::ExtensionModuleBasePtr]=AB:
> CXX/cxx_extensions.cxx:90: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Isrc -I. -I -I/usr/local/include
> -I/usr/include -I/usr/include/python2.4 -c CXX/cxxsupport.cxx -o
> build/temp.linux-ppc-2.4/CXX/cxxsupport.o -DNUMARRAY=3D1
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Isrc -I. -I -I/usr/local/include
> -I/usr/include -I/usr/include/python2.4 -c
> CXX/IndirectPythonInterface.cxx -o
> build/temp.linux-ppc-2.4/CXX/IndirectPythonInterface.o -DNUMARRAY=3D1
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Isrc -I. -I -I/usr/local/include
> -I/usr/include -I/usr/include/python2.4 -c CXX/cxxextensions.c -o
> build/temp.linux-ppc-2.4/CXX/cxxextensions.o -DNUMARRAY=3D1
> g++ -pthread -shared build/temp.linux-ppc-2.4/src/_na_transforms.o
> build/temp.linux-ppc-2.4/src/mplutils.o
> build/temp.linux-ppc-2.4/CXX/cxx_extensions.o
> build/temp.linux-ppc-2.4/CXX/cxxsupport.o
> build/temp.linux-ppc-2.4/CXX/IndirectPythonInterface.o
> build/temp.linux-ppc-2.4/CXX/cxxextensions.o -L/usr/local/lib -lstdc++
> -lm -o build/lib.linux-ppc-2.4/matplotlib/_na_transforms.so
> building 'matplotlib._nc_transforms' extension
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Isrc -I. -I/usr/local/include -I/usr/include
> -I/usr/include/python2.4 -c src/_nc_transforms.cpp -o
> build/temp.linux-ppc-2.4/src/_nc_transforms.o -DNUMERIC=3D1
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> In Datei, eingef=FCgt von /usr/include/python2.4/Python.h:8,
> von ./CXX/Objects.hxx:9,
> von ./CXX/Extensions.hxx:19,
> von src/_transforms.h:12,
> von src/_nc_transforms.cpp:2:
> /usr/include/python2.4/pyconfig.h:835:1: Warnung: =BB_POSIX_C_SOURCE=AB
> redefiniert
> In Datei, eingef=FCgt von /usr/include/c
> ++/4.0.2/powerpc-linux-gnu/bits/os_defines.h:39,
> von /usr/include/c++/4.0.2/powerpc-linux-gnu/bits/c
> ++config.h:35,
> von /usr/include/c++/4.0.2/functional:53,
> von src/_nc_transforms.cpp:1:
> /usr/include/features.h:150:1: Warnung: dies ist die Stelle der
> vorherigen Definition
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D LazyValue]=AB:
> src/_transforms.h:27: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Func]=AB:
> src/_transforms.h:376: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D FuncXY]=AB:
> src/_transforms.h:435: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Transformation]=
=AB:
> src/_transforms.h:479: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Point]=AB:
> src/_nc_transforms.cpp:120: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Interval]=AB:
> src/_nc_transforms.cpp:135: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Bbox]=AB:
> src/_nc_transforms.cpp:184: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> g++ -pthread -shared build/temp.linux-ppc-2.4/src/_nc_transforms.o
> build/temp.linux-ppc-2.4/src/mplutils.o
> build/temp.linux-ppc-2.4/CXX/cxx_extensions.o
> build/temp.linux-ppc-2.4/CXX/cxxsupport.o
> build/temp.linux-ppc-2.4/CXX/IndirectPythonInterface.o
> build/temp.linux-ppc-2.4/CXX/cxxextensions.o -L/usr/local/lib -lstdc++
> -lm -o build/lib.linux-ppc-2.4/matplotlib/_nc_transforms.so
> building 'matplotlib.enthought.traits.ctraits' extension
> creating build/temp.linux-ppc-2.4/lib
> creating build/temp.linux-ppc-2.4/lib/matplotlib
> creating build/temp.linux-ppc-2.4/lib/matplotlib/enthought
> creating build/temp.linux-ppc-2.4/lib/matplotlib/enthought/traits
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -I/usr/include/python2.4 -c
> lib/matplotlib/enthought/traits/ctraits.c -o
> build/temp.linux-ppc-2.4/lib/matplotlib/enthought/traits/ctraits.o
> lib/matplotlib/enthought/traits/ctraits.c: In Funktion
> =BBtrait_method_call=AB:
> lib/matplotlib/enthought/traits/ctraits.c:3798: Warnung: =BBname=AB k=F6n=
nte
> in dieser Funktion uninitialisiert verwendet werden
> lib/matplotlib/enthought/traits/ctraits.c:3797: Warnung: =BBvalue=AB k=F6=
nnte
> in dieser Funktion uninitialisiert verwendet werden
> lib/matplotlib/enthought/traits/ctraits.c: In Funktion
> =BBdefault_value_for=AB:
> lib/matplotlib/enthought/traits/ctraits.c:1067: Warnung: =BBresult=AB k=
=F6nnte
> in dieser Funktion uninitialisiert verwendet werden
> gcc -pthread -shared
> build/temp.linux-ppc-2.4/lib/matplotlib/enthought/traits/ctraits.o -o
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ctraits.so
> building 'matplotlib.backends._na_backend_gdk' extension
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -I -I/usr/local/include -I/usr/include
> -I/usr/local/include -I/usr/include -I/usr/include/pygtk-2.0
> -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
> -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0
> -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0
> -I/usr/lib/glib-2.0/include -I/usr/local/include -I/usr/include -Isrc
> -Iswig -Iagg23/include -I. -I/usr/local/include -I/usr/include
> -Ifreetype2 -I/usr/local/include/freetype2 -I/usr/include/freetype2
> -I/usr/local/include/freetype2 -I/usr/include/freetype2
> -I/usr/include/pygtk-2.0/freetype2 -I/usr/include/glib-2.0/freetype2
> -I/usr/lib/glib-2.0/include/freetype2 -I/usr/include/gtk-2.0/freetype2
> -I/usr/lib/gtk-2.0/include/freetype2 -I/usr/include/atk-1.0/freetype2
> -I/usr/include/cairo/freetype2 -I/usr/include/pango-1.0/freetype2
> -I/usr/include/glib-2.0/freetype2 -I/usr/lib/glib-2.0/include/freetype2
> -I/usr/local/include/freetype2 -I/usr/include/freetype2 -Isrc/freetype2
> -Iswig/freetype2 -Iagg23/include/freetype2 -I./freetype2
> -I/usr/local/include/freetype2 -I/usr/include/freetype2
> -I/usr/local/include -I/usr/include -Isrc -Iswig -Iagg23/include -I.
> -I/usr/local/include -I/usr/include -I/usr/include/python2.4 -c
> src/_na_backend_gdk.c -o build/temp.linux-ppc-2.4/src/_na_backend_gdk.o
> -DNUMARRAY=3D1
> In file included from /usr/include/gtk-2.0/gtk/gtkactiongroup.h:34,
> from /usr/include/gtk-2.0/gtk/gtk.h:38,
> from /usr/include/pygtk-2.0/pygtk/pygtk.h:8,
> from src/_na_backend_gdk.c:12:
> /usr/include/gtk-2.0/gtk/gtkitemfactory.h:50: Warnung:
> Funktionsdeklaration ist kein Prototyp
> gcc -pthread -shared build/temp.linux-ppc-2.4/src/_na_backend_gdk.o
> -L/usr/local/lib -L/usr/local/lib -lgobject-2.0 -lglib-2.0 -lgtk-x11-2.0
> -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0
> -lfontconfig -lXinerama -lXi -lXrandr -lXext -lXcursor -lXfixes
> -lpango-1.0 -lcairo -lXrender -lX11 -lgobject-2.0 -lgmodule-2.0 -ldl
> -lglib-2.0 -o
> build/lib.linux-ppc-2.4/matplotlib/backends/_na_backend_gdk.so
> building 'matplotlib.backends._nc_backend_gdk' extension
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -I/usr/local/include -I/usr/include
> -I/usr/local/include -I/usr/include -I/usr/include/pygtk-2.0
> -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
> -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0
> -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0
> -I/usr/lib/glib-2.0/include -I/usr/include/python2.4 -c
> src/_nc_backend_gdk.c -o build/temp.linux-ppc-2.4/src/_nc_backend_gdk.o
> -DNUMERIC=3D1
> In file included from /usr/include/gtk-2.0/gtk/gtkactiongroup.h:34,
> from /usr/include/gtk-2.0/gtk/gtk.h:38,
> from /usr/include/pygtk-2.0/pygtk/pygtk.h:8,
> from src/_nc_backend_gdk.c:12:
> /usr/include/gtk-2.0/gtk/gtkitemfactory.h:50: Warnung:
> Funktionsdeklaration ist kein Prototyp
> gcc -pthread -shared build/temp.linux-ppc-2.4/src/_nc_backend_gdk.o
> -L/usr/local/lib -L/usr/local/lib -lgobject-2.0 -lglib-2.0 -lgtk-x11-2.0
> -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0
> -lfontconfig -lXinerama -lXi -lXrandr -lXext -lXcursor -lXfixes
> -lpango-1.0 -lcairo -lXrender -lX11 -lgobject-2.0 -lgmodule-2.0 -ldl
> -lglib-2.0 -o
> build/lib.linux-ppc-2.4/matplotlib/backends/_nc_backend_gdk.so
> building 'matplotlib.backends._gtkagg' extension
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -I/usr/local/include -I/usr/include -Isrc
> -Iswig -Iagg23/include -I. -I/usr/local/include -I/usr/include
> -I/usr/local/include/freetype2 -I/usr/include/freetype2 -Isrc/freetype2
> -Iswig/freetype2 -Iagg23/include/freetype2 -I./freetype2
> -I/usr/local/include/freetype2 -I/usr/include/freetype2
> -I/usr/local/include -I/usr/include -I/usr/include/pygtk-2.0
> -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
> -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0
> -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0
> -I/usr/lib/glib-2.0/include -I/usr/include/python2.4 -c src/_gtkagg.cpp
> -o build/temp.linux-ppc-2.4/src/_gtkagg.o -DNUMARRAY=3D1 -DNUMERIC=3D1
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> In Datei, eingef=FCgt von /usr/include/python2.4/Python.h:8,
> von /usr/include/pygtk-2.0/pygobject.h:5,
> von src/_gtkagg.cpp:10:
> /usr/include/python2.4/pyconfig.h:835:1: Warnung: =BB_POSIX_C_SOURCE=AB
> redefiniert
> In Datei, eingef=FCgt von /usr/include/string.h:26,
> von /usr/include/c++/4.0.2/cstring:51,
> von src/_gtkagg.cpp:1:
> /usr/include/features.h:150:1: Warnung: dies ist die Stelle der
> vorherigen Definition
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D BufferRegion]=AB=
:
> src/_backend_agg.h:49: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D LazyValue]=AB:
> src/_transforms.h:27: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Func]=AB:
> src/_transforms.h:376: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D FuncXY]=AB:
> src/_transforms.h:435: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Transformation]=
=AB:
> src/_transforms.h:479: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -I/usr/local/include -I/usr/include -Isrc
> -Iswig -Iagg23/include -I. -I/usr/local/include -I/usr/include
> -I/usr/local/include/freetype2 -I/usr/include/freetype2 -Isrc/freetype2
> -Iswig/freetype2 -Iagg23/include/freetype2 -I./freetype2
> -I/usr/local/include/freetype2 -I/usr/include/freetype2
> -I/usr/local/include -I/usr/include -I/usr/include/pygtk-2.0
> -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
> -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0
> -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0
> -I/usr/lib/glib-2.0/include -I/usr/include/python2.4 -c
> src/_transforms.cpp -o build/temp.linux-ppc-2.4/src/_transforms.o
> -DNUMARRAY=3D1 -DNUMERIC=3D1
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> In Datei, eingef=FCgt von /usr/include/python2.4/Python.h:8,
> von ./CXX/Objects.hxx:9,
> von ./CXX/Extensions.hxx:19,
> von src/_transforms.h:12,
> von src/_transforms.cpp:2:
> /usr/include/python2.4/pyconfig.h:835:1: Warnung: =BB_POSIX_C_SOURCE=AB
> redefiniert
> In Datei, eingef=FCgt von /usr/include/c
> ++/4.0.2/powerpc-linux-gnu/bits/os_defines.h:39,
> von /usr/include/c++/4.0.2/powerpc-linux-gnu/bits/c
> ++config.h:35,
> von /usr/include/c++/4.0.2/functional:53,
> von src/_transforms.cpp:1:
> /usr/include/features.h:150:1: Warnung: dies ist die Stelle der
> vorherigen Definition
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D LazyValue]=AB:
> src/_transforms.h:27: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Func]=AB:
> src/_transforms.h:376: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D FuncXY]=AB:
> src/_transforms.h:435: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Transformation]=
=AB:
> src/_transforms.h:479: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Point]=AB:
> src/_transforms.cpp:120: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Interval]=AB:
> src/_transforms.cpp:135: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Bbox]=AB:
> src/_transforms.cpp:184: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> g++ -pthread -shared build/temp.linux-ppc-2.4/src/_gtkagg.o
> build/temp.linux-ppc-2.4/src/mplutils.o
> build/temp.linux-ppc-2.4/src/_transforms.o
> build/temp.linux-ppc-2.4/CXX/cxx_extensions.o
> build/temp.linux-ppc-2.4/CXX/cxxsupport.o
> build/temp.linux-ppc-2.4/CXX/IndirectPythonInterface.o
> build/temp.linux-ppc-2.4/CXX/cxxextensions.o -L/usr/local/lib
> -L/usr/local/lib -L/usr/local/lib -lpng -lz -lstdc++ -lm -lfreetype -lz
> -lstdc++ -lm -lgobject-2.0 -lglib-2.0 -lgtk-x11-2.0 -lgdk-x11-2.0
> -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXinerama
> -lXi -lXrandr -lXext -lXcursor -lXfixes -lpango-1.0 -lcairo -lXrender
> -lX11 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 -o
> build/lib.linux-ppc-2.4/matplotlib/backends/_gtkagg.so
> building 'matplotlib.backends._tkagg' extension
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -I/usr/lib/tcl8.4/../../include
> -I/usr/lib/tk8.4/../../include -I/usr/local/include -I/usr/include -Isrc
> -Iswig -Iagg23/include -I. -I/usr/local/include -I/usr/include
> -I/usr/lib/tcl8.4/../../include/freetype2
> -I/usr/lib/tk8.4/../../include/freetype2 -I/usr/local/include/freetype2
> -I/usr/include/freetype2 -Isrc/freetype2 -Iswig/freetype2
> -Iagg23/include/freetype2 -I./freetype2 -I/usr/local/include/freetype2
> -I/usr/include/freetype2 -I/usr/include/python2.4 -c src/_tkagg.cpp -o
> build/temp.linux-ppc-2.4/src/_tkagg.o
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> src/_tkagg.cpp:28:19: Fehler: tk.h: Datei oder Verzeichnis nicht
> gefunden
> src/_tkagg.cpp:36: Fehler: ISO-C++ verbietet Deklaration von
> =BBTcl_Interp=AB ohne Typ
> src/_tkagg.cpp:36: Fehler: expected =BB;=AB before =BB*=AB token
> src/_tkagg.cpp:40: Fehler: =BBClientData=AB wurde in diesem
> G=FCltigkeitsbereich nicht definiert
> src/_tkagg.cpp:40: Fehler: =BBTcl_Interp=AB wurde in diesem
> G=FCltigkeitsbereich nicht definiert
> src/_tkagg.cpp:40: Fehler: =BBinterp=AB wurde in diesem G=FCltigkeitsbere=
ich
> nicht definiert
> src/_tkagg.cpp:41: Fehler: expected primary-expression before =BBint=AB
> src/_tkagg.cpp:41: Fehler: expected primary-expression before =BBchar=AB
> src/_tkagg.cpp:41: Fehler: initializer Ausdrucksliste als
> zusammengesetzten Ausdruck behandelt
> src/_tkagg.cpp:42: Fehler: expected =BB,=AB or =BB;=AB before =BB{=AB tok=
en
> src/_tkagg.cpp: In function =BBPyObject* _tkinit(PyObject*, PyObject*)=AB=
:
> src/_tkagg.cpp:173: Fehler: =BBTcl_Interp=AB wurde in diesem
> G=FCltigkeitsbereich nicht definiert
> src/_tkagg.cpp:173: Fehler: =BBinterp=AB wurde in diesem G=FCltigkeitsber=
eich
> nicht definiert
> src/_tkagg.cpp:182: Fehler: expected primary-expression before =BB)=AB to=
ken
> src/_tkagg.cpp:182: Fehler: expected `;' before =BBarg=AB
> src/_tkagg.cpp:187: Fehler: =BBstruct TkappObject=AB hat kein Element nam=
ens
> =BBinterp=AB
> src/_tkagg.cpp:193: Fehler: =BBTcl_CmdProc=AB wurde in diesem
> G=FCltigkeitsbereich nicht definiert
> src/_tkagg.cpp:193: Fehler: expected primary-expression before =BB)=AB to=
ken
> src/_tkagg.cpp:194: Fehler: =BBClientData=AB wurde in diesem
> G=FCltigkeitsbereich nicht definiert
> src/_tkagg.cpp:194: Fehler: =BBTcl_CmdDeleteProc=AB wurde in diesem
> G=FCltigkeitsbereich nicht definiert
> src/_tkagg.cpp:194: Fehler: expected primary-expression before =BB)=AB to=
ken
> src/_tkagg.cpp:194: Fehler: =BBTcl_CreateCommand=AB wurde in diesem
> G=FCltigkeitsbereich nicht definiert
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D BufferRegion]=AB=
:
> src/_backend_agg.h:49: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D LazyValue]=AB:
> src/_transforms.h:27: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Func]=AB:
> src/_transforms.h:376: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D FuncXY]=AB:
> src/_transforms.h:435: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Transformation]=
=AB:
> src/_transforms.h:479: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> src/_tkagg.cpp: At global scope:
> src/_tkagg.cpp:40: Warnung: =BBPyAggImagePhoto=AB definiert, aber nicht
> verwendet
> error: command 'gcc' failed with exit status 1
>
>
>
>
> -------------------------------------------------------
> SF.Net email is sponsored by:
> Tame your development challenges with Apache's Geronimo App Server. Downl=
oad
> it for free - -and be entered to win a 42" plasma tv or your very own
> Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php
> _______________________________________________
> Matplotlib-users mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
>
From: Charlie M. <cw...@gm...> - 2005年11月10日 10:32:39
I can vouch that matplotlib compiles with gcc 4 no problems on ubuntu.
On 11/9/05, Ryan Krauss <rya...@gm...> wrote:
> I am running ubuntu but not on a PPC. You may need the gcc 3.4 and
> g++3.4 compatability packages (and that may not be it - but it is easy
> to try).
>
> Ryan
>
> On 11/9/05, Oliver Gr=E4ser <oli...@un...> wrote:
> > Hi,
> >
> > I'm running latest ubuntu on an Apple ibook G4 (1.33 GHz, 1GB ram and
> > 2.5 GB free space on my linux partition in case that matters). I got
> > python 2.4 and all the required packages installed, and apparently also
> > managed to install agg 2.3 (At least make tells me there ain't anything
> > left to do for 'make install'). Now, if I try to install matplotlib by
> > 'python setup.py install' (tried with and without sudo rights), I end u=
p
> > with an error that gcc failed with exit status 1. A couple of other
> > warnings before, though. I do have gcc 4 installed, also g++ and g77.
> > Build output follows. Does anyone have any idea or experiences with
> > running matplotlib on PPCLinux?
> >
> > Kindest Regards and Thanks a lot
> >
> > Oliver
> >
> >
> > copying lib/pytz/zoneinfo/Australia/Yancowinna.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/Canberra.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/Broken_Hill.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/Lord_Howe.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/LHI.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/NSW.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/West.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/Tasmania.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/Brisbane.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/Melbourne.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/Adelaide.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/Perth.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/Sydney.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/Lindeman.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/North.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/Darwin.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/__init__.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/Hobart.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/Queensland.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/South.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/Victoria.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > copying lib/pytz/zoneinfo/Australia/ACT.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> > creating build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> > copying lib/pytz/zoneinfo/Atlantic/Bermuda.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> > copying lib/pytz/zoneinfo/Atlantic/Faeroe.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> > copying lib/pytz/zoneinfo/Atlantic/South_Georgia.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> > copying lib/pytz/zoneinfo/Atlantic/Canary.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> > copying lib/pytz/zoneinfo/Atlantic/Jan_Mayen.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> > copying lib/pytz/zoneinfo/Atlantic/St_Helena.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> > copying lib/pytz/zoneinfo/Atlantic/Azores.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> > copying lib/pytz/zoneinfo/Atlantic/Madeira.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> > copying lib/pytz/zoneinfo/Atlantic/Stanley.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> > copying lib/pytz/zoneinfo/Atlantic/Cape_Verde.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> > copying lib/pytz/zoneinfo/Atlantic/__init__.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> > copying lib/pytz/zoneinfo/Atlantic/Reykjavik.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> > creating build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> > copying lib/pytz/zoneinfo/SystemV/CST6CDT.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> > copying lib/pytz/zoneinfo/SystemV/YST9.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> > copying lib/pytz/zoneinfo/SystemV/EST5.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> > copying lib/pytz/zoneinfo/SystemV/AST4ADT.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> > copying lib/pytz/zoneinfo/SystemV/YST9YDT.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> > copying lib/pytz/zoneinfo/SystemV/MST7.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> > copying lib/pytz/zoneinfo/SystemV/EST5EDT.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> > copying lib/pytz/zoneinfo/SystemV/HST10.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> > copying lib/pytz/zoneinfo/SystemV/AST4.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> > copying lib/pytz/zoneinfo/SystemV/PST8.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> > copying lib/pytz/zoneinfo/SystemV/__init__.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> > copying lib/pytz/zoneinfo/SystemV/MST7MDT.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> > copying lib/pytz/zoneinfo/SystemV/PST8PDT.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> > copying lib/pytz/zoneinfo/SystemV/CST6.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> > creating build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Ndjamena.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/El_Aaiun.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Monrovia.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Asmera.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Nouakchott.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Cairo.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Blantyre.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Khartoum.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Timbuktu.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Accra.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Brazzaville.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Kampala.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Abidjan.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Windhoek.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Bujumbura.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Tunis.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Lusaka.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Algiers.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Johannesburg.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Douala.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Kinshasa.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Freetown.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Lubumbashi.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Lagos.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Dar_es_Salaam.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Ouagadougou.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Libreville.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Casablanca.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Bissau.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Mogadishu.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Conakry.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Porto_minus_Novo.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Djibouti.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Maputo.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Lome.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Dakar.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Bamako.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Niamey.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Kigali.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Gaborone.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Malabo.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Ceuta.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Addis_Ababa.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Sao_Tome.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Luanda.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Harare.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/__init__.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Maseru.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Nairobi.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Bangui.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Mbabane.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Tripoli.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > copying lib/pytz/zoneinfo/Africa/Banjul.py ->
> > build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> > creating build/lib.linux-ppc-2.4/matplotlib/enthought
> > copying lib/matplotlib/enthought/__init__.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought
> > creating build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> > copying lib/matplotlib/enthought/traits/trait_base.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> > copying lib/matplotlib/enthought/traits/traits.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> > copying lib/matplotlib/enthought/traits/trait_handlers.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> > copying lib/matplotlib/enthought/traits/standard.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> > copying lib/matplotlib/enthought/traits/trait_notifiers.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> > copying lib/matplotlib/enthought/traits/trait_numeric.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> > copying lib/matplotlib/enthought/traits/trait_errors.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> > copying lib/matplotlib/enthought/traits/info_traits.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> > copying lib/matplotlib/enthought/traits/trait_db.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> > copying lib/matplotlib/enthought/traits/has_traits.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> > copying lib/matplotlib/enthought/traits/__init__.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> > copying lib/matplotlib/enthought/traits/category.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> > creating build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/ui_info.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/ui_traits.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/view_element.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/ui.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/toolkit.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/editor.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/group.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/menu.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/handler.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/view_elements.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/help.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/undo.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/view.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/tree_node.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/include.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/editors.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/editor_factory.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/__init__.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/help_template.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/helper.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > copying lib/matplotlib/enthought/traits/ui/item.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> > creating build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/null
> > copying lib/matplotlib/enthought/traits/ui/null/font_trait.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/null
> > copying lib/matplotlib/enthought/traits/ui/null/toolkit.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/null
> > copying lib/matplotlib/enthought/traits/ui/null/rgb_color_trait.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/null
> > copying lib/matplotlib/enthought/traits/ui/null/color_trait.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/nullcopying
> > lib/matplotlib/enthought/traits/ui/null/rgba_color_trait.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/null
> > copying lib/matplotlib/enthought/traits/ui/null/__init__.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/null
> > creating build/lib.linux-ppc-2.4/matplotlib/enthought/resource
> > copying lib/matplotlib/enthought/resource/resource_manager.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/resource
> > copying lib/matplotlib/enthought/resource/resource_reference.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/resource
> > copying lib/matplotlib/enthought/resource/resource_factory.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/resource
> > copying lib/matplotlib/enthought/resource/resource_path.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/resource
> > copying lib/matplotlib/enthought/resource/__init__.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/resource
> > creating build/lib.linux-ppc-2.4/matplotlib/enthought/util
> > copying lib/matplotlib/enthought/util/resource.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/util
> > copying lib/matplotlib/enthought/util/__init__.py ->
> > build/lib.linux-ppc-2.4/matplotlib/enthought/util
> > running build_ext
> > building 'matplotlib._agg' extension
> > creating build/temp.linux-ppc-2.4
> > creating build/temp.linux-ppc-2.4/src
> > creating build/temp.linux-ppc-2.4/agg23
> > creating build/temp.linux-ppc-2.4/agg23/src
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> > -I/usr/include/python2.4 -c src/agg.cxx -o
> > build/temp.linux-ppc-2.4/src/agg.o
> > cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FClt=
ig
> > f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> > agg23/include/agg_conv_curve.h: In member function =BBunsigned int
> > agg::conv_curve<VertexSource>::vertex(double*, double*) [with
> > VertexSource =3D path_t]=AB:
> > agg23/include/agg_conv_curve.h:123: Warnung: =BBend_y=AB k=F6nnte in di=
eser
> > Funktion uninitialisiert verwendet werden
> > agg23/include/agg_conv_curve.h:122: Warnung: =BBend_x=AB k=F6nnte in di=
eser
> > Funktion uninitialisiert verwendet werden
> > agg23/include/agg_conv_curve.h:121: Warnung: =BBct2_y=AB k=F6nnte in di=
eser
> > Funktion uninitialisiert verwendet werden
> > agg23/include/agg_conv_curve.h:120: Warnung: =BBct2_x=AB k=F6nnte in di=
eser
> > Funktion uninitialisiert verwendet werden
> > agg23/include/agg_conv_curve.h: In member function =BBunsigned int
> > agg::conv_curve<VertexSource>::vertex(double*, double*) [with
> > VertexSource =3D transpath_t]=AB:
> > agg23/include/agg_conv_curve.h:123: Warnung: =BBend_y=AB k=F6nnte in di=
eser
> > Funktion uninitialisiert verwendet werden
> > agg23/include/agg_conv_curve.h:122: Warnung: =BBend_x=AB k=F6nnte in di=
eser
> > Funktion uninitialisiert verwendet werden
> > agg23/include/agg_conv_curve.h:121: Warnung: =BBct2_y=AB k=F6nnte in di=
eser
> > Funktion uninitialisiert verwendet werden
> > agg23/include/agg_conv_curve.h:120: Warnung: =BBct2_x=AB k=F6nnte in di=
eser
> > Funktion uninitialisiert verwendet werden
> > agg23/include/agg_rasterizer_scanline_aa.h: In function
> > =BBPyObject* _wrap_rasterizer_scanline_aa_add_path(PyObject*, PyObject*=
)=AB:
> > agg23/include/agg_rasterizer_scanline_aa.h:462: Warnung: =BBy=AB k=F6nn=
te in
> > dieser Funktion uninitialisiert verwendet werden
> > agg23/include/agg_rasterizer_scanline_aa.h:461: Warnung: =BBx=AB k=F6nn=
te in
> > dieser Funktion uninitialisiert verwendet werden
> > agg23/include/agg_rasterizer_scanline_aa.h:462: Warnung: =BBy=AB k=F6nn=
te in
> > dieser Funktion uninitialisiert verwendet werden
> > agg23/include/agg_rasterizer_scanline_aa.h:461: Warnung: =BBx=AB k=F6nn=
te in
> > dieser Funktion uninitialisiert verwendet werden
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> > -I/usr/include/python2.4 -c agg23/src/agg_trans_affine.cpp -o
> > build/temp.linux-ppc-2.4/agg23/src/agg_trans_affine.o
> > cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FClt=
ig
> > f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> > -I/usr/include/python2.4 -c agg23/src/agg_path_storage.cpp -o
> > build/temp.linux-ppc-2.4/agg23/src/agg_path_storage.o
> > cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FClt=
ig
> > f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> > agg23/src/agg_path_storage.cpp: In member function =BBvoid
> > agg::path_storage::curve3(double, double)=AB:
> > agg23/src/agg_path_storage.cpp:221: Warnung: =BBy0=AB k=F6nnte in diese=
r
> > Funktion uninitialisiert verwendet werden
> > agg23/src/agg_path_storage.cpp:220: Warnung: =BBx0=AB k=F6nnte in diese=
r
> > Funktion uninitialisiert verwendet werden
> > agg23/src/agg_path_storage.cpp:225: Warnung: =BBy_ctrl=AB k=F6nnte in d=
ieser
> > Funktion uninitialisiert verwendet werden
> > agg23/src/agg_path_storage.cpp:224: Warnung: =BBx_ctrl=AB k=F6nnte in d=
ieser
> > Funktion uninitialisiert verwendet werden
> > agg23/src/agg_path_storage.cpp: In member function =BBvoid
> > agg::path_storage::curve4(double, double, double, double)=AB:
> > agg23/src/agg_path_storage.cpp:279: Warnung: =BBy0=AB k=F6nnte in diese=
r
> > Funktion uninitialisiert verwendet werden
> > agg23/src/agg_path_storage.cpp:278: Warnung: =BBx0=AB k=F6nnte in diese=
r
> > Funktion uninitialisiert verwendet werden
> > agg23/src/agg_path_storage.cpp:283: Warnung: =BBy_ctrl1=AB k=F6nnte in =
dieser
> > Funktion uninitialisiert verwendet werden
> > agg23/src/agg_path_storage.cpp:282: Warnung: =BBx_ctrl1=AB k=F6nnte in =
dieser
> > Funktion uninitialisiert verwendet werden
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> > -I/usr/include/python2.4 -c agg23/src/agg_bezier_arc.cpp -o
> > build/temp.linux-ppc-2.4/agg23/src/agg_bezier_arc.o
> > cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FClt=
ig
> > f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> > -I/usr/include/python2.4 -c agg23/src/agg_vcgen_dash.cpp -o
> > build/temp.linux-ppc-2.4/agg23/src/agg_vcgen_dash.o
> > cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FClt=
ig
> > f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> > -I/usr/include/python2.4 -c agg23/src/agg_vcgen_stroke.cpp -o
> > build/temp.linux-ppc-2.4/agg23/src/agg_vcgen_stroke.o
> > cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FClt=
ig
> > f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> > -I/usr/include/python2.4 -c agg23/src/agg_rasterizer_scanline_aa.cpp -o
> > build/temp.linux-ppc-2.4/agg23/src/agg_rasterizer_scanline_aa.o
> > cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FClt=
ig
> > f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> > -I/usr/include/python2.4 -c agg23/src/agg_curves.cpp -o
> > build/temp.linux-ppc-2.4/agg23/src/agg_curves.o
> > cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FClt=
ig
> > f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> > g++ -pthread -shared build/temp.linux-ppc-2.4/src/agg.o
> > build/temp.linux-ppc-2.4/agg23/src/agg_trans_affine.o
> > build/temp.linux-ppc-2.4/agg23/src/agg_path_storage.o
> > build/temp.linux-ppc-2.4/agg23/src/agg_bezier_arc.o
> > build/temp.linux-ppc-2.4/agg23/src/agg_vcgen_dash.o
> > build/temp.linux-ppc-2.4/agg23/src/agg_vcgen_stroke.o
> > build/temp.linux-ppc-2.4/agg23/src/agg_rasterizer_scanline_aa.o
> > build/temp.linux-ppc-2.4/agg23/src/agg_curves.o -lstdc++ -lm -o
> > build/lib.linux-ppc-2.4/matplotlib/_agg.so
> > building 'matplotlib._na_transforms' extension
> > creating build/temp.linux-ppc-2.4/CXX
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -Isrc -I. -I -I/usr/local/include
> > -I/usr/include -I/usr/include/python2.4 -c src/_na_transforms.cpp -o
> > build/temp.linux-ppc-2.4/src/_na_transforms.o -DNUMARRAY=3D1
> > cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FClt=
ig
> > f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> > In Datei, eingef=FCgt von /usr/include/python2.4/Python.h:8,
> > von ./CXX/Objects.hxx:9,
> > von ./CXX/Extensions.hxx:19,
> > von src/_transforms.h:12,
> > von src/_na_transforms.cpp:2:
> > /usr/include/python2.4/pyconfig.h:835:1: Warnung: =BB_POSIX_C_SOURCE=AB
> > redefiniert
> > In Datei, eingef=FCgt von /usr/include/c
> > ++/4.0.2/powerpc-linux-gnu/bits/os_defines.h:39,
> > von /usr/include/c++/4.0.2/powerpc-linux-gnu/bits/c
> > ++config.h:35,
> > von /usr/include/c++/4.0.2/functional:53,
> > von src/_na_transforms.cpp:1:
> > /usr/include/features.h:150:1: Warnung: dies ist die Stelle der
> > vorherigen Definition
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D LazyValue]=AB:
> > src/_transforms.h:27: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Func]=AB:
> > src/_transforms.h:376: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D FuncXY]=AB:
> > src/_transforms.h:435: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Transformation=
]=AB:
> > src/_transforms.h:479: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Point]=AB:
> > src/_na_transforms.cpp:120: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Interval]=AB:
> > src/_na_transforms.cpp:135: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Bbox]=AB:
> > src/_na_transforms.cpp:184: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -Isrc -I. -I -I/usr/local/include
> > -I/usr/include -I/usr/include/python2.4 -c src/mplutils.cpp -o
> > build/temp.linux-ppc-2.4/src/mplutils.o -DNUMARRAY=3D1
> > cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FClt=
ig
> > f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -Isrc -I. -I -I/usr/local/include
> > -I/usr/include -I/usr/include/python2.4 -c CXX/cxx_extensions.cxx -o
> > build/temp.linux-ppc-2.4/CXX/cxx_extensions.o -DNUMARRAY=3D1
> > cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FClt=
ig
> > f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D
> > Py::ExtensionModuleBasePtr]=AB:
> > CXX/cxx_extensions.cxx:90: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -Isrc -I. -I -I/usr/local/include
> > -I/usr/include -I/usr/include/python2.4 -c CXX/cxxsupport.cxx -o
> > build/temp.linux-ppc-2.4/CXX/cxxsupport.o -DNUMARRAY=3D1
> > cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FClt=
ig
> > f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -Isrc -I. -I -I/usr/local/include
> > -I/usr/include -I/usr/include/python2.4 -c
> > CXX/IndirectPythonInterface.cxx -o
> > build/temp.linux-ppc-2.4/CXX/IndirectPythonInterface.o -DNUMARRAY=3D1
> > cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FClt=
ig
> > f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -Isrc -I. -I -I/usr/local/include
> > -I/usr/include -I/usr/include/python2.4 -c CXX/cxxextensions.c -o
> > build/temp.linux-ppc-2.4/CXX/cxxextensions.o -DNUMARRAY=3D1
> > g++ -pthread -shared build/temp.linux-ppc-2.4/src/_na_transforms.o
> > build/temp.linux-ppc-2.4/src/mplutils.o
> > build/temp.linux-ppc-2.4/CXX/cxx_extensions.o
> > build/temp.linux-ppc-2.4/CXX/cxxsupport.o
> > build/temp.linux-ppc-2.4/CXX/IndirectPythonInterface.o
> > build/temp.linux-ppc-2.4/CXX/cxxextensions.o -L/usr/local/lib -lstdc++
> > -lm -o build/lib.linux-ppc-2.4/matplotlib/_na_transforms.so
> > building 'matplotlib._nc_transforms' extension
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -Isrc -I. -I/usr/local/include -I/usr/include
> > -I/usr/include/python2.4 -c src/_nc_transforms.cpp -o
> > build/temp.linux-ppc-2.4/src/_nc_transforms.o -DNUMERIC=3D1
> > cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FClt=
ig
> > f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> > In Datei, eingef=FCgt von /usr/include/python2.4/Python.h:8,
> > von ./CXX/Objects.hxx:9,
> > von ./CXX/Extensions.hxx:19,
> > von src/_transforms.h:12,
> > von src/_nc_transforms.cpp:2:
> > /usr/include/python2.4/pyconfig.h:835:1: Warnung: =BB_POSIX_C_SOURCE=AB
> > redefiniert
> > In Datei, eingef=FCgt von /usr/include/c
> > ++/4.0.2/powerpc-linux-gnu/bits/os_defines.h:39,
> > von /usr/include/c++/4.0.2/powerpc-linux-gnu/bits/c
> > ++config.h:35,
> > von /usr/include/c++/4.0.2/functional:53,
> > von src/_nc_transforms.cpp:1:
> > /usr/include/features.h:150:1: Warnung: dies ist die Stelle der
> > vorherigen Definition
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D LazyValue]=AB:
> > src/_transforms.h:27: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Func]=AB:
> > src/_transforms.h:376: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D FuncXY]=AB:
> > src/_transforms.h:435: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Transformation=
]=AB:
> > src/_transforms.h:479: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Point]=AB:
> > src/_nc_transforms.cpp:120: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Interval]=AB:
> > src/_nc_transforms.cpp:135: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Bbox]=AB:
> > src/_nc_transforms.cpp:184: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > g++ -pthread -shared build/temp.linux-ppc-2.4/src/_nc_transforms.o
> > build/temp.linux-ppc-2.4/src/mplutils.o
> > build/temp.linux-ppc-2.4/CXX/cxx_extensions.o
> > build/temp.linux-ppc-2.4/CXX/cxxsupport.o
> > build/temp.linux-ppc-2.4/CXX/IndirectPythonInterface.o
> > build/temp.linux-ppc-2.4/CXX/cxxextensions.o -L/usr/local/lib -lstdc++
> > -lm -o build/lib.linux-ppc-2.4/matplotlib/_nc_transforms.so
> > building 'matplotlib.enthought.traits.ctraits' extension
> > creating build/temp.linux-ppc-2.4/lib
> > creating build/temp.linux-ppc-2.4/lib/matplotlib
> > creating build/temp.linux-ppc-2.4/lib/matplotlib/enthought
> > creating build/temp.linux-ppc-2.4/lib/matplotlib/enthought/traits
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -I/usr/include/python2.4 -c
> > lib/matplotlib/enthought/traits/ctraits.c -o
> > build/temp.linux-ppc-2.4/lib/matplotlib/enthought/traits/ctraits.o
> > lib/matplotlib/enthought/traits/ctraits.c: In Funktion
> > =BBtrait_method_call=AB:
> > lib/matplotlib/enthought/traits/ctraits.c:3798: Warnung: =BBname=AB k=
=F6nnte
> > in dieser Funktion uninitialisiert verwendet werden
> > lib/matplotlib/enthought/traits/ctraits.c:3797: Warnung: =BBvalue=AB k=
=F6nnte
> > in dieser Funktion uninitialisiert verwendet werden
> > lib/matplotlib/enthought/traits/ctraits.c: In Funktion
> > =BBdefault_value_for=AB:
> > lib/matplotlib/enthought/traits/ctraits.c:1067: Warnung: =BBresult=AB k=
=F6nnte
> > in dieser Funktion uninitialisiert verwendet werden
> > gcc -pthread -shared
> > build/temp.linux-ppc-2.4/lib/matplotlib/enthought/traits/ctraits.o -o
> > build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ctraits.so
> > building 'matplotlib.backends._na_backend_gdk' extension
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -I -I/usr/local/include -I/usr/include
> > -I/usr/local/include -I/usr/include -I/usr/include/pygtk-2.0
> > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
> > -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.=
0
> > -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0
> > -I/usr/lib/glib-2.0/include -I/usr/local/include -I/usr/include -Isrc
> > -Iswig -Iagg23/include -I. -I/usr/local/include -I/usr/include
> > -Ifreetype2 -I/usr/local/include/freetype2 -I/usr/include/freetype2
> > -I/usr/local/include/freetype2 -I/usr/include/freetype2
> > -I/usr/include/pygtk-2.0/freetype2 -I/usr/include/glib-2.0/freetype2
> > -I/usr/lib/glib-2.0/include/freetype2 -I/usr/include/gtk-2.0/freetype2
> > -I/usr/lib/gtk-2.0/include/freetype2 -I/usr/include/atk-1.0/freetype2
> > -I/usr/include/cairo/freetype2 -I/usr/include/pango-1.0/freetype2
> > -I/usr/include/glib-2.0/freetype2 -I/usr/lib/glib-2.0/include/freetype2
> > -I/usr/local/include/freetype2 -I/usr/include/freetype2 -Isrc/freetype2
> > -Iswig/freetype2 -Iagg23/include/freetype2 -I./freetype2
> > -I/usr/local/include/freetype2 -I/usr/include/freetype2
> > -I/usr/local/include -I/usr/include -Isrc -Iswig -Iagg23/include -I.
> > -I/usr/local/include -I/usr/include -I/usr/include/python2.4 -c
> > src/_na_backend_gdk.c -o build/temp.linux-ppc-2.4/src/_na_backend_gdk.o
> > -DNUMARRAY=3D1
> > In file included from /usr/include/gtk-2.0/gtk/gtkactiongroup.h:34,
> > from /usr/include/gtk-2.0/gtk/gtk.h:38,
> > from /usr/include/pygtk-2.0/pygtk/pygtk.h:8,
> > from src/_na_backend_gdk.c:12:
> > /usr/include/gtk-2.0/gtk/gtkitemfactory.h:50: Warnung:
> > Funktionsdeklaration ist kein Prototyp
> > gcc -pthread -shared build/temp.linux-ppc-2.4/src/_na_backend_gdk.o
> > -L/usr/local/lib -L/usr/local/lib -lgobject-2.0 -lglib-2.0 -lgtk-x11-2.=
0
> > -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0
> > -lfontconfig -lXinerama -lXi -lXrandr -lXext -lXcursor -lXfixes
> > -lpango-1.0 -lcairo -lXrender -lX11 -lgobject-2.0 -lgmodule-2.0 -ldl
> > -lglib-2.0 -o
> > build/lib.linux-ppc-2.4/matplotlib/backends/_na_backend_gdk.so
> > building 'matplotlib.backends._nc_backend_gdk' extension
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -I/usr/local/include -I/usr/include
> > -I/usr/local/include -I/usr/include -I/usr/include/pygtk-2.0
> > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
> > -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.=
0
> > -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0
> > -I/usr/lib/glib-2.0/include -I/usr/include/python2.4 -c
> > src/_nc_backend_gdk.c -o build/temp.linux-ppc-2.4/src/_nc_backend_gdk.o
> > -DNUMERIC=3D1
> > In file included from /usr/include/gtk-2.0/gtk/gtkactiongroup.h:34,
> > from /usr/include/gtk-2.0/gtk/gtk.h:38,
> > from /usr/include/pygtk-2.0/pygtk/pygtk.h:8,
> > from src/_nc_backend_gdk.c:12:
> > /usr/include/gtk-2.0/gtk/gtkitemfactory.h:50: Warnung:
> > Funktionsdeklaration ist kein Prototyp
> > gcc -pthread -shared build/temp.linux-ppc-2.4/src/_nc_backend_gdk.o
> > -L/usr/local/lib -L/usr/local/lib -lgobject-2.0 -lglib-2.0 -lgtk-x11-2.=
0
> > -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0
> > -lfontconfig -lXinerama -lXi -lXrandr -lXext -lXcursor -lXfixes
> > -lpango-1.0 -lcairo -lXrender -lX11 -lgobject-2.0 -lgmodule-2.0 -ldl
> > -lglib-2.0 -o
> > build/lib.linux-ppc-2.4/matplotlib/backends/_nc_backend_gdk.so
> > building 'matplotlib.backends._gtkagg' extension
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -I/usr/local/include -I/usr/include -Isrc
> > -Iswig -Iagg23/include -I. -I/usr/local/include -I/usr/include
> > -I/usr/local/include/freetype2 -I/usr/include/freetype2 -Isrc/freetype2
> > -Iswig/freetype2 -Iagg23/include/freetype2 -I./freetype2
> > -I/usr/local/include/freetype2 -I/usr/include/freetype2
> > -I/usr/local/include -I/usr/include -I/usr/include/pygtk-2.0
> > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
> > -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.=
0
> > -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0
> > -I/usr/lib/glib-2.0/include -I/usr/include/python2.4 -c src/_gtkagg.cpp
> > -o build/temp.linux-ppc-2.4/src/_gtkagg.o -DNUMARRAY=3D1 -DNUMERIC=3D1
> > cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FClt=
ig
> > f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> > In Datei, eingef=FCgt von /usr/include/python2.4/Python.h:8,
> > von /usr/include/pygtk-2.0/pygobject.h:5,
> > von src/_gtkagg.cpp:10:
> > /usr/include/python2.4/pyconfig.h:835:1: Warnung: =BB_POSIX_C_SOURCE=AB
> > redefiniert
> > In Datei, eingef=FCgt von /usr/include/string.h:26,
> > von /usr/include/c++/4.0.2/cstring:51,
> > von src/_gtkagg.cpp:1:
> > /usr/include/features.h:150:1: Warnung: dies ist die Stelle der
> > vorherigen Definition
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D BufferRegion]=
=AB:
> > src/_backend_agg.h:49: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D LazyValue]=AB:
> > src/_transforms.h:27: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Func]=AB:
> > src/_transforms.h:376: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D FuncXY]=AB:
> > src/_transforms.h:435: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Transformation=
]=AB:
> > src/_transforms.h:479: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -I/usr/local/include -I/usr/include -Isrc
> > -Iswig -Iagg23/include -I. -I/usr/local/include -I/usr/include
> > -I/usr/local/include/freetype2 -I/usr/include/freetype2 -Isrc/freetype2
> > -Iswig/freetype2 -Iagg23/include/freetype2 -I./freetype2
> > -I/usr/local/include/freetype2 -I/usr/include/freetype2
> > -I/usr/local/include -I/usr/include -I/usr/include/pygtk-2.0
> > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
> > -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.=
0
> > -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0
> > -I/usr/lib/glib-2.0/include -I/usr/include/python2.4 -c
> > src/_transforms.cpp -o build/temp.linux-ppc-2.4/src/_transforms.o
> > -DNUMARRAY=3D1 -DNUMERIC=3D1
> > cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FClt=
ig
> > f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> > In Datei, eingef=FCgt von /usr/include/python2.4/Python.h:8,
> > von ./CXX/Objects.hxx:9,
> > von ./CXX/Extensions.hxx:19,
> > von src/_transforms.h:12,
> > von src/_transforms.cpp:2:
> > /usr/include/python2.4/pyconfig.h:835:1: Warnung: =BB_POSIX_C_SOURCE=AB
> > redefiniert
> > In Datei, eingef=FCgt von /usr/include/c
> > ++/4.0.2/powerpc-linux-gnu/bits/os_defines.h:39,
> > von /usr/include/c++/4.0.2/powerpc-linux-gnu/bits/c
> > ++config.h:35,
> > von /usr/include/c++/4.0.2/functional:53,
> > von src/_transforms.cpp:1:
> > /usr/include/features.h:150:1: Warnung: dies ist die Stelle der
> > vorherigen Definition
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D LazyValue]=AB:
> > src/_transforms.h:27: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Func]=AB:
> > src/_transforms.h:376: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D FuncXY]=AB:
> > src/_transforms.h:435: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Transformation=
]=AB:
> > src/_transforms.h:479: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Point]=AB:
> > src/_transforms.cpp:120: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Interval]=AB:
> > src/_transforms.cpp:135: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Bbox]=AB:
> > src/_transforms.cpp:184: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > g++ -pthread -shared build/temp.linux-ppc-2.4/src/_gtkagg.o
> > build/temp.linux-ppc-2.4/src/mplutils.o
> > build/temp.linux-ppc-2.4/src/_transforms.o
> > build/temp.linux-ppc-2.4/CXX/cxx_extensions.o
> > build/temp.linux-ppc-2.4/CXX/cxxsupport.o
> > build/temp.linux-ppc-2.4/CXX/IndirectPythonInterface.o
> > build/temp.linux-ppc-2.4/CXX/cxxextensions.o -L/usr/local/lib
> > -L/usr/local/lib -L/usr/local/lib -lpng -lz -lstdc++ -lm -lfreetype -lz
> > -lstdc++ -lm -lgobject-2.0 -lglib-2.0 -lgtk-x11-2.0 -lgdk-x11-2.0
> > -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXinerama
> > -lXi -lXrandr -lXext -lXcursor -lXfixes -lpango-1.0 -lcairo -lXrender
> > -lX11 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 -o
> > build/lib.linux-ppc-2.4/matplotlib/backends/_gtkagg.so
> > building 'matplotlib.backends._tkagg' extension
> > gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> > -Wstrict-prototypes -fPIC -I/usr/lib/tcl8.4/../../include
> > -I/usr/lib/tk8.4/../../include -I/usr/local/include -I/usr/include -Isr=
c
> > -Iswig -Iagg23/include -I. -I/usr/local/include -I/usr/include
> > -I/usr/lib/tcl8.4/../../include/freetype2
> > -I/usr/lib/tk8.4/../../include/freetype2 -I/usr/local/include/freetype2
> > -I/usr/include/freetype2 -Isrc/freetype2 -Iswig/freetype2
> > -Iagg23/include/freetype2 -I./freetype2 -I/usr/local/include/freetype2
> > -I/usr/include/freetype2 -I/usr/include/python2.4 -c src/_tkagg.cpp -o
> > build/temp.linux-ppc-2.4/src/_tkagg.o
> > cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FClt=
ig
> > f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> > src/_tkagg.cpp:28:19: Fehler: tk.h: Datei oder Verzeichnis nicht
> > gefunden
> > src/_tkagg.cpp:36: Fehler: ISO-C++ verbietet Deklaration von
> > =BBTcl_Interp=AB ohne Typ
> > src/_tkagg.cpp:36: Fehler: expected =BB;=AB before =BB*=AB token
> > src/_tkagg.cpp:40: Fehler: =BBClientData=AB wurde in diesem
> > G=FCltigkeitsbereich nicht definiert
> > src/_tkagg.cpp:40: Fehler: =BBTcl_Interp=AB wurde in diesem
> > G=FCltigkeitsbereich nicht definiert
> > src/_tkagg.cpp:40: Fehler: =BBinterp=AB wurde in diesem G=FCltigkeitsbe=
reich
> > nicht definiert
> > src/_tkagg.cpp:41: Fehler: expected primary-expression before =BBint=AB
> > src/_tkagg.cpp:41: Fehler: expected primary-expression before =BBchar=
=AB
> > src/_tkagg.cpp:41: Fehler: initializer Ausdrucksliste als
> > zusammengesetzten Ausdruck behandelt
> > src/_tkagg.cpp:42: Fehler: expected =BB,=AB or =BB;=AB before =BB{=AB t=
oken
> > src/_tkagg.cpp: In function =BBPyObject* _tkinit(PyObject*, PyObject*)=
=AB:
> > src/_tkagg.cpp:173: Fehler: =BBTcl_Interp=AB wurde in diesem
> > G=FCltigkeitsbereich nicht definiert
> > src/_tkagg.cpp:173: Fehler: =BBinterp=AB wurde in diesem G=FCltigkeitsb=
ereich
> > nicht definiert
> > src/_tkagg.cpp:182: Fehler: expected primary-expression before =BB)=AB =
token
> > src/_tkagg.cpp:182: Fehler: expected `;' before =BBarg=AB
> > src/_tkagg.cpp:187: Fehler: =BBstruct TkappObject=AB hat kein Element n=
amens
> > =BBinterp=AB
> > src/_tkagg.cpp:193: Fehler: =BBTcl_CmdProc=AB wurde in diesem
> > G=FCltigkeitsbereich nicht definiert
> > src/_tkagg.cpp:193: Fehler: expected primary-expression before =BB)=AB =
token
> > src/_tkagg.cpp:194: Fehler: =BBClientData=AB wurde in diesem
> > G=FCltigkeitsbereich nicht definiert
> > src/_tkagg.cpp:194: Fehler: =BBTcl_CmdDeleteProc=AB wurde in diesem
> > G=FCltigkeitsbereich nicht definiert
> > src/_tkagg.cpp:194: Fehler: expected primary-expression before =BB)=AB =
token
> > src/_tkagg.cpp:194: Fehler: =BBTcl_CreateCommand=AB wurde in diesem
> > G=FCltigkeitsbereich nicht definiert
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D BufferRegion]=
=AB:
> > src/_backend_agg.h:49: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D LazyValue]=AB:
> > src/_transforms.h:27: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Func]=AB:
> > src/_transforms.h:376: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D FuncXY]=AB:
> > src/_transforms.h:435: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > ./CXX/Extensions.hxx: In constructor
> > =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Transformation=
]=AB:
> > src/_transforms.h:479: instantiated from here
> > ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> > keinen Effekt
> > src/_tkagg.cpp: At global scope:
> > src/_tkagg.cpp:40: Warnung: =BBPyAggImagePhoto=AB definiert, aber nicht
> > verwendet
> > error: command 'gcc' failed with exit status 1
> >
> >
> >
> >
> > -------------------------------------------------------
> > SF.Net email is sponsored by:
> > Tame your development challenges with Apache's Geronimo App Server. Dow=
nload
> > it for free - -and be entered to win a 42" plasma tv or your very own
> > Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php
> > _______________________________________________
> > Matplotlib-users mailing list
> > Mat...@li...
> > https://lists.sourceforge.net/lists/listinfo/matplotlib-users
> >
>
>
> -------------------------------------------------------
> SF.Net email is sponsored by:
> Tame your development challenges with Apache's Geronimo App Server. Downl=
oad
> it for free - -and be entered to win a 42" plasma tv or your very own
> Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php
> _______________________________________________
> Matplotlib-users mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
>
From: Nils W. <nw...@me...> - 2005年11月10日 09:54:01
matplotlib data path /usr/share/matplotlib
$HOME=/home/nwagner
CONFIGDIR=/home/nwagner/.matplotlib
loaded rc file /home/nwagner/.matplotlib/matplotlibrc
matplotlib version 0.85.cvs
verbose.level helpful
interactive is False
platform is linux2
numerix Numeric 24.2
font search path ['/usr/share/matplotlib']
loaded ttfcache file /home/nwagner/.matplotlib/ttffont.cache
backend GTK version 2.5.3
Traceback (most recent call last):
 File
"/usr/lib/python2.4/site-packages/matplotlib/backends/backend_gtk.py",
line 303, in expose_event
 self._render_figure(self._pixmap, w, h)
 File
"/usr/lib/python2.4/site-packages/matplotlib/backends/backend_gtk.py",
line 291, in _render_figure
 self.figure.draw (self._renderer)
 File "/usr/lib/python2.4/site-packages/matplotlib/figure.py", line
520, in draw
 for a in self.axes: a.draw(renderer)
 File "/usr/lib/python2.4/site-packages/matplotlib/axes.py", line 1410,
in draw
 self.xaxis.draw(renderer)
 File "/usr/lib/python2.4/site-packages/matplotlib/axis.py", line 561,
in draw
 tick.draw(renderer)
 File "/usr/lib/python2.4/site-packages/matplotlib/axis.py", line 160,
in draw
 if self.label1On: self.label1.draw(renderer)
 File "/usr/lib/python2.4/site-packages/matplotlib/text.py", line 850,
in draw
 self._mytext.draw(renderer)
 File "/usr/lib/python2.4/site-packages/matplotlib/text.py", line 336,
in draw
 bbox, info = self._get_layout(renderer)
 File "/usr/lib/python2.4/site-packages/matplotlib/text.py", line 185,
in _get_layout
 w,h = renderer.get_text_width_height(
 File
"/usr/lib/python2.4/site-packages/matplotlib/backends/backend_gdk.py",
line 345, in get_text_width_height
 width, height, fonts = math_parse_s_ft2font(
 File "/usr/lib/python2.4/site-packages/matplotlib/mathtext.py", line
1324, in math_parse_s_ft2font
 expression.parseString( s )
 File "/usr/lib/python2.4/site-packages/matplotlib/pyparsing.py", line
616, in parseString
 loc, tokens = self.parse( instring.expandtabs(), 0 )
 File "/usr/lib/python2.4/site-packages/matplotlib/pyparsing.py", line
558, in parse
 loc,tokens = self.parseImpl( instring, loc, doActions )
 File "/usr/lib/python2.4/site-packages/matplotlib/pyparsing.py", line
1663, in parseImpl
 loc, tokens = self.expr.parse( instring, loc, doActions )
 File "/usr/lib/python2.4/site-packages/matplotlib/pyparsing.py", line
558, in parse
 loc,tokens = self.parseImpl( instring, loc, doActions )
 File "/usr/lib/python2.4/site-packages/matplotlib/pyparsing.py", line
1427, in parseImpl
 raise maxException
matplotlib.pyparsing.ParseException: Expected "\" (at char 0), (line:1,
col:1)
How can I fix this problem ?
Nils
From: <phi...@ho...> - 2005年11月10日 09:53:59
Hi John,
Sorry i was not clear enough.
The script i send you works, no crash happends.
Nevertheless, using zoom on the figure, has an effect on the axes but 
the figure is not refreshed.
Perhaps i'm using wrong the subplot creation and adding it to the figure.
Philippe Collet
>Message: 6
>To: kal...@wa...
>Cc: mat...@li...
>Subject: Re: [Matplotlib-users] NavigationToolbar2GTK not working on hand
> made subplot instance
>From: John Hunter <jdh...@ac...>
>Date: 2005年11月08日 23:07:21 -0600
>
> 
>
>>>>>>"philopensource@hotmail" == philopensource@hotmail com <phi...@ho...> writes:
>>>>>> 
>>>>>>
>
> philopensource@hotmail> Hi John, Do you recieve the 2 scripts i
> philopensource@hotmail> send you concerning this problem?
>
>Yes, but both scripts run for me w/o crashing, so I can't seem to
>replicate your problem.
>
>JDH
> 
>
From: Bill D. <wjd...@at...> - 2005年11月10日 00:46:22
Clovis Goldemberg wrote:
> The real program I developed builds 5~15 graphic windows and the 
> required memory is very large.
The simplest solution to your problem is to add more ram to your system.
A cheap 256MB stick of ram sells for around 20,ドル half that if you buy used.
Bill
From: Shashikiran G. <gsh...@li...> - 2005年11月10日 00:30:03
From: "Ryan Krauss" <rya...@gm...>
Date: Wed, 9 Nov 2005 11:36:12 -0500
>=20
> I am running ubuntu but not on a PPC. You may need the gcc 3.4 and
> g++3.4 compatability packages (and that may not be it - but it is easy
> to try).
>=20
> Ryan
>=20
> On 11/9/05, Oliver Gr=E4ser <oli...@un...> wrote:
> > Hi,
> >
> > I'm running latest ubuntu on an Apple ibook G4 (1.33 GHz, 1GB ram and
> > 2.5 GB free space on my linux partition in case that matters). I got
> > python 2.4 and all the required packages installed, and apparently also
> > managed to install agg 2.3 (At least make tells me there ain't anything
> > left to do for 'make install'). Now, if I try to install matplotlib by
> > 'python setup.py install' (tried with and without sudo rights), I end up
> > with an error that gcc failed with exit status 1. A couple of other
> > warnings before, though. I do have gcc 4 installed, also g++ and g77.
> > Build output follows. Does anyone have any idea or experiences with
> > running matplotlib on PPCLinux?
I think there is an issue with gcc-4.0. I could not compile matplotlib wit=
h gcc-4 on my iMac with Tiger Mac OSX. Using gcc-3.3 resolved the issues a=
nd all the backends compiled properly (matplotlib version 0.84).=20=20
HTH..
Shashi
--=20
_______________________________________________
Check out the latest SMS services @ http://www.linuxmail.org
This allows you to send and receive SMS through your mailbox.
Powered by Outblaze
From: <cl...@pe...> - 2005年11月09日 22:55:40
John,
As I've said before, since I don't understand the internals
of Python and MPL, I can only describe the "external effect"
(as seen by a novice user) of the problem which
is the large memory usage observed (which drags the system down).
The other "external effect" is that the memory doesn't seem
to be fully recovered at the end of the process. I'm not sufficiently
qualified to state that there exist a memory leak.
Thanks,
Clovis
>>>>>> "Clovis" =3D=3D Clovis Goldemberg <cl...@pe...> writes:
>
> Clovis> Steve Chaplin: I read the link about memory management you
> Clovis> indicated. It is very good and you are right in pointing
> Clovis> the differences between "collecting" and "freeing"
> Clovis> memory. Anyway, let me try to expose the problem once more
> Clovis> (sorry for the length).
>
> So on reading this is does not appear that you have a memory leak, but
> that you are using too much memory, ie the total memory consumed by
> your 15 open figures is dragging your system down. But when you close
> the figures, the memory usage cycles back down. Eg you started and
> ended cycle 1 with about 70M consumed, and peaked around 150M.
>
> Is this an accurate description of your problem?
>
> There are definitely areas where we can and should improve memory use,
> but this would have to be handled on a case by case basis and would in
> some cases be backend dependent.
>
> JDH
>
>
> -------------------------------------------------------
> SF.Net email is sponsored by:
> Tame your development challenges with Apache's Geronimo App Server.
> Download
> it for free - -and be entered to win a 42" plasma tv or your very own
> Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php
> _______________________________________________
> Matplotlib-users mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
>
From: Ryan K. <rya...@gm...> - 2005年11月09日 22:38:54
I am running ubuntu but not on a PPC. You may need the gcc 3.4 and
g++3.4 compatability packages (and that may not be it - but it is easy
to try).
Ryan
On 11/9/05, Oliver Gr=E4ser <oli...@un...> wrote:
> Hi,
>
> I'm running latest ubuntu on an Apple ibook G4 (1.33 GHz, 1GB ram and
> 2.5 GB free space on my linux partition in case that matters). I got
> python 2.4 and all the required packages installed, and apparently also
> managed to install agg 2.3 (At least make tells me there ain't anything
> left to do for 'make install'). Now, if I try to install matplotlib by
> 'python setup.py install' (tried with and without sudo rights), I end up
> with an error that gcc failed with exit status 1. A couple of other
> warnings before, though. I do have gcc 4 installed, also g++ and g77.
> Build output follows. Does anyone have any idea or experiences with
> running matplotlib on PPCLinux?
>
> Kindest Regards and Thanks a lot
>
> Oliver
>
>
> copying lib/pytz/zoneinfo/Australia/Yancowinna.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Canberra.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Broken_Hill.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Lord_Howe.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/LHI.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/NSW.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/West.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Tasmania.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Brisbane.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Melbourne.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Adelaide.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Perth.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Sydney.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Lindeman.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/North.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Darwin.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/__init__.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Hobart.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Queensland.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/South.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/Victoria.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> copying lib/pytz/zoneinfo/Australia/ACT.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Australia
> creating build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/Bermuda.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/Faeroe.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/South_Georgia.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/Canary.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/Jan_Mayen.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/St_Helena.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/Azores.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/Madeira.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/Stanley.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/Cape_Verde.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/__init__.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> copying lib/pytz/zoneinfo/Atlantic/Reykjavik.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Atlantic
> creating build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/CST6CDT.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/YST9.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/EST5.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/AST4ADT.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/YST9YDT.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/MST7.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/EST5EDT.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/HST10.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/AST4.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/PST8.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/__init__.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/MST7MDT.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/PST8PDT.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> copying lib/pytz/zoneinfo/SystemV/CST6.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/SystemV
> creating build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Ndjamena.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/El_Aaiun.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Monrovia.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Asmera.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Nouakchott.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Cairo.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Blantyre.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Khartoum.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Timbuktu.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Accra.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Brazzaville.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Kampala.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Abidjan.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Windhoek.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Bujumbura.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Tunis.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Lusaka.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Algiers.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Johannesburg.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Douala.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Kinshasa.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Freetown.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Lubumbashi.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Lagos.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Dar_es_Salaam.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Ouagadougou.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Libreville.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Casablanca.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Bissau.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Mogadishu.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Conakry.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Porto_minus_Novo.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Djibouti.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Maputo.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Lome.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Dakar.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Bamako.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Niamey.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Kigali.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Gaborone.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Malabo.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Ceuta.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Addis_Ababa.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Sao_Tome.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Luanda.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Harare.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/__init__.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Maseru.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Nairobi.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Bangui.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Mbabane.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Tripoli.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> copying lib/pytz/zoneinfo/Africa/Banjul.py ->
> build/lib.linux-ppc-2.4/pytz/zoneinfo/Africa
> creating build/lib.linux-ppc-2.4/matplotlib/enthought
> copying lib/matplotlib/enthought/__init__.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought
> creating build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/trait_base.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/traits.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/trait_handlers.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/standard.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/trait_notifiers.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/trait_numeric.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/trait_errors.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/info_traits.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/trait_db.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/has_traits.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/__init__.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> copying lib/matplotlib/enthought/traits/category.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits
> creating build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/ui_info.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/ui_traits.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/view_element.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/ui.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/toolkit.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/editor.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/group.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/menu.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/handler.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/view_elements.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/help.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/undo.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/view.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/tree_node.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/include.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/editors.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/editor_factory.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/__init__.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/help_template.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/helper.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> copying lib/matplotlib/enthought/traits/ui/item.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui
> creating build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/null
> copying lib/matplotlib/enthought/traits/ui/null/font_trait.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/null
> copying lib/matplotlib/enthought/traits/ui/null/toolkit.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/null
> copying lib/matplotlib/enthought/traits/ui/null/rgb_color_trait.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/null
> copying lib/matplotlib/enthought/traits/ui/null/color_trait.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/nullcopying
> lib/matplotlib/enthought/traits/ui/null/rgba_color_trait.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/null
> copying lib/matplotlib/enthought/traits/ui/null/__init__.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ui/null
> creating build/lib.linux-ppc-2.4/matplotlib/enthought/resource
> copying lib/matplotlib/enthought/resource/resource_manager.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/resource
> copying lib/matplotlib/enthought/resource/resource_reference.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/resource
> copying lib/matplotlib/enthought/resource/resource_factory.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/resource
> copying lib/matplotlib/enthought/resource/resource_path.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/resource
> copying lib/matplotlib/enthought/resource/__init__.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/resource
> creating build/lib.linux-ppc-2.4/matplotlib/enthought/util
> copying lib/matplotlib/enthought/util/resource.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/util
> copying lib/matplotlib/enthought/util/__init__.py ->
> build/lib.linux-ppc-2.4/matplotlib/enthought/util
> running build_ext
> building 'matplotlib._agg' extension
> creating build/temp.linux-ppc-2.4
> creating build/temp.linux-ppc-2.4/src
> creating build/temp.linux-ppc-2.4/agg23
> creating build/temp.linux-ppc-2.4/agg23/src
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> -I/usr/include/python2.4 -c src/agg.cxx -o
> build/temp.linux-ppc-2.4/src/agg.o
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> agg23/include/agg_conv_curve.h: In member function =BBunsigned int
> agg::conv_curve<VertexSource>::vertex(double*, double*) [with
> VertexSource =3D path_t]=AB:
> agg23/include/agg_conv_curve.h:123: Warnung: =BBend_y=AB k=F6nnte in dies=
er
> Funktion uninitialisiert verwendet werden
> agg23/include/agg_conv_curve.h:122: Warnung: =BBend_x=AB k=F6nnte in dies=
er
> Funktion uninitialisiert verwendet werden
> agg23/include/agg_conv_curve.h:121: Warnung: =BBct2_y=AB k=F6nnte in dies=
er
> Funktion uninitialisiert verwendet werden
> agg23/include/agg_conv_curve.h:120: Warnung: =BBct2_x=AB k=F6nnte in dies=
er
> Funktion uninitialisiert verwendet werden
> agg23/include/agg_conv_curve.h: In member function =BBunsigned int
> agg::conv_curve<VertexSource>::vertex(double*, double*) [with
> VertexSource =3D transpath_t]=AB:
> agg23/include/agg_conv_curve.h:123: Warnung: =BBend_y=AB k=F6nnte in dies=
er
> Funktion uninitialisiert verwendet werden
> agg23/include/agg_conv_curve.h:122: Warnung: =BBend_x=AB k=F6nnte in dies=
er
> Funktion uninitialisiert verwendet werden
> agg23/include/agg_conv_curve.h:121: Warnung: =BBct2_y=AB k=F6nnte in dies=
er
> Funktion uninitialisiert verwendet werden
> agg23/include/agg_conv_curve.h:120: Warnung: =BBct2_x=AB k=F6nnte in dies=
er
> Funktion uninitialisiert verwendet werden
> agg23/include/agg_rasterizer_scanline_aa.h: In function
> =BBPyObject* _wrap_rasterizer_scanline_aa_add_path(PyObject*, PyObject*)=
=AB:
> agg23/include/agg_rasterizer_scanline_aa.h:462: Warnung: =BBy=AB k=F6nnte=
 in
> dieser Funktion uninitialisiert verwendet werden
> agg23/include/agg_rasterizer_scanline_aa.h:461: Warnung: =BBx=AB k=F6nnte=
 in
> dieser Funktion uninitialisiert verwendet werden
> agg23/include/agg_rasterizer_scanline_aa.h:462: Warnung: =BBy=AB k=F6nnte=
 in
> dieser Funktion uninitialisiert verwendet werden
> agg23/include/agg_rasterizer_scanline_aa.h:461: Warnung: =BBx=AB k=F6nnte=
 in
> dieser Funktion uninitialisiert verwendet werden
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> -I/usr/include/python2.4 -c agg23/src/agg_trans_affine.cpp -o
> build/temp.linux-ppc-2.4/agg23/src/agg_trans_affine.o
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> -I/usr/include/python2.4 -c agg23/src/agg_path_storage.cpp -o
> build/temp.linux-ppc-2.4/agg23/src/agg_path_storage.o
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> agg23/src/agg_path_storage.cpp: In member function =BBvoid
> agg::path_storage::curve3(double, double)=AB:
> agg23/src/agg_path_storage.cpp:221: Warnung: =BBy0=AB k=F6nnte in dieser
> Funktion uninitialisiert verwendet werden
> agg23/src/agg_path_storage.cpp:220: Warnung: =BBx0=AB k=F6nnte in dieser
> Funktion uninitialisiert verwendet werden
> agg23/src/agg_path_storage.cpp:225: Warnung: =BBy_ctrl=AB k=F6nnte in die=
ser
> Funktion uninitialisiert verwendet werden
> agg23/src/agg_path_storage.cpp:224: Warnung: =BBx_ctrl=AB k=F6nnte in die=
ser
> Funktion uninitialisiert verwendet werden
> agg23/src/agg_path_storage.cpp: In member function =BBvoid
> agg::path_storage::curve4(double, double, double, double)=AB:
> agg23/src/agg_path_storage.cpp:279: Warnung: =BBy0=AB k=F6nnte in dieser
> Funktion uninitialisiert verwendet werden
> agg23/src/agg_path_storage.cpp:278: Warnung: =BBx0=AB k=F6nnte in dieser
> Funktion uninitialisiert verwendet werden
> agg23/src/agg_path_storage.cpp:283: Warnung: =BBy_ctrl1=AB k=F6nnte in di=
eser
> Funktion uninitialisiert verwendet werden
> agg23/src/agg_path_storage.cpp:282: Warnung: =BBx_ctrl1=AB k=F6nnte in di=
eser
> Funktion uninitialisiert verwendet werden
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> -I/usr/include/python2.4 -c agg23/src/agg_bezier_arc.cpp -o
> build/temp.linux-ppc-2.4/agg23/src/agg_bezier_arc.o
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> -I/usr/include/python2.4 -c agg23/src/agg_vcgen_dash.cpp -o
> build/temp.linux-ppc-2.4/agg23/src/agg_vcgen_dash.o
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> -I/usr/include/python2.4 -c agg23/src/agg_vcgen_stroke.cpp -o
> build/temp.linux-ppc-2.4/agg23/src/agg_vcgen_stroke.o
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> -I/usr/include/python2.4 -c agg23/src/agg_rasterizer_scanline_aa.cpp -o
> build/temp.linux-ppc-2.4/agg23/src/agg_rasterizer_scanline_aa.o
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Iagg23/include -Isrc -Iswig
> -I/usr/include/python2.4 -c agg23/src/agg_curves.cpp -o
> build/temp.linux-ppc-2.4/agg23/src/agg_curves.o
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> g++ -pthread -shared build/temp.linux-ppc-2.4/src/agg.o
> build/temp.linux-ppc-2.4/agg23/src/agg_trans_affine.o
> build/temp.linux-ppc-2.4/agg23/src/agg_path_storage.o
> build/temp.linux-ppc-2.4/agg23/src/agg_bezier_arc.o
> build/temp.linux-ppc-2.4/agg23/src/agg_vcgen_dash.o
> build/temp.linux-ppc-2.4/agg23/src/agg_vcgen_stroke.o
> build/temp.linux-ppc-2.4/agg23/src/agg_rasterizer_scanline_aa.o
> build/temp.linux-ppc-2.4/agg23/src/agg_curves.o -lstdc++ -lm -o
> build/lib.linux-ppc-2.4/matplotlib/_agg.so
> building 'matplotlib._na_transforms' extension
> creating build/temp.linux-ppc-2.4/CXX
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Isrc -I. -I -I/usr/local/include
> -I/usr/include -I/usr/include/python2.4 -c src/_na_transforms.cpp -o
> build/temp.linux-ppc-2.4/src/_na_transforms.o -DNUMARRAY=3D1
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> In Datei, eingef=FCgt von /usr/include/python2.4/Python.h:8,
> von ./CXX/Objects.hxx:9,
> von ./CXX/Extensions.hxx:19,
> von src/_transforms.h:12,
> von src/_na_transforms.cpp:2:
> /usr/include/python2.4/pyconfig.h:835:1: Warnung: =BB_POSIX_C_SOURCE=AB
> redefiniert
> In Datei, eingef=FCgt von /usr/include/c
> ++/4.0.2/powerpc-linux-gnu/bits/os_defines.h:39,
> von /usr/include/c++/4.0.2/powerpc-linux-gnu/bits/c
> ++config.h:35,
> von /usr/include/c++/4.0.2/functional:53,
> von src/_na_transforms.cpp:1:
> /usr/include/features.h:150:1: Warnung: dies ist die Stelle der
> vorherigen Definition
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D LazyValue]=AB:
> src/_transforms.h:27: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Func]=AB:
> src/_transforms.h:376: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D FuncXY]=AB:
> src/_transforms.h:435: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Transformation]=
=AB:
> src/_transforms.h:479: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Point]=AB:
> src/_na_transforms.cpp:120: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Interval]=AB:
> src/_na_transforms.cpp:135: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Bbox]=AB:
> src/_na_transforms.cpp:184: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Isrc -I. -I -I/usr/local/include
> -I/usr/include -I/usr/include/python2.4 -c src/mplutils.cpp -o
> build/temp.linux-ppc-2.4/src/mplutils.o -DNUMARRAY=3D1
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Isrc -I. -I -I/usr/local/include
> -I/usr/include -I/usr/include/python2.4 -c CXX/cxx_extensions.cxx -o
> build/temp.linux-ppc-2.4/CXX/cxx_extensions.o -DNUMARRAY=3D1
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D
> Py::ExtensionModuleBasePtr]=AB:
> CXX/cxx_extensions.cxx:90: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Isrc -I. -I -I/usr/local/include
> -I/usr/include -I/usr/include/python2.4 -c CXX/cxxsupport.cxx -o
> build/temp.linux-ppc-2.4/CXX/cxxsupport.o -DNUMARRAY=3D1
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Isrc -I. -I -I/usr/local/include
> -I/usr/include -I/usr/include/python2.4 -c
> CXX/IndirectPythonInterface.cxx -o
> build/temp.linux-ppc-2.4/CXX/IndirectPythonInterface.o -DNUMARRAY=3D1
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Isrc -I. -I -I/usr/local/include
> -I/usr/include -I/usr/include/python2.4 -c CXX/cxxextensions.c -o
> build/temp.linux-ppc-2.4/CXX/cxxextensions.o -DNUMARRAY=3D1
> g++ -pthread -shared build/temp.linux-ppc-2.4/src/_na_transforms.o
> build/temp.linux-ppc-2.4/src/mplutils.o
> build/temp.linux-ppc-2.4/CXX/cxx_extensions.o
> build/temp.linux-ppc-2.4/CXX/cxxsupport.o
> build/temp.linux-ppc-2.4/CXX/IndirectPythonInterface.o
> build/temp.linux-ppc-2.4/CXX/cxxextensions.o -L/usr/local/lib -lstdc++
> -lm -o build/lib.linux-ppc-2.4/matplotlib/_na_transforms.so
> building 'matplotlib._nc_transforms' extension
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -Isrc -I. -I/usr/local/include -I/usr/include
> -I/usr/include/python2.4 -c src/_nc_transforms.cpp -o
> build/temp.linux-ppc-2.4/src/_nc_transforms.o -DNUMERIC=3D1
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> In Datei, eingef=FCgt von /usr/include/python2.4/Python.h:8,
> von ./CXX/Objects.hxx:9,
> von ./CXX/Extensions.hxx:19,
> von src/_transforms.h:12,
> von src/_nc_transforms.cpp:2:
> /usr/include/python2.4/pyconfig.h:835:1: Warnung: =BB_POSIX_C_SOURCE=AB
> redefiniert
> In Datei, eingef=FCgt von /usr/include/c
> ++/4.0.2/powerpc-linux-gnu/bits/os_defines.h:39,
> von /usr/include/c++/4.0.2/powerpc-linux-gnu/bits/c
> ++config.h:35,
> von /usr/include/c++/4.0.2/functional:53,
> von src/_nc_transforms.cpp:1:
> /usr/include/features.h:150:1: Warnung: dies ist die Stelle der
> vorherigen Definition
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D LazyValue]=AB:
> src/_transforms.h:27: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Func]=AB:
> src/_transforms.h:376: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D FuncXY]=AB:
> src/_transforms.h:435: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Transformation]=
=AB:
> src/_transforms.h:479: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Point]=AB:
> src/_nc_transforms.cpp:120: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Interval]=AB:
> src/_nc_transforms.cpp:135: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Bbox]=AB:
> src/_nc_transforms.cpp:184: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> g++ -pthread -shared build/temp.linux-ppc-2.4/src/_nc_transforms.o
> build/temp.linux-ppc-2.4/src/mplutils.o
> build/temp.linux-ppc-2.4/CXX/cxx_extensions.o
> build/temp.linux-ppc-2.4/CXX/cxxsupport.o
> build/temp.linux-ppc-2.4/CXX/IndirectPythonInterface.o
> build/temp.linux-ppc-2.4/CXX/cxxextensions.o -L/usr/local/lib -lstdc++
> -lm -o build/lib.linux-ppc-2.4/matplotlib/_nc_transforms.so
> building 'matplotlib.enthought.traits.ctraits' extension
> creating build/temp.linux-ppc-2.4/lib
> creating build/temp.linux-ppc-2.4/lib/matplotlib
> creating build/temp.linux-ppc-2.4/lib/matplotlib/enthought
> creating build/temp.linux-ppc-2.4/lib/matplotlib/enthought/traits
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -I/usr/include/python2.4 -c
> lib/matplotlib/enthought/traits/ctraits.c -o
> build/temp.linux-ppc-2.4/lib/matplotlib/enthought/traits/ctraits.o
> lib/matplotlib/enthought/traits/ctraits.c: In Funktion
> =BBtrait_method_call=AB:
> lib/matplotlib/enthought/traits/ctraits.c:3798: Warnung: =BBname=AB k=F6n=
nte
> in dieser Funktion uninitialisiert verwendet werden
> lib/matplotlib/enthought/traits/ctraits.c:3797: Warnung: =BBvalue=AB k=F6=
nnte
> in dieser Funktion uninitialisiert verwendet werden
> lib/matplotlib/enthought/traits/ctraits.c: In Funktion
> =BBdefault_value_for=AB:
> lib/matplotlib/enthought/traits/ctraits.c:1067: Warnung: =BBresult=AB k=
=F6nnte
> in dieser Funktion uninitialisiert verwendet werden
> gcc -pthread -shared
> build/temp.linux-ppc-2.4/lib/matplotlib/enthought/traits/ctraits.o -o
> build/lib.linux-ppc-2.4/matplotlib/enthought/traits/ctraits.so
> building 'matplotlib.backends._na_backend_gdk' extension
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -I -I/usr/local/include -I/usr/include
> -I/usr/local/include -I/usr/include -I/usr/include/pygtk-2.0
> -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
> -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0
> -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0
> -I/usr/lib/glib-2.0/include -I/usr/local/include -I/usr/include -Isrc
> -Iswig -Iagg23/include -I. -I/usr/local/include -I/usr/include
> -Ifreetype2 -I/usr/local/include/freetype2 -I/usr/include/freetype2
> -I/usr/local/include/freetype2 -I/usr/include/freetype2
> -I/usr/include/pygtk-2.0/freetype2 -I/usr/include/glib-2.0/freetype2
> -I/usr/lib/glib-2.0/include/freetype2 -I/usr/include/gtk-2.0/freetype2
> -I/usr/lib/gtk-2.0/include/freetype2 -I/usr/include/atk-1.0/freetype2
> -I/usr/include/cairo/freetype2 -I/usr/include/pango-1.0/freetype2
> -I/usr/include/glib-2.0/freetype2 -I/usr/lib/glib-2.0/include/freetype2
> -I/usr/local/include/freetype2 -I/usr/include/freetype2 -Isrc/freetype2
> -Iswig/freetype2 -Iagg23/include/freetype2 -I./freetype2
> -I/usr/local/include/freetype2 -I/usr/include/freetype2
> -I/usr/local/include -I/usr/include -Isrc -Iswig -Iagg23/include -I.
> -I/usr/local/include -I/usr/include -I/usr/include/python2.4 -c
> src/_na_backend_gdk.c -o build/temp.linux-ppc-2.4/src/_na_backend_gdk.o
> -DNUMARRAY=3D1
> In file included from /usr/include/gtk-2.0/gtk/gtkactiongroup.h:34,
> from /usr/include/gtk-2.0/gtk/gtk.h:38,
> from /usr/include/pygtk-2.0/pygtk/pygtk.h:8,
> from src/_na_backend_gdk.c:12:
> /usr/include/gtk-2.0/gtk/gtkitemfactory.h:50: Warnung:
> Funktionsdeklaration ist kein Prototyp
> gcc -pthread -shared build/temp.linux-ppc-2.4/src/_na_backend_gdk.o
> -L/usr/local/lib -L/usr/local/lib -lgobject-2.0 -lglib-2.0 -lgtk-x11-2.0
> -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0
> -lfontconfig -lXinerama -lXi -lXrandr -lXext -lXcursor -lXfixes
> -lpango-1.0 -lcairo -lXrender -lX11 -lgobject-2.0 -lgmodule-2.0 -ldl
> -lglib-2.0 -o
> build/lib.linux-ppc-2.4/matplotlib/backends/_na_backend_gdk.so
> building 'matplotlib.backends._nc_backend_gdk' extension
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -I/usr/local/include -I/usr/include
> -I/usr/local/include -I/usr/include -I/usr/include/pygtk-2.0
> -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
> -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0
> -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0
> -I/usr/lib/glib-2.0/include -I/usr/include/python2.4 -c
> src/_nc_backend_gdk.c -o build/temp.linux-ppc-2.4/src/_nc_backend_gdk.o
> -DNUMERIC=3D1
> In file included from /usr/include/gtk-2.0/gtk/gtkactiongroup.h:34,
> from /usr/include/gtk-2.0/gtk/gtk.h:38,
> from /usr/include/pygtk-2.0/pygtk/pygtk.h:8,
> from src/_nc_backend_gdk.c:12:
> /usr/include/gtk-2.0/gtk/gtkitemfactory.h:50: Warnung:
> Funktionsdeklaration ist kein Prototyp
> gcc -pthread -shared build/temp.linux-ppc-2.4/src/_nc_backend_gdk.o
> -L/usr/local/lib -L/usr/local/lib -lgobject-2.0 -lglib-2.0 -lgtk-x11-2.0
> -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0
> -lfontconfig -lXinerama -lXi -lXrandr -lXext -lXcursor -lXfixes
> -lpango-1.0 -lcairo -lXrender -lX11 -lgobject-2.0 -lgmodule-2.0 -ldl
> -lglib-2.0 -o
> build/lib.linux-ppc-2.4/matplotlib/backends/_nc_backend_gdk.so
> building 'matplotlib.backends._gtkagg' extension
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -I/usr/local/include -I/usr/include -Isrc
> -Iswig -Iagg23/include -I. -I/usr/local/include -I/usr/include
> -I/usr/local/include/freetype2 -I/usr/include/freetype2 -Isrc/freetype2
> -Iswig/freetype2 -Iagg23/include/freetype2 -I./freetype2
> -I/usr/local/include/freetype2 -I/usr/include/freetype2
> -I/usr/local/include -I/usr/include -I/usr/include/pygtk-2.0
> -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
> -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0
> -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0
> -I/usr/lib/glib-2.0/include -I/usr/include/python2.4 -c src/_gtkagg.cpp
> -o build/temp.linux-ppc-2.4/src/_gtkagg.o -DNUMARRAY=3D1 -DNUMERIC=3D1
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> In Datei, eingef=FCgt von /usr/include/python2.4/Python.h:8,
> von /usr/include/pygtk-2.0/pygobject.h:5,
> von src/_gtkagg.cpp:10:
> /usr/include/python2.4/pyconfig.h:835:1: Warnung: =BB_POSIX_C_SOURCE=AB
> redefiniert
> In Datei, eingef=FCgt von /usr/include/string.h:26,
> von /usr/include/c++/4.0.2/cstring:51,
> von src/_gtkagg.cpp:1:
> /usr/include/features.h:150:1: Warnung: dies ist die Stelle der
> vorherigen Definition
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D BufferRegion]=AB=
:
> src/_backend_agg.h:49: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D LazyValue]=AB:
> src/_transforms.h:27: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Func]=AB:
> src/_transforms.h:376: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D FuncXY]=AB:
> src/_transforms.h:435: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Transformation]=
=AB:
> src/_transforms.h:479: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -I/usr/local/include -I/usr/include -Isrc
> -Iswig -Iagg23/include -I. -I/usr/local/include -I/usr/include
> -I/usr/local/include/freetype2 -I/usr/include/freetype2 -Isrc/freetype2
> -Iswig/freetype2 -Iagg23/include/freetype2 -I./freetype2
> -I/usr/local/include/freetype2 -I/usr/include/freetype2
> -I/usr/local/include -I/usr/include -I/usr/include/pygtk-2.0
> -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
> -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0
> -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0
> -I/usr/lib/glib-2.0/include -I/usr/include/python2.4 -c
> src/_transforms.cpp -o build/temp.linux-ppc-2.4/src/_transforms.o
> -DNUMARRAY=3D1 -DNUMERIC=3D1
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> In Datei, eingef=FCgt von /usr/include/python2.4/Python.h:8,
> von ./CXX/Objects.hxx:9,
> von ./CXX/Extensions.hxx:19,
> von src/_transforms.h:12,
> von src/_transforms.cpp:2:
> /usr/include/python2.4/pyconfig.h:835:1: Warnung: =BB_POSIX_C_SOURCE=AB
> redefiniert
> In Datei, eingef=FCgt von /usr/include/c
> ++/4.0.2/powerpc-linux-gnu/bits/os_defines.h:39,
> von /usr/include/c++/4.0.2/powerpc-linux-gnu/bits/c
> ++config.h:35,
> von /usr/include/c++/4.0.2/functional:53,
> von src/_transforms.cpp:1:
> /usr/include/features.h:150:1: Warnung: dies ist die Stelle der
> vorherigen Definition
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D LazyValue]=AB:
> src/_transforms.h:27: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Func]=AB:
> src/_transforms.h:376: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D FuncXY]=AB:
> src/_transforms.h:435: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Transformation]=
=AB:
> src/_transforms.h:479: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Point]=AB:
> src/_transforms.cpp:120: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Interval]=AB:
> src/_transforms.cpp:135: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Bbox]=AB:
> src/_transforms.cpp:184: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> g++ -pthread -shared build/temp.linux-ppc-2.4/src/_gtkagg.o
> build/temp.linux-ppc-2.4/src/mplutils.o
> build/temp.linux-ppc-2.4/src/_transforms.o
> build/temp.linux-ppc-2.4/CXX/cxx_extensions.o
> build/temp.linux-ppc-2.4/CXX/cxxsupport.o
> build/temp.linux-ppc-2.4/CXX/IndirectPythonInterface.o
> build/temp.linux-ppc-2.4/CXX/cxxextensions.o -L/usr/local/lib
> -L/usr/local/lib -L/usr/local/lib -lpng -lz -lstdc++ -lm -lfreetype -lz
> -lstdc++ -lm -lgobject-2.0 -lglib-2.0 -lgtk-x11-2.0 -lgdk-x11-2.0
> -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXinerama
> -lXi -lXrandr -lXext -lXcursor -lXfixes -lpango-1.0 -lcairo -lXrender
> -lX11 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 -o
> build/lib.linux-ppc-2.4/matplotlib/backends/_gtkagg.so
> building 'matplotlib.backends._tkagg' extension
> gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O3 -Wall
> -Wstrict-prototypes -fPIC -I/usr/lib/tcl8.4/../../include
> -I/usr/lib/tk8.4/../../include -I/usr/local/include -I/usr/include -Isrc
> -Iswig -Iagg23/include -I. -I/usr/local/include -I/usr/include
> -I/usr/lib/tcl8.4/../../include/freetype2
> -I/usr/lib/tk8.4/../../include/freetype2 -I/usr/local/include/freetype2
> -I/usr/include/freetype2 -Isrc/freetype2 -Iswig/freetype2
> -Iagg23/include/freetype2 -I./freetype2 -I/usr/local/include/freetype2
> -I/usr/include/freetype2 -I/usr/include/python2.4 -c src/_tkagg.cpp -o
> build/temp.linux-ppc-2.4/src/_tkagg.o
> cc1plus: Warnung: Kommandozeilenoption "-Wstrict-prototypes" ist g=FCltig
> f=FCr Ada/C/ObjC, aber nicht f=FCr C++
> src/_tkagg.cpp:28:19: Fehler: tk.h: Datei oder Verzeichnis nicht
> gefunden
> src/_tkagg.cpp:36: Fehler: ISO-C++ verbietet Deklaration von
> =BBTcl_Interp=AB ohne Typ
> src/_tkagg.cpp:36: Fehler: expected =BB;=AB before =BB*=AB token
> src/_tkagg.cpp:40: Fehler: =BBClientData=AB wurde in diesem
> G=FCltigkeitsbereich nicht definiert
> src/_tkagg.cpp:40: Fehler: =BBTcl_Interp=AB wurde in diesem
> G=FCltigkeitsbereich nicht definiert
> src/_tkagg.cpp:40: Fehler: =BBinterp=AB wurde in diesem G=FCltigkeitsbere=
ich
> nicht definiert
> src/_tkagg.cpp:41: Fehler: expected primary-expression before =BBint=AB
> src/_tkagg.cpp:41: Fehler: expected primary-expression before =BBchar=AB
> src/_tkagg.cpp:41: Fehler: initializer Ausdrucksliste als
> zusammengesetzten Ausdruck behandelt
> src/_tkagg.cpp:42: Fehler: expected =BB,=AB or =BB;=AB before =BB{=AB tok=
en
> src/_tkagg.cpp: In function =BBPyObject* _tkinit(PyObject*, PyObject*)=AB=
:
> src/_tkagg.cpp:173: Fehler: =BBTcl_Interp=AB wurde in diesem
> G=FCltigkeitsbereich nicht definiert
> src/_tkagg.cpp:173: Fehler: =BBinterp=AB wurde in diesem G=FCltigkeitsber=
eich
> nicht definiert
> src/_tkagg.cpp:182: Fehler: expected primary-expression before =BB)=AB to=
ken
> src/_tkagg.cpp:182: Fehler: expected `;' before =BBarg=AB
> src/_tkagg.cpp:187: Fehler: =BBstruct TkappObject=AB hat kein Element nam=
ens
> =BBinterp=AB
> src/_tkagg.cpp:193: Fehler: =BBTcl_CmdProc=AB wurde in diesem
> G=FCltigkeitsbereich nicht definiert
> src/_tkagg.cpp:193: Fehler: expected primary-expression before =BB)=AB to=
ken
> src/_tkagg.cpp:194: Fehler: =BBClientData=AB wurde in diesem
> G=FCltigkeitsbereich nicht definiert
> src/_tkagg.cpp:194: Fehler: =BBTcl_CmdDeleteProc=AB wurde in diesem
> G=FCltigkeitsbereich nicht definiert
> src/_tkagg.cpp:194: Fehler: expected primary-expression before =BB)=AB to=
ken
> src/_tkagg.cpp:194: Fehler: =BBTcl_CreateCommand=AB wurde in diesem
> G=FCltigkeitsbereich nicht definiert
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D BufferRegion]=AB=
:
> src/_backend_agg.h:49: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D LazyValue]=AB:
> src/_transforms.h:27: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Func]=AB:
> src/_transforms.h:376: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D FuncXY]=AB:
> src/_transforms.h:435: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> ./CXX/Extensions.hxx: In constructor
> =BBPy::PythonExtension<T>::PythonExtension() [with T =3D Transformation]=
=AB:
> src/_transforms.h:479: instantiated from here
> ./CXX/Extensions.hxx:477: Warnung: right-hand operand of comma hat
> keinen Effekt
> src/_tkagg.cpp: At global scope:
> src/_tkagg.cpp:40: Warnung: =BBPyAggImagePhoto=AB definiert, aber nicht
> verwendet
> error: command 'gcc' failed with exit status 1
>
>
>
>
> -------------------------------------------------------
> SF.Net email is sponsored by:
> Tame your development challenges with Apache's Geronimo App Server. Downl=
oad
> it for free - -and be entered to win a 42" plasma tv or your very own
> Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php
> _______________________________________________
> Matplotlib-users mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
>
From: Alexander M. <ale...@co...> - 2005年11月09日 22:16:11
Thank you.
I tried what you suggested and the error I got before disappeared. But now I 
get a whole bunch of errors coming from /usr/include/tkDecls.h , for 
example:
/usr/include/tkDecls.h:350: error: 'Colormap' does not name a type
/usr/include/tkDecls.h:371: error: 'GC' does not name a type
/usr/include/tkDecls.h:401: error: 'Pixmap' does not name a type
/usr/include/tkDecls.h:418: error: 'Atom' has not been declared
and about a hundred or so more. But they all come from the same file. What 
is the problem here?
-Alex Mont
----- Original Message ----- 
From: "Paul Kienzle" <pki...@ja...>
To: "Alexander Mont" <ale...@co...>
Cc: <mat...@li...>
Sent: Wednesday, November 09, 2005 8:59 AM
Subject: Re: Error installing matplotlib on cygwin
> On Tue, Nov 08, 2005 at 10:41:06PM -0500, Alexander Mont wrote:
>> I am trying to install matplotlib on cygwin. When I try to do so it gives 
>> me the following message:
>>
>> GTK requires pygtk
>> GTKAgg requires pygtk
>> running build
>> running build_py
>> running build_ext
>> building 'matplotlib._agg' extension
>> gcc -fno-strict-aliating -DNDEBUG -g -03 -Wall -Wstrict-prototypes -Iagg23/include 
>> -Isrc -Iswig -I/usr/include/python2.4 -c src/agg.cxx -o 
>> build/temp.cygwin-1.5.18-i686-2.4/src/agg.o
>> C:\cygwin\bin\python2.4.exe (260) *** unable to remap 
>> C:\cygwin\bin\tk84.dll to same address as parent(0x18C90000) != 
>> 0x191A0000
>> 1068 [main] python 1216 fork_parent: child 260 died waiting for dll 
>> loading
>> error: Error
>>
>> ---
>>
>> How can I fix this?
>
> You can try the solution outlined in the following thread:
>
> http://mail.python.org/pipermail/python-list/2003-September/182451.html
>
> If this doesn't work for you, then try the standard windows python
> distribution and MinGW as the compiler, following the instructions on
> this page:
>
> http://www.mingw.org/MinGWiki/index.php/Python%20extensions
>
> - Paul
> 
From: John H. <jdh...@ac...> - 2005年11月09日 22:03:15
>>>>> "Luigi" == Luigi Paioro <lu...@la...> writes:
 Luigi> OK, reading your discussions about the same problem with
 Luigi> Numeric I solved, but now I have another problem and I
 Luigi> think it is related with numarray-only installation...
Please post the output of
> python image_demo.py --verbose-helpful
JDH
From: John H. <jdh...@ac...> - 2005年11月09日 21:47:02
>>>>> "Nils" == Nils Wagner <nw...@me...> writes:
 Nils> Hi all, How can I resolve this problem
 Nils> "/usr/lib/python2.4/site-packages/matplotlib/texmanager.py",
 Nils> line 309, in get_rgba X = readpng(pngfile) RuntimeError:
 Nils> _image_module::readpng could not open PNG file
 Nils> /home/nwagner/.matplotlib/tex.cache/7215ee9c7d9dc229d2921a40e899ec5f_80.png
My guess is that this is a gtk threading problem. I've seen similar
problems with recent gtk releases. The problem is that the texmanager
issues os.popen and returns before the command is finished. We need
a GUI dependent safe way to run system commands that blocks execution
until the system command returns.
See my August thread to the pygtk mailing list
 http://www.daa.com.au/pipermail/pygtk/2005-August/010828.html
David Aitel points to a recipe in his book
 http://www.daa.com.au/pipermail/pygtk/2005-August/010832.html
But this hasn't been implemented yet. Try flushing your tex cache and
rerunning under tkagg which will fix the problem, I suspect.
Basically we need a backend run_system command for each backend. 
JDH
From: John H. <jdh...@ac...> - 2005年11月09日 21:42:24
>>>>> "Clovis" == Clovis Goldemberg <cl...@pe...> writes:
 Clovis> Steve Chaplin: I read the link about memory management you
 Clovis> indicated. It is very good and you are right in pointing
 Clovis> the differences between "collecting" and "freeing"
 Clovis> memory. Anyway, let me try to expose the problem once more
 Clovis> (sorry for the length).
So on reading this is does not appear that you have a memory leak, but
that you are using too much memory, ie the total memory consumed by
your 15 open figures is dragging your system down. But when you close
the figures, the memory usage cycles back down. Eg you started and
ended cycle 1 with about 70M consumed, and peaked around 150M.
Is this an accurate description of your problem?
There are definitely areas where we can and should improve memory use,
but this would have to be handled on a case by case basis and would in
some cases be backend dependent.
JDH
From: Darren D. <dd...@co...> - 2005年11月09日 19:15:59
On Wednesday 09 November 2005 02:53 am, Chris Walker wrote:
> John Hunter <jdh...@ac...> writes:
> > >>>>> "Alexander" == Alexander Mont <ale...@co...> writes:
> >
> > Alexander> -c src/agg.cxx -o
> > Alexander> build/temp.cygwin-1.5.18-i686-2.4/src/agg.o
> > Alexander> C:\cygwin\bin\python2.4.exe (260) *** unable to remap
> > Alexander> C:\cygwin\bin\tk84.dll to same address as
> > Alexander> parent(0x18C90000) != 0x191A0000 1068 [main] python
> > Alexander> 1216 fork_parent: child 260 died waiting for dll
> > Alexander> loading error: Error
> >
> > Alexander> ---
> >
> > Alexander> How can I fix this?
>
> rebaseall
>
> You may have to explicitly list dlls you have compiled yourself (eg
> with Numeric, pygtk).
>
> There seems to be a bug that stops emacs working after you have done
> this. Try reinstalling libncurses7.
>
> > Run linux? <wink> Talk to Darren, he'll tell you.
>
> Indeed :-)
I'll second that.
From: Clovis G. <cl...@pe...> - 2005年11月09日 17:12:22
Steve Chaplin:
I read the link about memory management you indicated. It is very good 
and you are right
in pointing the differences between "collecting" and "freeing" memory. 
Anyway, let me try
to expose the problem once more (sorry for the length).
1. The original problem exposed can be resumed in the following table:
Test #1
Mem Usage Action
3152K Python Command Line Opened
15700K from pylab import *
15700K a = arange(0, 10)
19820K figure(1)
19988K plot(a, a)
22288K show()
20100K Memory usage after closing graphic window
The real program I developed builds 5~15 graphic windows and the 
required memory is very large.
2. John Hunter suggested me to use a small python application named 
"memleak_hawaii3.py" he developed
in order to make tests under Linux. I downloaded the 
"memleak_hawaii3.py" script and adapted it to run
under Windows XP. The "ps" utility was subsituted by an equivalent 
Windows program named "pslist.exe". I made a simple test in order to 
verify that the memory usage produced the same result shown by the
Windows XP task manager.
3. The "memleak_hawaii4.py" script opens a set of 40 graphs (without 
closing them).
 After all these graphs are built, they are all closed.
#!/usr/bin/env python
import os, sys, time
import matplotlib
matplotlib.use('Agg')
from pylab import *
GRAPHNUMBER = 40
CYCLENUMBER = 2
# open a file to store results
fid = open('memory_report1.txt','wt')
def report_memory():
 ### Attention: the path to the pslist utility should be adjusted 
according to installation!
 a = os.popen('c://tmp//utils//zeta//pslist -m python').readlines()
 b = a[8]
 c = b.split()
 return int(c[3])
for runcycle in range(0, CYCLENUMBER):
 # take a memory snapshot on indStart and compare it with indEnd
 report_string = "\nAllocated memory before loop starts = %6dK\n" % 
report_memory()
 print report_string
 fid.write(report_string)
 indStart, indEnd = 0, GRAPHNUMBER
 for i in range(indEnd):
 figure(i)
 clf()
 subplot(221)
 t1 = arange(0.0, 2.0, 0.01)
 y = sin(2*pi*t1)
 plot(t1,y,'-')
 plot(t1, rand(len(t1)), 's', hold=True)
 subplot(222)
 X = rand(50,50)
 imshow(X)
 subplot(223)
 scatter(rand(50), rand(50), s=100*rand(50), c=rand(50))
 subplot(224)
 pcolor(10*rand(50,50))
 savefig('tmp%d' % i, dpi = 75)
 show()
 val = report_memory()
 report_string = "Running cycle %1d, opening graphic %2d, 
allocated memory = %6dK" % (runcycle, i, val)
 print report_string
 fid.write(report_string+'\n')
 
 if i==indStart: start = val # wait a few cycles for memory usage 
to stabilize
 end = val
 print '\nAverage memory consumed per loop: %1.4fk bytes\n' % 
((end-start)/float(indEnd-indStart))
 for i in range(indEnd):
 close(i)
 val = report_memory()
 report_string = "Running cycle %1d, closing graphic %2d, 
allocated memory = %6dK" % (runcycle, i, val)
 print report_string
 fid.write(report_string+'\n')
fid.close()
 This routine is repeated
 2 times and the results are given in "memory_report1.txt". (resuts below)
Allocated memory before loop starts = 14060K
Running cycle 0, opening graphic 0, allocated memory = 17916K
Running cycle 0, opening graphic 1, allocated memory = 21540K
Running cycle 0, opening graphic 2, allocated memory = 25128K
Running cycle 0, opening graphic 3, allocated memory = 28736K
Running cycle 0, opening graphic 4, allocated memory = 32324K
Running cycle 0, opening graphic 5, allocated memory = 35932K
Running cycle 0, opening graphic 6, allocated memory = 39520K
Running cycle 0, opening graphic 7, allocated memory = 43136K
Running cycle 0, opening graphic 8, allocated memory = 46748K
Running cycle 0, opening graphic 9, allocated memory = 50356K
Running cycle 0, opening graphic 10, allocated memory = 53952K
Running cycle 0, opening graphic 11, allocated memory = 57560K
Running cycle 0, opening graphic 12, allocated memory = 61184K
Running cycle 0, opening graphic 13, allocated memory = 64896K
Running cycle 0, opening graphic 14, allocated memory = 68508K
Running cycle 0, opening graphic 15, allocated memory = 72092K
Running cycle 0, opening graphic 16, allocated memory = 75692K
Running cycle 0, opening graphic 17, allocated memory = 79312K
Running cycle 0, opening graphic 18, allocated memory = 82944K
Running cycle 0, opening graphic 19, allocated memory = 86544K
Running cycle 0, opening graphic 20, allocated memory = 90176K
Running cycle 0, opening graphic 21, allocated memory = 93752K
Running cycle 0, opening graphic 22, allocated memory = 97336K
Running cycle 0, opening graphic 23, allocated memory = 100956K
Running cycle 0, opening graphic 24, allocated memory = 104536K
Running cycle 0, opening graphic 25, allocated memory = 108176K
Running cycle 0, opening graphic 26, allocated memory = 111768K
Running cycle 0, opening graphic 27, allocated memory = 115400K
Running cycle 0, opening graphic 28, allocated memory = 118992K
Running cycle 0, opening graphic 29, allocated memory = 122628K
Running cycle 0, opening graphic 30, allocated memory = 126220K
Running cycle 0, opening graphic 31, allocated memory = 129808K
Running cycle 0, opening graphic 32, allocated memory = 133440K
Running cycle 0, opening graphic 33, allocated memory = 137008K
Running cycle 0, opening graphic 34, allocated memory = 140612K
Running cycle 0, opening graphic 35, allocated memory = 144220K
Running cycle 0, opening graphic 36, allocated memory = 147844K
Running cycle 0, opening graphic 37, allocated memory = 151456K
Running cycle 0, opening graphic 38, allocated memory = 155080K
Running cycle 0, opening graphic 39, allocated memory = 158672K
Running cycle 0, closing graphic 0, allocated memory = 158672K
Running cycle 0, closing graphic 1, allocated memory = 157448K
Running cycle 0, closing graphic 2, allocated memory = 155296K
Running cycle 0, closing graphic 3, allocated memory = 153052K
Running cycle 0, closing graphic 4, allocated memory = 150624K
Running cycle 0, closing graphic 5, allocated memory = 148440K
Running cycle 0, closing graphic 6, allocated memory = 146032K
Running cycle 0, closing graphic 7, allocated memory = 143692K
Running cycle 0, closing graphic 8, allocated memory = 141600K
Running cycle 0, closing graphic 9, allocated memory = 139156K
Running cycle 0, closing graphic 10, allocated memory = 136884K
Running cycle 0, closing graphic 11, allocated memory = 134476K
Running cycle 0, closing graphic 12, allocated memory = 132336K
Running cycle 0, closing graphic 13, allocated memory = 130072K
Running cycle 0, closing graphic 14, allocated memory = 127736K
Running cycle 0, closing graphic 15, allocated memory = 125352K
Running cycle 0, closing graphic 16, allocated memory = 123004K
Running cycle 0, closing graphic 17, allocated memory = 120916K
Running cycle 0, closing graphic 18, allocated memory = 118428K
Running cycle 0, closing graphic 19, allocated memory = 115980K
Running cycle 0, closing graphic 20, allocated memory = 113544K
Running cycle 0, closing graphic 21, allocated memory = 111368K
Running cycle 0, closing graphic 22, allocated memory = 108984K
Running cycle 0, closing graphic 23, allocated memory = 106684K
Running cycle 0, closing graphic 24, allocated memory = 104504K
Running cycle 0, closing graphic 25, allocated memory = 102092K
Running cycle 0, closing graphic 26, allocated memory = 99788K
Running cycle 0, closing graphic 27, allocated memory = 97404K
Running cycle 0, closing graphic 28, allocated memory = 95220K
Running cycle 0, closing graphic 29, allocated memory = 92716K
Running cycle 0, closing graphic 30, allocated memory = 90496K
Running cycle 0, closing graphic 31, allocated memory = 88048K
Running cycle 0, closing graphic 32, allocated memory = 85792K
Running cycle 0, closing graphic 33, allocated memory = 83576K
Running cycle 0, closing graphic 34, allocated memory = 81044K
Running cycle 0, closing graphic 35, allocated memory = 78752K
Running cycle 0, closing graphic 36, allocated memory = 76440K
Running cycle 0, closing graphic 37, allocated memory = 74156K
Running cycle 0, closing graphic 38, allocated memory = 71804K
Running cycle 0, closing graphic 39, allocated memory = 69336K
Allocated memory before loop starts = 69336K
Running cycle 1, opening graphic 0, allocated memory = 70988K
Running cycle 1, opening graphic 1, allocated memory = 72296K
Running cycle 1, opening graphic 2, allocated memory = 73368K
Running cycle 1, opening graphic 3, allocated memory = 75164K
Running cycle 1, opening graphic 4, allocated memory = 77404K
Running cycle 1, opening graphic 5, allocated memory = 78128K
Running cycle 1, opening graphic 6, allocated memory = 79668K
Running cycle 1, opening graphic 7, allocated memory = 82072K
Running cycle 1, opening graphic 8, allocated memory = 84292K
Running cycle 1, opening graphic 9, allocated memory = 86620K
Running cycle 1, opening graphic 10, allocated memory = 88864K
Running cycle 1, opening graphic 11, allocated memory = 91168K
Running cycle 1, opening graphic 12, allocated memory = 93560K
Running cycle 1, opening graphic 13, allocated memory = 95944K
Running cycle 1, opening graphic 14, allocated memory = 98356K
Running cycle 1, opening graphic 15, allocated memory = 100780K
Running cycle 1, opening graphic 16, allocated memory = 103248K
Running cycle 1, opening graphic 17, allocated memory = 105576K
Running cycle 1, opening graphic 18, allocated memory = 108080K
Running cycle 1, opening graphic 19, allocated memory = 110400K
Running cycle 1, opening graphic 20, allocated memory = 112808K
Running cycle 1, opening graphic 21, allocated memory = 115212K
Running cycle 1, opening graphic 22, allocated memory = 117628K
Running cycle 1, opening graphic 23, allocated memory = 120032K
Running cycle 1, opening graphic 24, allocated memory = 122576K
Running cycle 1, opening graphic 25, allocated memory = 124860K
Running cycle 1, opening graphic 26, allocated memory = 127280K
Running cycle 1, opening graphic 27, allocated memory = 129704K
Running cycle 1, opening graphic 28, allocated memory = 132200K
Running cycle 1, opening graphic 29, allocated memory = 134536K
Running cycle 1, opening graphic 30, allocated memory = 136960K
Running cycle 1, opening graphic 31, allocated memory = 139428K
Running cycle 1, opening graphic 32, allocated memory = 141748K
Running cycle 1, opening graphic 33, allocated memory = 144148K
Running cycle 1, opening graphic 34, allocated memory = 146648K
Running cycle 1, opening graphic 35, allocated memory = 149004K
Running cycle 1, opening graphic 36, allocated memory = 151416K
Running cycle 1, opening graphic 37, allocated memory = 153844K
Running cycle 1, opening graphic 38, allocated memory = 156256K
Running cycle 1, opening graphic 39, allocated memory = 158736K
Running cycle 1, closing graphic 0, allocated memory = 158736K
Running cycle 1, closing graphic 1, allocated memory = 157412K
Running cycle 1, closing graphic 2, allocated memory = 156100K
Running cycle 1, closing graphic 3, allocated memory = 154684K
Running cycle 1, closing graphic 4, allocated memory = 152848K
Running cycle 1, closing graphic 5, allocated memory = 150648K
Running cycle 1, closing graphic 6, allocated memory = 148652K
Running cycle 1, closing graphic 7, allocated memory = 146392K
Running cycle 1, closing graphic 8, allocated memory = 144176K
Running cycle 1, closing graphic 9, allocated memory = 141972K
Running cycle 1, closing graphic 10, allocated memory = 139768K
Running cycle 1, closing graphic 11, allocated memory = 137472K
Running cycle 1, closing graphic 12, allocated memory = 135220K
Running cycle 1, closing graphic 13, allocated memory = 132548K
Running cycle 1, closing graphic 14, allocated memory = 130092K
Running cycle 1, closing graphic 15, allocated memory = 127720K
Running cycle 1, closing graphic 16, allocated memory = 125372K
Running cycle 1, closing graphic 17, allocated memory = 123028K
Running cycle 1, closing graphic 18, allocated memory = 120584K
Running cycle 1, closing graphic 19, allocated memory = 118296K
Running cycle 1, closing graphic 20, allocated memory = 115652K
Running cycle 1, closing graphic 21, allocated memory = 113472K
Running cycle 1, closing graphic 22, allocated memory = 111044K
Running cycle 1, closing graphic 23, allocated memory = 108508K
Running cycle 1, closing graphic 24, allocated memory = 106016K
Running cycle 1, closing graphic 25, allocated memory = 103724K
Running cycle 1, closing graphic 26, allocated memory = 101368K
Running cycle 1, closing graphic 27, allocated memory = 98792K
Running cycle 1, closing graphic 28, allocated memory = 96276K
Running cycle 1, closing graphic 29, allocated memory = 93960K
Running cycle 1, closing graphic 30, allocated memory = 91508K
Running cycle 1, closing graphic 31, allocated memory = 89160K
Running cycle 1, closing graphic 32, allocated memory = 86576K
Running cycle 1, closing graphic 33, allocated memory = 84296K
Running cycle 1, closing graphic 34, allocated memory = 81900K
Running cycle 1, closing graphic 35, allocated memory = 79532K
Running cycle 1, closing graphic 36, allocated memory = 77160K
Running cycle 1, closing graphic 37, allocated memory = 74712K
Running cycle 1, closing graphic 38, allocated memory = 72368K
Running cycle 1, closing graphic 39, allocated memory = 69652K
Since the peak memory can reach ~150M, which may require swapping (which 
slows the application).
Another point is the starting point ~14M and the end point ~70M.
4. The "memleak_hawaii5.py" script opens a set of 40 graphs. They are 
closed after
 creation and a memory snapshot is taken before and after creation. 
This routine
 runs 2 times and the results are given in "memory_report2.txt".
 
The results in this case show that "destroying" the figure after its 
creation returns almost all the memory to the
OS and this cycling will not required "swapping".
5. A am a Python and Matplotlib novice and (unfortunately) I don't deal well
 with the internals of these applications so probably some of my 
questions may seem misplaced.
Sincerely yours,
Clovis Goldemberg
University of Sao Paulo
1 message has been excluded from this view by a project administrator.

Showing results of 231

<< < 1 .. 4 5 6 7 8 .. 10 > >> (Page 6 of 10)
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /