-
Logged In: YES
user_id=550239
Yeah, I ran make from within emacs with the default -k.
Sorry about that.
I updated my wxGTK stuff to 2.6.x, grabbed a fresh copy of
gnuplot and this time it built to completion. The only
complaints it had where building the tutorial docs (LaTeX
complaints). In case you're interested, I'll copy the
warnings below, but I'm happy.
Thanks!
-jeff...
2006-09-22 01:04:36 UTC in gnuplot development
-
Logged In: YES
user_id=550239
It appears I was using an older CVS checkout (from May). I
grabbed a new one last night and see that the static
declaration has been removed.
However, this one doesn't compile on two different Linux
systems I tried (Opteron or P4). It fails at the following
point:
cd ~/installed/gnuplot-20060920/
make -k
make all-recursive
make[1]: Entering...
2006-09-21 14:14:53 UTC in gnuplot development
-
Logged In: YES
user_id=550239
I will have to check tomorrow to be sure, but it sounds like
the version I checked out of CVS at work was older than I
realized. The version I have here at home shows Dec 29, 2005
dates in the src/term directory, and still contains the
following:
/* additional LaTeX header information for epslatex terminal */
static char *epslatex_header = NULL;...
2006-09-20 23:27:52 UTC in gnuplot development
-
I had to modify gnuplot/term/pslatex.trm to get it to
compile with gcc 4.0.0 on an Opteron 850 system running
Fedora. The compiler objected to the static declaration
for epslatex_header, seeing that\
it is declared as an external elsewhere. I changed it
from static to (global) so the external would be valid
and it compiled. I did not test it extensively. Here is
the diff:
120c120,121...
2006-09-20 14:28:50 UTC in gnuplot development