Boost C++ Libraries: Ticket #11354: On Android thread_data.hpp include file, that doesn't exist in android-21 or higher. https://svn.boost.org/trac10/ticket/11354 <p> Android ndk starting from 21 doesn't provide page.h file and it is not needed for successful compilation, in file thread/pthread/thread_data.hpp line 27 next code </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> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/11354 Trac 1.4.3 viboes Fri, 29 May 2015 06:05:29 GMT status changed; resolution set; milestone deleted https://svn.boost.org/trac10/ticket/11354#comment:1 https://svn.boost.org/trac10/ticket/11354#comment:1 <ul> <li><strong>status</strong> <span class="trac-field-old">new</span> → <span class="trac-field-new">closed</span> </li> <li><strong>resolution</strong> → <span class="trac-field-new">duplicate</span> </li> <li><strong>milestone</strong> <span class="trac-field-deleted">To Be Determined</span> </li> </ul> <p> duplicate <a class="closed ticket" href="https://svn.boost.org/trac10/ticket/11353" title="#11353: Patches: On Android thread_data.hpp include file, that doesn't exist in ... (closed: fixed)">#11353</a> </p> Ticket