Ticket #7716: 0001-Fixes-issues-with-missing-include-on-Android.patch

File 0001-Fixes-issues-with-missing-include-on-Android.patch, 749 bytes (added by Morten Videbæk Pedersen <morten@…>, 10 years ago)
  • boost/thread/pthread/thread_data.hpp

    From cd52536a66748a9772ab681559a389ecee75c8e4 Mon Sep 17 00:00:00 2001
    From: "Morten V. Pedersen" <morten@mortenvp.dk>
    Date: Tue, 20 Nov 2012 15:16:26 +0100
    Subject: [PATCH] Fixes issues with missing include on Android
    
    ---
     boost/thread/pthread/thread_data.hpp |    4 ++++
     1 file changed, 4 insertions(+)
    
    diff --git a/boost/thread/pthread/thread_data.hpp b/boost/thread/pthread/thread_data.hpp
    index db4e09f..94eb8d5 100644
    a b  
    2424#include <vector>
    2525#include <utility>
    2626
     27#if defined(__ANDROID__)
     28#include <asm/page.h> // http://code.google.com/p/android/issues/detail?id=39983
     29#endif
     30
    2731#include <pthread.h>
    2832#include <unistd.h>
    2933