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.12

This commit is contained in:
Anthony Bilinski 2020-05-01 15:37:47 -07:00
parent 6105af8279
commit 728621f627
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
9 changed files with 57 additions and 57 deletions

View File

@ -127,7 +127,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.11 --depth=1 https://github.com/toktok/c-toxcore.git toxcore git clone --branch v0.2.12 --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

@ -632,7 +632,7 @@ cd ..
```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.11 git checkout v0.2.12
autoreconf -if autoreconf -if
./configure ./configure
make -j$(nproc) make -j$(nproc)

View File

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

View File

@ -48,7 +48,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.11" readonly TOXCORE_VERSION="v0.2.12"
readonly SQLCIPHER_VERSION="v4.3.0" readonly SQLCIPHER_VERSION="v4.3.0"
# directory names of cloned repositories # 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 RUN git clone https://github.com/toktok/c-toxcore.git /toxcore
WORKDIR /toxcore WORKDIR /toxcore
RUN git checkout v0.2.11 && \ RUN git checkout v0.2.12 && \
cmake . && \ cmake . && \
cmake --build . && \ cmake --build . && \
make install && \ make install && \

View File

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

View File

@ -112,8 +112,8 @@
{ {
"type": "git", "type": "git",
"url": "https://github.com/toktok/c-toxcore", "url": "https://github.com/toktok/c-toxcore",
"tag": "v0.2.11", "tag": "v0.2.12",
"commit": "30b9369b01859e7c57687129ba2a481aa2bc48b8" "commit": "9be4dbb4335bf7d893c8d00566d3276ab6dedd14"
} }
] ]
}, },

View File

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