On Wed, 14 Jan 1998, Mario Filipe wrote: > On Wed, 14 Jan 1998, Remco van de Meent wrote: > > In that case i need another type of assistance. When i do > ldconfig -p | grep libXpm i get this : > > 126 - ELF libXpm.so.4 => /usr/X11R6/lib/libXpm.so.4 > 127 - ELF libXpm.so => /usr/X11R6/lib/libXpm.so > > So this would mean that i do have libXpm installed. THe problem is that > when i try compile something (gnome in this case) it tell's me that it > cannot find it ! I would appreciate any help here if that would be > possible. >
This sounds like a Makefile configuration problem. It would help if you showed us the make error that you got when you compiled it. make has a -L switch that allows one to indicate the directory(ies) that libraries can be found in. So to solve this, you would add the following to the line in the Makefile that builds the executable target: -L /usr/X11R6/lib I'm not familiar with the gnome software or its build process but I think /usr/X11R6 is a pretty standard path for X so I'm a little surprised that this wouldn't already be in the Makefile. Anyway, I hope this helps. Steve -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .