Compilation problems....
Dave Peticolas
dave@krondo.com
Mon, 30 Oct 2000 22:40:59 -0800
Michael writes:
> Hello, James. Here is the output of libqt* in /usr/lib
>
> I'm using Guile 1.4
>
> libqt.so ->libqt.so.1.44
> libqt.so.1 ->libqt.so.1.44
> libqt.so.1.44
> libqthreads.a
> libqthreads.la
> libqthreads.so ->libqthreads.so.0.0.0
> libqthreads.so.0 ->libqthreads.so.0.0.0
> libqthreads.so.0.0.0
>
> >From all the posts, it seems that Guile is clearly my problem. I've
> reinstalled Guile numerous times however. I'm not sure where to go from
> here. :-(
Maybe 'guile-config link' is just returning the wrong arguments (i.e.,
it's leaving out -lqthreads).
Try this. Edit src/Makefile so that the line defining LIBS,
which will look something like
LIBS = -lm
instead looks like
LIBS = <original stuff> -lqthreads
And try building again.
dave