summaryrefslogtreecommitdiffstats
path: root/src/coda-1-use-stdint.patch
blob: 77e306a643653f71e1e05fa809f24d1d1b2c7702 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
This file is part of MXE.
See index.html for further information.

This patch has been taken from https://github.com/stcorp/coda/pull/9

diff --git a/libcoda/coda.h.in b/libcoda/coda.h.in
index 1587c61..b7dce21 100644
--- a/libcoda/coda.h.in
+++ b/libcoda/coda.h.in
@@ -33,9 +33,9 @@ extern "C"
 #ifdef WIN32
 #include <windows.h>
 
-#if (_MSC_VER < 1600)
-/* For Visual Studio we can use stdint.h as of Visual Studio 2010
- * For earlier versions we need to provide our own defines
+#if (_MSC_VER < 1600) && !defined(__MINGW32__)
+/* For Visual Studio > 2010 and MinGW we can use stdint.h
+ * For earlier versions of Visual Studio we need to provide our own defines
  */
 #ifndef int8_t
 #define int8_t  signed char