From: Pankaj L. <pa...@da...> - 2002-12-20 15:49:15
|
Hi, I am using PLplot 5.1.0 along with tcl-tk on windows NT. I want PLplot to support jpeg format as one of its File output device format as mentioned in the user document. I tried my luck by browsing on plplot mailing list to figure out how can this be done but without much success? Can anyone help me with the procedure to rebuild Plplot on windows NT? I would like to use Plplot with JPEG format support with tcl-tk as development language. Thanks. Pankaj. |
From: Vince D. <vi...@sa...> - 2002-12-20 15:58:29
|
I believe that version already comes with jpeg support in its 'gd' library, and (assuming you downloaded the binary from my web page) it is compiled in. You can test this with: package require Plplotter plframe .p pack .p .p cmd plsdev jpeg which should not throw an error. Assuming this is the case, you can use whatever standard Plplot functions you like, or edit the .tcl scripts which come with Plplot to provide a more seamless menu-based saving of jpegs. cheers, -- Vince <http://www.santafe.edu/~vince> On Fri, 20 Dec 2002, Pankaj Laddha wrote: > Hi, > > I am using PLplot 5.1.0 along with tcl-tk on windows NT. I want PLplot to > support jpeg format as one of its File output device format as mentioned in the > user document. > > I tried my luck by browsing on plplot mailing list to figure out how can this be > done but without much success? > > Can anyone help me with the procedure to rebuild Plplot on windows NT? I would > like to use Plplot with JPEG format support with tcl-tk as development language. > > Thanks. > > Pankaj. > > > > > > ------------------------------------------------------- > This SF.NET email is sponsored by: The Best Geek Holiday Gifts! > Time is running out! Thinkgeek.com has the coolest gifts for > your favorite geek. Let your fingers do the typing. Visit Now. > T H I N K G E E K . C O M http://www.thinkgeek.com/sf/ > _______________________________________________ > Plplot-devel mailing list > Plp...@li... > https://lists.sourceforge.net/lists/listinfo/plplot-devel > |
From: Vince D. <vi...@sa...> - 2002-12-20 16:52:07
|
Sorry, my last msg was nonsense. You will need to rebuild the Plplotter package for tcl-tk, using the makefile.vc in sys/win-tk. You will also need to edit the plDevs.h file in that directory to enable the drivers you want (jpeg), and you will need to make sure any additional libraries and header files needed by that driver are accessible. Only then can you do what I suggested in my previous email. [NB: I just committed a fixed makefile.vc to cvs] cheers, -- Vince <http://www.santafe.edu/~vince> |
From: Alan W. I. <ir...@be...> - 2002-12-20 18:34:35
|
On Fri, 20 Dec 2002, Vince Darley wrote: > Sorry, my last msg was nonsense. You will need to rebuild the Plplotter > package for tcl-tk, using the makefile.vc in sys/win-tk. You will also > need to edit the plDevs.h file in that directory to enable the drivers you > want (jpeg), and you will need to make sure any additional libraries and > header files needed by that driver are accessible. Only then can you do > what I suggested in my previous email. > I believe sys/win-tk is for a cygwin environment, but could Vince confirm this please? If my assumption is true, then sys/win-tk is the recommended way to get plplot working for cygwin on windows now. (Of course, sys/win32/msdev/ is the recommended way to get plplot working on "bare" windows.) The other much more general method I was discussing for configuring and building plplot on cygwin uses the same method (configure; make; make install in the top-level directory) that works on Linux and Unix now. Unfortunately, the general method doesn't work at the moment for cygwin, but there is hope in 6 months or so that it will for the reasons I discussed. I have no cygwin experience myself, but the impression I get from my reading about the autotools-cygwin problem over the last few days is there is a very strong effort to port everything in Linux into the cygwin environment. So again on a time scale of 6 months or so you may find everything you need (libgd, libpng, libjpeg, and zlib) already ported to the cygwin environment which should allow you to produce png and jpeg plots as a matter of routine in that environment. Alan email: ir...@be... phone: 250-727-2902 FAX: 250-721-7715 snail-mail: Dr. Alan W. Irwin Department of Physics and Astronomy, University of Victoria, P.O. Box 3055, Victoria, British Columbia, Canada, V8W 3P6 __________________________ Linux-powered astrophysics __________________________ |
From: Vince D. <vi...@sa...> - 2002-12-20 18:40:16
|
On Fri, 20 Dec 2002, Alan W. Irwin wrote: > I believe sys/win-tk is for a cygwin environment, but could Vince confirm > this please? If my assumption is true, then sys/win-tk is the recommended > way to get plplot working for cygwin on windows now. (Of course, > sys/win32/msdev/ is the recommended way to get plplot working on "bare" > windows.) No, win-tk is for Windows. Going to that directory and typing: nmake -f makefile.vc nmake -f makefile.vc install will build and install the 'Plplotter' extension to Tcl/Tk so that it can be used from any conventional tcl,tk installation on Windows. It is nothing to do with cygwin at all. The difference to 'msdev' is that that stuff builds standalone versions of plplot (I think) which have nothing in common with tcl,tk. The problem with compiling anything using cygwin is that to run it, you also need to have cygwin (not much use if you want to distribute your software to other people), unless you use some sort of '-mno-cygwin' flag to gcc, but that just complicates things more. cheers, Vince. |
From: Alan W. I. <ir...@be...> - 2002-12-20 17:20:41
|
Hello Pankaj: You may not be aware of this, but your cross-posting to both plplot_general and plplot_devel is an annoyance to those who are subscribed to both lists since we see your posts twice. My own feeling is you are asking fairly technical questions so your posts should go to plplot_devel only. With regard to the content of your particular message, I would know exactly how to answer you in a Linux environment. You need libgd, libpng, libjpeg, and zlib in order to compile the gd.c device driver (which implements the png and jpeg devices). The problem with the Plplot windows environment is it is only supported by one guy (Olof Svensson, who is subscribed to plplot_devel, but is not part of the core team because of lack of time on his part.) The primary focus of plplot core development team is oriented toward the Unix/Linux side, and Olof keeps up as well as he can on the windows side in his spare time. So you may have to figure out for yourself how to get the gd device implemented in that environment. The first step would be to create libgd for the windows environment. For instructions on that, see http://www.boutell.com/gd/manual2.0.9.html. If you don't have the time/skills to do that, then there is hope for you in about another 6 months or so. The natural way to get access to all the Unix/Linux side developments (such as the gd device driver) in windows is to use the new configuration scheme to build plplot in a cygwin environment. (Cygwin is a free implementation of Unix for windows.) Unfortunately, that does not quite work yet because of current incompatibilities between autotools and cygwin. We are very close, since everything compiles on Cygwin without problems, but there seems to be a linking problem which lots of other projects have also encountered. Since both autotools and cygwin are developed by the FSF, and people are clamoring for a simple solution, I fully expect that situation to be resolved on a fairly short time scale. Thus, I am planning to try testing it again in 6 months or so. Alan email: ir...@be... phone: 250-727-2902 FAX: 250-721-7715 snail-mail: Dr. Alan W. Irwin Department of Physics and Astronomy, University of Victoria, P.O. Box 3055, Victoria, British Columbia, Canada, V8W 3P6 __________________________ Linux-powered astrophysics __________________________ |
From: Pankaj L. <pa...@da...> - 2002-12-23 12:39:16
|
Hello Alan, Thanks for the reply. I am extremely sorry for all the inconvenience caused due to cross posting of the message. I am sure I can figure out how to create "libgd" as mentioned in your message. But I am not able to use the existing source code of Plplot to make dlls with default drivers. When I build the dlls and try to load the plplotter package in tcl, it gives me "could not find procedure Plplotter_Init" error. It seems some of the source files are missing. I have Plplot 5.1.0 version. Do you have any idea what is missing? Any clues how to build the Plplot with default drivers on windows with tcl bindings. Regards, Pankaj. ----- Original Message ----- From: Alan W. Irwin <ir...@be...> To: Pankaj Laddha <pa...@da...> Cc: PLplot development list <Plp...@li...> Sent: Friday, December 20, 2002 10:49 PM Subject: Re: [Plplot-general] How to Build PLplot to use with Tcl-tk > Hello Pankaj: > > You may not be aware of this, but your cross-posting to both plplot_general > and plplot_devel is an annoyance to those who are subscribed to both lists > since we see your posts twice. > > My own feeling is you are asking fairly technical questions so your posts > should go to plplot_devel only. > > With regard to the content of your particular message, I would know exactly > how to answer you in a Linux environment. You need libgd, libpng, libjpeg, > and zlib in order to compile the gd.c device driver (which implements the > png and jpeg devices). > > The problem with the Plplot windows environment is it is only supported by > one guy (Olof Svensson, who is subscribed to plplot_devel, but is not part > of the core team because of lack of time on his part.) The primary focus of > plplot core development team is oriented toward the Unix/Linux side, and > Olof keeps up as well as he can on the windows side in his spare time. So > you may have to figure out for yourself how to get the gd device implemented > in that environment. The first step would be to create libgd for the > windows environment. For instructions on that, see > http://www.boutell.com/gd/manual2.0.9.html. > > If you don't have the time/skills to do that, then there is hope for you in > about another 6 months or so. The natural way to get access to all the > Unix/Linux side developments (such as the gd device driver) in windows is to > use the new configuration scheme to build plplot in a cygwin environment. > (Cygwin is a free implementation of Unix for windows.) Unfortunately, that > does not quite work yet because of current incompatibilities between > autotools and cygwin. We are very close, since everything compiles on Cygwin > without problems, but there seems to be a linking problem which lots of > other projects have also encountered. Since both autotools and cygwin are > developed by the FSF, and people are clamoring for a simple solution, I > fully expect that situation to be resolved on a fairly short time scale. > Thus, I am planning to try testing it again in 6 months or so. > > Alan > > email: ir...@be... > phone: 250-727-2902 FAX: 250-721-7715 > snail-mail: > Dr. Alan W. Irwin > Department of Physics and Astronomy, > University of Victoria, P.O. Box 3055, > Victoria, British Columbia, Canada, V8W 3P6 > __________________________ > > Linux-powered astrophysics > __________________________ |
From: Vince D. <vi...@sa...> - 2002-12-23 14:00:02
|
On Mon, 23 Dec 2002, Pankaj Laddha wrote: > Any clues how to build the Plplot with default drivers on windows with tcl > bindings. Get the latest 'cvs HEAD' of plplot from sourceforge (I made some fixes today), then: cd plplot/sys/win-tk nmake -f makefile.vc nmake -f makefile.vc install Vince. |
From: Pankaj L. <pa...@da...> - 2003-01-23 06:06:55
|
Hi All, I am using plplot version 5.1.0. I am trying to build shared libraries on Solaris. I want shared library with tcl/tk support. When I give --enable-tcl, --with-shlib options to "configure", I am getting "Checking how to build shared libraries...: Unknown" message. Also, in the output log of "configure" I observe "enable_tcl=No". Can anybody help me to resolve these problems? Thanks for any help. -Pankaj. |
From: Alan W. I. <ir...@be...> - 2003-01-23 07:14:30
|
On Thu, 23 Jan 2003, Pankaj Laddha wrote: > Hi All, > > I am using plplot version 5.1.0. I am trying to build shared libraries on > Solaris. I want shared library with tcl/tk support. When I > give --enable-tcl, --with-shlib options to "configure", I am getting > > "Checking how to build shared libraries...: Unknown" > > message. Also, in the output log of "configure" I observe "enable_tcl=No". > > Can anybody help me to resolve these problems? > > Thanks for any help. I cannot help you with 5.1.0, but you might want to try the recently released PLplot 5.2.0. (See the recent announcement on plplot-general.) Shared libraries worked fine with PLplot-5.2.0 for the minimal Solaris system (without tcl/tk) that I had at my disposal for testing. I would be most interested in your report (positive or negative) about whether you can get PLplot 5.2.0 to work with tcl/tk on Solaris. Alan __________________________ Alan W. Irwin email: ir...@be... phone: 250-727-2902 Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the Canadian Centre for Climate Modelling and Analysis (www.cccma.bc.ec.gc.ca) and the PLplot scientific plotting software package (plplot.org). __________________________ Linux-powered Science __________________________ |
From: Pankaj L. <pa...@da...> - 2003-01-28 18:41:53
|
Hi Alan, I tried building the Plplot 5.2.0 with tcl drivers. I am getting following errors. Undefined first referenced symbol in file XClearWindow ../drivers/.libs/libplplotdrv.al(plframe.lo) (symbol belongs to implicit dependency /usr/lib/libX11.so.4) XSync ../drivers/.libs/libplplotdrv.al(plframe.lo) (symbol belongs to implicit dependency /usr/lib/libX11.so.4) XFlush ../drivers/.libs/libplplotdrv.al(plframe.lo) (symbol belongs to implicit dependency /usr/lib/libX11.so.4) XLookupString ../drivers/.libs/libplplotdrv.al(plframe.lo) (symbol belongs to implicit dependency /usr/lib/libX11.so.4) XWarpPointer ../drivers/.libs/libplplotdrv.al(plframe.lo) (symbol belongs to implicit dependency /usr/lib/libX11.so.4) XParseColor ../drivers/.libs/libplplotdrv.al(plframe.lo) (symbol belongs to implicit dependency /usr/lib/libX11.so.4) XQueryPointer ../drivers/.libs/libplplotdrv.al(plframe.lo) (symbol belongs to implicit dependency /usr/lib/libX11.so.4) XDrawLines ../drivers/.libs/libplplotdrv.al(plframe.lo) (symbol belongs to implicit dependency /usr/lib/libX11.so.4) ld: fatal: Symbol referencing errors. No output written to .libs/libplplot.so.5.2.0 make[1]: *** [libplplot.la] Error 1 make[1]: Leaving directory `/usr/pankaj/plplot/plplot-5.2.0/src' make: *** [all-recursive] Error 1 Also, I have enabled following options, with_shlib: yes with_double: no with_debug: no with_opt: yes with_warn: no with_profile: no with_gcc: no with_rpath: yes with_freetype: no enable_xwin: no enable_tcl: yes enable_tk: yes enable_itcl: no enable_cxx: no enable_python: no enable_f77: no enable_java: no enable_octave: no enable_gnome: no enable_tkwin: no Can anybody help me to resolved the above errors? Thanks, Pankaj. ----- Original Message ----- From: Alan W. Irwin <ir...@be...> To: Pankaj Laddha <pa...@da...> Cc: PLplot development list <Plp...@li...> Sent: Thursday, January 23, 2003 12:43 PM Subject: Re: [Plplot-devel] Problem in building Shared libraries on Solaris > On Thu, 23 Jan 2003, Pankaj Laddha wrote: > > > Hi All, > > > > I am using plplot version 5.1.0. I am trying to build shared libraries on > > Solaris. I want shared library with tcl/tk support. When I > > give --enable-tcl, --with-shlib options to "configure", I am getting > > > > "Checking how to build shared libraries...: Unknown" > > > > message. Also, in the output log of "configure" I observe "enable_tcl=No". > > > > Can anybody help me to resolve these problems? > > > > Thanks for any help. > > I cannot help you with 5.1.0, but you might want to try the recently > released PLplot 5.2.0. (See the recent announcement on plplot-general.) > Shared libraries worked fine with PLplot-5.2.0 for the minimal Solaris > system (without tcl/tk) that I had at my disposal for testing. I would be > most interested in your report (positive or negative) about whether you can > get PLplot 5.2.0 to work with tcl/tk on Solaris. > > Alan > __________________________ > Alan W. Irwin > email: ir...@be... > phone: 250-727-2902 > > Astronomical research affiliation with Department of Physics and Astronomy, > University of Victoria (astrowww.phys.uvic.ca). > > Programming affiliations with the Canadian Centre for Climate Modelling and > Analysis (www.cccma.bc.ec.gc.ca) and the PLplot scientific plotting software > package (plplot.org). > > __________________________ > > Linux-powered Science > __________________________ > > |
From: Alan W. I. <ir...@be...> - 2003-01-28 19:45:28
|
On Wed, 29 Jan 2003, Pankaj Laddha wrote: > Can anybody help me to resolved the above errors? I will try to help but need the complete story. Here is what I would like you to do: (1) download the latest tarball just to be sure we are on exactly the same page. (2) Make sure every bit is correct. cksum plplot-5.2.0.tar.gz 2721988623 4435633 plplot-5.2.0.tar.gz (3) Unpack it. (4) Configure and build it capturing all the relevant output. cd plplot-5.2.0 ./configure --whatever-options >& configure.out ./make >& make.out (5) Send me configure.out and make.out as e-mail attachments. Once I have those attachments, I may be able to help with the problem that you have encountered. Alan __________________________ Alan W. Irwin email: ir...@be... phone: 250-727-2902 Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the Canadian Centre for Climate Modelling and Analysis (www.cccma.bc.ec.gc.ca) and the PLplot scientific plotting software package (plplot.org). __________________________ Linux-powered Science __________________________ |
From: Pankaj L. <pa...@da...> - 2003-01-29 09:52:44
|
Thanks Alan. I have verified that we both are using the same version of plplot-5.2.0. I am attaching the required files to this mail. From the attached files configure : I am using this configure file to configure plplot 5.2.0 package. In this files have changed the default options as per my need. I have also changed the path of tcl libraries and include folder to reflect my installation of tcl. configure.out : It is the output log of "$ ./configure" command. make.out : It is the output log of "$ ./make " command. I am trying to build plplot-5.2.0 with tcl driver on Solaris platform. I hope you can help me to sort the problem. Thanks for your time. Regards, Pankaj. > On Wed, 29 Jan 2003, Pankaj Laddha wrote: > > > Can anybody help me to resolved the above errors? > > I will try to help but need the complete story. Here is what I would like > you to do: > > (1) download the latest tarball just to be sure we are on exactly the same > page. > > (2) Make sure every bit is correct. > > cksum plplot-5.2.0.tar.gz > 2721988623 4435633 plplot-5.2.0.tar.gz > > (3) Unpack it. > > (4) Configure and build it capturing all the relevant output. > > cd plplot-5.2.0 > ./configure --whatever-options >& configure.out > ./make >& make.out > > (5) Send me configure.out and make.out as e-mail attachments. > > Once I have those attachments, I may be able to help with the problem that > you have encountered. > > Alan |
From: Alan W. I. <ir...@be...> - 2003-01-29 18:49:01
|
On Wed, 29 Jan 2003, Pankaj Laddha wrote: > I have verified that we both are using the same version of plplot-5.2.0. I am > attaching the required files to this mail. From the attached files > configure : I am using this configure file to configure plplot 5.2.0 package. In > this files have changed the default options as per my need. I have also changed > the path of tcl libraries and include folder to reflect my installation of tcl. > configure.out : It is the output log of "$ ./configure" command. > make.out : It is the output log of "$ ./make " command. > > I am trying to build plplot-5.2.0 with tcl driver on Solaris platform. I hope > you can help me to sort the problem. Thank you for your detailed report. Two things I noticed. (1) I am somewhat concerned that you are changing the configure script. The more standard way to do what you are trying to do is to set some environment variables TCLINCDIR, TCLLIBDIR, ITCLINCDIR, ITCLLIBDIR, TKINCDIR, TKLIBDIR to your locations for the tcl/itcl/tk stuff. Also, the standard way to turn off f77, cxx, and python is to specify the --disable-f77 --disable-cxx --disable-python configure options. (2) Our static drivers (which for historical reasons are the default) were not as thoroughly tested as the dynamic drivers before the release. Because we have had some bad reports on some platforms for static drivers, we suggest using the dynamic drivers as a first step. The way you do that is to specify the configure option, e.g., ./configure --enable-dyndrivers --disable-f77 --disable-cxx --disable-python So lets try one more iteration with an unchanged configure script, the environment variables set so configure can find the locations of your tcl/tk/itcl stuff, and the above configure options (you may want a different install prefix than the default /usr/local as well). Send me the associated configure.out and make.out off list if you are still having some problems Alan __________________________ Alan W. Irwin email: ir...@be... phone: 250-727-2902 Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the Canadian Centre for Climate Modelling and Analysis (www.cccma.bc.ec.gc.ca) and the PLplot scientific plotting software package (plplot.org). __________________________ Linux-powered Science __________________________ |
From: Joao C. <jc...@fe...> - 2003-01-28 20:11:46
|
On Tuesday 28 January 2003 18:39, Pankaj Laddha wrote: > Hi Alan, Hi Pankaj > > I tried building the Plplot 5.2.0 with tcl drivers. I am getting follow= ing > errors. > > Undefined first referenced > symbol in file > XClearWindow =20 > ../drivers/.libs/libplplotdrv.al(plframe.lo) (symbol belongs to implici= t > dependency /usr/lib/libX11.so.4) > XSync =20 > ../drivers/.libs/libplplotdrv.al(plframe.lo) (symbol belongs to implici= t > dependency /usr/lib/libX11.so.4) > XFlush =20 > ../drivers/.libs/libplplotdrv.al(plframe.lo) (symbol belongs to implici= t > dependency /usr/lib/libX11.so.4) > XLookupString =20 > ../drivers/.libs/libplplotdrv.al(plframe.lo) (symbol belongs to implici= t > dependency /usr/lib/libX11.so.4) > XWarpPointer =20 > ../drivers/.libs/libplplotdrv.al(plframe.lo) (symbol belongs to implici= t > dependency /usr/lib/libX11.so.4) > XParseColor =20 > ../drivers/.libs/libplplotdrv.al(plframe.lo) (symbol belongs to implici= t > dependency /usr/lib/libX11.so.4) > XQueryPointer =20 > ../drivers/.libs/libplplotdrv.al(plframe.lo) (symbol belongs to implici= t > dependency /usr/lib/libX11.so.4) > XDrawLines =20 > ../drivers/.libs/libplplotdrv.al(plframe.lo) (symbol belongs to implici= t > dependency /usr/lib/libX11.so.4) > ld: fatal: Symbol referencing errors. No output written to > .libs/libplplot.so.5.2.0 > make[1]: *** [libplplot.la] Error 1 > make[1]: Leaving directory `/usr/pankaj/plplot/plplot-5.2.0/src' > make: *** [all-recursive] Error 1 > > Also, I have enabled following options, > with_shlib: yes with_double: no > with_debug: no with_opt: yes > with_warn: no with_profile: no > with_gcc: no with_rpath: yes > with_freetype: no > > enable_xwin: no enable_tcl: yes Try building with the xwin driver. The missing symbols from plframe, need= ed to=20 build the tk driver, are in the X11 libraries. And anyway the tk driver n= eeds=20 the xwin driver. I suspect that you are building with static libraries and without dynamic= =20 drivers. Can you please send us the configure command that you used? In c= ase=20 you don't remember it, see the contents of the file config.summary. You can also try to disable building static libraries and enable dynamic=20 drivers. One step a time: =2E/configure --enable-dyndrivers --disable-static" what happens? If it does not works, try "./configure --enable-dyndrivers" what happens? If it does not works, try "./configure --disable-static" what happens? Joao > enable_tk: yes enable_itcl: no > enable_cxx: no enable_python: no > enable_f77: no enable_java: no > enable_octave: no enable_gnome: no > enable_tkwin: no > > Can anybody help me to resolved the above errors? > > Thanks, > Pankaj. > > > > > > ----- Original Message ----- > From: Alan W. Irwin <ir...@be...> > To: Pankaj Laddha <pa...@da...> > Cc: PLplot development list <Plp...@li...> > Sent: Thursday, January 23, 2003 12:43 PM > Subject: Re: [Plplot-devel] Problem in building Shared libraries on Sol= aris > > > On Thu, 23 Jan 2003, Pankaj Laddha wrote: > > > Hi All, > > > > > > I am using plplot version 5.1.0. I am trying to build shared librar= ies > > > on Solaris. I want shared library with tcl/tk support. When I > > > give --enable-tcl, --with-shlib options to "configure", I am gettin= g > > > > > > "Checking how to build shared libraries...: Unknown" > > > > > > message. Also, in the output log of "configure" I observe > > > "enable_tcl=3DNo". > > > > > > Can anybody help me to resolve these problems? > > > > > > Thanks for any help. > > > > I cannot help you with 5.1.0, but you might want to try the recently > > released PLplot 5.2.0. (See the recent announcement on plplot-genera= l.) > > Shared libraries worked fine with PLplot-5.2.0 for the minimal Solari= s > > system (without tcl/tk) that I had at my disposal for testing. I wou= ld > > be most interested in your report (positive or negative) about whethe= r > > you can get PLplot 5.2.0 to work with tcl/tk on Solaris. > > > > Alan > > __________________________ > > Alan W. Irwin > > email: ir...@be... > > phone: 250-727-2902 > > > > Astronomical research affiliation with Department of Physics and > > Astronomy, University of Victoria (astrowww.phys.uvic.ca). > > > > Programming affiliations with the Canadian Centre for Climate Modelli= ng > > and Analysis (www.cccma.bc.ec.gc.ca) and the PLplot scientific plotti= ng > > software package (plplot.org). > > > > __________________________ > > > > Linux-powered Science > > __________________________ > > ------------------------------------------------------- > This SF.NET email is sponsored by: > SourceForge Enterprise Edition + IBM + LinuxWorld =3D Something 2 See! > http://www.vasoftware.com > _______________________________________________ > Plplot-devel mailing list > Plp...@li... > https://lists.sourceforge.net/lists/listinfo/plplot-devel |
From: Pankaj L. <pa...@da...> - 2003-02-11 15:18:48
|
Hi All, Has anybody tried buidling Plplot 5.2.0 on Solaris with Active tcl 8.4 version? If yes, can you please share your results with me. I plan to build Plplot5.2.0 on Solaris, so if anyone has tried this before, let me know if there are any changes I need to make. Thanks for any help. -Pankaj. |