From 5b979356044281e3524500a1a6eb8d1cbdf25362 Mon Sep 17 00:00:00 2001 From: Fredrik Lundh Date: Tue, 26 Jun 2001 17:46:10 +0000 Subject: [PATCH] experimental UCS-4 support: don't assume that MS_WIN32 implies HAVE_USABLE_WCHAR_T --- Python/bltinmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 1e9868af14..4da984f8da 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -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 */ -- 2.49.0