tar zxvf ncurses-5.6.tar.gz 進入目錄 cd ncurses-5.6 生成 makefile文件,再進一步編譯 ./configure --prefix=/usr --with-shared --without-debug 編譯,編譯時間稍微長些,稍等 make 編譯好最后就是安裝了 make install
==================================
下面才開始安裝 GD庫,安裝gd庫成功與否,與下面的安裝順序有一定的關系 我們就一步步來演示安裝, 下面所有用到的文件,可以到 http://www./download/gd_all.7z下載 把全部的文件 都放進 webserv 目錄下
1:安裝zlib2 同樣, 在Linux下使用 wget 來下載文件 tar zxvf zlib-1.2.3.tar.gz cd zlib-1.2.3 ./configure --prefix=/usr/local/zlib make make install
---------------------------------
2:安裝PNG
tar zxvf libpng-1.2.26.tar.gz cd libpng-1.2.26
cp scripts/makefile.linux ./makefile ./configure --prefix=/usr/local/libpng
make make install
---------------------------------
3:安裝ttf ( ttf 是字體的支持 )
tar zxvf freetype-2.3.5.tar.gz cd freetype-2.3.5 ./configure --prefix=/usr/local/freetype
make make install
---------------------------------
4:安裝JPEG6
tar zxvf jpegsrc.v6b.tar.gz cd jpeg-6b
mkdir -pv /usr/local/libjpeg/{,bin,lib,include,man/man1,man1} 上面這個命令具體是實現(xiàn)這樣的: mkdir: created directory `/usr/local/libjpeg' mkdir: created directory `/usr/local/libjpeg/bin' mkdir: created directory `/usr/local/libjpeg/lib' mkdir: created directory `/usr/local/libjpeg/include' mkdir: created directory `/usr/local/libjpeg/man' mkdir: created directory `/usr/local/libjpeg/man/man1' mkdir: created directory `/usr/local/libjpeg/man1' 可以說是一個小小的bug吧,要我們手動建立這些目錄,否則configure時候會說找不到目錄。
./configure --prefix=/usr/local/libjpeg --enable-shared --enable-static
make make install
---------------------------------
5:安裝 libxml2
tar zxvf libxml2-2.6.31.tar.gz cd libxml2-2.6.31 ./configure --prefix=/usr/local/libxml2
make 這一步make 操作 時間相對也會比較長,呵呵
make install
cp xml2-config /usr/bin
---------------------------------
6:安裝 libmcrypt-2.5.7.tar.gz
tar zxvf libmcrypt-2.5.7.tar.gz cd libmcrypt-2.5.7
./configure make make install
---------------------------------
7:安裝Fontconfig
tar -zxvf fontconfig-2.4.2.tar.gz cd fontconfig-2.4.2
可以看到, 參數比較長, 我建議用記事本的朋友不要選擇 自動換行。 看我操作, 自動換行 復制過去執(zhí)行有時會出錯。去掉 自動換行 ./configure --prefix=/usr/local/fontconfig --with-freetype-config=/usr/local/freetype/bin/freetype-config
這里顯示一個錯誤信息: checking for LIBXML2... configure: error: Package requirements (libxml-2.0 >= 2.6) were not met:
No package 'libxml-2.0' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix.
Alternatively, you may set the environment variables LIBXML2_CFLAGS and LIBXML2_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.
但是我們在上面其實已經安裝上 libxml2 了的,這里只是一個 環(huán)境變量沒有設置好而已。
解決辦法: 確定 /usr/local/libxml2/lib/pkgconfig 目錄下有 libxml-2.0.pc
export PKG_CONFIG_PATH=/usr/local/libxml2/lib/pkgconfig:$PKG_CONFIG_PATH
再次生成 makefile , 這樣就成功了
./configure --prefix=/usr/local/fontconfig --with-freetype-config=/usr/local/freetype/bin/freetype-config 好了吧,沒有出現(xiàn)那個錯誤了。
make make install
---------------------------------
8:安裝GD庫,我們把這一步放在最后面
tar zxvf gd-2.0.35.tar.gz cd gd-2.0.35 ./configure --prefix=/usr/local/libgd --with-png=/usr/local/libpng --with-freetype=/usr/local/freetype --with-jpeg=/usr/local/libjpeg --with-fontconfig=/usr/local/fontconfig
看到下面的信息, 呵呵 很多都顯示支持了 Support for PNG library: yes Support for JPEG library: yes Support for Freetype 2.x library: yes Support for Fontconfig library: yes Support for Xpm library: no Support for pthreads: yes
make make install
好了, 到這里為止 安裝GD庫全部過程演示完了, 這樣還是不是很好的感覺出來,等我們下一節(jié)視頻- 就是把 php5.2.6也裝上了,那么才知道 php 支持了 gif jpg png wbmp xml ttf字體 下載相關軟件包 http://www./download/gd_all.7z
|