|
From: Ethan A M. <merritt@u.washington.edu> - 2008-03-03 03:36:41
|
On Sunday 02 March 2008 18:15, Tatsuro MATSUOKA wrote: > > I have attemted to gnuplot cvs (2008-03-02) on the djgpp. > > gcc -c -DHAVE_CONFIG_H -O2 -g -I. -DHELPFILE=\"gnuplot.gih\" command.c > command.c:1337: error: conflicting types for 'refresh_request' > command.c:1332: error: previous implicit declaration of 'refresh_request' was he Please try the 2-line fix below, or get the patched command.h file from cvs. --- gnuplot/src/command.h 2007-09-01 08:45:21.000000000 -0700 +++ gnuplot-fix/src/command.h 2008-03-02 19:34:20.000000000 -0800 @@ -145,6 +145,8 @@ #ifdef USE_MOUSE void bind_command __PROTO((void)); void restore_prompt __PROTO((void)); +#endif +#ifdef VOLATILE_REFRESH void refresh_request __PROTO((void)); #endif void call_command __PROTO((void)); Ethan > re > make.exe: *** [command.o] Error 1 > make.exe: Leaving directory `d:/usr/Tatsu/djgpphome/gnuplotcvs/gnuplot/src' > > The error seems to be confiliction in terms of "refresh_request". > > My trying comes from only curiosity so that the reply is not urgent but > the problem seem to be Bug newly imported bug. > > Regards > > Tatsuro > > -------------------------------------- > Easy + Joy + Powerful = Yahoo! Bookmarks x Toolbar > http://pr.mail.yahoo.co.jp/toolbar/ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > gnuplot-beta mailing list > gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-beta > -- Ethan A Merritt Biomolecular Structure Center University of Washington, Seattle 98195-7742 |