[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Some bugs?
- To: drgenius-dev@seul.org
- Subject: Re: Some bugs?
- From: Michael Duelli <m.duelli@web.de>
- Date: Wed, 1 Nov 2000 21:30:00 +0100
- Delivery-Date: Thu, 02 Nov 2000 05:18:27 -0500
- In-Reply-To: <20001031202739.A1735@Unimatrix01>; from m.duelli@web.de on Die, Okt 31, 2000 at 20:27:40 +0100
- References: <20001030142341.A12961@Unimatrix01> <200010301518.XAA03445@mail.trace.net.tw> <20001030200657.A998@Unimatrix01> <200010311516.XAA09691@mail.trace.net.tw> <20001031202739.A1735@Unimatrix01>
- Reply-To: drgenius-dev@seul.org
- Sender: owner-drgenius-dev@seul.org
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