ld: Undefined symbols: _XftDrawPicture
This symbol is defined in the Xft lib from xfree 4.3.0. It looks like you have some library that was compiled while you had some parts of xfree 4.3.0 installed. Maybe you compiled a previous version of gtk+2 while this was the case? You have to get rid of it first. Try
nm /sw/lib/libgdk-x11-2.0.dylib |grep XftDrawPicture
If it shows anything, then remove the gtk+2 package or at least the /sw/lib/libgdk-x11-*.dylib files.
If it shows nothing, then try to find out which library contains this symbol, for example with
grep XftDrawPicture /sw/lib/lib*.dylib
-- Martin
------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 _______________________________________________ Fink-beginners mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/fink-beginners
