[osrm][hack] To compile osrm for Android

This commit is contained in:
Alex Zolotarev 2014-09-11 02:11:32 -07:00 committed by Alex Zolotarev
parent 902258ccaa
commit fc60ee29af

View file

@ -34,16 +34,16 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp>
#include <boost/interprocess/mapped_region.hpp>
#ifndef WIN32
#if !defined(WIN32) && !defined(__ANDROID__)
#include <boost/interprocess/xsi_shared_memory.hpp>
#else
#include <boost/interprocess/shared_memory_object.hpp>
#endif
#ifdef __linux__
#include <sys/ipc.h>
#include <sys/shm.h>
#endif
//#ifdef __linux__
//#include <sys/ipc.h>
//#include <sys/shm.h>
//#endif
// #include <cstring>
#include <cstdint>
@ -61,7 +61,7 @@ struct OSRMLockFile
}
};
#ifndef WIN32
#if !defined(WIN32) && !defined(__ANDROID__)
class SharedMemory
{