From 463050aa21ec2fa7bb0309e12c8818b73d1a88c8 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 1 Apr 2008 22:20:20 +0000 Subject: [PATCH] Fix of prior checkin for Win32 build svn path=/trunk/boinc/; revision=14997 --- lib/unix_util.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/unix_util.h b/lib/unix_util.h index 6a8d3cf3dd..d5f3abb1c8 100644 --- a/lib/unix_util.h +++ b/lib/unix_util.h @@ -20,8 +20,12 @@ #ifndef UNIX_UTIL_H #define UNIX_UTIL_H +// Nothing in this file is needed on WIN32 +#ifndef _WIN32 + #include "config.h" + #ifdef __cplusplus #include #include @@ -48,5 +52,7 @@ int daemon(int nochdir, int noclose); #endif /* HAVE_DAEMON */ +#endif /* _WIN32 */ + #endif /* UNIX_UTIL_H */