diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-04-18 14:34:22 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-04-18 14:34:22 (GMT) |
commit | 0746619c0496c14ab6480615e9b9d54ea8c8ced8 (patch) | |
tree | 4de80b46997f32a37c91447683e280b0ebb8e788 /Include | |
parent | 27892add6f0f961e4ac3bd77b28af5683a939d20 (diff) | |
download | cpython-0746619c0496c14ab6480615e9b9d54ea8c8ced8.zip cpython-0746619c0496c14ab6480615e9b9d54ea8c8ced8.tar.gz cpython-0746619c0496c14ab6480615e9b9d54ea8c8ced8.tar.bz2 |
Merged revisions 80178 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80178 | ronald.oussoren | 2010-04-18 15:47:49 +0200 (Sun, 18 Apr 2010) | 2 lines
Fix for issue #7072
........
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pyport.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Include/pyport.h b/Include/pyport.h index 54411f2..64bbb03 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -512,6 +512,16 @@ extern int fdatasync(int); #ifdef __FreeBSD__ #include <osreldate.h> #if __FreeBSD_version > 500039 +# define _PY_PORT_CTYPE_UTF8_ISSUE +#endif +#endif + + +#if defined(__APPLE__) +# define _PY_PORT_CTYPE_UTF8_ISSUE +#endif + +#ifdef _PY_PORT_CTYPE_UTF8_ISSUE #include <ctype.h> #include <wctype.h> #undef isalnum @@ -529,7 +539,6 @@ extern int fdatasync(int); #undef toupper #define toupper(c) towupper(btowc(c)) #endif -#endif /* Declarations for symbol visibility. |