summaryrefslogtreecommitdiffstats
path: root/win/tclWinThrd.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-11-14 09:12:17 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-11-14 09:12:17 (GMT)
commit2b18d7d0193a3510b0739b88b05e46337d1a8571 (patch)
tree5c540f748346d27d74b0ae70b30a4ca260ca00a7 /win/tclWinThrd.c
parentcb3e2cac34c6d016af0826cd7dd74fc808fc14a8 (diff)
parent63c50fda841e1f2beca0c22f022abe76391d24dc (diff)
downloadtcl-2b18d7d0193a3510b0739b88b05e46337d1a8571.zip
tcl-2b18d7d0193a3510b0739b88b05e46337d1a8571.tar.gz
tcl-2b18d7d0193a3510b0739b88b05e46337d1a8571.tar.bz2
Workaround for mingw versions which don't provide _fpcontrol in float.h
Diffstat (limited to 'win/tclWinThrd.c')
-rw-r--r--win/tclWinThrd.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/win/tclWinThrd.c b/win/tclWinThrd.c
index 088e9ff..7b0f6f8 100644
--- a/win/tclWinThrd.c
+++ b/win/tclWinThrd.c
@@ -16,6 +16,14 @@
#include <float.h>
#include <sys/stat.h>
+/* Workaround for mingw versions which don't provide this in float.h */
+#ifndef _MCW_EM
+# define _MCW_EM 0x0008001F /* Error masks */
+# define _MCW_RC 0x00000300 /* Rounding */
+# define _MCW_PC 0x00030000 /* Precision */
+_CRTIMP unsigned int __cdecl _controlfp (unsigned int unNew, unsigned int unMask);
+#endif
+
/*
* This is the master lock used to serialize access to other serialization
* data structures.