|
From: Ethan A M. <me...@uw...> - 2020-07-16 19:28:33
|
Gnuplot version 5.4 - first release I have placed a source tarball for 5.4 on SourceForge https://sf.net/projects/gnuplot/files/gnuplot/5.4.0/gnuplot-5.4.0.tar.gz Release Notes with new feature list http://gnuplot.info/ReleaseNotes_5_4.html Version 5.4.0 is the start of a new "major release" series. It supersedes version 5.2, first released in September 2017. I realize that there may be unresolved issues with building Windows binaries for Windows 10, but I decided that it is not reasonable to hold up release any longer for issues that appear to be more related to system configuration than to the gnuplot source. If necessary we can put out a Windows-specific patchlevel 1. As always, I am totally reliant on and extremely grateful to the volunteers who put together Windows binaries from a source release package. cheers, and happy plotting Ethan |
|
From: Bastian M. <bma...@we...> - 2020-09-19 16:00:51
|
Dear all, You can now find Windows binaries of the 5.4.0 release for testing on SourceForge: https://sf.net/projects/gnuplot/files/gnuplot/testing/ Please give them a try. Bastian > Gesendet: Donnerstag, 16. Juli 2020 um 21:25 Uhr > Von: "Ethan A Merritt" <me...@uw...> > An: gnu...@li... > Betreff: New Release package - gnuplot version 5.4 > > Gnuplot version 5.4 - first release > > I have placed a source tarball for 5.4 on SourceForge > > https://sf.net/projects/gnuplot/files/gnuplot/5.4.0/gnuplot-5.4.0.tar.gz > > Release Notes with new feature list > > http://gnuplot.info/ReleaseNotes_5_4.html > > Version 5.4.0 is the start of a new "major release" series. > It supersedes version 5.2, first released in September 2017. > > I realize that there may be unresolved issues with building Windows binaries > for Windows 10, but I decided that it is not reasonable to hold up release any > longer for issues that appear to be more related to system configuration than to > the gnuplot source. If necessary we can put out a Windows-specific patchlevel 1. > As always, I am totally reliant on and extremely grateful to the volunteers > who put together Windows binaries from a source release package. > > cheers, and happy plotting > > Ethan > > > > > > > > > _______________________________________________ > gnuplot-beta mailing list > gnu...@li... > Membership management via: https://lists.sourceforge.net/lists/listinfo/gnuplot-beta > |
|
From: Karl-Friedrich R. <mai...@gm...> - 2020-09-20 20:51:39
|
Many thanks! I noticed the new feature "Help/Edit (w)gnuplot.ini" in the menu. Next to the editor (works fine), it additionally opens a black text window titled "gnuplot 5.4 patchlevel rc1" (?!?) with a blinking cursor in it, but anything typed there lands in the regular gnuplot shell window. Closing that window kills wgnuplot.exe. Karl Am 19.09.2020 um 18:00 schrieb Bastian Märkisch: > Dear all, > > You can now find Windows binaries of the 5.4.0 release for testing on SourceForge: > > https://sf.net/projects/gnuplot/files/gnuplot/testing/ > > Please give them a try. > > Bastian |
|
From: Erik L. <eri...@gm...> - 2020-09-24 01:40:25
|
Dear Ethan et al., A Mac OS X package for version 5.4.0 is now available at https://csml-wiki.northwestern.edu/index.php/Binary_versions_of_Gnuplot_for_OS_X If you encounter any problem, please let me know. There is one small compilation issue that *seems* to be due to the way that src/Makefile is constructed. On the more recent versions of OS X, the X11 libraries and header files are in /opt/X11, which ./configure does not detect. This is fine, since I can use the options '--x-include=/opt/X11/include --x-libraries=/opt/X11/lib' to specify this. However, the X11 library location does not get used in the compilation of gnuplot (only for gnuplot_x11, via the XLIBS variable), even though the main executable needs the Xpm library. Manually adding -L/opt/X11/lib to LDFLAGS in src/Makefile fixes this, but should not be necessary. Regards, Erik On Thu, Jul 16, 2020 at 2:28 PM Ethan A Merritt <me...@uw...> wrote: > Gnuplot version 5.4 - first release > > I have placed a source tarball for 5.4 on SourceForge > > > https://sf.net/projects/gnuplot/files/gnuplot/5.4.0/gnuplot-5.4.0.tar.gz > > Release Notes with new feature list > > http://gnuplot.info/ReleaseNotes_5_4.html > > Version 5.4.0 is the start of a new "major release" series. > It supersedes version 5.2, first released in September 2017. > > I realize that there may be unresolved issues with building Windows > binaries > for Windows 10, but I decided that it is not reasonable to hold up release > any > longer for issues that appear to be more related to system configuration > than to > the gnuplot source. If necessary we can put out a Windows-specific > patchlevel 1. > As always, I am totally reliant on and extremely grateful to the volunteers > who put together Windows binaries from a source release package. > > cheers, and happy plotting > > Ethan > > > > > > > > > _______________________________________________ > gnuplot-beta mailing list > gnu...@li... > Membership management via: > https://lists.sourceforge.net/lists/listinfo/gnuplot-beta > |
|
From: Ethan A M. <me...@uw...> - 2020-09-24 23:52:26
Attachments:
OSX_X11.patch
|
On Wednesday, 23 September 2020 18:39:55 PDT Erik Luijten wrote: > Dear Ethan et al., > > A Mac OS X package for version 5.4.0 is now available at > https://csml-wiki.northwestern.edu/index.php/Binary_versions_of_Gnuplot_for_OS_X > > If you encounter any problem, please let me know. > > There is one small compilation issue that *seems* to be due to the way that > src/Makefile is constructed. On the more recent versions of OS X, the X11 > libraries and header files are in /opt/X11, which ./configure does not > detect. This is fine, since I can use the options '--x-include=/opt/X11/include > --x-libraries=/opt/X11/lib' to specify this. However, the X11 library > location does not get used in the compilation of gnuplot (only for > gnuplot_x11, via the XLIBS variable), even though the main executable needs > the Xpm library. Manually adding -L/opt/X11/lib to LDFLAGS in src/Makefile > fixes this, but should not be necessary. > > Regards, > > Erik Does the patch below fix it? %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% diff --git a/src/Makefile.am b/src/Makefile.am index 0b261ea47..3a8b9b499 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -69,6 +69,7 @@ pkglibexec_PROGRAMS += gnuplot_x11 gnuplot_x11_SOURCES = gplt_x11.c gplt_x11.h gpexecute.c gpexecute.h mousecmn.h version.c ver sion.h XLIBS = @LIBRARIES_FOR_X@ gnuplot_x11_LDADD = getcolor_x11.o $(XLIBS) +gnuplot_LDADD += $(XLIBS) endif getcolor_x11.o: getcolor.c %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Ethan |