Re: [Plplot-devel] Redesigned wxWidgets Driver

2015-02-10 Thread Phil Rosenberg
Hi Alan, Jim and all I have had to rework some of the new wxWidgets driver to allow plGetCursor to work. SOme obvious extra challenges presented themselves when I realised how this function worked, such as two way communication via shared memory and synchronisation of this resource via mutexes, th

Re: [Plplot-devel] Redesigned wxWidgets Driver

2015-02-10 Thread Jim Dishaw
On Feb 10, 2015, at 10:07 AM, Phil Rosenberg wrote: > Hi Alan, Jim and all > > I have had to rework some of the new wxWidgets driver to allow > plGetCursor to work. SOme obvious extra challenges presented > themselves when I realised how this function worked, such as two way > communication via

[Plplot-devel] What is the minimum C standard for PLplot?

2015-02-10 Thread Jim Dishaw
Is the minimum supported compiler the C89 specification? I would like to use the offsetof() macro in the implementation of the revised metafile I/O routines. My goal is to define the data file format in a variable and to support multiple versions for backwards compatibility. --

Re: [Plplot-devel] What is the minimum C standard for PLplot?

2015-02-10 Thread Alan W. Irwin
On 2015-02-10 13:14-0500 Jim Dishaw wrote: > Is the minimum supported compiler the C89 specification? I would like to use the offsetof() macro in the implementation of the revised metafile I/O routines. My goal is to define the data file format in a variable and to support multiple versions for

Re: [Plplot-devel] Propagation status for release

2015-02-10 Thread Arjen Markus
Hi Alan, > -Original Message- > From: Alan W. Irwin [mailto:ir...@beluga.phys.uvic.ca] > Sent: Friday, February 06, 2015 10:02 AM > To: PLplot development list > Subject: [Plplot-devel] Propagation status for release > > Here is the latest language summary results from the test_diff_ps

Re: [Plplot-devel] What is the minimum C standard for PLplot?

2015-02-10 Thread Andrew Ross
If you check the README.developers you will see our recommended coding style. Currently for C this is ISO C99 standards with POSIX.1-2001 base specification (required for a number of functions). The README file also gives the gcc flags to check compliance with the standards. Cheers Andrew On