Clamd doesn't build under cygwin. The problem is due to the recent support for passing fd's to clamd.

The last few lines of the file should probably look something like:

#else
int readsock(intsockfd, char *buf, size_t size)
{
   return recv(sockfd, buf, size, 0);
}
#endif

instead of the current:

#else
#define readsock read
#endif


_______________________________________________
http://lists.clamav.net/cgi-bin/mailman/listinfo/clamav-devel

Reply via email to