summaryrefslogtreecommitdiff
path: root/Include/pyport.h
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2010-04-18 15:02:38 +0000
committerRonald Oussoren <ronaldoussoren@mac.com>2010-04-18 15:02:38 +0000
commit501aeffba3673fdce742054a5e0014dbe3ab40a7 (patch)
treeb2ab154e4267e86b9768fd65ea24bbc8860755cc /Include/pyport.h
parentd61deca27cdef2d1e49aeb72d8556855420a77e1 (diff)
downloadcpython-git-501aeffba3673fdce742054a5e0014dbe3ab40a7.tar.gz
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/pyport.h')
-rw-r--r--Include/pyport.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/Include/pyport.h b/Include/pyport.h
index 9df74ce989..e40c76d89d 100644
--- a/Include/pyport.h
+++ b/Include/pyport.h
@@ -625,6 +625,16 @@ extern pid_t forkpty(int *, char *, struct termios *, struct winsize *);
#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
@@ -642,7 +652,6 @@ extern pid_t forkpty(int *, char *, struct termios *, struct winsize *);
#undef toupper
#define toupper(c) towupper(btowc(c))
#endif
-#endif
/* Declarations for symbol visibility.