Hey these are the exact same errors I am getting now trying to compile Gaim!!
What errors? Mich�le only sees warnings. []
On Sunday, March 2, 2003, at 07:36 PM, Mich�le Garoche wrote: []
symbol _FT_Glyph_To_Bitmap used from dynamic library /usr/X11R6/lib/libfreetype.6.dylib(ftglyph.o) not from earlier dynamic library /sw/lib/libfreetype.6.dylib(ftglyph.lo)
In general, this is a warning. Harmless, mostly. Sometimes it is an error (if it doesn't say "warning", it is an error).
If I try this (without debugging option):
cc -Wall -c foo.c -o foo `pkg-config --cflags gtk+-2.0` `pkg-config --libs gtk+-2.0`
I've got errors like this one: cc: -lgtk-x11-2.0: linker input file unused because linking not done
This is no error either. You compile with the -c option which tells the compiler not to call the linker. Yet you give a linker option -lgtk-x11-2.0. The compiler tells you that this is useless, but it is not an error.
It may be an error on your part, because you probably didn't want to give the -c option :-)
-- Martin
------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Fink-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/fink-users
