[matplotlib-devel] Build Failure on Windows using Python25

2009-02-06 Thread Patrick Marsh
Greetings, I have previously been able to build matplotlib on my Windows Vista machine using both Python25 and Python26. However, after my latest update to SVN, I'm no longer able to build matplotlib on my Windows machine (but am with my gentoo box). Below is the output from the build log using

Re: [matplotlib-devel] Build Failure on Windows using Python25

2009-02-06 Thread Andrew Straw
Patrick, Can you see if adding "#include " at the top of src/path.cpp will do the job? I'm not super-optimistic, though -- I think this is defined by the C99 standard, which I'm not sure Microsoft supports. -Andrew Patrick Marsh wrote: > Greetings, > > I have previously been able to build matpl

Re: [matplotlib-devel] Build Failure on Windows using Python25

2009-02-06 Thread Ryan May
On Fri, Feb 6, 2009 at 3:27 PM, Andrew Straw wrote: > Patrick, > > Can you see if adding "#include " at the top of src/path.cpp > will do the job? > > I'm not super-optimistic, though -- I think this is defined by the C99 > standard, which I'm not sure Microsoft supports. > Well, we're also talk

Re: [matplotlib-devel] Build Failure on Windows using Python25

2009-02-06 Thread Andrew Straw
Ryan May wrote: > On Fri, Feb 6, 2009 at 3:27 PM, Andrew Straw > wrote: > > Patrick, > > Can you see if adding "#include " at the top of src/path.cpp > will do the job? > > I'm not super-optimistic, though -- I think this is defined by the C99 > stan

Re: [matplotlib-devel] Build Failure on Windows using Python25

2009-02-06 Thread Ryan May
On Fri, Feb 6, 2009 at 4:48 PM, Andrew Straw wrote: > Ryan May wrote: > > On Fri, Feb 6, 2009 at 3:27 PM, Andrew Straw > > wrote: > > > > Patrick, > > > > Can you see if adding "#include " at the top of > src/path.cpp > > will do the job? > > > > I'm n

Re: [matplotlib-devel] Build Failure on Windows using Python25

2009-02-06 Thread Michael Abshoff
On Fri, Feb 6, 2009 at 3:03 PM, Ryan May wrote: > > > On Fri, Feb 6, 2009 at 4:48 PM, Andrew Straw wrote: >> >> Ryan May wrote: >> > On Fri, Feb 6, 2009 at 3:27 PM, Andrew Straw > > > wrote: >> > >> > Patrick, >> > >> > Can you see if adding "#include " at the

Re: [matplotlib-devel] Build Failure on Windows using Python25

2009-02-06 Thread Michael Droettboom
Just getting to this thread now -- I think this was introduced in my recent changes. I'm used to being on platforms where this is defined, so I forgot that it's not always there. In this specific case "unsigned char" is probably equivalent everywhere we run, so we might as well just do that.