Larry Rosenman <ler(at)lerctr(dot)org> writes:
> A "make check" fails at createdb with errors in the postmaster logfile:
> LOG: setsockopt(TCP_NODELAY) failed: Protocol not available
This is coming from
int on;
#ifdef TCP_NODELAY
on = 1;
if (setsockopt(port->sock, IPPROTO_TCP, TCP_NODELAY,
(char *) &on, sizeof(on)) < 0)
{
elog(LOG, "setsockopt(TCP_NODELAY) failed: %m");
return STATUS_ERROR;
}
#endif
Better ask them what their problem is with that ...
regards, tom lane