Unbreak mingw32 build
[oota-llvm.git] / lib / System / Win32 / Program.inc
index 0d870dc4a3592fa1fa53dc423255119119038802..7cc14a24d4dcc16037a5cc915da8904fe86bc5c6 100644 (file)
@@ -98,6 +98,14 @@ static HANDLE RedirectIO(const Path *path, int fd, std::string* ErrMsg) {
   return h;
 }
 
+#ifdef __MINGW32__
+  // Due to unknown reason, mingw32's w32api doesn't have this declaration.
+  BOOL WINAPI SetInformationJobObject(HANDLE hJob,
+                                      JOBOBJECTINFOCLASS JobObjectInfoClass,
+                                      LPVOID lpJobObjectInfo,
+                                      DWORD cbJobObjectInfoLength);
+#endif
+  
 int 
 Program::ExecuteAndWait(const Path& path, 
                         const char** args,