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

Re: gEDA: GTKWave snapshot 2002-07-05



On Fri, 5 Jul 2002, Andrew Bardsley wrote:

> OK, new snapshot of GTKWave. Including:
>
> Tony's new LXT stuff (with the impressive compression ratios)
> Some *small* buttons in the footer bar of the tool to allow
>     any or all of the tool and menu bars to be hidden giving
>     maximum wave viewing glory
> A fighting chance of compilation under MacOS X (I've got it
>     working with some coaxing on my iBook)
>
> Find it at:
>
> http://www.cs.man.ac.uk/amulet/tools/gtkwave
> and
> ftp://ftp.cs.man.ac.uk/pub/amulet/gtkwave/snapshots/
>
> - Andrew

Looks good--I like those minimizer buttons on the bottom right corner of
the viewer..the only minor speedbump I've found is that the viewer can't
find the libgtkwavedrv* files as they're installed in a different place
from where they're pointed to in main.c (through the DRIVER_DIRECTORY
define in config.h):

<during install>
/bin/sh ../libtool  --mode=install /usr/bin/install -c libgtkwavedrvvcd.la /usr/local/lib/libgtkwavedrvvcd.la
/usr/bin/install -c .libs/libgtkwavedrvvcd.so.0.0.0 /usr/local/lib/libgtkwavedrvvcd.so.0.0.0

<in config.h>
#define PIXMAP_DIRECTORY "/usr/local/share/gtkwave/pixmaps"
#define DRIVER_DIRECTORY "NONE/lib"

...you can get this to work by explicitly mentioning that
--libdir=/usr/local/lib when you enter ./configure at the command line.

-t