summaryrefslogtreecommitdiffstats
path: root/win/tkWinPort.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-05-14 14:42:10 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-05-14 14:42:10 (GMT)
commitb6ab10bda69750ba403ab63c010db76cc35e6f49 (patch)
treeb96718373d9acc8338ab44371c00f49ed881bbab /win/tkWinPort.h
parent7da887fc2b6f0c7e19b48fbb6b464b35d31aad24 (diff)
downloadtk-b6ab10bda69750ba403ab63c010db76cc35e6f49.zip
tk-b6ab10bda69750ba403ab63c010db76cc35e6f49.tar.gz
tk-b6ab10bda69750ba403ab63c010db76cc35e6f49.tar.bz2
backport TCHAR determination from tkWinPort.h
Diffstat (limited to 'win/tkWinPort.h')
-rw-r--r--win/tkWinPort.h38
1 files changed, 13 insertions, 25 deletions
diff --git a/win/tkWinPort.h b/win/tkWinPort.h
index 9deefce..73a511c 100644
--- a/win/tkWinPort.h
+++ b/win/tkWinPort.h
@@ -50,33 +50,21 @@
/*
* Pull in the typedef of TCHAR for windows.
*/
-#if !defined(_TCHAR_DEFINED)
-# include <tchar.h>
-# ifndef _TCHAR_DEFINED
- /* Borland seems to forget to set this. */
- typedef _TCHAR TCHAR;
-# define _TCHAR_DEFINED
-# endif
-# if defined(_MSC_VER) && defined(__STDC__)
- /* VS2005 SP1 misses this. See [Bug #3110161] */
- typedef _TCHAR TCHAR;
-# endif
+#include <tchar.h>
+#ifndef _TCHAR_DEFINED
+ /* Borland seems to forget to set this. */
+ typedef _TCHAR TCHAR;
+# define _TCHAR_DEFINED
+#endif
+#if defined(_MSC_VER) && defined(__STDC__)
+ /* VS2005 SP1 misses this. See [Bug #3110161] */
+ typedef _TCHAR TCHAR;
#endif
-#ifdef __CYGWIN__
-# ifndef _vsnprintf
-# define _vsnprintf vsnprintf
-# endif
-# ifndef _wcsicmp
-# define _wcsicmp wcscasecmp
-# endif
-#else
-# ifndef strncasecmp
-# define strncasecmp strnicmp
-# endif
-# ifndef strcasecmp
-# define strcasecmp stricmp
-# endif
+
+#ifndef __GNUC__
+# define strncasecmp strnicmp
+# define strcasecmp stricmp
#endif
#define NBBY 8