From fd6e0c08da02d9e82d1c0f1b5b203316f5a6019a Mon Sep 17 00:00:00 2001 From: "Eric J. Korpela" Date: Tue, 10 May 2005 18:17:28 +0000 Subject: [PATCH] Added include of sys/socket.h for machines that need it to define socklen_t. svn path=/trunk/boinc/; revision=6096 --- client/main.C | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/main.C b/client/main.C index 6c02694ee7..5fd0a95239 100644 --- a/client/main.C +++ b/client/main.C @@ -32,6 +32,9 @@ typedef void (CALLBACK* IdleTrackerTerm)(); #else #include "config.h" +#ifdef HAVE_SYS_SOCKET_H +#include +#endif #include #include //#include "synch.h"