Android: Android's standalone toolchain now includes a 'sys/shm.h' header file but does not the old-style shared memory segments.

Our Android port uses memory mapped files anyway, so just skip over it and get on with life.
This commit is contained in:
Rom Walton 2016-06-19 16:08:33 -07:00
parent 2e5c5d04c3
commit a998eeb0ed
1 changed files with 1 additions and 1 deletions

View File

@ -395,7 +395,7 @@ int detach_shmem_mmap(void* p, size_t size) {
return munmap((char *)p, size);
}
#if HAVE_SYS_SHM_H
#if HAVE_SYS_SHM_H && !defined(ANDROID)
// Compatibility routines for Unix/Linux/Mac V5 applications
//