diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-12-21 18:34:06 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-12-21 18:34:06 +0000 |
commit | 0f4c4475807b409a7a6a1493ccee8ede6c0ef563 (patch) | |
tree | 6910c8ae0c30591b77af25e494afee2b768ad506 /PC | |
parent | d1faf0ef8f93f291ca2f1bd4f0544c5f680c1a9d (diff) | |
download | cpython-0f4c4475807b409a7a6a1493ccee8ede6c0ef563.tar.gz |
Use wcscoll for _locale.strcoll if available.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/pyconfig.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 6ff99b6323..0e7912eb94 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -497,6 +497,9 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ /* Define if you have waitpid. */ /* #undef HAVE_WAITPID */ +/* Define to 1 if you have the `wcscoll' function. */ +#define HAVE_WCSCOLL 1 + /* Define if you have the <dlfcn.h> header file. */ /* #undef HAVE_DLFCN_H */ @@ -551,6 +554,9 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ /* Define if you have the <utime.h> header file. */ /* #define HAVE_UTIME_H 1 */ +/* Define if the compiler provides a wchar.h header file. */ +#define HAVE_WCHAR_H 1 + /* Define if you have the dl library (-ldl). */ /* #undef HAVE_LIBDL */ |