[Plplot-devel] Please delay next release

2009-09-15 Thread Alan W. Irwin
Hi Hazen: I have a number of PLplot projects I am actively working on at this time. Those include * Improving the ocaml build. * Finishing up the new testing framework. * Bug fixing (such as the -bg bug that was just demonstrated). Once the above three are taken care of I also plan to restart

Re: [Plplot-devel] Setting background colour breaks colour map introduced by r10354

2009-09-15 Thread Alan W. Irwin
On 2009-09-15 11:08+0200 Mark de Wever wrote: > Hi, > > In my program I set the background colour (using the extcairo device). > Recently the graphics drawn no longer show up, since I wasn't sure > whether it was a recent change in my code or in plplot I investigated > further and tracked the prob

Re: [Plplot-devel] example 19 failure

2009-09-15 Thread Alan W. Irwin
Hi Werner: This is mostly directed to you, but there is also a quick question for Andrew about the java bindings in my comments below. On 2009-09-15 15:34+0200 Werner Smekal wrote: > Hi Alan, > > I added these redefinition macros to plcdemos.h and plc++demos.h. But since > we already use such a

Re: [Plplot-devel] example 19 failure

2009-09-15 Thread Werner Smekal
Hi Alan, I added these redefinition macros to plcdemos.h and plc++demos.h. But since we already use such a macro for isnan(), where PL__HAVE_ISNAN is defined in plConfig.h, I decided to do the same as well for _snprintf. So I copied the relevant part form config.h.cmake to plConfig.h.cmake

Re: [Plplot-devel] Fortran Example 19 problem

2009-09-15 Thread Arjen Markus
Hi Werner, the floor function does not exist in FORTRAN 77, so you need to implement it, for instance: *234567 REAL FUNCTION FLOOR(X) REAL X FLOOR = FLOAT(INT(X)) RETURN END The declaration "character*(length) label" is a Fortran 90 facility. Use: chara

[Plplot-devel] Fortran Example 19 problem

2009-09-15 Thread Werner Smekal
Hi, when I compile the latest revision of PLplot with MinGW 3.4.5 including the g77 compiler I get the following compiler error: Scanning dependencies of target x19f [ 88%] Building Fortran object examples/f77/CMakeFiles/x19f.dir/ x19f.f.obj E:\plbuild\examples\f77\x19f.f: In function `normali

[Plplot-devel] Setting background colour breaks colour map introduced by r10354

2009-09-15 Thread Mark de Wever
Hi, In my program I set the background colour (using the extcairo device). Recently the graphics drawn no longer show up, since I wasn't sure whether it was a recent change in my code or in plplot I investigated further and tracked the problem down to plplot revision 10354. I also found a way