> pixie: symbol lookup error: /usr/lib/libdpstk.so.0: undefined symbol: > DPSDefaultErrorProc
A google search for libdpstk indicates that this is a core library for x11 with some references to it being obsolete. I've got one for my xorg-x11 install, so it must not be too obsolete... A google search for DPSDefaultErrorProc brought back a pointer to the header file xc/include/DPS/dpsclient.h which seems to indicate that DPSDefaultErrorProc is the default error handler for postscript error reporting. Being that it's the default, it definitely should be in the libs... Using the nm tool with find, I see that the DPSDefaultErrorProc is marked as undefined in libdpstk.so, but appears to be defined in libdps.so. So it would appear that you have some sort of linking issue going on... For a quick fix I'd suggest trying to build pixie manually and ensure that you include a -ldps in your LDFLAGS. Whether it's a bug or not in the ebuild I couldn't venture to guess. -- [email protected] mailing list

