OK, I've been following the discussion on how to get bonobo built and I've tried the suggestions offered but the build always ends with
libtool: link: cannot find the library `/sw/lib/libfreetype.la'
The problem is that you have some old lib*.la file that has this /sw/lib/libfreetype.la hardcoded in its dependencies. You would need to rebuild the corresponding package.
In order to find out which one it is, you can do
grep /sw/lib/libfreetype.la /sw/lib/lib*.la
If this gives some hits, use "dpkg -S" to find out which package the offending lib*.la comes from, for example
% dpkg -S /sw/lib/libgdk_pixbuf_xlib-2.0.la gtk+2-dev: /sw/lib/libgdk_pixbuf_xlib-2.0.la
would mean you have to rebuild gtk+2-dev
-- Martin
------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Fink-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/fink-users
