summaryrefslogtreecommitdiffstats
path: root/win/tkWinPort.h
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-11-16 15:06:07 (GMT)
committernijtmans <nijtmans>2010-11-16 15:06:07 (GMT)
commitf13ecbbf2781ee1d4a22440634ec82f95cb8f9e5 (patch)
tree052d6c09a884a8a87f3337b6a9c02f03684376a0 /win/tkWinPort.h
parente10a57a4ac3f171b662ebc069f7feb6a6ae9cf95 (diff)
downloadtk-f13ecbbf2781ee1d4a22440634ec82f95cb8f9e5.zip
tk-f13ecbbf2781ee1d4a22440634ec82f95cb8f9e5.tar.gz
tk-f13ecbbf2781ee1d4a22440634ec82f95cb8f9e5.tar.bz2
[Bug #3110161]: Extensions using TCHAR don't compile on VS2005 SP1
Diffstat (limited to 'win/tkWinPort.h')
-rw-r--r--win/tkWinPort.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/win/tkWinPort.h b/win/tkWinPort.h
index 31d020d..2a81782 100644
--- a/win/tkWinPort.h
+++ b/win/tkWinPort.h
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkWinPort.h,v 1.10.4.1 2010/04/19 08:23:31 nijtmans Exp $
+ * RCS: @(#) $Id: tkWinPort.h,v 1.10.4.2 2010/11/16 15:06:07 nijtmans Exp $
*/
#ifndef _WINPORT
@@ -59,6 +59,10 @@
typedef _TCHAR TCHAR;
# define _TCHAR_DEFINED
# endif
+# if defined(_MSC_VER) && defined(__STDC__)
+ /* VS2005 SP1 misses this. See [Bug #3110161] */
+ typedef _TCHAR TCHAR;
+# endif
#endif
#ifdef __CYGWIN__