diff options
author | Jakub Kulík <Kulikjak@gmail.com> | 2021-05-21 14:59:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-21 14:59:39 (GMT) |
commit | d3cc68900dc99966007112f884779895daefc7db (patch) | |
tree | 52dc54deeb60f5cc538d05c75dd153c4ff524392 /pyconfig.h.in | |
parent | 0593ae84af9e0e8332644e7ed13d7fd8306c4e1a (diff) | |
download | cpython-d3cc68900dc99966007112f884779895daefc7db.zip cpython-d3cc68900dc99966007112f884779895daefc7db.tar.gz cpython-d3cc68900dc99966007112f884779895daefc7db.tar.bz2 |
[3.9] bpo-43667: Fix broken Unicode encoding in non-UTF locales on Solaris (GH-25096) (GH-25847)
(cherry picked from commit 9032cf5cb1e33c0349089cfb0f6bf11ed3c30e86)
Co-authored-by: Jakub Kulík <Kulikjak@gmail.com>
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 8510c87..6358e56 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -733,6 +733,10 @@ /* Define to 1 if you have the `nice' function. */ #undef HAVE_NICE +/* Define if the internal form of wchar_t in non-Unicode locales is not + Unicode. */ +#undef HAVE_NON_UNICODE_WCHAR_T_REPRESENTATION + /* Define to 1 if you have the `openat' function. */ #undef HAVE_OPENAT |