From: Daniel Stenberg Date: Thu, 5 Feb 2004 08:27:47 +0000 (+0000) Subject: Fix the socklen_t type too. Needed only when built with memory debugging X-Git-Tag: cares-1_1_0~349 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9254c3a103f2dd2bc730e09b805fc8e70c97b360;p=curl Fix the socklen_t type too. Needed only when built with memory debugging as then we include the memdebug.h header from the lib dir, and it then requires this type... (fails on IRIX 6.5 without this) --- diff --git a/src/config.h.in b/src/config.h.in index 9f50fa3f4..07ca44cfb 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -89,3 +89,5 @@ /* Define if you have the header file */ #undef HAVE_LIMITS_H +/* type to use in place of socklen_t if not defined */ +#undef socklen_t