libretroshare now compiles for Android, instruction on how to do it included

This commit is contained in:
Gio 2016-08-03 00:48:19 +02:00
parent b7416ba207
commit 9a980def2c
16 changed files with 994 additions and 45 deletions

View file

@ -59,7 +59,7 @@ bool RsControlModule::askForPassword(const std::string &title, const std::string
{
cancelled = false ;
{
RsStackMutex stack(mDataMtx); // ********** LOCKED **********
RS_STACK_MUTEX(mDataMtx); // ********** LOCKED **********
if(mFixedPassword != "")
{
password = mFixedPassword;
@ -78,7 +78,7 @@ bool RsControlModule::askForPassword(const std::string &title, const std::string
{
usleep(5*1000);
RsStackMutex stack(mDataMtx); // ********** LOCKED **********
RS_STACK_MUTEX(mDataMtx); // ********** LOCKED **********
wait = mWantPassword;
if(!wait && mPassword != "")
{