安装GD库
10月 23rd, 2007安装libpng
www.libpng.org/pub/png/libpng.html
./configure –prefix=/usr/local
make && make install
安装jpegv6b
http://www.ijg.org/files/
cp /usr/share/libtool/config.guess .
cp /usr/share/libtool/config.sub .
./configure –prefix=/usr/local –enable-shared –enable-static
make && make install
安装FreeType2
http://www.freetype.org/
./configure –prefix=/usr/local
make && make install
安装GD Library
http://www.libgd.org/Main_Page
./configure \
LDFLAGS=”-L/usr/lib64 -L/lib64″ \
–prefix=/usr/local/gd \
–with-jpeg=/usr/local \
–with-png=/usr/local \
–with-zlib=/usr/local \
–with-freetype=/usr/localmake && make install