From 7ff84b070e42588e100d534cc30d748e89ea5436 Mon Sep 17 00:00:00 2001 From: Diadlo Date: Wed, 14 Dec 2016 13:54:19 +0300 Subject: [PATCH] chore(toxcore): Added checkout on v0.1.0 toxcore --- .travis/build-ubuntu-14-04.sh | 2 +- INSTALL.md | 1 + bootstrap.sh | 1 + osx/qTox-Mac-Deployer-ULTIMATE.sh | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis/build-ubuntu-14-04.sh b/.travis/build-ubuntu-14-04.sh index 701b98758..fdbdc0e9c 100755 --- a/.travis/build-ubuntu-14-04.sh +++ b/.travis/build-ubuntu-14-04.sh @@ -129,7 +129,7 @@ sudo checkinstall --install --pkgname libsodium --pkgversion 1.0.8 --nodoc -y sudo ldconfig cd .. # toxcore -git clone https://github.com/toktok/c-toxcore.git toxcore +git clone --branch v0.1.0 --depth=1 https://github.com/toktok/c-toxcore.git toxcore cd toxcore autoreconf -if ./configure diff --git a/INSTALL.md b/INSTALL.md index 6d7fc8a2a..0d5ec09c7 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -365,6 +365,7 @@ Provided that you have all required dependencies installed, you can simply run: ```bash git clone https://github.com/toktok/c-toxcore.git toxcore cd toxcore +git checkout tags/v0.1.0 autoreconf -if ./configure make -j$(nproc) diff --git a/bootstrap.sh b/bootstrap.sh index c3842662e..10dc54899 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -133,6 +133,7 @@ if [[ $INSTALL_TOX = "true" ]]; then "${BASE_DIR}/${TOX_CORE_DIR}" --depth 1 pushd ${BASE_DIR}/${TOX_CORE_DIR} + git checkout tags/v0.1.0 ./autogen.sh # configure diff --git a/osx/qTox-Mac-Deployer-ULTIMATE.sh b/osx/qTox-Mac-Deployer-ULTIMATE.sh index a04865a89..751529ff1 100755 --- a/osx/qTox-Mac-Deployer-ULTIMATE.sh +++ b/osx/qTox-Mac-Deployer-ULTIMATE.sh @@ -130,7 +130,7 @@ install() { git pull else fcho "Cloning Toxcore git ... " - git clone --depth=1 https://github.com/toktok/c-toxcore "$TOXCORE_DIR" + git clone --branch v0.1.0 --depth=1 https://github.com/toktok/c-toxcore "$TOXCORE_DIR" fi # qTox if [[ $TRAVIS = true ]]