Author: j16sdiz
Date: 2009-04-01 14:57:09 +0000 (Wed, 01 Apr 2009)
New Revision: 26314

Modified:
   trunk/contrib/fec/src/csrc/fec16-jinterf.c
   trunk/contrib/fec/src/csrc/fec8-jinterf.c
Log:
Fix cross compiling with mingw32

Modified: trunk/contrib/fec/src/csrc/fec16-jinterf.c
===================================================================
--- trunk/contrib/fec/src/csrc/fec16-jinterf.c  2009-04-01 14:54:57 UTC (rev 
26313)
+++ trunk/contrib/fec/src/csrc/fec16-jinterf.c  2009-04-01 14:57:09 UTC (rev 
26314)
@@ -3,7 +3,7 @@
 #include "jni.h"
 #include <stdio.h>
 #include <stdlib.h>
-#ifndef WIN32
+#if defined(__GNUC__) || !defined(WIN32)
 #include <stdint.h>
 #endif
 #include <malloc.h>

Modified: trunk/contrib/fec/src/csrc/fec8-jinterf.c
===================================================================
--- trunk/contrib/fec/src/csrc/fec8-jinterf.c   2009-04-01 14:54:57 UTC (rev 
26313)
+++ trunk/contrib/fec/src/csrc/fec8-jinterf.c   2009-04-01 14:57:09 UTC (rev 
26314)
@@ -3,7 +3,7 @@
 #include "jni.h"
 #include <stdio.h>
 #include <stdlib.h>
-#ifndef WIN32
+#if defined(__GNUC__) || !defined(WIN32)
 #include <stdint.h>
 #endif
 #include <malloc.h>

_______________________________________________
cvs mailing list
[email protected]
http://emu.freenetproject.org/cgi-bin/mailman/listinfo/cvs

Reply via email to