Commit 5b979356 authored by Fredrik Lundh's avatar Fredrik Lundh

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

HAVE_USABLE_WCHAR_T
parent 1294ad0c
......@@ -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 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment