centos6.5安装libxml2-dev 2.91 及 libcurl 7.3.8
2014 年 10 月 14 日 centos6.5安装libxml2-dev 2.91 及 libcurl 7.3.8有1条评论
centos6.5的libxml和libcurl库比较老,很多新功能没有,项目中需要新的版本库,操作如下:
1.下载libxml2源码包
wget https://git.gnome.org/browse/libxml2/snapshot/libxml2-2.9.1.zip
2.编译libxml2
unzip libxml2-2.9.1.zip
cd libxml2-2.9.1
./autogen.sh
./configure --help
./configure --enable-shared --with-python=no
make
make install
cd libxml2-2.9.1
./autogen.sh
./configure --help
./configure --enable-shared --with-python=no
make
make install
3.下载libcurl
wget http://curl.haxx.se/download/curl-7.38.0.zip
4.编译libcurl
unzip curl-7.38.0.zip
cd curl-7.38.0
./configure --enable-shared
make
make install
cd curl-7.38.0
./configure --enable-shared
make
make install
安装完成
评论:1