Fixes #9408 ("Android does not support XSI_SHARED_MEMORY_OBJECTS")

[SVN r86765]
This commit is contained in:
Ion Gaztañaga
2013-11-19 11:53:51 +00:00
parent 7550571040
commit ecfec55cc9
2 changed files with 8 additions and 1 deletions

View File

@@ -6730,6 +6730,13 @@ thank them:
[endsect]
[section:release_notes_boost_1_56_00 Boost 1.56 Release]
* Fixed bugs:
* [@https://svn.boost.org/trac/boost/ticket/9408 #9408: ['"Android does not support XSI_SHARED_MEMORY_OBJECTS"]].
[endsect]
[section:release_notes_boost_1_55_00 Boost 1.55 Release]
* Fixed bugs [@https://svn.boost.org/trac/boost/ticket/7156 #7156],

View File

@@ -73,7 +73,7 @@
#endif
//Check for XSI shared memory objects. They are available in nearly all UNIX platforms
#if !defined(__QNXNTO__)
#if !defined(__QNXNTO__) && !defined(__ANDROID__)
#define BOOST_INTERPROCESS_XSI_SHARED_MEMORY_OBJECTS
#endif