From: Michael Adam Date: Tue, 26 Feb 2008 10:18:51 +0000 (+0100) Subject: Fix build on VOS: socklen_t is needed for rep_inet_ntop: move it up. X-Git-Tag: samba-3.2.0pre2~37^2~134 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7b98620ef16c6969fd21dd9c157aedd4adb117a3;p=thirdparty%2Fsamba.git Fix build on VOS: socklen_t is needed for rep_inet_ntop: move it up. Michael --- diff --git a/source/lib/replace/system/network.h b/source/lib/replace/system/network.h index d09e3f71f8d..a84b22e5d08 100644 --- a/source/lib/replace/system/network.h +++ b/source/lib/replace/system/network.h @@ -83,6 +83,11 @@ #include #endif +#ifndef HAVE_SOCKLEN_T +#define HAVE_SOCKLEN_T +typedef int socklen_t; +#endif + #ifdef REPLACE_INET_NTOA /* define is in "replace.h" */ char *rep_inet_ntoa(struct in_addr ip); @@ -245,11 +250,6 @@ void rep_freeifaddrs(struct ifaddrs *); #define HOST_NAME_MAX 256 #endif -#ifndef HAVE_SOCKLEN_T -#define HAVE_SOCKLEN_T -typedef int socklen_t; -#endif - #ifndef HAVE_SA_FAMILY_T #define HAVE_SA_FAMILY_T typedef unsigned short int sa_family_t;