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

chore(deps): update c-toxcore to v0.2.11

This commit is contained in:
sudden6 2020-03-23 21:09:04 +01:00
parent d77c41814f
commit 7c59ffb24b
No known key found for this signature in database
GPG Key ID: 279509B499E032B9
9 changed files with 33 additions and 33 deletions

View File

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

View File

@ -632,7 +632,7 @@ cd ..
```bash
git clone https://github.com/toktok/c-toxcore.git toxcore
cd toxcore
git checkout v0.2.10
git checkout v0.2.11
autoreconf -if
./configure
make -j$(nproc)

View File

@ -413,7 +413,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 v0.2.10
git checkout v0.2.11
cmake . -DBOOTSTRAP_DAEMON=OFF
make -j$(nproc)
sudo make install

View File

@ -48,7 +48,7 @@ readonly INSTALL_DIR=libs
readonly BASE_DIR="${SCRIPT_DIR}/${INSTALL_DIR}"
# versions of libs to checkout
readonly TOXCORE_VERSION="v0.2.10"
readonly TOXCORE_VERSION="v0.2.11"
readonly SQLCIPHER_VERSION="v4.3.0"
# directory names of cloned repositories

View File

@ -50,7 +50,7 @@ RUN apt-get update && \
RUN git clone https://github.com/toktok/c-toxcore.git /toxcore
WORKDIR /toxcore
RUN git checkout v0.2.10 && \
RUN git checkout v0.2.11 && \
cmake . && \
cmake --build . && \
make install && \

View File

@ -47,7 +47,7 @@ RUN apt-get update && \
RUN git clone https://github.com/toktok/c-toxcore.git /toxcore
WORKDIR /toxcore
RUN git checkout v0.2.10 && \
RUN git checkout v0.2.11 && \
cmake . && \
cmake --build . && \
make install && \

View File

@ -126,8 +126,8 @@
{
"type": "git",
"url": "https://github.com/toktok/c-toxcore",
"tag": "v0.2.10",
"commit": "7aab0d995240c59937d1aa23b7201389341a2be9"
"tag": "v0.2.11",
"commit": "30b9369b01859e7c57687129ba2a481aa2bc48b8"
}
]
},

View File

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

View File

@ -931,8 +931,8 @@ fi
# Toxcore
TOXCORE_PREFIX_DIR="$DEP_DIR/libtoxcore"
TOXCORE_VERSION=0.2.10
TOXCORE_HASH="5ccc4ecd79b95c367efe8341b06bf2a81f853032e6fcd7cb2bc0ad0ef7419d40"
TOXCORE_VERSION=0.2.11
TOXCORE_HASH="f111285b036d7746ce8d1321cf0b89ec93b4fad8ae90767a24e50230bbee27e1"
TOXCORE_FILENAME="c-toxcore-$TOXCORE_VERSION.tar.gz"
if [ ! -f "$TOXCORE_PREFIX_DIR/done" ]
then