diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-14 14:42:10 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-14 14:42:10 (GMT) |
commit | b6ab10bda69750ba403ab63c010db76cc35e6f49 (patch) | |
tree | b96718373d9acc8338ab44371c00f49ed881bbab /win | |
parent | 7da887fc2b6f0c7e19b48fbb6b464b35d31aad24 (diff) | |
download | tk-b6ab10bda69750ba403ab63c010db76cc35e6f49.zip tk-b6ab10bda69750ba403ab63c010db76cc35e6f49.tar.gz tk-b6ab10bda69750ba403ab63c010db76cc35e6f49.tar.bz2 |
backport TCHAR determination from tkWinPort.h
Diffstat (limited to 'win')
-rw-r--r-- | win/tkWinPort.h | 38 |
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 |