blob: a1c6ec193f06ef1413db9b7ee385a00895ce0ff2 [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
5# Setup.in; 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
Guido van Rossumf4449de1995-04-10 11:37:18 +000010# are Makefile and config.c; the *.in 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.
14# Comment out lines to suppress modules.
15# Lines have the following structure:
16#
Guido van Rossumf6971e21994-08-30 12:25:20 +000017# <module> ... [<sourcefile> ...] [<cpparg> ...] [<library> ...]
Guido van Rossumfba715a1994-01-02 00:26:09 +000018#
Guido van Rossumf6971e21994-08-30 12:25:20 +000019# <sourcefile> is anything ending in .c (.C, .cc, .c++ are C++ files)
Guido van Rossumfba715a1994-01-02 00:26:09 +000020# <cpparg> is anything starting with -I, -D, -U or -C
21# <library> is anything ending in .a or beginning with -l or -L
22# <module> is anything else but should be a valid Python
23# identifier (letters, digits, underscores, beginning with non-digit)
24#
Guido van Rossum613b9431996-08-20 19:50:17 +000025# (As the makesetup script changes, it may recognize some other
26# arguments as well, e.g. *.so and *.sl as libraries. See the big
27# case statement in the makesetup script.)
28#
Guido van Rossumfba715a1994-01-02 00:26:09 +000029# Lines can also have the form
30#
31# <name> = <value>
32#
33# which defines a Make variable definition inserted into Makefile.in
Guido van Rossum7cc5abd1994-09-12 10:42:20 +000034#
Guido van Rossum30e817e1997-12-02 16:46:39 +000035# Finally, if a line contains just the word "*shared*" (without the
36# quotes but with the stars), then the following modules will not be
37# included in the config.c file, nor in the list of objects to be
38# added to the library archive, and their linker options won't be
39# added to the linker options, but rules to create their .o files and
40# their shared libraries will still be added to the Makefile, and
41# their names will be collected in the Make variable SHAREDMODS. This
42# is used to build modules as shared libraries. (They must be
43# installed using "make sharedinstall".) (For compatibility,
44# *noconfig* has the same effect as *shared*.)
Guido van Rossumb6775db1994-08-01 11:34:53 +000045
Guido van Rossumfba715a1994-01-02 00:26:09 +000046# NOTE: As a standard policy, as many modules as can be supported by a
47# platform should be present. The distribution comes with all modules
48# enabled that are supported by most platforms and don't require you
Guido van Rossumf4449de1995-04-10 11:37:18 +000049# to ftp sources from elsewhere.
Guido van Rossumfba715a1994-01-02 00:26:09 +000050
51
Guido van Rossumb6775db1994-08-01 11:34:53 +000052# Some special rules to define PYTHONPATH.
53# Edit the definitions below to indicate which options you are using.
54# Don't add any whitespace or comments!
55
Guido van Rossum0c5e3c81996-07-31 17:49:01 +000056# Directories where library files get installed.
57# DESTLIB is for Python modules; MACHDESTLIB for shared libraries.
58DESTLIB=$(LIBDEST)
59MACHDESTLIB=$(BINLIBDEST)
Guido van Rossumb6775db1994-08-01 11:34:53 +000060
Guido van Rossum97227811997-04-11 17:19:54 +000061# NOTE: all the paths are now relative to the prefix that is computed
62# at run time!
63
Guido van Rossum0c5e3c81996-07-31 17:49:01 +000064# Standard path -- don't edit.
Guido van Rossum97227811997-04-11 17:19:54 +000065# No leading colon since this is the first entry.
66# Empty since this is now just the runtime prefix.
67DESTPATH=
Guido van Rossum1c206481995-09-13 18:39:04 +000068
Guido van Rossum0c5e3c81996-07-31 17:49:01 +000069# Site specific path components -- should begin with : if non-empty
70SITEPATH=
71
72# Standard path components for test modules
Guido van Rossum97227811997-04-11 17:19:54 +000073TESTPATH=:test
Guido van Rossumb6775db1994-08-01 11:34:53 +000074
Guido van Rossumd3c1bd31996-07-30 16:54:03 +000075# Path components for machine- or system-dependent modules and shared libraries
Guido van Rossuma9f02b81997-09-28 05:45:40 +000076MACHDEPPATH=:plat-$(MACHDEP)
Guido van Rossumb6775db1994-08-01 11:34:53 +000077
Guido van Rossum02ca3ab1996-07-30 20:36:59 +000078COREPYTHONPATH=$(DESTPATH)$(SITEPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH)
Guido van Rossumf5e0ea81994-09-12 15:35:36 +000079PYTHONPATH=$(COREPYTHONPATH)
Guido van Rossumb6775db1994-08-01 11:34:53 +000080
81
Guido van Rossumcaffcdf1995-03-10 15:14:13 +000082# The modules listed here can't be built as shared libraries for
83# various reasons; therefore they are listed here instead of in the
84# normal order.
Guido van Rossum05bf2801994-10-20 22:01:38 +000085
Guido van Rossumf4449de1995-04-10 11:37:18 +000086# Some modules that are normally always on:
Guido van Rossumcaffcdf1995-03-10 15:14:13 +000087
Guido van Rossum007c80e1997-07-11 18:40:46 +000088regex regexmodule.c regexpr.c # Regular expressions, GNU Emacs style
Guido van Rossum176bb411997-10-07 16:17:55 +000089pcre pcremodule.c pypcre.c # Regular expressions, Perl style (for re.py)
Guido van Rossumcaffcdf1995-03-10 15:14:13 +000090posix posixmodule.c # posix (UNIX) system calls
91signal signalmodule.c # signal(2)
92
Guido van Rossumf4449de1995-04-10 11:37:18 +000093# The SGI specific GL module:
Guido van Rossumcaffcdf1995-03-10 15:14:13 +000094
Guido van Rossum81058211997-04-29 16:07:45 +000095#gl glmodule.c cgensupport.c -I$(srcdir) -lgl -lX11
Guido van Rossumcaffcdf1995-03-10 15:14:13 +000096
Guido van Rossuma0cbb3d1997-12-04 00:48:27 +000097# The thread module is now automatically enabled, see Setup.thread.
Guido van Rossum05bf2801994-10-20 22:01:38 +000098
Barry Warsawe886ea91997-01-17 00:01:33 +000099# Pure module. Cannot be linked dynamically.
100# -DWITH_QUANTIFY, -DWITH_PURIFY, or -DWITH_ALL_PURE
101#WHICH_PURE_PRODUCTS=-DWITH_ALL_PURE
102#PURE_INCLS=-I/usr/local/include
103#PURE_STUBLIBS=-L/usr/local/lib -lpurify_stubs -lquantify_stubs
104#pure puremodule.c $(WHICH_PURE_PRODUCTS) $(PURE_INCLS) $(PURE_STUBLIBS)
105
Guido van Rossum05bf2801994-10-20 22:01:38 +0000106# Uncommenting the following line tells makesetup that all following
Guido van Rossumf4449de1995-04-10 11:37:18 +0000107# modules are to be built as shared libraries (see above for more
108# detail):
Guido van Rossum05bf2801994-10-20 22:01:38 +0000109
Guido van Rossum613b9431996-08-20 19:50:17 +0000110#*shared*
Guido van Rossum05bf2801994-10-20 22:01:38 +0000111
Guido van Rossum0969d361997-08-05 21:27:50 +0000112# GNU readline. Unlike previous Python incarnations, GNU readline is
113# now incorporated in an optional module, configured in the Setup file
114# instead of by a configure script switch. You may have to insert a
115# -L option pointing to the directory where libreadline.* lives,
116# and you may have to change -ltermcap to -ltermlib or perhaps remove
117# it, depending on your system -- see the GNU readline instructions.
118# It's okay for this to be a shared library, too.
119
120#readline readline.c -lreadline -ltermcap
121
Guido van Rossum05bf2801994-10-20 22:01:38 +0000122
Guido van Rossumf4449de1995-04-10 11:37:18 +0000123# Modules that should always be present (non UNIX dependent):
Guido van Rossumfba715a1994-01-02 00:26:09 +0000124
Guido van Rossumf6971e21994-08-30 12:25:20 +0000125array arraymodule.c # array objects
Guido van Rossum613b9431996-08-20 19:50:17 +0000126cmath cmathmodule.c # -lm # complex math library functions
127math mathmodule.c # -lm # math library functions, e.g. sin()
Guido van Rossumf6971e21994-08-30 12:25:20 +0000128strop stropmodule.c # fast string operations implemented in C
129struct structmodule.c # binary structure packing/unpacking
Guido van Rossum613b9431996-08-20 19:50:17 +0000130time timemodule.c # -lm # time operations and variables
Guido van Rossumd3c1bd31996-07-30 16:54:03 +0000131operator operator.c # operator.add() and similar goodies
Guido van Rossumfba715a1994-01-02 00:26:09 +0000132
Guido van Rossum3df69bc1997-11-19 18:57:48 +0000133#_locale _localemodule.c # access to ISO C locale support
134
Guido van Rossumfba715a1994-01-02 00:26:09 +0000135
Guido van Rossumf4449de1995-04-10 11:37:18 +0000136# Modules with some UNIX dependencies -- on by default:
Guido van Rossumb6775db1994-08-01 11:34:53 +0000137# (If you have a really backward UNIX, select and socket may not be
138# supported...)
Guido van Rossumfba715a1994-01-02 00:26:09 +0000139
Guido van Rossumf6971e21994-08-30 12:25:20 +0000140fcntl fcntlmodule.c # fcntl(2) and ioctl(2)
141pwd pwdmodule.c # pwd(3)
142grp grpmodule.c # grp(3)
Guido van Rossumf6971e21994-08-30 12:25:20 +0000143select selectmodule.c # select(2); not on ancient System V
144socket socketmodule.c # socket(2); not on ancient System V
Guido van Rossumd3c1bd31996-07-30 16:54:03 +0000145errno errnomodule.c # posix (UNIX) errno values
Guido van Rossumfba715a1994-01-02 00:26:09 +0000146
Guido van Rossumf58575e1997-12-02 03:23:01 +0000147# The crypt module is now disabled by default because it breaks builds
148# on many systems (where -lcrypt is needed), e.g. Linux (I believe).
149#crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
150
Guido van Rossumfba715a1994-01-02 00:26:09 +0000151
Guido van Rossumb6775db1994-08-01 11:34:53 +0000152# Some more UNIX dependent modules -- off by default, since these
Guido van Rossumf4449de1995-04-10 11:37:18 +0000153# are not supported by all UNIX systems:
Guido van Rossumb6775db1994-08-01 11:34:53 +0000154
Guido van Rossumf6971e21994-08-30 12:25:20 +0000155#nis nismodule.c # Sun yellow pages -- not everywhere
Guido van Rossum7cc5abd1994-09-12 10:42:20 +0000156#termios termios.c # Steen Lumholt's termios module
Guido van Rossum2e631391996-12-18 18:37:27 +0000157#resource resource.c # Jeremy Hylton's rlimit interface
Guido van Rossumb6775db1994-08-01 11:34:53 +0000158
159
Guido van Rossum3f0bff61997-09-03 00:44:14 +0000160# Multimedia modules -- off by default.
Guido van Rossum8700fe61997-11-22 17:35:19 +0000161# These don't work for 64-bit platforms!!!
Guido van Rossumf4449de1995-04-10 11:37:18 +0000162# These represent audio samples or images as strings:
Guido van Rossumfba715a1994-01-02 00:26:09 +0000163
Guido van Rossum3f0bff61997-09-03 00:44:14 +0000164#audioop audioop.c # Operations on audio samples
165#imageop imageop.c # Operations on images
166#rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably)
Guido van Rossumfba715a1994-01-02 00:26:09 +0000167
168
169# The stdwin module provides a simple, portable (between X11 and Mac)
170# windowing interface. You need to ftp the STDWIN library, e.g. from
Guido van Rossumf4449de1995-04-10 11:37:18 +0000171# ftp://ftp.cwi.nl/pub/stdwin. (If you get it elsewhere, be sure to
172# get version 1.0 or higher!) The STDWIN variable must point to the
173# STDWIN toplevel directory.
Guido van Rossumfba715a1994-01-02 00:26:09 +0000174
Guido van Rossumf4449de1995-04-10 11:37:18 +0000175# Uncomment and edit as needed:
Guido van Rossum7cc5abd1994-09-12 10:42:20 +0000176#STDWIN=/ufs/guido/src/stdwin
Guido van Rossumf4449de1995-04-10 11:37:18 +0000177
178# Uncomment these lines:
Guido van Rossumab61c6b1997-09-08 01:54:43 +0000179#STDWINPATH=:lib-stdwin
Guido van Rossum7cc5abd1994-09-12 10:42:20 +0000180#LIBTEXTEDIT=$(STDWIN)/$(MACHDEP)/Packs/textedit/libtextedit.a
181#LIBX11STDWIN=$(STDWIN)/$(MACHDEP)/Ports/x11/libstdwin.a
Guido van Rossum7cc5abd1994-09-12 10:42:20 +0000182#stdwin stdwinmodule.c -I$(STDWIN)/H $(LIBTEXTEDIT) $(LIBX11STDWIN) -lX11
183
Guido van Rossumf4449de1995-04-10 11:37:18 +0000184# Use this instead of the last two lines above for alphanumeric stdwin:
185#LIBALFASTDWIN=$(STDWIN)/$(MACHDEP)/Ports/alfa/libstdwin.a
Guido van Rossum7cc5abd1994-09-12 10:42:20 +0000186#stdwin stdwinmodule.c -I$(STDWIN)/H $(LIBTEXTEDIT) $(LIBALFASTDWIN) -ltermcap
187
Guido van Rossumfba715a1994-01-02 00:26:09 +0000188
189# The md5 module implements the RSA Data Security, Inc. MD5
190# Message-Digest Algorithm, described in RFC 1321. The necessary files
191# md5c.c and md5.h are included here.
192
Guido van Rossumf6971e21994-08-30 12:25:20 +0000193md5 md5module.c md5c.c
Guido van Rossumfba715a1994-01-02 00:26:09 +0000194
195
196# The mpz module interfaces to the GNU Multiple Precision library.
Guido van Rossumb6775db1994-08-01 11:34:53 +0000197# You need to ftp the GNU MP library.
198# The GMP variable must point to the GMP source directory.
Guido van Rossum272841c1996-08-19 23:06:45 +0000199# This was originally written and tested against GMP 1.2 and 1.3.2.
200# It has been modified by Rob Hooft to work with 2.0.2 as well, but I
201# haven't tested it recently.
Guido van Rossumfba715a1994-01-02 00:26:09 +0000202
Guido van Rossumc3706071994-10-06 16:12:06 +0000203# A compatible MP library unencombered by the GPL also exists. It was
204# posted to comp.sources.misc in volume 40 and is widely available from
205# FTP archive sites. One URL for it is:
206# ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z
207
Guido van Rossumfba715a1994-01-02 00:26:09 +0000208#GMP=/ufs/guido/src/gmp
Guido van Rossumf6971e21994-08-30 12:25:20 +0000209#mpz mpzmodule.c -I$(GMP) $(GMP)/libgmp.a
Guido van Rossumfba715a1994-01-02 00:26:09 +0000210
211
212# SGI IRIX specific modules -- off by default.
Guido van Rossum05bf2801994-10-20 22:01:38 +0000213
Guido van Rossumf4449de1995-04-10 11:37:18 +0000214# These module work on any SGI machine:
Guido van Rossumfba715a1994-01-02 00:26:09 +0000215
Guido van Rossumcaffcdf1995-03-10 15:14:13 +0000216# *** gl must be enabled higher up in this file ***
Guido van Rossum05bf2801994-10-20 22:01:38 +0000217#fm fmmodule.c -lfm -lgl # Font Manager
Guido van Rossum05bf2801994-10-20 22:01:38 +0000218#sgi sgimodule.c # sgi.nap() and a few more
219
220# This module requires the header file
Guido van Rossumf4449de1995-04-10 11:37:18 +0000221# /usr/people/4Dgifts/iristools/include/izoom.h:
Guido van Rossumd3d6f8f1997-05-05 20:48:00 +0000222#imgfile imgfile.c -limage -lgutil -lgl -lm # Image Processing Utilities
Guido van Rossum05bf2801994-10-20 22:01:38 +0000223
224
Guido van Rossumf4449de1995-04-10 11:37:18 +0000225# These modules require the Multimedia Development Option (I think):
Guido van Rossum05bf2801994-10-20 22:01:38 +0000226
227#al almodule.c -laudio # Audio Library
228#cd cdmodule.c -lcdaudio -lds -lmediad # CD Audio Library
229#cl clmodule.c -lcl -lawareaudio # Compression Library
230#sv svmodule.c yuvconvert.c -lsvideo -lXext -lX11 # Starter Video
231
Guido van Rossumfba715a1994-01-02 00:26:09 +0000232
233# The FORMS library, by Mark Overmars, implements user interface
234# components such as dialogs and buttons using SGI's GL and FM
235# libraries. You must ftp the FORMS library separately from
236# ftp://ftp.cs.ruu.nl/pub/SGI/FORMS. It was tested with FORMS 2.2a.
237# The FORMS variable must point to the FORMS subdirectory of the forms
Guido van Rossumf4449de1995-04-10 11:37:18 +0000238# toplevel directory:
Guido van Rossumfba715a1994-01-02 00:26:09 +0000239
240#FORMS=/ufs/guido/src/forms/FORMS
Guido van Rossumbe9f1491994-09-21 12:31:05 +0000241#fl flmodule.c -I$(FORMS) $(FORMS)/libforms.a -lfm -lgl
Guido van Rossumfba715a1994-01-02 00:26:09 +0000242
243
Guido van Rossumf4449de1995-04-10 11:37:18 +0000244# SunOS specific modules -- off by default:
Guido van Rossumfba715a1994-01-02 00:26:09 +0000245
Guido van Rossumbe9f1491994-09-21 12:31:05 +0000246#sunaudiodev sunaudiodev.c
Guido van Rossumfba715a1994-01-02 00:26:09 +0000247
248
Guido van Rossumf4449de1995-04-10 11:37:18 +0000249# George Neville-Neil's timing module:
Guido van Rossumbe9f1491994-09-21 12:31:05 +0000250
251#timing timingmodule.c
Guido van Rossumb6775db1994-08-01 11:34:53 +0000252
253
Guido van Rossum82df03e1996-08-08 19:08:47 +0000254# The _tkinter module.
Guido van Rossumd4837da1995-02-14 09:43:25 +0000255#
Guido van Rossum8700fe61997-11-22 17:35:19 +0000256# The TKPATH variable is always enabled, to save you the effort.
257TKPATH=:lib-tk
Guido van Rossume4485b01994-09-07 14:32:49 +0000258
Guido van Rossum8700fe61997-11-22 17:35:19 +0000259# The command for _tkinter is long and site specific. Please
260# uncomment and/or edit those parts as indicated. If you don't have a
261# specific extension (e.g. Tix or BLT), leave the corresponding line
262# commented out. (Leave the trailing backslashes in! If you
263# experience strange errors, you may want to join all uncommented
264# lines and remove the backslashes -- the backslash interpretation is
265# done by the shell's "read" command and it may not be implemented on
266# every system.
Guido van Rossume4485b01994-09-07 14:32:49 +0000267
Guido van Rossum8700fe61997-11-22 17:35:19 +0000268# *** Always uncomment this (leave the leading underscore in!):
269# _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
Guido van Rossumf58575e1997-12-02 03:23:01 +0000270# *** Uncomment and edit to reflect where your X11 header files are:
Guido van Rossum8700fe61997-11-22 17:35:19 +0000271# -I/usr/X11R6/include \
272# *** Or uncomment this for Solaris:
273# -I/usr/openwin/include \
274# *** Uncomment and edit to reflect where your Tcl/Tk headers are:
275# -I/usr/local/include \
276# *** Uncomment and edit for Tix extension only:
277# -DWITH_TIX -ltix4.1.8.0 \
278# *** Uncomment and edit for BLT extension only:
279# -DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \
280# *** Uncomment and edit for PIL (TkImaging) extension only:
281# -DWITH_PIL -I../Extensions/Imaging/libImaging tkImaging.c \
Guido van Rossum8700fe61997-11-22 17:35:19 +0000282# *** Uncomment and edit for TOGL extension only:
283# -DWITH_TOGL togl.c \
284# *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
285# -L/usr/local/lib \
286# *** Uncomment and edit to reflect your Tcl/Tk versions:
287# -ltk8.0 -ltcl8.0 \
288# *** Uncomment and edit to reflect where your X11 libraries are:
289# -L/usr/X11R6/lib \
290# *** Or uncomment this for Solaris:
291# -L/usr/openwin/lib \
Guido van Rossumf58575e1997-12-02 03:23:01 +0000292# *** Uncomment these for TOGL extension only:
293# -lGL -lGLU -lXext -lXmu \
Guido van Rossumbef74b51997-12-16 18:12:30 +0000294# *** Uncomment for AIX:
295# -lld \
Guido van Rossum8700fe61997-11-22 17:35:19 +0000296# *** Always uncomment this; X11 libraries to link with:
Guido van Rossumf58575e1997-12-02 03:23:01 +0000297# -lX11
Guido van Rossume4485b01994-09-07 14:32:49 +0000298
Guido van Rossumf4449de1995-04-10 11:37:18 +0000299# Lance Ellinghaus's modules:
Guido van Rossumbe9f1491994-09-21 12:31:05 +0000300
Guido van Rossume4485b01994-09-07 14:32:49 +0000301rotor rotormodule.c # enigma-inspired encryption
Guido van Rossumbe9f1491994-09-21 12:31:05 +0000302#syslog syslogmodule.c # syslog daemon interface
Guido van Rossumf8afdcf1995-07-26 17:31:41 +0000303
304
305# Lance's curses module. This requires the System V version of
306# curses, sometimes known as ncurses (e.g. on Linux, link with
Guido van Rossum37ba0bc1995-08-04 04:20:45 +0000307# -lncurses instead of -lcurses; on SunOS 4.1.3, insert -I/usr/5include
308# -L/usr/5lib before -lcurses).
Guido van Rossumf8afdcf1995-07-26 17:31:41 +0000309
310#curses cursesmodule.c -lcurses -ltermcap
Guido van Rossumbe9f1491994-09-21 12:31:05 +0000311
Guido van Rossumb6775db1994-08-01 11:34:53 +0000312
313
Guido van Rossumf4449de1995-04-10 11:37:18 +0000314# Tommy Burnette's 'new' module (creates new empty objects of certain kinds):
Guido van Rossumbe9f1491994-09-21 12:31:05 +0000315
316#new newmodule.c
Guido van Rossumb6775db1994-08-01 11:34:53 +0000317
318
Guido van Rossuma3c04b01995-01-12 11:29:01 +0000319# Generic (SunOS / SVR4) dynamic loading module.
320# This is not needed for dynamic loading of Python modules --
321# it is a highly experimental and dangerous device for calling
Guido van Rossumf4449de1995-04-10 11:37:18 +0000322# *arbitrary* C functions in *arbitrary* shared libraries:
Guido van Rossumbe9f1491994-09-21 12:31:05 +0000323
324#dl dlmodule.c
Guido van Rossumb6775db1994-08-01 11:34:53 +0000325
326
Guido van Rossum9afad041997-12-11 16:20:36 +0000327# Modules that provide persistent dictionary-like semantics. You will
328# probably want to arrange for at least one of them to be available on
329# your machine, though none are defined by default because of library
330# dependencies. The Python module anydbm.py provides an
331# implementation independent wrapper for these; dumbdbm.py provides
332# similar functionality (but slower of course) implemented in Python.
333
334# The standard Unix dbm module:
335
336#dbm dbmmodule.c # dbm(3) may require -lndbm or similar
337
338# Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
Guido van Rossumbe9f1491994-09-21 12:31:05 +0000339
340#gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
Guido van Rossumfba715a1994-01-02 00:26:09 +0000341
Guido van Rossum4b4c6641994-08-08 08:06:37 +0000342
Guido van Rossumd639b451995-08-28 02:59:06 +0000343# Berkeley DB interface.
Guido van Rossumae75f491995-07-18 18:18:11 +0000344#
345# This requires the Berkeley DB code, see
346# ftp://ftp.cs.berkeley.edu/pub/4bsd/db.1.85.tar.gz
347#
348# Edit the variables DB and DBPORT to point to the db top directory
349# and the subdirectory of PORT where you built it.
Guido van Rossum7f400be1997-08-05 02:25:24 +0000350#
351# (See http://www.jenkon-dev.com/~rd/python/ for an interface to
352# BSD DB 2.1.0.)
Guido van Rossumae75f491995-07-18 18:18:11 +0000353
Guido van Rossum9687a9211996-07-24 00:42:42 +0000354#DB=/depot/sundry/src/berkeley-db/db.1.85
355#DBPORT=$(DB)/PORT/irix.5.3
Guido van Rossum007c80e1997-07-11 18:40:46 +0000356#bsddb bsddbmodule.c -I$(DBPORT)/include -I$(DBPORT) $(DBPORT)/libdb.a
Guido van Rossumae75f491995-07-18 18:18:11 +0000357
358
359
Guido van Rossum5d30e741998-04-10 20:44:11 +0000360# David Wayne Williams' soundex module (obsolete -- this will disappear!)
Guido van Rossum31affb21995-06-14 22:31:38 +0000361#soundex soundex.c
362
Jack Jansen72781191995-08-07 14:34:15 +0000363# Helper module for various ascii-encoders
Guido van Rossumb50667d1995-10-12 00:41:40 +0000364binascii binascii.c
365
Guido van Rossumf00eb711996-08-21 22:11:54 +0000366# Fred Drake's interface to the Python parser
367parser parsermodule.c
Jack Jansen72781191995-08-07 14:34:15 +0000368
Guido van Rossumee88ff91997-01-11 19:29:30 +0000369# Digital Creations' cStringIO and cPickle
370cStringIO cStringIO.c
371cPickle cPickle.c
Guido van Rossum31affb21995-06-14 22:31:38 +0000372
Guido van Rossum53bb5501997-03-04 23:36:04 +0000373
Guido van Rossum10efb051997-02-14 23:03:31 +0000374# Lee Busby's SIGFPE modules.
375# The library to link fpectl with is platform specific.
Guido van Rossum53bb5501997-03-04 23:36:04 +0000376# Choose *one* of the options below for fpectl:
Guido van Rossum10efb051997-02-14 23:03:31 +0000377
Guido van Rossum53bb5501997-03-04 23:36:04 +0000378# For SGI IRIX (tested on 5.3):
379#fpectl fpectlmodule.c -lfpe
380
Guido van Rossum159b77f1997-03-04 23:44:15 +0000381# For Solaris with SunPro compiler (tested on Solaris 2.5 with SunPro C 4.2):
382# (Without the compiler you don't have -lsunmath.)
Guido van Rossum53bb5501997-03-04 23:36:04 +0000383#fpectl fpectlmodule.c -R/opt/SUNWspro/lib -lsunmath -lm
384
385# For other systems: see instructions in fpectlmodule.c.
386#fpectl fpectlmodule.c ...
387
388# Test module for fpectl. No extra libraries needed.
Guido van Rossum10efb051997-02-14 23:03:31 +0000389#fpetest fpetestmodule.c
390
Guido van Rossum7fa3b751997-04-29 15:41:26 +0000391# Andrew Kuchling's zlib module.
Ken Manheimer74a43471998-03-03 16:42:53 +0000392# This require zlib 1.0.4 (or later). See http://quest.jpl.nasa.gov/zlib/
Guido van Rossum64608cf1998-02-06 22:36:10 +0000393# See http://www.cdrom.com/pub/infozip/zlib/
Guido van Rossumd3d6f8f1997-05-05 20:48:00 +0000394#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
Guido van Rossum7fa3b751997-04-29 15:41:26 +0000395
Guido van Rossum53bb5501997-03-04 23:36:04 +0000396
Guido van Rossumf4449de1995-04-10 11:37:18 +0000397# Example -- included for reference only:
Guido van Rossumf6971e21994-08-30 12:25:20 +0000398# xx xxmodule.c