Changeset 697 for pjproject/trunk/pjlib/include/pj/compat/os_auto.h.in
- Timestamp:
- Sep 9, 2006 8:05:33 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/include/pj/compat/os_auto.h.in
r625 r697 64 64 #undef PJ_SOCKADDR_HAS_LEN 65 65 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 66 73 /** 67 74 * If this macro is set, it tells select I/O Queue that select() needs to … … 100 107 #endif 101 108 109 /* Do we need high resolution timer? */ 102 110 #undef PJ_HAS_HIGH_RES_TIMER 111 112 /* Is malloc() available? */ 103 113 #undef PJ_HAS_MALLOC 114 104 115 #ifndef PJ_OS_HAS_CHECK_STACK 105 116 # define PJ_OS_HAS_CHECK_STACK 0 106 117 #endif 118 119 /* Unicode? */ 107 120 #undef PJ_NATIVE_STRING_IS_UNICODE 108 121 122 /* The type of atomic variable value: */ 109 123 #undef PJ_ATOMIC_VALUE_TYPE 110 124
Note: See TracChangeset
for help on using the changeset viewer.