Fedora 9 安装 libcurl、libxml、libxslt
curl网址:http://curl.haxx.se/
wget http://www.execve.net/curl/curl-7.19.0.tar.gz
libxml2
wget http://ftp.gnome.org/pub/GNOME/sources/libxml2/2.6/libxml2-2.6.30.tar.gz
libxslt
wget http://ftp.gnome.org/pub/GNOME/sources/libxslt/1.1/libxslt-1.1.22.tar.gz
.安装最新的Curl库
# cd /root/soft
# tar -zxf curl-7.15.0.tar.gz
# cd curl-7.15.0
# ./configure --prefix=/usr/local/curl
# make; make install
.安装最新的libxml2库
# cd /root/soft
# tar -zxf libxml2-2.6.19.tar.gz
# cd libxml2-2.6.19
# ./configure --prefix=/usr/local/libxml2
# make; make install
.安装 libxslt
# cd /root/soft
# tar -zxf libxslt-1.1.22.tar.gz
# cd libxslt-1.1.22
# ./configure --prefix=/usr/local/libxslt --with-libxml-prefix=/usr/local/libxml2
# make; make install
posted on 2010-04-16 17:41 good_hans 阅读(2061) 评论(0) 编辑 收藏 举报