Tagging 3.0a4.
[python/dscho.git] / Modules / Setup.dist
blob1c0715857968415aa5de23102822798dc9537184
1 # -*- makefile -*-
2 # The file Setup is used by the makesetup script to construct the files
3 # Makefile and config.c, from Makefile.pre and config.c.in,
4 # respectively.  The file Setup itself is initially copied from
5 # Setup.dist; once it exists it will not be overwritten, so you can edit
6 # Setup to your heart's content.  Note that Makefile.pre is created
7 # from Makefile.pre.in by the toplevel configure script.
9 # (VPATH notes: Setup and Makefile.pre are in the build directory, as
10 # are Makefile and config.c; the *.in and *.dist files are in the source
11 # directory.)
13 # Each line in this file describes one or more optional modules.
14 # Modules enabled here will not be compiled by the setup.py script,
15 # so the file can be used to override setup.py's behavior.
17 # Lines have the following structure:
19 # <module> ... [<sourcefile> ...] [<cpparg> ...] [<library> ...]
21 # <sourcefile> is anything ending in .c (.C, .cc, .c++ are C++ files)
22 # <cpparg> is anything starting with -I, -D, -U or -C
23 # <library> is anything ending in .a or beginning with -l or -L
24 # <module> is anything else but should be a valid Python
25 # identifier (letters, digits, underscores, beginning with non-digit)
27 # (As the makesetup script changes, it may recognize some other
28 # arguments as well, e.g. *.so and *.sl as libraries.  See the big
29 # case statement in the makesetup script.)
31 # Lines can also have the form
33 # <name> = <value>
35 # which defines a Make variable definition inserted into Makefile.in
37 # Finally, if a line contains just the word "*shared*" (without the
38 # quotes but with the stars), then the following modules will not be
39 # built statically.  The build process works like this:
41 # 1. Build all modules that are declared as static in Modules/Setup,
42 #    combine them into libpythonxy.a, combine that into python.
43 # 2. Build all modules that are listed as shared in Modules/Setup.
44 # 3. Invoke setup.py. That builds all modules that
45 #    a) are not builtin, and
46 #    b) are not listed in Modules/Setup, and
47 #    c) can be build on the target
49 # Therefore, modules declared to be shared will not be
50 # included in the config.c file, nor in the list of objects to be
51 # added to the library archive, and their linker options won't be
52 # added to the linker options. Rules to create their .o files and
53 # their shared libraries will still be added to the Makefile, and
54 # their names will be collected in the Make variable SHAREDMODS.  This
55 # is used to build modules as shared libraries.  (They can be
56 # installed using "make sharedinstall", which is implied by the
57 # toplevel "make install" target.)  (For compatibility,
58 # *noconfig* has the same effect as *shared*.)
60 # In addition, *static* explicitly declares the following modules to
61 # be static.  Lines containing "*static*" and "*shared*" may thus
62 # alternate throughout this file.
64 # NOTE: As a standard policy, as many modules as can be supported by a
65 # platform should be present.  The distribution comes with all modules
66 # enabled that are supported by most platforms and don't require you
67 # to ftp sources from elsewhere.
70 # Some special rules to define PYTHONPATH.
71 # Edit the definitions below to indicate which options you are using.
72 # Don't add any whitespace or comments!
74 # Directories where library files get installed.
75 # DESTLIB is for Python modules; MACHDESTLIB for shared libraries.
76 DESTLIB=$(LIBDEST)
77 MACHDESTLIB=$(BINLIBDEST)
79 # NOTE: all the paths are now relative to the prefix that is computed
80 # at run time!
82 # Standard path -- don't edit.
83 # No leading colon since this is the first entry.
84 # Empty since this is now just the runtime prefix.
85 DESTPATH=
87 # Site specific path components -- should begin with : if non-empty
88 SITEPATH=
90 # Standard path components for test modules
91 TESTPATH=
93 # Path components for machine- or system-dependent modules and shared libraries
94 MACHDEPPATH=:plat-$(MACHDEP)
95 EXTRAMACHDEPPATH=
97 # Path component for the Tkinter-related modules
98 # The TKPATH variable is always enabled, to save you the effort.
99 TKPATH=:lib-tk
101 COREPYTHONPATH=$(DESTPATH)$(SITEPATH)$(TESTPATH)$(MACHDEPPATH)$(EXTRAMACHDEPPATH)$(TKPATH)
102 PYTHONPATH=$(COREPYTHONPATH)
105 # The modules listed here can't be built as shared libraries for
106 # various reasons; therefore they are listed here instead of in the
107 # normal order.
109 # This only contains the minimal set of modules required to run the 
110 # setup.py script in the root of the Python source tree.
112 posix posixmodule.c             # posix (UNIX) system calls
113 errno errnomodule.c             # posix (UNIX) errno values
114 pwd pwdmodule.c                 # this is needed to find out the user's home dir
115                                 # if $HOME is not set
116 _sre _sre.c                     # Fredrik Lundh's new regular expressions
117 _codecs _codecsmodule.c         # access to the builtin codecs and codec registry
118 _fileio _fileio.c               # Standard I/O baseline
119 _weakref _weakref.c             # weak references
121 # The zipimport module is always imported at startup. Having it as a
122 # builtin module avoids some bootstrapping problems and reduces overhead.
123 zipimport zipimport.c
125 # The rest of the modules listed in this file are all commented out by
126 # default.  Usually they can be detected and built as dynamically
127 # loaded modules by the new setup.py script added in Python 2.1.  If
128 # you're on a platform that doesn't support dynamic loading, want to 
129 # compile modules statically into the Python binary, or need to 
130 # specify some odd set of compiler switches, you can uncomment the 
131 # appropriate lines below.
133 # ======================================================================
135 # The Python symtable module depends on .h files that setup.py doesn't track
136 _symtable symtablemodule.c
138 # Uncommenting the following line tells makesetup that all following
139 # modules are to be built as shared libraries (see above for more
140 # detail; also note that *static* reverses this effect):
142 #*shared*
144 # GNU readline.  Unlike previous Python incarnations, GNU readline is
145 # now incorporated in an optional module, configured in the Setup file
146 # instead of by a configure script switch.  You may have to insert a
147 # -L option pointing to the directory where libreadline.* lives,
148 # and you may have to change -ltermcap to -ltermlib or perhaps remove
149 # it, depending on your system -- see the GNU readline instructions.
150 # It's okay for this to be a shared library, too.
152 #readline readline.c -lreadline -ltermcap
155 # Modules that should always be present (non UNIX dependent):
157 #array arraymodule.c    # array objects
158 #cmath cmathmodule.c # -lm # complex math library functions
159 #math mathmodule.c # -lm # math library functions, e.g. sin()
160 #_struct _struct.c      # binary structure packing/unpacking
161 #time timemodule.c # -lm # time operations and variables
162 #operator operator.c    # operator.add() and similar goodies
163 #_weakref _weakref.c    # basic weak reference support
164 #_testcapi _testcapimodule.c    # Python C API test module
165 #_random _randommodule.c        # Random number generator
166 #collections collectionsmodule.c # Container types
167 #itertools itertoolsmodule.c    # Functions creating iterators for efficient looping 
168 #atexit atexitmodule.c      # Register functions to be run at interpreter-shutdown
170 #unicodedata unicodedata.c    # static Unicode character database
172 # access to ISO C locale support
173 #_locale _localemodule.c  # -lintl
176 # Modules with some UNIX dependencies -- on by default:
177 # (If you have a really backward UNIX, select and socket may not be
178 # supported...)
180 #fcntl fcntlmodule.c    # fcntl(2) and ioctl(2)
181 #spwd spwdmodule.c              # spwd(3) 
182 #grp grpmodule.c                # grp(3)
183 #select selectmodule.c  # select(2); not on ancient System V
185 # Memory-mapped files (also works on Win32).
186 #mmap mmapmodule.c
188 # CSV file helper
189 #_csv _csv.c
191 # Socket module helper for socket(2)
192 #_socket socketmodule.c
194 # Socket module helper for SSL support; you must comment out the other
195 # socket line above, and possibly edit the SSL variable:
196 #SSL=/usr/local/ssl
197 #_ssl _ssl.c \
198 #       -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
199 #       -L$(SSL)/lib -lssl -lcrypto
201 # The crypt module is now disabled by default because it breaks builds
202 # on many systems (where -lcrypt is needed), e.g. Linux (I believe).
204 # First, look at Setup.config; configure may have set this for you.
206 #crypt cryptmodule.c # -lcrypt  # crypt(3); needs -lcrypt on some systems
209 # Some more UNIX dependent modules -- off by default, since these
210 # are not supported by all UNIX systems:
212 #nis nismodule.c -lnsl  # Sun yellow pages -- not everywhere
213 #termios termios.c      # Steen Lumholt's termios module
214 #resource resource.c    # Jeremy Hylton's rlimit interface
217 # Multimedia modules -- off by default.
218 # These don't work for 64-bit platforms!!!
219 # #993173 says audioop works on 64-bit platforms, though.
220 # These represent audio samples or images as strings:
222 #audioop audioop.c      # Operations on audio samples
225 # Note that the _md5 and _sha modules are normally only built if the
226 # system does not have the OpenSSL libs containing an optimized version.
228 # The _md5 module implements the RSA Data Security, Inc. MD5
229 # Message-Digest Algorithm, described in RFC 1321.  The necessary files
230 # md5.c and md5.h are included here.
232 #_md5 md5module.c md5.c
235 # The _sha module implements the SHA checksum algorithm.
236 # (NIST's Secure Hash Algorithm.)
237 #_sha shamodule.c
240 # The _tkinter module.
242 # The command for _tkinter is long and site specific.  Please
243 # uncomment and/or edit those parts as indicated.  If you don't have a
244 # specific extension (e.g. Tix or BLT), leave the corresponding line
245 # commented out.  (Leave the trailing backslashes in!  If you
246 # experience strange errors, you may want to join all uncommented
247 # lines and remove the backslashes -- the backslash interpretation is
248 # done by the shell's "read" command and it may not be implemented on
249 # every system.
251 # *** Always uncomment this (leave the leading underscore in!):
252 # _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
253 # *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
254 #       -L/usr/local/lib \
255 # *** Uncomment and edit to reflect where your Tcl/Tk headers are:
256 #       -I/usr/local/include \
257 # *** Uncomment and edit to reflect where your X11 header files are:
258 #       -I/usr/X11R6/include \
259 # *** Or uncomment this for Solaris:
260 #       -I/usr/openwin/include \
261 # *** Uncomment and edit for Tix extension only:
262 #       -DWITH_TIX -ltix8.1.8.2 \
263 # *** Uncomment and edit for BLT extension only:
264 #       -DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \
265 # *** Uncomment and edit for PIL (TkImaging) extension only:
266 #     (See http://www.pythonware.com/products/pil/ for more info)
267 #       -DWITH_PIL -I../Extensions/Imaging/libImaging  tkImaging.c \
268 # *** Uncomment and edit for TOGL extension only:
269 #       -DWITH_TOGL togl.c \
270 # *** Uncomment and edit to reflect your Tcl/Tk versions:
271 #       -ltk8.2 -ltcl8.2 \
272 # *** Uncomment and edit to reflect where your X11 libraries are:
273 #       -L/usr/X11R6/lib \
274 # *** Or uncomment this for Solaris:
275 #       -L/usr/openwin/lib \
276 # *** Uncomment these for TOGL extension only:
277 #       -lGL -lGLU -lXext -lXmu \
278 # *** Uncomment for AIX:
279 #       -lld \
280 # *** Always uncomment this; X11 libraries to link with:
281 #       -lX11
283 # Lance Ellinghaus's syslog module
284 #syslog syslogmodule.c          # syslog daemon interface
287 # Curses support, requring the System V version of curses, often
288 # provided by the ncurses library.  e.g. on Linux, link with -lncurses
289 # instead of -lcurses).
291 # First, look at Setup.config; configure may have set this for you.
293 #_curses _cursesmodule.c -lcurses -ltermcap
294 # Wrapper for the panel library that's part of ncurses and SYSV curses.
295 #_curses_panel _curses_panel.c -lpanel -lncurses 
298 # Modules that provide persistent dictionary-like semantics.  You will
299 # probably want to arrange for at least one of them to be available on
300 # your machine, though none are defined by default because of library
301 # dependencies.  The Python module anydbm.py provides an
302 # implementation independent wrapper for these; dumbdbm.py provides
303 # similar functionality (but slower of course) implemented in Python.
305 # The standard Unix dbm module has been moved to Setup.config so that
306 # it will be compiled as a shared library by default.  Compiling it as
307 # a built-in module causes conflicts with the pybsddb3 module since it
308 # creates a static dependency on an out-of-date version of db.so.
310 # First, look at Setup.config; configure may have set this for you.
312 #dbm dbmmodule.c        # dbm(3) may require -lndbm or similar
314 # Anthony Baxter's gdbm module.  GNU dbm(3) will require -lgdbm:
316 # First, look at Setup.config; configure may have set this for you.
318 #gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
321 # Sleepycat Berkeley DB interface.
323 # This requires the Sleepycat DB code, see http://www.sleepycat.com/
324 # The earliest supported version of that library is 3.0, the latest
325 # supported version is 4.0 (4.1 is specifically not supported, as that
326 # changes the semantics of transactional databases). A list of available
327 # releases can be found at
329 # http://www.sleepycat.com/update/index.html
331 # Edit the variables DB and DBLIBVERto point to the db top directory
332 # and the subdirectory of PORT where you built it.
333 #DB=/usr/local/BerkeleyDB.4.0
334 #DBLIBVER=4.0
335 #DBINC=$(DB)/include
336 #DBLIB=$(DB)/lib
337 #_bsddb _bsddb.c -I$(DBINC) -L$(DBLIB) -ldb-$(DBLIBVER)
340 # Helper module for various ascii-encoders
341 #binascii binascii.c
343 # Fred Drake's interface to the Python parser
344 #parser parsermodule.c
346 # cStringIO
347 #cStringIO cStringIO.c
350 # Lee Busby's SIGFPE modules.
351 # The library to link fpectl with is platform specific.
352 # Choose *one* of the options below for fpectl:
354 # For SGI IRIX (tested on 5.3):
355 #fpectl fpectlmodule.c -lfpe
357 # For Solaris with SunPro compiler (tested on Solaris 2.5 with SunPro C 4.2):
358 # (Without the compiler you don't have -lsunmath.)
359 #fpectl fpectlmodule.c -R/opt/SUNWspro/lib -lsunmath -lm
361 # For other systems: see instructions in fpectlmodule.c.
362 #fpectl fpectlmodule.c ...
364 # Test module for fpectl.  No extra libraries needed.
365 #fpetest fpetestmodule.c
367 # Andrew Kuchling's zlib module.
368 # This require zlib 1.1.3 (or later).
369 # See http://www.gzip.org/zlib/
370 #zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
372 # Interface to the Expat XML parser
374 # Expat was written by James Clark and is now maintained by a group of
375 # developers on SourceForge; see www.libexpat.org for more
376 # information.  The pyexpat module was written by Paul Prescod after a
377 # prototype by Jack Jansen.  Source of Expat 1.95.2 is included in
378 # Modules/expat/.  Usage of a system shared libexpat.so/expat.dll is
379 # not advised.
381 # More information on Expat can be found at www.libexpat.org.
383 #EXPAT_DIR=/usr/local/src/expat-1.95.2
384 #pyexpat pyexpat.c -DHAVE_EXPAT_H -I$(EXPAT_DIR)/lib -L$(EXPAT_DIR) -lexpat
387 # Hye-Shik Chang's CJKCodecs
389 # multibytecodec is required for all the other CJK codec modules
390 #_multibytecodec cjkcodecs/multibytecodec.c
392 #_codecs_cn cjkcodecs/_codecs_cn.c
393 #_codecs_hk cjkcodecs/_codecs_hk.c
394 #_codecs_iso2022 cjkcodecs/_codecs_iso2022.c
395 #_codecs_jp cjkcodecs/_codecs_jp.c
396 #_codecs_kr cjkcodecs/_codecs_kr.c
397 #_codecs_tw cjkcodecs/_codecs_tw.c
399 # Example -- included for reference only:
400 # xx xxmodule.c
402 # Another example -- the 'xxsubtype' module shows C-level subtyping in action
403 xxsubtype xxsubtype.c