diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2010-09-12 22:42:57 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2010-09-12 22:42:57 (GMT) |
commit | feb7307db4b4582af9ac01719f7df651c2eed077 (patch) | |
tree | fdf12671ce7ea77718886f4ee73370ab8b19c490 /configure.in | |
parent | b2f98401d123b940b282777b8e435f4a9ea0c085 (diff) | |
download | cpython-feb7307db4b4582af9ac01719f7df651c2eed077.zip cpython-feb7307db4b4582af9ac01719f7df651c2eed077.tar.gz cpython-feb7307db4b4582af9ac01719f7df651c2eed077.tar.bz2 |
#9210: remove --with-wctype-functions configure option.
The internal unicode database is now always used.
(after 5 years: see
http://mail.python.org/pipermail/python-dev/2004-December/050193.html
)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/configure.in b/configure.in index b467284..c6a51a3 100644 --- a/configure.in +++ b/configure.in @@ -2493,21 +2493,6 @@ if test "$with_valgrind" != no; then OPT="-DDYNAMIC_ANNOTATIONS_ENABLED=1 $OPT" fi -# Check for --with-wctype-functions -AC_MSG_CHECKING(for --with-wctype-functions) -AC_ARG_WITH(wctype-functions, - AS_HELP_STRING([--with-wctype-functions], [use wctype.h functions]), -[ -if test "$withval" != no -then - AC_DEFINE(WANT_WCTYPE_FUNCTIONS, 1, - [Define if you want wctype.h functions to be used instead of the - one supplied by Python itself. (see Include/unicodectype.h).]) - AC_MSG_RESULT(yes) -else AC_MSG_RESULT(no) -fi], -[AC_MSG_RESULT(no)]) - # -I${DLINCLDIR} is added to the compile rule for importdl.o AC_SUBST(DLINCLDIR) DLINCLDIR=. |