I'm having trouble building gdlib. As far as I can tell, zlib, png and all the rest are installed in either /lib or /usr/lib. It does not seem to matter whether I use --prefix or one or all of the --with-, the configure script keeps on insisting that it can't find any of the supporting libraries.

** Configuration summary for gd 2.0.34:

   Support for PNG library:          no
   Support for JPEG library:         no
   Support for Freetype 2.x library: no
   Support for Fontconfig library:   no
   Support for Xpm library:          no
   Support for pthreads:             yes

[EDIT] Now I've noticed that libpthread was found. Hunting around the disk I find libpthread.so. What I don't find is libpng.so. What I do find is /usr/lib/libpng12.so.0. So what's this zero on the end? Is this why Gd's configure isn't working? What do I do about this?

This is all because Concrete5's installer is telling me it can't find GD.

link|improve this question

It also helped to install the -dev versions of the various libraries. – boost Oct 27 '09 at 4:36
feedback

2 Answers

up vote 1 down vote accepted
# cd /usr/lib
# ln -s libpng.so libpng12.so.0
# ldconfig

This creates a softlink to libpng12.so.0 using the filename that compilation expects, then runs ldconfig (must be run as root!) to rebuild the library cache.

If you want to check if your system knows about libraries or not, use the following command:

# ldconfig -p |grep <library_name>
link|improve this answer
Isn't it 'ln -s thing linktothing'? Anyway, I figured it out and it works at treat. Thanks! – boost Oct 27 '09 at 1:15
feedback

try running ldconfig to refresh the list of libraries

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.