blob: 173dfcc23485683f71369601b3ff49ea5a345d4e [file] [log] [blame]
Barry Warsawc7736b91997-09-04 13:05:14 +00001# -*- makefile -*-
Guido van Rossumb6775db1994-08-01 11:34:53 +00002# 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
Fred Drakecf3bc8c2000-10-26 17:07:40 +00005# Setup.dist; once it exists it will not be overwritten, so you can edit
Guido van Rossumf4449de1995-04-10 11:37:18 +00006# Setup to your heart's content. Note that Makefile.pre is created
7# from Makefile.pre.in by the toplevel configure script.
Guido van Rossumb6775db1994-08-01 11:34:53 +00008
9# (VPATH notes: Setup and Makefile.pre are in the build directory, as
Fred Drakecf3bc8c2000-10-26 17:07:40 +000010# are Makefile and config.c; the *.in and *.dist files are in the source
Guido van Rossumb6775db1994-08-01 11:34:53 +000011# directory.)
12
Guido van Rossumfba715a1994-01-02 00:26:09 +000013# Each line in this file describes one or more optional modules.
Andrew M. Kuchlingab354bb2001-02-27 03:29:52 +000014# 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.
16
Guido van Rossumfba715a1994-01-02 00:26:09 +000017# Lines have the following structure:
18#
Guido van Rossumf6971e21994-08-30 12:25:20 +000019# <module> ... [<sourcefile> ...] [<cpparg> ...] [<library> ...]
Guido van Rossumfba715a1994-01-02 00:26:09 +000020#
Guido van Rossumf6971e21994-08-30 12:25:20 +000021# <sourcefile> is anything ending in .c (.C, .cc, .c++ are C++ files)
Guido van Rossumfba715a1994-01-02 00:26:09 +000022# <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)
26#
Guido van Rossum613b9431996-08-20 19:50:17 +000027# (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.)
30#
Guido van Rossumfba715a1994-01-02 00:26:09 +000031# Lines can also have the form
32#
33# <name> = <value>
34#
35# which defines a Make variable definition inserted into Makefile.in
Guido van Rossum7cc5abd1994-09-12 10:42:20 +000036#
Guido van Rossum30e817e1997-12-02 16:46:39 +000037# Finally, if a line contains just the word "*shared*" (without the
38# quotes but with the stars), then the following modules will not be
Martin v. Löwisbbeb1e62002-04-19 09:47:23 +000039# built statically. The build process works like this:
40#
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
48#
49# Therefore, modules declared to be shared will not be
Guido van Rossum30e817e1997-12-02 16:46:39 +000050# 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
Martin v. Löwisbbeb1e62002-04-19 09:47:23 +000052# added to the linker options. Rules to create their .o files and
Guido van Rossum30e817e1997-12-02 16:46:39 +000053# their shared libraries will still be added to the Makefile, and
54# their names will be collected in the Make variable SHAREDMODS. This
Guido van Rossum7fef86e1998-10-07 14:41:54 +000055# 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,
Guido van Rossum30e817e1997-12-02 16:46:39 +000058# *noconfig* has the same effect as *shared*.)
Guido van Rossumb71c5701999-02-22 18:11:18 +000059#
Martin v. Löwisbbeb1e62002-04-19 09:47:23 +000060# In addition, *static* explicitly declares the following modules to
61# be static. Lines containing "*static*" and "*shared*" may thus
Thomas Wouters0e3f5912006-08-11 14:57:12 +000062# alternate throughout this file.
Guido van Rossumb6775db1994-08-01 11:34:53 +000063
Guido van Rossumfba715a1994-01-02 00:26:09 +000064# 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
Guido van Rossumf4449de1995-04-10 11:37:18 +000067# to ftp sources from elsewhere.
Guido van Rossumfba715a1994-01-02 00:26:09 +000068
69
Guido van Rossumb6775db1994-08-01 11:34:53 +000070# 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!
73
Guido van Rossum0c5e3c81996-07-31 17:49:01 +000074# Directories where library files get installed.
75# DESTLIB is for Python modules; MACHDESTLIB for shared libraries.
76DESTLIB=$(LIBDEST)
77MACHDESTLIB=$(BINLIBDEST)
Guido van Rossumb6775db1994-08-01 11:34:53 +000078
Guido van Rossum97227811997-04-11 17:19:54 +000079# NOTE: all the paths are now relative to the prefix that is computed
80# at run time!
81
Guido van Rossum0c5e3c81996-07-31 17:49:01 +000082# Standard path -- don't edit.
Guido van Rossum97227811997-04-11 17:19:54 +000083# No leading colon since this is the first entry.
84# Empty since this is now just the runtime prefix.
85DESTPATH=
Guido van Rossum1c206481995-09-13 18:39:04 +000086
Guido van Rossum0c5e3c81996-07-31 17:49:01 +000087# Site specific path components -- should begin with : if non-empty
88SITEPATH=
89
90# Standard path components for test modules
Guido van Rossum7d83a5e1999-02-08 21:49:22 +000091TESTPATH=
Guido van Rossumb6775db1994-08-01 11:34:53 +000092
Guido van Rossumd3c1bd31996-07-30 16:54:03 +000093# Path components for machine- or system-dependent modules and shared libraries
Guido van Rossuma9f02b81997-09-28 05:45:40 +000094MACHDEPPATH=:plat-$(MACHDEP)
Jack Jansen7b59b422003-03-17 15:44:10 +000095EXTRAMACHDEPPATH=
Guido van Rossumb6775db1994-08-01 11:34:53 +000096
Andrew M. Kuchling93b747e2001-01-27 01:31:35 +000097# Path component for the Tkinter-related modules
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +000098# The TKPATH variable is always enabled, to save you the effort.
Andrew M. Kuchling93b747e2001-01-27 01:31:35 +000099TKPATH=:lib-tk
100
Jack Jansen7b59b422003-03-17 15:44:10 +0000101COREPYTHONPATH=$(DESTPATH)$(SITEPATH)$(TESTPATH)$(MACHDEPPATH)$(EXTRAMACHDEPPATH)$(TKPATH)
Guido van Rossumf5e0ea81994-09-12 15:35:36 +0000102PYTHONPATH=$(COREPYTHONPATH)
Guido van Rossumb6775db1994-08-01 11:34:53 +0000103
104
Guido van Rossumcaffcdf1995-03-10 15:14:13 +0000105# 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.
Guido van Rossum05bf2801994-10-20 22:01:38 +0000108
Andrew M. Kuchling3712d392001-01-17 18:55:13 +0000109# This only contains the minimal set of modules required to run the
110# setup.py script in the root of the Python source tree.
Guido van Rossumcaffcdf1995-03-10 15:14:13 +0000111
112posix posixmodule.c # posix (UNIX) system calls
Fred Drake5f8a23f2002-08-05 18:06:17 +0000113errno errnomodule.c # posix (UNIX) errno values
Georg Brandlcd4d1e82005-12-27 17:37:07 +0000114pwd pwdmodule.c # this is needed to find out the user's home dir
115 # if $HOME is not set
Guido van Rossume5679352000-03-31 15:01:27 +0000116_sre _sre.c # Fredrik Lundh's new regular expressions
Marc-André Lemburgb28de0d2002-12-12 17:37:50 +0000117_codecs _codecsmodule.c # access to the builtin codecs and codec registry
Guido van Rossumcaffcdf1995-03-10 15:14:13 +0000118
Just van Rossum52e14d62002-12-30 22:08:05 +0000119# The zipimport module is always imported at startup. Having it as a
120# builtin module avoids some bootstrapping problems and reduces overhead.
121zipimport zipimport.c
122
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000123# The rest of the modules listed in this file are all commented out by
124# default. Usually they can be detected and built as dynamically
125# loaded modules by the new setup.py script added in Python 2.1. If
126# you're on a platform that doesn't support dynamic loading, want to
127# compile modules statically into the Python binary, or need to
128# specify some odd set of compiler switches, you can uncomment the
129# appropriate lines below.
130
131# ======================================================================
132
Jeremy Hyltona25d9952001-10-17 13:46:44 +0000133# The Python symtable module depends on .h files that setup.py doesn't track
134_symtable symtablemodule.c
135
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000136# The SGI specific GL module:
137
138GLHACK=-Dclear=__GLclear
139#gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
140
141# Pure module. Cannot be linked dynamically.
142# -DWITH_QUANTIFY, -DWITH_PURIFY, or -DWITH_ALL_PURE
143#WHICH_PURE_PRODUCTS=-DWITH_ALL_PURE
144#PURE_INCLS=-I/usr/local/include
145#PURE_STUBLIBS=-L/usr/local/lib -lpurify_stubs -lquantify_stubs
146#pure puremodule.c $(WHICH_PURE_PRODUCTS) $(PURE_INCLS) $(PURE_STUBLIBS)
147
148# Uncommenting the following line tells makesetup that all following
149# modules are to be built as shared libraries (see above for more
150# detail; also note that *static* reverses this effect):
151
152#*shared*
153
154# GNU readline. Unlike previous Python incarnations, GNU readline is
155# now incorporated in an optional module, configured in the Setup file
156# instead of by a configure script switch. You may have to insert a
157# -L option pointing to the directory where libreadline.* lives,
158# and you may have to change -ltermcap to -ltermlib or perhaps remove
159# it, depending on your system -- see the GNU readline instructions.
160# It's okay for this to be a shared library, too.
161
162#readline readline.c -lreadline -ltermcap
163
164
165# Modules that should always be present (non UNIX dependent):
166
167#array arraymodule.c # array objects
168#cmath cmathmodule.c # -lm # complex math library functions
169#math mathmodule.c # -lm # math library functions, e.g. sin()
Thomas Wouters477c8d52006-05-27 19:21:47 +0000170#_struct _struct.c # binary structure packing/unpacking
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000171#time timemodule.c # -lm # time operations and variables
172#operator operator.c # operator.add() and similar goodies
Fred Drake2de74712001-02-01 05:26:54 +0000173#_weakref _weakref.c # basic weak reference support
Tim Petersf36fb692001-02-04 09:18:21 +0000174#_testcapi _testcapimodule.c # Python C API test module
Raymond Hettinger2a2385d2005-03-09 23:46:11 +0000175#_random _randommodule.c # Random number generator
176#collections collectionsmodule.c # Container types
177#itertools itertoolsmodule.c # Functions creating iterators for efficient looping
178#strop stropmodule.c # String manipulations
Collin Winter670e6922007-03-21 02:57:17 +0000179#atexit atexitmodule.c # Register functions to be run at interpreter-shutdown
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000180
Martin v. Löwis76192ee2001-02-06 09:34:40 +0000181#unicodedata unicodedata.c # static Unicode character database
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000182
Martin v. Löwis19d17342003-06-14 21:03:05 +0000183# access to ISO C locale support
184#_locale _localemodule.c # -lintl
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000185
186
187# Modules with some UNIX dependencies -- on by default:
188# (If you have a really backward UNIX, select and socket may not be
189# supported...)
190
191#fcntl fcntlmodule.c # fcntl(2) and ioctl(2)
Martin v. Löwisc3001752005-01-23 09:27:24 +0000192#spwd spwdmodule.c # spwd(3)
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000193#grp grpmodule.c # grp(3)
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000194#select selectmodule.c # select(2); not on ancient System V
195
196# Memory-mapped files (also works on Win32).
197#mmap mmapmodule.c
198
Skip Montanaro24979822003-03-20 23:37:24 +0000199# CSV file helper
200#_csv _csv.c
201
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000202# Socket module helper for socket(2)
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000203#_socket socketmodule.c
204
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000205# Socket module helper for SSL support; you must comment out the other
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000206# socket line above, and possibly edit the SSL variable:
207#SSL=/usr/local/ssl
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000208#_ssl _ssl.c \
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000209# -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
210# -L$(SSL)/lib -lssl -lcrypto
211
212# The crypt module is now disabled by default because it breaks builds
213# on many systems (where -lcrypt is needed), e.g. Linux (I believe).
214#
215# First, look at Setup.config; configure may have set this for you.
216
217#crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
218
219
220# Some more UNIX dependent modules -- off by default, since these
221# are not supported by all UNIX systems:
222
223#nis nismodule.c -lnsl # Sun yellow pages -- not everywhere
224#termios termios.c # Steen Lumholt's termios module
225#resource resource.c # Jeremy Hylton's rlimit interface
226
227
228# Multimedia modules -- off by default.
229# These don't work for 64-bit platforms!!!
Martin v. Löwis8fbefe22004-07-19 16:42:20 +0000230# #993173 says audioop works on 64-bit platforms, though.
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000231# These represent audio samples or images as strings:
232
233#audioop audioop.c # Operations on audio samples
234#imageop imageop.c # Operations on images
235#rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably)
236
237
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000238# Note that the _md5 and _sha modules are normally only built if the
239# system does not have the OpenSSL libs containing an optimized version.
240
241# The _md5 module implements the RSA Data Security, Inc. MD5
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000242# Message-Digest Algorithm, described in RFC 1321. The necessary files
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000243# md5.c and md5.h are included here.
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000244
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000245#_md5 md5module.c md5.c
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000246
247
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000248# The _sha module implements the SHA checksum algorithm.
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000249# (NIST's Secure Hash Algorithm.)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000250#_sha shamodule.c
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000251
252
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000253# SGI IRIX specific modules -- off by default.
254
255# These module work on any SGI machine:
256
257# *** gl must be enabled higher up in this file ***
258#fm fmmodule.c $(GLHACK) -lfm -lgl # Font Manager
259#sgi sgimodule.c # sgi.nap() and a few more
260
261# This module requires the header file
262# /usr/people/4Dgifts/iristools/include/izoom.h:
263#imgfile imgfile.c -limage -lgutil -lgl -lm # Image Processing Utilities
264
265
266# These modules require the Multimedia Development Option (I think):
267
268#al almodule.c -laudio # Audio Library
269#cd cdmodule.c -lcdaudio -lds -lmediad # CD Audio Library
270#cl clmodule.c -lcl -lawareaudio # Compression Library
271#sv svmodule.c yuvconvert.c -lsvideo -lXext -lX11 # Starter Video
272
273
274# The FORMS library, by Mark Overmars, implements user interface
275# components such as dialogs and buttons using SGI's GL and FM
276# libraries. You must ftp the FORMS library separately from
277# ftp://ftp.cs.ruu.nl/pub/SGI/FORMS. It was tested with FORMS 2.2a.
278# NOTE: if you want to be able to use FORMS and curses simultaneously
279# (or both link them statically into the same binary), you must
280# compile all of FORMS with the cc option "-Dclear=__GLclear".
281
282# The FORMS variable must point to the FORMS subdirectory of the forms
283# toplevel directory:
284
285#FORMS=/ufs/guido/src/forms/FORMS
286#fl flmodule.c -I$(FORMS) $(GLHACK) $(FORMS)/libforms.a -lfm -lgl
287
288
289# SunOS specific modules -- off by default:
290
291#sunaudiodev sunaudiodev.c
292
293
Andrew M. Kuchlingab354bb2001-02-27 03:29:52 +0000294# A Linux specific module -- off by default; this may also work on
295# some *BSDs.
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000296
297#linuxaudiodev linuxaudiodev.c
298
299
300# George Neville-Neil's timing module:
301
302#timing timingmodule.c
303
304
305# The _tkinter module.
306#
307# The command for _tkinter is long and site specific. Please
308# uncomment and/or edit those parts as indicated. If you don't have a
309# specific extension (e.g. Tix or BLT), leave the corresponding line
310# commented out. (Leave the trailing backslashes in! If you
311# experience strange errors, you may want to join all uncommented
312# lines and remove the backslashes -- the backslash interpretation is
313# done by the shell's "read" command and it may not be implemented on
314# every system.
315
316# *** Always uncomment this (leave the leading underscore in!):
317# _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
Guido van Rossum86525222001-03-22 22:18:55 +0000318# *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
319# -L/usr/local/lib \
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000320# *** Uncomment and edit to reflect where your Tcl/Tk headers are:
321# -I/usr/local/include \
322# *** Uncomment and edit to reflect where your X11 header files are:
323# -I/usr/X11R6/include \
324# *** Or uncomment this for Solaris:
325# -I/usr/openwin/include \
326# *** Uncomment and edit for Tix extension only:
Guido van Rossum86525222001-03-22 22:18:55 +0000327# -DWITH_TIX -ltix8.1.8.2 \
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000328# *** Uncomment and edit for BLT extension only:
329# -DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \
330# *** Uncomment and edit for PIL (TkImaging) extension only:
331# (See http://www.pythonware.com/products/pil/ for more info)
332# -DWITH_PIL -I../Extensions/Imaging/libImaging tkImaging.c \
333# *** Uncomment and edit for TOGL extension only:
334# -DWITH_TOGL togl.c \
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000335# *** Uncomment and edit to reflect your Tcl/Tk versions:
Guido van Rossum86525222001-03-22 22:18:55 +0000336# -ltk8.2 -ltcl8.2 \
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000337# *** Uncomment and edit to reflect where your X11 libraries are:
338# -L/usr/X11R6/lib \
339# *** Or uncomment this for Solaris:
340# -L/usr/openwin/lib \
341# *** Uncomment these for TOGL extension only:
342# -lGL -lGLU -lXext -lXmu \
343# *** Uncomment for AIX:
344# -lld \
345# *** Always uncomment this; X11 libraries to link with:
346# -lX11
347
Andrew M. Kuchling4e699d52004-08-31 13:50:12 +0000348# Lance Ellinghaus's syslog module
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000349#syslog syslogmodule.c # syslog daemon interface
350
351
352# Curses support, requring the System V version of curses, often
353# provided by the ncurses library. e.g. on Linux, link with -lncurses
Skip Montanaroce59c042004-01-17 14:19:44 +0000354# instead of -lcurses).
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000355#
356# First, look at Setup.config; configure may have set this for you.
357
358#_curses _cursesmodule.c -lcurses -ltermcap
359# Wrapper for the panel library that's part of ncurses and SYSV curses.
360#_curses_panel _curses_panel.c -lpanel -lncurses
361
362
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000363# Generic (SunOS / SVR4) dynamic loading module.
364# This is not needed for dynamic loading of Python modules --
365# it is a highly experimental and dangerous device for calling
366# *arbitrary* C functions in *arbitrary* shared libraries:
367
368#dl dlmodule.c
369
370
371# Modules that provide persistent dictionary-like semantics. You will
372# probably want to arrange for at least one of them to be available on
373# your machine, though none are defined by default because of library
374# dependencies. The Python module anydbm.py provides an
375# implementation independent wrapper for these; dumbdbm.py provides
376# similar functionality (but slower of course) implemented in Python.
377
378# The standard Unix dbm module has been moved to Setup.config so that
379# it will be compiled as a shared library by default. Compiling it as
380# a built-in module causes conflicts with the pybsddb3 module since it
381# creates a static dependency on an out-of-date version of db.so.
382#
383# First, look at Setup.config; configure may have set this for you.
384
385#dbm dbmmodule.c # dbm(3) may require -lndbm or similar
386
387# Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
388#
389# First, look at Setup.config; configure may have set this for you.
390
391#gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
392
393
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000394# Sleepycat Berkeley DB interface.
395#
396# This requires the Sleepycat DB code, see http://www.sleepycat.com/
Martin v. Löwis21645fc2002-11-19 08:30:08 +0000397# The earliest supported version of that library is 3.0, the latest
398# supported version is 4.0 (4.1 is specifically not supported, as that
399# changes the semantics of transactional databases). A list of available
400# releases can be found at
401#
402# http://www.sleepycat.com/update/index.html
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000403#
404# Edit the variables DB and DBLIBVERto point to the db top directory
405# and the subdirectory of PORT where you built it.
406#DB=/usr/local/BerkeleyDB.4.0
407#DBLIBVER=4.0
408#DBINC=$(DB)/include
409#DBLIB=$(DB)/lib
Gustavo Niemeyer3d5cbea2003-05-26 21:19:47 +0000410#_bsddb _bsddb.c -I$(DBINC) -L$(DBLIB) -ldb-$(DBLIBVER)
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000411
412# Historical Berkeley DB 1.85
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000413#
Skip Montanaro56643672002-12-02 00:27:10 +0000414# This module is deprecated; the 1.85 version of the Berkeley DB library has
415# bugs that can cause data corruption. If you can, use later versions of the
416# library instead, available from <http://www.sleepycat.com/>.
417
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000418#DB=/depot/sundry/src/berkeley-db/db.1.85
419#DBPORT=$(DB)/PORT/irix.5.3
Martin v. Löwis6aa4a1f2002-11-19 08:09:52 +0000420#bsddb185 bsddbmodule.c -I$(DBPORT)/include -I$(DBPORT) $(DBPORT)/libdb.a
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000421
422
423
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000424# Helper module for various ascii-encoders
425#binascii binascii.c
426
427# Fred Drake's interface to the Python parser
428#parser parsermodule.c
429
Guido van Rossum2e1c09c2002-04-04 17:52:50 +0000430# cStringIO and cPickle
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000431#cStringIO cStringIO.c
432#cPickle cPickle.c
433
434
435# Lee Busby's SIGFPE modules.
436# The library to link fpectl with is platform specific.
437# Choose *one* of the options below for fpectl:
438
439# For SGI IRIX (tested on 5.3):
440#fpectl fpectlmodule.c -lfpe
441
442# For Solaris with SunPro compiler (tested on Solaris 2.5 with SunPro C 4.2):
443# (Without the compiler you don't have -lsunmath.)
444#fpectl fpectlmodule.c -R/opt/SUNWspro/lib -lsunmath -lm
445
446# For other systems: see instructions in fpectlmodule.c.
447#fpectl fpectlmodule.c ...
448
449# Test module for fpectl. No extra libraries needed.
450#fpetest fpetestmodule.c
451
452# Andrew Kuchling's zlib module.
453# This require zlib 1.1.3 (or later).
Neal Norwitz014f1032004-07-29 03:55:56 +0000454# See http://www.gzip.org/zlib/
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000455#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
456
457# Interface to the Expat XML parser
458#
Fred Drake9d416a72002-08-09 02:39:13 +0000459# Expat was written by James Clark and is now maintained by a group of
460# developers on SourceForge; see www.libexpat.org for more
461# information. The pyexpat module was written by Paul Prescod after a
462# prototype by Jack Jansen. Source of Expat 1.95.2 is included in
463# Modules/expat/. Usage of a system shared libexpat.so/expat.dll is
464# not advised.
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000465#
Fred Drake9d416a72002-08-09 02:39:13 +0000466# More information on Expat can be found at www.libexpat.org.
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000467#
Fred Drake9d416a72002-08-09 02:39:13 +0000468#EXPAT_DIR=/usr/local/src/expat-1.95.2
469#pyexpat pyexpat.c -DHAVE_EXPAT_H -I$(EXPAT_DIR)/lib -L$(EXPAT_DIR) -lexpat
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000470
Hye-Shik Chang3e2a3062004-01-17 14:29:29 +0000471
472# Hye-Shik Chang's CJKCodecs
473
474# multibytecodec is required for all the other CJK codec modules
475#_multibytecodec cjkcodecs/multibytecodec.c
476
Hye-Shik Chang2bb146f2004-07-18 03:06:29 +0000477#_codecs_cn cjkcodecs/_codecs_cn.c
478#_codecs_hk cjkcodecs/_codecs_hk.c
479#_codecs_iso2022 cjkcodecs/_codecs_iso2022.c
480#_codecs_jp cjkcodecs/_codecs_jp.c
481#_codecs_kr cjkcodecs/_codecs_kr.c
482#_codecs_tw cjkcodecs/_codecs_tw.c
Hye-Shik Chang3e2a3062004-01-17 14:29:29 +0000483
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000484# Example -- included for reference only:
485# xx xxmodule.c
486
Tim Peters6d6c1a32001-08-02 04:15:00 +0000487# Another example -- the 'xxsubtype' module shows C-level subtyping in action
488xxsubtype xxsubtype.c