Changeset 37:4fe9562edc7c in verona


Ignore:
Timestamp:
Jan 5, 2010 3:09:03 PM (3 years ago)
Author:
nikita <>
Branch:
default
Parents:
36:12957c39df3b (diff), 23:1eeb186888a7 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

include debug

Files:
2 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • libosip2/src/osipparser2/osip_port.c

    r0 r37  
    2222#include <windows.h> 
    2323#endif 
     24 
    2425 
    2526 
     
    871872#endif 
    872873 
    873 #ifdef WIN32 
     874#if defined(WIN32) && !defined(_WIN32_WCE) 
    874875 
    875876#include <time.h> 
     877//#ifndef _WIN32_WCE 
    876878#include <sys/timeb.h> 
    877  
     879//#endif /* !_WIN32_WCE */ 
    878880int 
    879881__osip_port_gettimeofday (struct timeval *tp, void *tz) 
     
    886888        return OSIP_SUCCESS; 
    887889} 
    888 #elif defined(__linux) 
    889 #include <sys/time.h> 
     890#elif defined(__linux) || defined(_WIN32_WCE) 
     891//#include <sys/time.h> 
    890892#define __osip_port_gettimeofday gettimeofday 
    891893#endif 
     
    898900  int relative_time=0; 
    899901   
    900 #if defined(WIN32) || defined(__linux) 
     902#if (defined(WIN32) || defined(__linux)) && !defined(_WIN32_WCE)  
    901903  static struct timeval start={0,0}; 
    902904  struct timeval now; 
  • libosip2/src/osipparser2/osip_port.c

    r36 r37  
    2222#include <windows.h> 
    2323#endif 
     24 
    2425 
    2526 
Note: See TracChangeset for help on using the changeset viewer.