From 58691a7fdbd85b09ba27f7309c0290072c4168ce Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Thu, 3 May 2012 14:55:51 -0600 Subject: [PATCH] fix native Windows build For some reason, Cygwin's MinGW-W64 compilers end up pulling in our version of process.h from unistd.h. That doesn't really make sense -- it should use the one from the sysroot, but we can work around it by just not including unistd.h, since it's not needed on Windows anyway. --- src/binaryToObject/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/binaryToObject/main.cpp b/src/binaryToObject/main.cpp index 00515947e3..b7a35b90f4 100644 --- a/src/binaryToObject/main.cpp +++ b/src/binaryToObject/main.cpp @@ -18,9 +18,9 @@ #include #else #include +#include #endif #include -#include #include "tools.h"