From: <cho...@us...> - 2003-01-02 14:44:02
|
Update of /cvsroot/pyaros/PyAROS/Include In directory sc8-pr-cvs1:/tmp/cvs-serv20847/Include Modified Files: pyconfig.h Log Message: Disable unicode support when building TINY version. Index: pyconfig.h =================================================================== RCS file: /cvsroot/pyaros/PyAROS/Include/pyconfig.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** pyconfig.h 31 Dec 2002 12:52:24 -0000 1.4 --- pyconfig.h 2 Jan 2003 14:43:55 -0000 1.5 *************** *** 189,202 **** /* #undef _LARGEFILE_SOURCE */ ! /* Define if you want to have a Unicode type. */ ! #define Py_USING_UNICODE 1 ! /* Define as the integral type used for Unicode representation. */ ! /* FIXME: Should be decided dynamically... */ ! #define PY_UNICODE_TYPE unsigned short ! /* Define as the size of the unicode type. */ ! /* FIXME: Should be decided dynamically... */ ! #define Py_UNICODE_SIZE 2 /* Define if nice() returns success/failure instead of the new priority. */ --- 189,204 ---- /* #undef _LARGEFILE_SOURCE */ ! #ifndef PYTHON_TINY ! /* Define if you want to have a Unicode type. */ ! # define Py_USING_UNICODE 1 ! /* Define as the integral type used for Unicode representation. */ ! /* FIXME: Should be decided dynamically... */ ! # define PY_UNICODE_TYPE unsigned short ! /* Define as the size of the unicode type. */ ! /* FIXME: Should be decided dynamically... */ ! # define Py_UNICODE_SIZE 2 ! #endif /* Define if nice() returns success/failure instead of the new priority. */ |