--- lib/rtp/inet_ntop.c Tue Mar 30 18:49:39 2004 +++ lib/rtp/inet_ntop.c Tue Mar 30 18:23:51 2004 @@ -34,6 +34,6 @@ */ -static const char *inet_ntop4(const u_char *src, char *dst, size_t size); -static const char *inet_ntop6(const u_char *src, char *dst, size_t size); +static const char *inet_ntop4(const u_char *src, char *dst, socklen_t size); +static const char *inet_ntop6(const u_char *src, char *dst, socklen_t size); /* char * @@ -50,5 +50,5 @@ const void *src; char *dst; - size_t size; + socklen_t size; { switch (af) { @@ -79,5 +79,5 @@ const u_char *src; char *dst; - size_t size; + socklen_t size; { static const char fmt[] = "%u.%u.%u.%u"; @@ -103,5 +103,5 @@ const u_char *src; char *dst; - size_t size; + socklen_t size; { /* @@ -182,5 +182,5 @@ * Check for overflow, copy, and we're done. */ - if ((size_t) (tp - tmp) > size) { + if ((socklen_t) (tp - tmp) > size) { errno = ENOSPC; return (NULL); --- lib/rtp/ltmain.sh Mon Aug 19 18:13:37 2002 +++ lib/rtp/ltmain.sh Tue Mar 30 18:40:17 2004 @@ -328,5 +328,5 @@ -prefer-non-pic) - pic_mode=no + pic_mode=yes continue ;; @@ -474,4 +474,5 @@ pic_mode=default fi + pic_mode=yes # Calculate the filename of the output object if compiler does --- ltmain.sh Mon Aug 19 18:13:37 2002 +++ ltmain.sh Tue Mar 30 18:40:17 2004 @@ -328,5 +328,5 @@ -prefer-non-pic) - pic_mode=no + pic_mode=yes continue ;; @@ -474,4 +474,5 @@ pic_mode=default fi + pic_mode=yes # Calculate the filename of the output object if compiler does