mirror of https://github.com/nodejs/node.git
Apple's SUN_LEN is broken, override
parent
341e41726f
commit
02746eddd6
|
@ -350,12 +350,11 @@ static Handle<Value> Connect(const Arguments& args) {
|
|||
return Undefined();
|
||||
}
|
||||
|
||||
#if !defined(SUN_LEN)
|
||||
# if defined(__APPLE__)
|
||||
# define SUN_LEN(ptr) ((ptr)->sun_len-2)
|
||||
# else
|
||||
# define SUN_LEN(ptr) strlen((ptr)->sun_path)
|
||||
#endif
|
||||
// Mac's SUN_LEN is broken
|
||||
#if defined(__APPLE__)
|
||||
# define SUN_LEN(ptr) ((ptr)->sun_len-2)
|
||||
#elif !defined(SUN_LEN)
|
||||
# define SUN_LEN(ptr) strlen((ptr)->sun_path)
|
||||
#endif
|
||||
|
||||
#define ADDRESS_TO_JS(info, address_storage) \
|
||||
|
|
Loading…
Reference in New Issue