octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: graphics-branch in CVS


From: John W. Eaton
Subject: Re: graphics-branch in CVS
Date: Tue, 30 Jan 2007 17:24:23 -0500

On 30-Jan-2007, Søren Hauberg wrote:

| John W. Eaton skrev:
| > I've merged the changes from the branch.  After updating, you will
| > need to at least run config.status in the top-level and scripts
| > directories.
| I've done a make clean; ./configure; make; make install of a recent 
| checkout. If I try to plot anything I get
| 
| octave:1> x = 0:0.1:2*pi;
| octave:2> y = sin(x);
| octave:3> plot(x,y)
| error: error creating function handle "@__uiobject_axes_setr__"
| error: evaluating assignment expression near line 114, column 18
| error: evaluating if command near line 110, column 3
| error: called from `__uiobject_axes_init__' in file 
| `/home/sh/Programmer//share/octave/2.9.9+/m/plot/__uiobject_axes_init__.m'
| error: evaluating if command near line 29, column 3
| error: called from `__uiobject_axes_ctor__' in file 
| `/home/sh/Programmer//share/octave/2.9.9+/m/plot/__uiobject_axes_ctor__.m'
| error: evaluating assignment expression near line 35, column 9
| error: evaluating if command near line 31, column 3
| error: called from `axes' in file 
| `/home/sh/Programmer//share/octave/2.9.9+/m/plot/axes.m'
| error: evaluating assignment expression near line 32, column 9
| error: evaluating if command near line 31, column 5
| error: evaluating if command near line 29, column 3
| error: called from `gca' in file 
| `/home/sh/Programmer//share/octave/2.9.9+/m/plot/gca.m'
| error: evaluating assignment expression near line 38, column 8
| error: evaluating if command near line 26, column 3
| error: called from `newplot' in file 
| `/home/sh/Programmer//share/octave/2.9.9+/m/plot/newplot.m'
| error: called from `plot' in file 
| `/home/sh/Programmer//share/octave/2.9.9+/m/plot/plot.m'

Try this patch.  It adds __uiobject_axes_setr__.m to the SOURCES_M
list in scripts/plot/Makefile.in.

Since some of the .m files in this directory are now generated in the
build process, I saw no other way than to explicitly list the files in
some list variables.  Maybe we should do that in all the scripts
directories anyway, to avoid picking up junk files.

jwe


Index: Makefile.in
===================================================================
RCS file: /cvs/octave/scripts/plot/Makefile.in,v
retrieving revision 1.18
diff -u -u -r1.18 Makefile.in
--- Makefile.in 30 Jan 2007 19:16:52 -0000      1.18
+++ Makefile.in 30 Jan 2007 22:22:18 -0000
@@ -42,6 +42,7 @@
   __uiobject_adopt__.m \
   __uiobject_axes_ctor__.m \
   __uiobject_axes_dtor__.m \
+  __uiobject_axes_setr__.m \
   __uiobject_delete__.m \
   __uiobject_draw_axes__.m \
   __uiobject_draw_figure__.m \



reply via email to

[Prev in Thread] Current Thread [Next in Thread]