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
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
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 thoughout 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.
77 MACHDESTLIB=$(BINLIBDEST)
79 # NOTE: all the paths are now relative to the prefix that is computed
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.
87 # Site specific path components -- should begin with : if non-empty
90 # Standard path components for test modules
93 # Path components for machine- or system-dependent modules and shared libraries
94 MACHDEPPATH=:plat-$(MACHDEP)
96 # Path component for the Tkinter-related modules
97 # The TKPATH variable is always enabled, to save you the effort.
100 COREPYTHONPATH=$(DESTPATH)$(SITEPATH)$(TESTPATH)$(MACHDEPPATH)$(TKPATH)
101 PYTHONPATH=$(COREPYTHONPATH)
104 # The modules listed here can't be built as shared libraries for
105 # various reasons; therefore they are listed here instead of in the
108 # This only contains the minimal set of modules required to run the
109 # setup.py script in the root of the Python source tree.
111 posix posixmodule.c # posix (UNIX) system calls
112 errno errnomodule.c # posix (UNIX) errno values
113 _sre _sre.c # Fredrik Lundh's new regular expressions
114 _codecs _codecsmodule.c # access to the builtin codecs and codec registry
116 # The zipimport module is always imported at startup. Having it as a
117 # builtin module avoids some bootstrapping problems and reduces overhead.
118 zipimport zipimport.c
120 # The rest of the modules listed in this file are all commented out by
121 # default. Usually they can be detected and built as dynamically
122 # loaded modules by the new setup.py script added in Python 2.1. If
123 # you're on a platform that doesn't support dynamic loading, want to
124 # compile modules statically into the Python binary, or need to
125 # specify some odd set of compiler switches, you can uncomment the
126 # appropriate lines below.
128 # ======================================================================
130 # The Python symtable module depends on .h files that setup.py doesn't track
131 _symtable symtablemodule.c
133 # The SGI specific GL module:
135 GLHACK=-Dclear=__GLclear
136 #gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
138 # Pure module. Cannot be linked dynamically.
139 # -DWITH_QUANTIFY, -DWITH_PURIFY, or -DWITH_ALL_PURE
140 #WHICH_PURE_PRODUCTS=-DWITH_ALL_PURE
141 #PURE_INCLS=-I/usr/local/include
142 #PURE_STUBLIBS=-L/usr/local/lib -lpurify_stubs -lquantify_stubs
143 #pure puremodule.c $(WHICH_PURE_PRODUCTS) $(PURE_INCLS) $(PURE_STUBLIBS)
145 # Uncommenting the following line tells makesetup that all following
146 # modules are to be built as shared libraries (see above for more
147 # detail; also note that *static* reverses this effect):
151 # GNU readline. Unlike previous Python incarnations, GNU readline is
152 # now incorporated in an optional module, configured in the Setup file
153 # instead of by a configure script switch. You may have to insert a
154 # -L option pointing to the directory where libreadline.* lives,
155 # and you may have to change -ltermcap to -ltermlib or perhaps remove
156 # it, depending on your system -- see the GNU readline instructions.
157 # It's okay for this to be a shared library, too.
159 #readline readline.c -lreadline -ltermcap
162 # Modules that should always be present (non UNIX dependent):
164 #array arraymodule.c # array objects
165 #cmath cmathmodule.c # -lm # complex math library functions
166 #math mathmodule.c # -lm # math library functions, e.g. sin()
167 #struct structmodule.c # binary structure packing/unpacking
168 #time timemodule.c # -lm # time operations and variables
169 #operator operator.c # operator.add() and similar goodies
170 #_weakref _weakref.c # basic weak reference support
171 #_testcapi _testcapimodule.c # Python C API test module
173 #unicodedata unicodedata.c # static Unicode character database
175 #_locale _localemodule.c # access to ISO C locale support
178 # Modules with some UNIX dependencies -- on by default:
179 # (If you have a really backward UNIX, select and socket may not be
182 #fcntl fcntlmodule.c # fcntl(2) and ioctl(2)
183 #pwd pwdmodule.c # pwd(3)
184 #grp grpmodule.c # grp(3)
185 #select selectmodule.c # select(2); not on ancient System V
187 # Memory-mapped files (also works on Win32).
191 #xreadlines xreadlinesmodule.c
193 # Socket module helper for socket(2)
194 #_socket socketmodule.c
196 # Socket module helper for SSL support; you must comment out the other
197 # socket line above, and possibly edit the SSL variable:
200 # -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
201 # -L$(SSL)/lib -lssl -lcrypto
203 # The crypt module is now disabled by default because it breaks builds
204 # on many systems (where -lcrypt is needed), e.g. Linux (I believe).
206 # First, look at Setup.config; configure may have set this for you.
208 #crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
211 # Some more UNIX dependent modules -- off by default, since these
212 # are not supported by all UNIX systems:
214 #nis nismodule.c -lnsl # Sun yellow pages -- not everywhere
215 #termios termios.c # Steen Lumholt's termios module
216 #resource resource.c # Jeremy Hylton's rlimit interface
219 # Multimedia modules -- off by default.
220 # These don't work for 64-bit platforms!!!
221 # These represent audio samples or images as strings:
223 #audioop audioop.c # Operations on audio samples
224 #imageop imageop.c # Operations on images
225 #rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably)
228 # The md5 module implements the RSA Data Security, Inc. MD5
229 # Message-Digest Algorithm, described in RFC 1321. The necessary files
230 # md5c.c and md5.h are included here.
232 #md5 md5module.c md5c.c
235 # The sha module implements the SHA checksum algorithm.
236 # (NIST's Secure Hash Algorithm.)
240 # The mpz module interfaces to the GNU Multiple Precision library.
241 # You need to ftp the GNU MP library.
242 # The GMP variable must point to the GMP source directory.
243 # This was originally written and tested against GMP 1.2 and 1.3.2.
244 # It has been modified by Rob Hooft to work with 2.0.2 as well, but I
245 # haven't tested it recently.
247 # A compatible MP library unencombered by the GPL also exists. It was
248 # posted to comp.sources.misc in volume 40 and is widely available from
249 # FTP archive sites. One URL for it is:
250 # ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z
252 #GMP=/ufs/guido/src/gmp
253 #mpz mpzmodule.c -I$(GMP) $(GMP)/libgmp.a
256 # SGI IRIX specific modules -- off by default.
258 # These module work on any SGI machine:
260 # *** gl must be enabled higher up in this file ***
261 #fm fmmodule.c $(GLHACK) -lfm -lgl # Font Manager
262 #sgi sgimodule.c # sgi.nap() and a few more
264 # This module requires the header file
265 # /usr/people/4Dgifts/iristools/include/izoom.h:
266 #imgfile imgfile.c -limage -lgutil -lgl -lm # Image Processing Utilities
269 # These modules require the Multimedia Development Option (I think):
271 #al almodule.c -laudio # Audio Library
272 #cd cdmodule.c -lcdaudio -lds -lmediad # CD Audio Library
273 #cl clmodule.c -lcl -lawareaudio # Compression Library
274 #sv svmodule.c yuvconvert.c -lsvideo -lXext -lX11 # Starter Video
277 # The FORMS library, by Mark Overmars, implements user interface
278 # components such as dialogs and buttons using SGI's GL and FM
279 # libraries. You must ftp the FORMS library separately from
280 # ftp://ftp.cs.ruu.nl/pub/SGI/FORMS. It was tested with FORMS 2.2a.
281 # NOTE: if you want to be able to use FORMS and curses simultaneously
282 # (or both link them statically into the same binary), you must
283 # compile all of FORMS with the cc option "-Dclear=__GLclear".
285 # The FORMS variable must point to the FORMS subdirectory of the forms
286 # toplevel directory:
288 #FORMS=/ufs/guido/src/forms/FORMS
289 #fl flmodule.c -I$(FORMS) $(GLHACK) $(FORMS)/libforms.a -lfm -lgl
292 # SunOS specific modules -- off by default:
294 #sunaudiodev sunaudiodev.c
297 # A Linux specific module -- off by default; this may also work on
300 #linuxaudiodev linuxaudiodev.c
303 # George Neville-Neil's timing module:
305 #timing timingmodule.c
308 # The _tkinter module.
310 # The command for _tkinter is long and site specific. Please
311 # uncomment and/or edit those parts as indicated. If you don't have a
312 # specific extension (e.g. Tix or BLT), leave the corresponding line
313 # commented out. (Leave the trailing backslashes in! If you
314 # experience strange errors, you may want to join all uncommented
315 # lines and remove the backslashes -- the backslash interpretation is
316 # done by the shell's "read" command and it may not be implemented on
319 # *** Always uncomment this (leave the leading underscore in!):
320 # _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
321 # *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
323 # *** Uncomment and edit to reflect where your Tcl/Tk headers are:
324 # -I/usr/local/include \
325 # *** Uncomment and edit to reflect where your X11 header files are:
326 # -I/usr/X11R6/include \
327 # *** Or uncomment this for Solaris:
328 # -I/usr/openwin/include \
329 # *** Uncomment and edit for Tix extension only:
330 # -DWITH_TIX -ltix8.1.8.2 \
331 # *** Uncomment and edit for BLT extension only:
332 # -DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \
333 # *** Uncomment and edit for PIL (TkImaging) extension only:
334 # (See http://www.pythonware.com/products/pil/ for more info)
335 # -DWITH_PIL -I../Extensions/Imaging/libImaging tkImaging.c \
336 # *** Uncomment and edit for TOGL extension only:
337 # -DWITH_TOGL togl.c \
338 # *** Uncomment and edit to reflect your Tcl/Tk versions:
340 # *** Uncomment and edit to reflect where your X11 libraries are:
342 # *** Or uncomment this for Solaris:
343 # -L/usr/openwin/lib \
344 # *** Uncomment these for TOGL extension only:
345 # -lGL -lGLU -lXext -lXmu \
346 # *** Uncomment for AIX:
348 # *** Always uncomment this; X11 libraries to link with:
351 # Lance Ellinghaus's modules:
353 #rotor rotormodule.c # enigma-inspired encryption
354 #syslog syslogmodule.c # syslog daemon interface
357 # Curses support, requring the System V version of curses, often
358 # provided by the ncurses library. e.g. on Linux, link with -lncurses
359 # instead of -lcurses; on SunOS 4.1.3, insert -I/usr/5include
360 # -L/usr/5lib before -lcurses).
362 # First, look at Setup.config; configure may have set this for you.
364 #_curses _cursesmodule.c -lcurses -ltermcap
365 # Wrapper for the panel library that's part of ncurses and SYSV curses.
366 #_curses_panel _curses_panel.c -lpanel -lncurses
369 # Generic (SunOS / SVR4) dynamic loading module.
370 # This is not needed for dynamic loading of Python modules --
371 # it is a highly experimental and dangerous device for calling
372 # *arbitrary* C functions in *arbitrary* shared libraries:
377 # Modules that provide persistent dictionary-like semantics. You will
378 # probably want to arrange for at least one of them to be available on
379 # your machine, though none are defined by default because of library
380 # dependencies. The Python module anydbm.py provides an
381 # implementation independent wrapper for these; dumbdbm.py provides
382 # similar functionality (but slower of course) implemented in Python.
384 # The standard Unix dbm module has been moved to Setup.config so that
385 # it will be compiled as a shared library by default. Compiling it as
386 # a built-in module causes conflicts with the pybsddb3 module since it
387 # creates a static dependency on an out-of-date version of db.so.
389 # First, look at Setup.config; configure may have set this for you.
391 #dbm dbmmodule.c # dbm(3) may require -lndbm or similar
393 # Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
395 # First, look at Setup.config; configure may have set this for you.
397 #gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
400 # Sleepycat Berkeley DB interface.
402 # This requires the Sleepycat DB code, see http://www.sleepycat.com/
403 # The earliest supported version of that library is 3.0, the latest
404 # supported version is 4.0 (4.1 is specifically not supported, as that
405 # changes the semantics of transactional databases). A list of available
406 # releases can be found at
408 # http://www.sleepycat.com/update/index.html
410 # Edit the variables DB and DBLIBVERto point to the db top directory
411 # and the subdirectory of PORT where you built it.
412 #DB=/usr/local/BerkeleyDB.4.0
416 #_bsddb _bsddb.c -I$(DBINC) -L$(DBLIB) -ldb-$(DBLIBVER
418 # Historical Berkeley DB 1.85
420 # This module is deprecated; the 1.85 version of the Berkeley DB library has
421 # bugs that can cause data corruption. If you can, use later versions of the
422 # library instead, available from <http://www.sleepycat.com/>.
424 #DB=/depot/sundry/src/berkeley-db/db.1.85
425 #DBPORT=$(DB)/PORT/irix.5.3
426 #bsddb185 bsddbmodule.c -I$(DBPORT)/include -I$(DBPORT) $(DBPORT)/libdb.a
430 # Helper module for various ascii-encoders
433 # Fred Drake's interface to the Python parser
434 #parser parsermodule.c
436 # cStringIO and cPickle
437 #cStringIO cStringIO.c
441 # Lee Busby's SIGFPE modules.
442 # The library to link fpectl with is platform specific.
443 # Choose *one* of the options below for fpectl:
445 # For SGI IRIX (tested on 5.3):
446 #fpectl fpectlmodule.c -lfpe
448 # For Solaris with SunPro compiler (tested on Solaris 2.5 with SunPro C 4.2):
449 # (Without the compiler you don't have -lsunmath.)
450 #fpectl fpectlmodule.c -R/opt/SUNWspro/lib -lsunmath -lm
452 # For other systems: see instructions in fpectlmodule.c.
453 #fpectl fpectlmodule.c ...
455 # Test module for fpectl. No extra libraries needed.
456 #fpetest fpetestmodule.c
458 # Andrew Kuchling's zlib module.
459 # This require zlib 1.1.3 (or later).
460 # See http://www.cdrom.com/pub/infozip/zlib/
461 #zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
463 # Interface to the Expat XML parser
465 # Expat was written by James Clark and is now maintained by a group of
466 # developers on SourceForge; see www.libexpat.org for more
467 # information. The pyexpat module was written by Paul Prescod after a
468 # prototype by Jack Jansen. Source of Expat 1.95.2 is included in
469 # Modules/expat/. Usage of a system shared libexpat.so/expat.dll is
472 # More information on Expat can be found at www.libexpat.org.
474 #EXPAT_DIR=/usr/local/src/expat-1.95.2
475 #pyexpat pyexpat.c -DHAVE_EXPAT_H -I$(EXPAT_DIR)/lib -L$(EXPAT_DIR) -lexpat
477 # Wrapper for iconv(3). This requires either GNU iconv, or a native
478 # iconv implementation (only Linux, Solaris, and BSD are known to work)
479 #_iconv_codec _iconv_codec -I$(prefix)/include -L$(exec_prefix)/lib -liconv
481 # Example -- included for reference only:
484 # Another example -- the 'xxsubtype' module shows C-level subtyping in action
485 xxsubtype xxsubtype.c