主页 > 原创 | 整理 | 学习笔记 > centos6.5安装libxml2-dev 2.91 及 libcurl 7.3.8

centos6.5安装libxml2-dev 2.91 及 libcurl 7.3.8

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

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

安装完成

评论:1

  1. 九月 回复
    2015 年 6 月 22 日 于 下午 5:53

    curl安装,用不了啊

发表评论

邮箱地址不会被公开。 必填项已用*标注