summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pjlib/include/pj/sock.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/pjlib/include/pj/sock.h b/pjlib/include/pj/sock.h
index 3245367e..bdb24f03 100644
--- a/pjlib/include/pj/sock.h
+++ b/pjlib/include/pj/sock.h
@@ -522,8 +522,10 @@ typedef union pj_in6_addr
/* Do not use this with Winsock2, as this will align pj_sockaddr_in6
* to 64-bit boundary and Winsock2 doesn't like it!
+ * Update 26/04/2010:
+ * This is now disabled, see http://trac.pjsip.org/repos/ticket/1058
*/
-#if defined(PJ_HAS_INT64) && PJ_HAS_INT64!=0 && \
+#if 0 && defined(PJ_HAS_INT64) && PJ_HAS_INT64!=0 && \
(!defined(PJ_WIN32) || PJ_WIN32==0)
pj_int64_t u6_addr64[2];
#endif