Changeset 23


Ignore:
Timestamp:
Jan 19, 2010, 7:08:51 PM (15 years ago)
Author:
Silvan Scherrer
Message:

some changes to get more modules built

Location:
boost/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified boost/trunk/boost/config/platform/os2.hpp

    r15 r23  
    6060#define EAI_NODATA EAI_NONAME
    6161
     62#ifndef NI_MAXHOST
     63#define NI_MAXHOST 1025
     64#endif
     65
     66#ifndef NI_MAXSERV
     67#define NI_MAXSERV 32
     68#endif
    6269
    6370// boilerplate code:
  • TabularUnified boost/trunk/boost/thread/pthread/condition_variable.hpp

    r5 r23  
    2424    {
    2525        detail::interruption_checker check_for_interruption(&cond);
     26#ifdef __OS2__
     27        struct timespec timeout=detail::get_timespec(wait_until);
     28#else
    2629        struct timespec const timeout=detail::get_timespec(wait_until);
     30#endif
    2731        int const cond_res=pthread_cond_timedwait(&cond,m.mutex()->native_handle(),&timeout);
    2832        if(cond_res==ETIMEDOUT)
  • TabularUnified boost/trunk/boost/thread/pthread/mutex.hpp

    r5 r23  
    182182        bool timed_lock(system_time const & abs_time)
    183183        {
     184#ifdef __OS2__
     185            struct timespec timeout=detail::get_timespec(abs_time);
     186#else
    184187            struct timespec const timeout=detail::get_timespec(abs_time);
     188#endif
    185189            boost::pthread::pthread_mutex_scoped_lock const local_lock(&m);
    186190            while(is_locked)
  • TabularUnified boost/trunk/libs/filesystem/src/portability.cpp

    r5 r23  
    4949    //  name_check functions  ----------------------------------------------//
    5050
    51 #   ifdef BOOST_WINDOWS
     51#if defined(BOOST_WINDOWS) || defined(__OS2__)
    5252    BOOST_FILESYSTEM_DECL bool native( const std::string & name )
    5353    {
  • TabularUnified boost/trunk/tools/jam/src/command.c

    r13 r23  
    4242    cmd->shell = shell;
    4343    cmd->next = 0;
    44 #ifdef OS_OS2
    45     no_limit = 1;
    46 #endif
    4744    lol_init( &cmd->args );
    4845    lol_add( &cmd->args, targets );
Note: See TracChangeset for help on using the changeset viewer.