Ignore:
Timestamp:
Sep 9, 2006 8:05:33 PM (18 years ago)
Author:
bennylp
Message:

Added PJ_HAS_SOCKLEN_T test in configure script (some MacOS X have it, some dont)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/compat/os_auto.h.in

    r625 r697  
    6464#undef PJ_SOCKADDR_HAS_LEN 
    6565 
     66/* Does the OS have socklen_t? */ 
     67#undef PJ_HAS_SOCKLEN_T 
     68 
     69#if !defined(PJ_HAS_SOCKLEN_T) || PJ_HAS_SOCKLEN_T==0 
     70  typedef int socklen_t; 
     71#endif 
     72 
    6673/** 
    6774 * If this macro is set, it tells select I/O Queue that select() needs to 
     
    100107#endif 
    101108 
     109/* Do we need high resolution timer? */ 
    102110#undef PJ_HAS_HIGH_RES_TIMER 
     111 
     112/* Is malloc() available? */ 
    103113#undef PJ_HAS_MALLOC 
     114 
    104115#ifndef PJ_OS_HAS_CHECK_STACK 
    105116#   define PJ_OS_HAS_CHECK_STACK    0 
    106117#endif 
     118 
     119/* Unicode? */ 
    107120#undef PJ_NATIVE_STRING_IS_UNICODE 
    108121 
     122/* The type of atomic variable value: */ 
    109123#undef PJ_ATOMIC_VALUE_TYPE 
    110124 
Note: See TracChangeset for help on using the changeset viewer.