Re: [Plplot-devel] Mix-up of Tcl versions under Linux in PLplot 5.9.5

2010-02-01 Thread Arjen Markus
Hi Alan, good to see this confirmed. I suspected as much as the stubs function table is carefuly controlled within Tcl and we do not use a lot of the Tcl API to start with. Regards, Arjen On 2010-01-30 08:21, Alan W. Irwin wrote: > On 2010-01-29 09:51+0100 Arjen Markus wrote: >> On 2010-01-28 2

Re: [Plplot-devel] Mix-up of Tcl versions under Linux in PLplot 5.9.5

2010-01-29 Thread Alan W. Irwin
On 2010-01-29 09:51+0100 Arjen Markus wrote: > On 2010-01-28 21:21, Alan W. Irwin wrote: >> However, it turns out I cannot even generate the tcl bindings source code >> with tclsh8.3! Here is the relevant trailing part of the output of "make >> VERBOSE=1". > > Oh, that is due to the use of "eq" for

Re: [Plplot-devel] Mix-up of Tcl versions under Linux in PLplot 5.9.5

2010-01-29 Thread Arjen Markus
Hi Alan, On 2010-01-28 21:21, Alan W. Irwin wrote: > On 2010-01-28 14:23+0100 Arjen Markus wrote: > >> Hi Alan, >> >> no, I did not - PLplot builds fine., but you may be correct >> about it not being enough - I will look further (no time right >> now, I am afraid) > The tests run fine (well, th

Re: [Plplot-devel] Mix-up of Tcl versions under Linux in PLplot 5.9.5

2010-01-28 Thread Alan W. Irwin
On 2010-01-28 14:23+0100 Arjen Markus wrote: > Hi Alan, > > no, I did not - PLplot builds fine., but you may be correct > about it not being enough - I will look further (no time right > now, I am afraid) Hi Arjen: I decided to have a look at this because like Andrew and you I have several versi

Re: [Plplot-devel] Mix-up of Tcl versions under Linux in PLplot 5.9.5

2010-01-28 Thread Arjen Markus
Hi Alan, no, I did not - PLplot builds fine., but you may be correct about it not being enough - I will look further (no time right now, I am afraid) Regards, Arjen On 2010-01-28 14:14, Alan W. Irwin wrote: > On 2010-01-28 08:54+0100 Arjen Markus wrote: > >> Hi Andrew, >> >> I solved the issue

Re: [Plplot-devel] Mix-up of Tcl versions under Linux in PLplot 5.9.5

2010-01-28 Thread Alan W. Irwin
On 2010-01-28 08:54+0100 Arjen Markus wrote: > Hi Andrew, > > I solved the issue by using the macros TCL_MAJOR_VERSION and > TCL_MINOR_VERSION. That way building the Tcl/Tk bindings for PLplot > is independent of the version of tclsh, but instead relies exclusively > on the Tcl include files. Hi

Re: [Plplot-devel] Mix-up of Tcl versions under Linux in PLplot 5.9.5

2010-01-27 Thread Arjen Markus
Hi Andrew, I solved the issue by using the macros TCL_MAJOR_VERSION and TCL_MINOR_VERSION. That way building the Tcl/Tk bindings for PLplot is independent of the version of tclsh, but instead relies exclusively on the Tcl include files. Regards, Arjen On 2010-01-27 17:37, Andrew Ross wrote: >

Re: [Plplot-devel] Mix-up of Tcl versions under Linux in PLplot 5.9.5

2010-01-27 Thread Andrew Ross
Cmake code tends to do this kind of thing by searching through directories in decreasing version order. I think the "correct" thing to do is 1) Find tclsh 2) Find the version of tcl associated with it 3) Only search in directories with that version number I've also been bitten by this mysel