Mark Wright wrote: []
gcc -o .libs/xglyph -L/sw/lib xglyph.o -L../lib/.libs -lt1x -lt1 -L/usr/X11R6/lib -lXaw -lXt -lXmu -lSM -lICE -lXext -lX11 -lm
ld: warning prebinding disabled because dependent library: /sw/lib/libt1x.1.dylib is not prebound
ld: Undefined symbols:
_XpmReadFileToPixmap
I see now a scenario where such an error can appear, namely when you have libXaw only as a static library and not as dylib, i.e.
you have libXaw.a in your /usr/X11R6/lib, but not libXaw.dylib, or your libXaw.dylib is a symlink to a nonexistent file.
What do you get from
ls -l /usr/X11R6/lib/libXaw*
? You should get something like
% ls -l /usr/X11R6/lib/libXaw*
-rw-r--r-- 1 root wheel 276124 15 Sep 2003 /usr/X11R6/lib/libXaw.6.1.dylib
lrwxr-xr-x 1 root wheel 16 26 Nov 2003 /usr/X11R6/lib/libXaw.6.dylib -> libXaw.6.1.dylib
-rw-r--r-- 1 root wheel 387092 15 Sep 2003 /usr/X11R6/lib/libXaw.7.0.dylib
lrwxr-xr-x 1 root wheel 16 26 Nov 2003 /usr/X11R6/lib/libXaw.7.dylib -> libXaw.7.0.dylib
-rw-r--r-- 1 root wheel 616944 15 Sep 2003 /usr/X11R6/lib/libXaw.a
lrwxr-xr-x 1 root wheel 16 26 Nov 2003 /usr/X11R6/lib/libXaw.dylib -> libXaw.7.0.dylib
-- Martin
-------------------------------------------------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - digital self defense, top technical experts, no vendor pitches, unmatched networking opportunities. Visit www.blackhat.com
_______________________________________________
Fink-beginners mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-beginners
