Boost C++ Libraries: Ticket #11353: On Android thread_data.hpp include file, that doesn't exist in android-21 or higher. https://svn.boost.org/trac10/ticket/11353 <p> thread/pthread/thread_data.hpp line 27 </p> <pre class="wiki">#if defined(__ANDROID__) #include &lt;asm/page.h&gt; // http://code.google.com/p/android/issues/detail?id=39983 #endif </pre><p> should be replaced with </p> <pre class="wiki">#if defined(__ANDROID__) &amp;&amp; (__ANDROID_API__ &lt;= 20) #include &lt;asm/page.h&gt; // http://code.google.com/p/android/issues/detail?id=39983 #endif </pre><p> because this file doesn't exist in android ndk distribution any more and not required for successful compilation. </p> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/11353 Trac 1.4.3 viboes Fri, 29 May 2015 05:59:40 GMT <link>https://svn.boost.org/trac10/ticket/11353#comment:1 </link> <guid isPermaLink="false">https://svn.boost.org/trac10/ticket/11353#comment:1</guid> <description> <p> Thanks for the info. This is what happens when we start to support a platform that we can not test ;-) </p> </description> <category>Ticket</category> </item> <item> <dc:creator>viboes</dc:creator> <pubDate>Fri, 29 May 2015 05:59:52 GMT</pubDate> <title>owner, status changed https://svn.boost.org/trac10/ticket/11353#comment:2 https://svn.boost.org/trac10/ticket/11353#comment:2 <ul> <li><strong>owner</strong> changed from <span class="trac-author">Anthony Williams</span> to <span class="trac-author">viboes</span> </li> <li><strong>status</strong> <span class="trac-field-old">new</span> → <span class="trac-field-new">assigned</span> </li> </ul> Ticket viboes Fri, 29 May 2015 06:04:38 GMT status, milestone changed; resolution set https://svn.boost.org/trac10/ticket/11353#comment:3 https://svn.boost.org/trac10/ticket/11353#comment:3 <ul> <li><strong>status</strong> <span class="trac-field-old">assigned</span> → <span class="trac-field-new">closed</span> </li> <li><strong>resolution</strong> → <span class="trac-field-new">fixed</span> </li> <li><strong>milestone</strong> <span class="trac-field-old">To Be Determined</span> → <span class="trac-field-new">Boost 1.59.0</span> </li> </ul> <p> This has already been changed on develop branch by </p> <pre class="wiki">#if defined(__ANDROID__) # ifndef PAGE_SIZE # define PAGE_SIZE 4096 # endif #endif </pre> Ticket