Changeset 385 for python


Ignore:
Timestamp:
Mar 13, 2014, 10:05:45 PM (11 years ago)
Author:
dmik
Message:

setup: Add more modules needed for minimal Python install.

The minimal install is in particular required to run setup.py in the
second build phase of Python. Prior to this fix, a working
installation of Python with matching library paths (at least, lib-dynload)
was required which is clearly wrong.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/trunk/Modules/Setup.dist

    r10 r385  
    124124zipimport zipimport.c
    125125
     126# The following modules are needed by locale.py which is now used by setup.py
     127
     128operator operator.c     # operator.add() and similar goodies
     129_functools _functoolsmodule.c   # Tools for working with functions and callable objects
     130
     131# access to ISO C locale support
     132_locale _localemodule.c  # -lintl
     133
    126134# The rest of the modules listed in this file are all commented out by
    127135# default.  Usually they can be detected and built as dynamically
     
    173181#_struct _struct.c      # binary structure packing/unpacking
    174182#time timemodule.c # -lm # time operations and variables
    175 #operator operator.c    # operator.add() and similar goodies
    176183#_weakref _weakref.c    # basic weak reference support
    177184#_testcapi _testcapimodule.c    # Python C API test module
     
    180187#itertools itertoolsmodule.c    # Functions creating iterators for efficient looping
    181188#strop stropmodule.c            # String manipulations
    182 #_functools _functoolsmodule.c  # Tools for working with functions and callable objects
    183189#_elementtree -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI _elementtree.c # elementtree accelerator
    184190#_pickle _pickle.c      # pickle accelerator
     
    187193
    188194#unicodedata unicodedata.c    # static Unicode character database
    189 
    190 # access to ISO C locale support
    191 #_locale _localemodule.c  # -lintl
    192195
    193196
Note: See TracChangeset for help on using the changeset viewer.