Ticket #3669: boost-thread-stdint_h-header.patch

File boost-thread-stdint_h-header.patch, 458 bytes (added by mloskot <mateusz@…>, 13 years ago)

Patch that adds missing stdint.h header

  • libs/thread/src/pthread/once.cpp

     
    99#include <pthread.h>
    1010#include <stdlib.h>
    1111
     12#ifndef UINTMAX_C
     13#ifdef BOOST_HAS_STDINT_H
     14#include <stdint.h>
     15#else
     16#error "Boost threads require stdint.h header"
     17#endif
     18#endif
     19
    1220namespace boost
    1321{
    1422    namespace detail