From: Tatsuro M. <tma...@ya...> - 2018-05-05 22:17:13
|
Sorry for the noise. Perhaps I mis-operate 7zip FileManger for extracting tar.gz. I re-operate and build is now going. Thanks. Tatsuro ----- Original Message ----- > From: sfeam > To: gnuplot-beta Tatsuro MATSUOKA > Cc: > Date: 2018/5/6, Sun 00:49 > Subject: Re: Release 5.2.3 > > On Saturday, 05 May 2018 18:41:12 Tatsuro MATSUOKA wrote: >> I cannot build the source of 5.2.3 (that could be build on testing). >> >> gcc -c -I/c/Programs/gplibs64_gcc710/include -D_FILE_OFFSET_BITS=64 > -DDEFAULTTERM=\"wxt\" -m64 -O2 -pipe -DUNICODE -D_UNICODE > -Wno-unused-function -I. -I../../src -I../../term/ -D_Windows -DHAVE_CONFIG_H > -DPIPES -DWGP_CONSOLE -D__USE_MINGW_ANSI_STDIO=1 > -DGNUPLOT_SHARE_DIR=\"share\" -DUSE_MOUSE=1 -DWIN_IPC > -I/c/Program\ Files\ \(x86\)/HTML\ Help\ > Workshop/include -DHAVE_LIBGD -DHAVE_LIBPNG -DHAVE_LIBGD -DHAVE_GD_H > -DHAVE_GD_GIF -DGIF_ANIMATION -DHAVE_GD_PNG > -I/c/Programs/gplibs64_gcc710/include -DHAVE_GD_JPEG -DHAVE_GD_TTF > -DHAVE_CAIROPDF -DWXWIDGETS -DHAVE_ICONV -DHAVE_LIBCERF -DNEED_CEXP -DREADLINE > -MMD -MT 'eval.$(O)' -MF eval.d -o eval.co ../../src/eval.c >> In file included from ../../src/eval.h:43:0, >> from ../../src/eval.c:41: >> ../../src/gp_types.h:188:5: error: unknown type name 'coordval' >> coordval x, y, z; >> ^~~~~~~~ >> ../../src/gp_types.h:189:5: error: unknown type name 'coordval' >> coordval ylow, yhigh; /* ignored in 3d */ >> ^~~~~~~~ >> many errors > > Have you checked the md5sum after downloading? > Maybe there was file corruption. > >> This might happen due to fixes after testing and 5.2.3. > > The only changes to source files between the testing version > and the release are these: > > diff --git a/term/post.trm b/term/post.trm > index 25efcd8..e1628af 100644 > --- a/term/post.trm > +++ b/term/post.trm > @@ -270,8 +270,8 @@ static void PS_skip_image __PROTO((int bytes, int x0, int > y0, int dx, int > dy)); > static void PS_dump_header_to_file __PROTO((char *name)); > #endif > > -static float ps_fontsize; > -static float ps_fontsize_previous; > +static float ps_fontsize = 14.; > +static float ps_fontsize_previous = 0.; > > /* for enhanced mode, we keep a separate font name and size, which > * is restored to the default value on font of "" > -- > diff --git a/src/version.c b/src/version.c > index 476efe3..6cbbe8c 100644 > --- a/src/version.c > +++ b/src/version.c > @@ -40,7 +40,7 @@ const char gnuplot_patchlevel[] = "3"; > #ifdef DEVELOPMENT_VERSION > #include "timestamp.h" > #else > -const char gnuplot_date[] = "2018-04-21 "; > +const char gnuplot_date[] = "2018-05-04 "; > #endif > const char gnuplot_copyright[] = "Copyright (C) 1986-1993, 1998, 2004, > 2007-2018"; > > -- > > Ethan > |