Update version of libuv from 1.4.2 to 1.8.0

pull/864/merge
Thai Phan 2016-01-07 20:24:28 +11:00 committed by Sourabh Shirhatti
parent 3ac5a647bc
commit 803e1fb68d
1 changed files with 6 additions and 6 deletions

View File

@ -73,13 +73,13 @@ Install libuv
To build libuv you should do the following::
sudo apt-get install make automake libtool curl
curl -sSL https://github.com/libuv/libuv/archive/v1.4.2.tar.gz | sudo tar zxfv - -C /usr/local/src
cd /usr/local/src/libuv-1.4.2
curl -sSL https://github.com/libuv/libuv/archive/v1.8.0.tar.gz | sudo tar zxfv - -C /usr/local/src
cd /usr/local/src/libuv-1.8.0
sudo sh autogen.sh
sudo ./configure
sudo make
sudo make install
sudo rm -rf /usr/local/src/libuv-1.4.2 && cd ~/
sudo rm -rf /usr/local/src/libuv-1.8.0 && cd ~/
sudo ldconfig
.. note::
@ -135,9 +135,9 @@ Install Libuv
To build libuv you should do the following::
sudo yum install automake libtool wget
wget http://dist.libuv.org/dist/v1.4.2/libuv-v1.4.2.tar.gz
tar -zxf libuv-v1.4.2.tar.gz
cd libuv-v1.4.2
wget http://dist.libuv.org/dist/v1.8.0/libuv-v1.8.0.tar.gz
tar -zxf libuv-v1.8.0.tar.gz
cd libuv-v1.8.0
sudo sh autogen.sh
sudo ./configure
sudo make