Ignore:
Timestamp:
Dec 28, 2016 3:40:07 AM (8 years ago)
Author:
nanang
Message:

Re #1900: More merged from trunk (r5512 mistakenly contains merged changes in third-party dir only).

Location:
pjproject/branches/projects/uwp
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/uwp

  • pjproject/branches/projects/uwp/pjlib/include/pj/compat/socket.h

    r4537 r5513  
    6565#   endif 
    6666 
    67 #   if !defined(IPPROTO_IPV6) 
     67#   if !defined(IPPROTO_IPV6) && (_WIN32_WINNT == 0x0500) 
    6868        /* Need to download and install IPv6Kit for this platform. 
    6969         * Please see the comments above about Visual Studio 6. 
     
    159159#  define OSERR_ECONNRESET     WSAECONNRESET 
    160160#  define OSERR_ENOTCONN       WSAENOTCONN 
     161#  define OSERR_EAFNOSUPPORT   WSAEAFNOSUPPORT 
     162#  define OSERR_ENOPROTOOPT    WSAENOPROTOOPT 
    161163#elif defined(PJ_SYMBIAN) && PJ_SYMBIAN!=0 
    162164#  define OSERR_EWOULDBLOCK    -1 
     
    164166#  define OSERR_ECONNRESET     -1 
    165167#  define OSERR_ENOTCONN       -1 
     168#  define OSERR_EAFNOSUPPORT   -1 
     169#  define OSERR_ENOPROTOOPT    -1 
    166170#else 
    167171#  define OSERR_EWOULDBLOCK    EWOULDBLOCK 
     
    169173#  define OSERR_ECONNRESET     ECONNRESET 
    170174#  define OSERR_ENOTCONN       ENOTCONN 
     175#  define OSERR_EAFNOSUPPORT   EAFNOSUPPORT 
     176#  define OSERR_ENOPROTOOPT    ENOPROTOOPT 
    171177#endif 
    172178 
Note: See TracChangeset for help on using the changeset viewer.