aboutsummaryrefslogtreecommitdiff
path: root/ares
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2009-05-11 18:20:13 +0000
committerYang Tse <yangsita@gmail.com>2009-05-11 18:20:13 +0000
commit3d024d5fce4c52cf137ef71e59006e7e6ec8b61a (patch)
treee303f9827f2f90c4163ca0c046f3e371ee666e90 /ares
parent5763743614c117c7c7b5bcb8357cb0a7fdd78574 (diff)
fIX *__SOCKLEN_T definitions for SYMBIAN32 and VMS targets
Diffstat (limited to 'ares')
-rw-r--r--ares/ares_build.h.dist8
1 files changed, 4 insertions, 4 deletions
diff --git a/ares/ares_build.h.dist b/ares/ares_build.h.dist
index 462be557a..0cfa03dc0 100644
--- a/ares/ares_build.h.dist
+++ b/ares/ares_build.h.dist
@@ -140,8 +140,8 @@
#elif defined(__SYMBIAN32__)
# define CARES_SIZEOF_LONG 4
-# define CARES_TYPEOF_ARES_SOCKLEN_T FIXME
-# define CARES_SIZEOF_ARES_SOCKLEN_T -1
+# define CARES_TYPEOF_ARES_SOCKLEN_T unsigned int
+# define CARES_SIZEOF_ARES_SOCKLEN_T 4
#elif defined(__MWERKS__)
# define CARES_SIZEOF_LONG 4
@@ -160,8 +160,8 @@
#elif defined(__VMS)
# define CARES_SIZEOF_LONG 4
-# define CARES_TYPEOF_ARES_SOCKLEN_T FIXME
-# define CARES_SIZEOF_ARES_SOCKLEN_T -1
+# define CARES_TYPEOF_ARES_SOCKLEN_T unsigned int
+# define CARES_SIZEOF_ARES_SOCKLEN_T 4
#elif defined(__OS400__)
# if defined(__ILEC400__)