diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-05-23 16:37:50 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-05-23 16:37:50 (GMT) |
commit | b747ed3f97a77fb03359c344c71d8360a229b5cb (patch) | |
tree | e002b1fd4025b2bc1f7b08a5a69b00b1103d1028 /Modules/Setup.dist | |
parent | d7b3046289b49a4d68c7853cc408f77d75b559f8 (diff) | |
download | cpython-b747ed3f97a77fb03359c344c71d8360a229b5cb.zip cpython-b747ed3f97a77fb03359c344c71d8360a229b5cb.tar.gz cpython-b747ed3f97a77fb03359c344c71d8360a229b5cb.tar.bz2 |
adjust Setup.dist to build _functools and _locale
Diffstat (limited to 'Modules/Setup.dist')
-rw-r--r-- | Modules/Setup.dist | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/Setup.dist b/Modules/Setup.dist index 824b614..5e29bc6 100644 --- a/Modules/Setup.dist +++ b/Modules/Setup.dist @@ -112,6 +112,10 @@ pwd pwdmodule.c # this is needed to find out the user's home dir _sre _sre.c # Fredrik Lundh's new regular expressions _codecs _codecsmodule.c # access to the builtin codecs and codec registry _weakref _weakref.c # weak references +_functools _functoolsmodule.c # Tools for working with functions and callable objects + +# access to ISO C locale support +_locale _localemodule.c # -lintl # Standard I/O baseline _io -I$(srcdir)/Modules/_io _io/_iomodule.c _io/iobase.c _io/fileio.c _io/bytesio.c _io/bufferedio.c _io/textio.c _io/stringio.c @@ -164,7 +168,6 @@ _symtable symtablemodule.c #_collections _collectionsmodule.c # Container types #itertools itertoolsmodule.c # Functions creating iterators for efficient looping #atexit atexitmodule.c # Register functions to be run at interpreter-shutdown -#_functools _functoolsmodule.c # Tools for working with functions and callable objects #_elementtree -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI _elementtree.c # elementtree accelerator #_pickle _pickle.c # pickle accelerator #datetime datetimemodule.c # date/time type @@ -173,9 +176,6 @@ _symtable symtablemodule.c #unicodedata unicodedata.c # static Unicode character database -# access to ISO C locale support -#_locale _localemodule.c # -lintl - # Modules with some UNIX dependencies -- on by default: # (If you have a really backward UNIX, select and socket may not be |