experimental UCS-4 support: don't assume that MS_WIN32 implies

HAVE_USABLE_WCHAR_T
This commit is contained in:
Fredrik Lundh 2001-06-26 17:46:10 +00:00
parent 1294ad0c59
commit 5b97935604
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@
/* The default encoding used by the platform file system APIs
Can remain NULL for all platforms that don't have such a concept
*/
#ifdef MS_WIN32
#if defined(MS_WIN32) && defined(HAVE_USABLE_WCHAR_T)
const char *Py_FileSystemDefaultEncoding = "mbcs";
#else
const char *Py_FileSystemDefaultEncoding = NULL; /* use default */