Pedro Bastos <[EMAIL PROTECTED]> writes: > hello list :) someday, somewhere, for some reason, i tried to compile > asmem. and, as you all know, asmem uses a lot the xpm library. > so, the configure part of the compile process was sucessful. > but, unfortunely, the compile process itself (make) returned an error: > > gcc -O2 -I/usr/X11R6/include -c asmem_x.c > asmem_x.c:18: X11/xpm.h: No such file or directory > make: *** [asmem_x.o] Error 1 > > and then i checked if i had lib xpm installed: > > ~# dpkg -l | grep xpm > ii xpm4g 3.4k-1 X Pixmap run-time libraries > > finally, does anybody know how to fix it ? :)
You need to install the xpm4g-dev package in order to get the headers. The xpm4g package only installs whats needed for running xpm4 binaries. The xpm4g-dev installs what you need to actually compile an XPM dependent program. Gary