From: steven m. <ste...@es...> - 2006-05-21 22:07:00
|
hba...@ma... [2006-05-21, 14:00:22]: > > Hello, > > Release candidate #1 for PLplot 5.6.1 is now available for download at: > > http://sourceforge.net/project/showfiles.php?group_id=2915 > > This is a *test* release for the final version of PLplot 5.6.1. If > you have the time & the inclination, please download it and let us > know if does/does not work on your system of choice. With 5.6.0, I had some problems with the pstex driver. I get a SIGSEGV (on OpenBSD), which can be prevented by the following patch. However, the resulting .eps_t file does not contain any label text. So maybe there is a better fix? steven --- drivers/pstex.c.orig Mon Jan 19 20:10:19 2004 +++ drivers/pstex.c Mon Apr 17 01:34:40 2006 @@ -260,6 +261,11 @@ parse_str(const char *str, char *dest) "psi", "Psi", "omega", "Omega"}; plgesc(&esc); + + if (str == NULL) { + *tp = '\0'; + return; + } while (*str) { Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm |