diff options
author | Guido van Rossum <guido@python.org> | 2000-03-10 22:30:29 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-03-10 22:30:29 (GMT) |
commit | ef2255b1dd19e02163a20217fbe3c364a08d3dfa (patch) | |
tree | b569899e881a842bbe0852e6671045494c8a7ce5 /acconfig.h | |
parent | 92f33770788f4fcb32be54014b43ccdeb8f20332 (diff) | |
download | cpython-ef2255b1dd19e02163a20217fbe3c364a08d3dfa.zip cpython-ef2255b1dd19e02163a20217fbe3c364a08d3dfa.tar.gz cpython-ef2255b1dd19e02163a20217fbe3c364a08d3dfa.tar.bz2 |
Part of the Unicode checkin for Marc-Andre Lemburg.
Some new configuration tests and a new option, --with-wctype-functions.
Diffstat (limited to 'acconfig.h')
-rw-r--r-- | acconfig.h | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -100,6 +100,18 @@ /* Define if you want SIGFPE handled (see Include/pyfpe.h). */ #undef WANT_SIGFPE_HANDLER +/* Define if the compiler provides a wchar.h header file. */ +#undef HAVE_WCHAR_H + +/* Define if you have a useable wchar_t type defined in wchar.h; useable + means wchar_t must be 16-bit unsigned type. (see + Include/unicodeobject.h). */ +#undef HAVE_USABLE_WCHAR_T + +/* Define if you want wctype.h functions to be used instead of the + one supplied by Python itself. (see Include/unicodectype.h). */ +#undef WANT_WCTYPE_FUNCTIONS + /* Define if you want to use SGI (IRIX 4) dynamic linking. This requires the "dl" library by Jack Jansen, ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z. |