> On May 24, 2015, at 4:02 PM, Jeff Shanab wrote:
>
> When I build live555 on OSX I have to add a definition for SOCKLEN_T.
[…]
> Am I missing something?
Probably. The “config.macosx” file adds
-DSOCKLEN_T=socklen_t
to the command line. So that suggests (assuming that you’re building
When I build live555 on OSX I have to add a definition for SOCKLEN_T.
#ifdef SOLARIS
#define u_int64_t uint64_t
#define u_int32_t uint32_t
#define u_int16_t uint16_t
#define u_int8_t uint8_t
#endif
#endif
#ifdef __APPLE__ << I add these
#define SOCKLEN_T unsigned i