diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-02-20 11:40:10 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-02-20 11:40:10 (GMT) |
commit | b033de4acf942697fce4f0e1131192fd61ef6abc (patch) | |
tree | 10e1cff358c65cd963e69e2dbde31847287c96f7 /win/tclWinDde.c | |
parent | 19ca91ba8231e7c91700d47800fd8d3b5df0c107 (diff) | |
download | tcl-b033de4acf942697fce4f0e1131192fd61ef6abc.zip tcl-b033de4acf942697fce4f0e1131192fd61ef6abc.tar.gz tcl-b033de4acf942697fce4f0e1131192fd61ef6abc.tar.bz2 |
[Bug 3605401]: Compiler error with latest mingw-w64 headers.bug_3605401
Diffstat (limited to 'win/tclWinDde.c')
-rw-r--r-- | win/tclWinDde.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/win/tclWinDde.c b/win/tclWinDde.c index 94b4e4c..ce0b413 100644 --- a/win/tclWinDde.c +++ b/win/tclWinDde.c @@ -11,8 +11,9 @@ */ #undef STATIC_BUILD -#undef USE_TCL_STUBS -#define USE_TCL_STUBS +#ifndef USE_TCL_STUBS +# define USE_TCL_STUBS +#endif #include "tclInt.h" #include <dde.h> #include <ddeml.h> |