Linux下安裝GD

- 中國WEB開發者網絡 (http://www.webasp.net)
-- 技術教程 (http://www.webasp.net/article/)
--- Linux下安裝GD (http://www.webasp.net/article/15/14469.htm)
-- 作者:未知
-- 發佈日期: 2004-11-02
安裝GD--------------------------------------------------------------------
tar -zxvf gd-2.0.27.tar.gz
cd gd-2.0.27
./configure --prefix=/usr/local/gd2
make
make install

安裝PHP-------------------------------------------------------------------

tar zxvf php-4.3.8.tar.gz
cd php-4.3.8
./configure --with-mysql --with-gd=/usr/local/gd2 --with-apxs2=/usr/www/bin/apxs
make
make install
cp php.ini-dist /usr/local/lib/php.ini

webasp.net