diff options
author | Yang Tse <yangsita@gmail.com> | 2009-05-11 18:20:13 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-05-11 18:20:13 +0000 |
commit | 3d024d5fce4c52cf137ef71e59006e7e6ec8b61a (patch) | |
tree | e303f9827f2f90c4163ca0c046f3e371ee666e90 /ares | |
parent | 5763743614c117c7c7b5bcb8357cb0a7fdd78574 (diff) |
fIX *__SOCKLEN_T definitions for SYMBIAN32 and VMS targets
Diffstat (limited to 'ares')
-rw-r--r-- | ares/ares_build.h.dist | 8 |
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__) |