2007-08-30 Jonathan Chambers <joncham@gmail.com>
authorJonathan Chambers <joncham@gmail.com>
Fri, 31 Aug 2007 01:13:06 +0000 (01:13 -0000)
committerJonathan Chambers <joncham@gmail.com>
Fri, 31 Aug 2007 01:13:06 +0000 (01:13 -0000)
* driver.c: include the cil-coff.h header on Windows.

svn path=/trunk/mono/; revision=85088

mono/mini/ChangeLog
mono/mini/driver.c

index af9fac2f562ac26be8f39241e96c82db403099a5..7a6cc71886e4a024c9acd4c871cbff97fab97a4b 100644 (file)
@@ -1,3 +1,6 @@
+2007-08-30  Jonathan Chambers <joncham@gmail.com>
+
+       * driver.c: include the cil-coff.h header on Windows.
 
 Thu Aug 30 16:17:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
 
index fe5dc726f394738fe3c661f1646470f67ed59575..abd5039e2b10e85fdff933b291f8c085151094f4 100644 (file)
@@ -57,8 +57,10 @@ static FILE *mini_stats_fd = NULL;
 
 static void mini_usage (void);
 
-/* This turns off command line globbing under win32 */
 #ifdef PLATFORM_WIN32
+/* Need this to determine whether to detach console */
+#include <mono/metadata/cil-coff.h>
+/* This turns off command line globbing under win32 */
 int _CRT_glob = 0;
 #endif