1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

chore(version): update toxcore version to v0.2.2

This commit is contained in:
Anthony Bilinski 2018-04-17 20:01:55 -07:00
parent 6d9d26db65
commit a918e559ee
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
5 changed files with 6 additions and 6 deletions

View File

@ -131,7 +131,7 @@ sudo checkinstall --install --pkgname libsodium --pkgversion 1.0.8 --nodoc -y
sudo ldconfig sudo ldconfig
cd .. cd ..
# toxcore # toxcore
git clone --branch v0.2.1 --depth=1 https://github.com/toktok/c-toxcore.git toxcore git clone --branch v0.2.2 --depth=1 https://github.com/toktok/c-toxcore.git toxcore
cd toxcore cd toxcore
autoreconf -if autoreconf -if
CC="ccache $CC" CXX="ccache $CXX" ./configure CC="ccache $CC" CXX="ccache $CXX" ./configure

View File

@ -499,7 +499,7 @@ Provided that you have all required dependencies installed, you can simply run:
```bash ```bash
git clone https://github.com/toktok/c-toxcore.git toxcore git clone https://github.com/toktok/c-toxcore.git toxcore
cd toxcore cd toxcore
git checkout v0.2.1 git checkout v0.2.2
autoreconf -if autoreconf -if
./configure ./configure
make -j$(nproc) make -j$(nproc)

View File

@ -31,7 +31,7 @@ readonly INSTALL_DIR=libs
readonly BASE_DIR="${SCRIPT_DIR}/${INSTALL_DIR}" readonly BASE_DIR="${SCRIPT_DIR}/${INSTALL_DIR}"
# versions of libs to checkout # versions of libs to checkout
readonly TOXCORE_VERSION="v0.2.1" readonly TOXCORE_VERSION="v0.2.2"
readonly SQLCIPHER_VERSION="v3.4.0" readonly SQLCIPHER_VERSION="v3.4.0"
# directory names of cloned repositories # directory names of cloned repositories

View File

@ -127,7 +127,7 @@ install() {
git pull git pull
else else
fcho "Cloning Toxcore git ... " fcho "Cloning Toxcore git ... "
git clone --branch v0.2.1 --depth=1 https://github.com/toktok/c-toxcore "$TOXCORE_DIR" git clone --branch v0.2.2 --depth=1 https://github.com/toktok/c-toxcore "$TOXCORE_DIR"
fi fi
# qTox # qTox
if [[ $TRAVIS = true ]] if [[ $TRAVIS = true ]]

View File

@ -895,8 +895,8 @@ fi
# Toxcore # Toxcore
TOXCORE_PREFIX_DIR="$DEP_DIR/libtoxcore" TOXCORE_PREFIX_DIR="$DEP_DIR/libtoxcore"
TOXCORE_VERSION=0.2.1 TOXCORE_VERSION=0.2.2
TOXCORE_HASH=1496164954941b175493fba02bf3115118c0d29feb46cd1ff458a1a11eab1597 TOXCORE_HASH=a3b25d8bd92b9526b47ba1f60a2893d2154a80bb7ae690f44b5a2dea41c76ea1
if [ ! -f "$TOXCORE_PREFIX_DIR/done" ] if [ ! -f "$TOXCORE_PREFIX_DIR/done" ]
then then
rm -rf "$TOXCORE_PREFIX_DIR" rm -rf "$TOXCORE_PREFIX_DIR"