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

Re: Some bugs?




Am Die, 31 Okt 2000 20:27:40 schrieb(en) Michael Duelli:
Hi,

> > 3.	I had to copy gob.m4 from the gob source into the macro
> > directory.
> 
> Did you ./configure --prefix=/usr/ ? By default it is set to /usr/local
> If you compile and install GOB with prefix set to /usr/local, GOB will
> install
> the m4 macrro in /usr/local/share/aclocal instead of /usr/share/aclocal.

The gob.m4 is installed in /usr/local/share/aclocal/.
But neither ./autogen --prefix=/usr/ nor --prefix=/usr/local/ nor
just ./autogen, as I did before,  fixed the problem. I had to copy
gob.m4. I looked into the configure.in file of "balsa" and there is a lot
more than just GOB_CHECK.
-------
> > 4.	I had to change the curses.h and term.h path include path in
> > genius/genius.c.
> > 	For me it was deleting the ncurses/ prefix.
> 
> Not sure about what you mean here. Can make it more explicit.
> 
> > Finally when it is compiled and I try and start drgenius I get lots of
> > error messages in the console in which I started it. The program starts
> > but sometimes crashes at once or after some action.

In genius/genius.c there is something like:
..
#ifdef USE_NCURSES
#include <ncurses/curses.h>
#include <ncurses/term.h>
#else    
..

In SuSE 7.0 there is no directory /usr/include/ncurses so I changed it like
this:
..
#ifdef USE_NCURSES
#include <curses.h>
#include <term.h>
#else    
..
as these two header files are in /usr/include.

> Did you make install DrGenius? If not it will definitively crash as it
> require
> .glade and various .xpm files installed.

O.K., thank you,  now it is working.

Well, now the question arises how I can plot functions, like the
impressive one in the first snapshot ?

_________________________________________
Michael Duelli
m.duelli@web.de