Closed GoogleCodeExporter closed 9 years ago
I think the following patch should fix it.
Index: io.c
===================================================================
--- io.c (revision 750)
+++ io.c (working copy)
@@ -261,7 +261,7 @@
**/
int tcp_cork_sock(int POSSIBLY_UNUSED(fd), int POSSIBLY_UNUSED(corked))
{
-#ifdef TCP_CORK
+#if defined(TCP_CORK) && defined(SOL_TCP)
if (!dcc_getenv_bool("DISTCC_TCP_CORK", 1))
return 0;
Original comment by fergus.h...@gmail.com
on 25 Jan 2012 at 11:31
thanks, it is foxed my problem with compilation on illumos (OpenSolaris) based
system.
you can integrate your fix.
Original comment by ikozhuk...@gmail.com
on 25 Jan 2012 at 7:02
Fixed in revision 752.
Original comment by fergus.h...@gmail.com
on 25 Jan 2012 at 7:10
Original issue reported on code.google.com by
ikozhuk...@gmail.com
on 23 Jan 2012 at 1:53