Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Vermeulen <jtv@kursk>2015-03-23 18:35:03 +0300
committerJeroen Vermeulen <jtv@kursk>2015-03-23 18:35:03 +0300
commitcdc5e0fb33ece0a8d21af36557de8d7b9ae61509 (patch)
tree3ccf5e916b2894a6515703ecd59ba6e72c44ffab /jam-files
parent9ae4e2b2fbb458a9c275f9dfb831389a142bc726 (diff)
Check for MinGW using __MINGW32__, not MINGW.
This code used the wrong preprocessor macro to check whether it was compiling in a MinGW environment, as far as I can see.
Diffstat (limited to 'jam-files')
-rw-r--r--jam-files/engine/jam.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/jam-files/engine/jam.h b/jam-files/engine/jam.h
index 86ad0e86b..d44bbba9e 100644
--- a/jam-files/engine/jam.h
+++ b/jam-files/engine/jam.h
@@ -74,7 +74,7 @@
* Windows MingW32
*/
-#ifdef MINGW
+#ifdef __MINGW32__
#include <fcntl.h>
#include <stdlib.h>