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

update libsodium version in bootstrap.sh

This commit is contained in:
Bill Winslow 2014-08-05 18:57:16 -05:00
parent 72c72a4ceb
commit 45f178a47d

View File

@ -103,15 +103,15 @@ rm -rf ${BASE_DIR}/${TOX_CORE_DIR}
if [[ $TOX_ONLY = "false" ]]; then if [[ $TOX_ONLY = "false" ]]; then
git clone git://github.com/jedisct1/libsodium.git ${BASE_DIR}/${SODIUM_DIR} git clone git://github.com/jedisct1/libsodium.git ${BASE_DIR}/${SODIUM_DIR}
pushd ${BASE_DIR}/${SODIUM_DIR} pushd ${BASE_DIR}/${SODIUM_DIR}
git checkout tags/0.5.0 git checkout tags/0.6.1
./autogen.sh ./autogen.sh
if [[ $GLOBAL = "false" ]]; then if [[ $GLOBAL = "false" ]]; then
./configure --prefix=${BASE_DIR}/ ./configure --prefix=${BASE_DIR}/
else else
./configure ./configure
fi fi
make -j2 check make -j2 check
if [[ $GLOBAL = "false" ]]; then if [[ $GLOBAL = "false" ]]; then