blob: 6b4c217b0a4cbef0f4c5c8b1e38facc5f60e942f [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.
xdegayec0364fc2017-05-27 18:25:03 +020014# Modules configured here will not be compiled by the setup.py script,
Andrew M. Kuchlingab354bb2001-02-27 03:29:52 +000015# so the file can be used to override setup.py's behavior.
xdegayec0364fc2017-05-27 18:25:03 +020016# Tag lines containing just the word "*static*", "*shared*" or "*disabled*"
17# (without the quotes but with the stars) are used to tag the following module
18# descriptions. Tag lines may alternate throughout this file. Modules are
19# built statically when they are preceded by a "*static*" tag line or when
20# there is no tag line between the start of the file and the module
21# description. Modules are built as a shared library when they are preceded by
22# a "*shared*" tag line. Modules are not built at all, not by the Makefile,
23# nor by the setup.py script, when they are preceded by a "*disabled*" tag
24# line.
Andrew M. Kuchlingab354bb2001-02-27 03:29:52 +000025
Guido van Rossumfba715a1994-01-02 00:26:09 +000026# Lines have the following structure:
27#
Guido van Rossumf6971e21994-08-30 12:25:20 +000028# <module> ... [<sourcefile> ...] [<cpparg> ...] [<library> ...]
Guido van Rossumfba715a1994-01-02 00:26:09 +000029#
Guido van Rossumf6971e21994-08-30 12:25:20 +000030# <sourcefile> is anything ending in .c (.C, .cc, .c++ are C++ files)
Guido van Rossumfba715a1994-01-02 00:26:09 +000031# <cpparg> is anything starting with -I, -D, -U or -C
32# <library> is anything ending in .a or beginning with -l or -L
33# <module> is anything else but should be a valid Python
34# identifier (letters, digits, underscores, beginning with non-digit)
35#
Guido van Rossum613b9431996-08-20 19:50:17 +000036# (As the makesetup script changes, it may recognize some other
37# arguments as well, e.g. *.so and *.sl as libraries. See the big
38# case statement in the makesetup script.)
39#
Guido van Rossumfba715a1994-01-02 00:26:09 +000040# Lines can also have the form
41#
42# <name> = <value>
43#
44# which defines a Make variable definition inserted into Makefile.in
Guido van Rossum7cc5abd1994-09-12 10:42:20 +000045#
xdegayec0364fc2017-05-27 18:25:03 +020046# The build process works like this:
Martin v. Löwisbbeb1e62002-04-19 09:47:23 +000047#
48# 1. Build all modules that are declared as static in Modules/Setup,
49# combine them into libpythonxy.a, combine that into python.
50# 2. Build all modules that are listed as shared in Modules/Setup.
51# 3. Invoke setup.py. That builds all modules that
52# a) are not builtin, and
53# b) are not listed in Modules/Setup, and
54# c) can be build on the target
55#
56# Therefore, modules declared to be shared will not be
Guido van Rossum30e817e1997-12-02 16:46:39 +000057# included in the config.c file, nor in the list of objects to be
58# added to the library archive, and their linker options won't be
Martin v. Löwisbbeb1e62002-04-19 09:47:23 +000059# added to the linker options. Rules to create their .o files and
Guido van Rossum30e817e1997-12-02 16:46:39 +000060# their shared libraries will still be added to the Makefile, and
61# their names will be collected in the Make variable SHAREDMODS. This
Guido van Rossum7fef86e1998-10-07 14:41:54 +000062# is used to build modules as shared libraries. (They can be
63# installed using "make sharedinstall", which is implied by the
64# toplevel "make install" target.) (For compatibility,
Guido van Rossum30e817e1997-12-02 16:46:39 +000065# *noconfig* has the same effect as *shared*.)
Guido van Rossumb71c5701999-02-22 18:11:18 +000066#
Guido van Rossumfba715a1994-01-02 00:26:09 +000067# NOTE: As a standard policy, as many modules as can be supported by a
68# platform should be present. The distribution comes with all modules
69# enabled that are supported by most platforms and don't require you
Guido van Rossumf4449de1995-04-10 11:37:18 +000070# to ftp sources from elsewhere.
Guido van Rossumfba715a1994-01-02 00:26:09 +000071
72
Guido van Rossumb6775db1994-08-01 11:34:53 +000073# Some special rules to define PYTHONPATH.
74# Edit the definitions below to indicate which options you are using.
75# Don't add any whitespace or comments!
76
Guido van Rossum0c5e3c81996-07-31 17:49:01 +000077# Directories where library files get installed.
78# DESTLIB is for Python modules; MACHDESTLIB for shared libraries.
79DESTLIB=$(LIBDEST)
80MACHDESTLIB=$(BINLIBDEST)
Guido van Rossumb6775db1994-08-01 11:34:53 +000081
Guido van Rossum97227811997-04-11 17:19:54 +000082# NOTE: all the paths are now relative to the prefix that is computed
83# at run time!
84
Guido van Rossum0c5e3c81996-07-31 17:49:01 +000085# Standard path -- don't edit.
Guido van Rossum97227811997-04-11 17:19:54 +000086# No leading colon since this is the first entry.
87# Empty since this is now just the runtime prefix.
88DESTPATH=
Guido van Rossum1c206481995-09-13 18:39:04 +000089
Guido van Rossum0c5e3c81996-07-31 17:49:01 +000090# Site specific path components -- should begin with : if non-empty
91SITEPATH=
92
93# Standard path components for test modules
Guido van Rossum7d83a5e1999-02-08 21:49:22 +000094TESTPATH=
Guido van Rossumb6775db1994-08-01 11:34:53 +000095
Guido van Rossumd3c1bd31996-07-30 16:54:03 +000096# Path components for machine- or system-dependent modules and shared libraries
doko@ubuntu.com1345d202015-04-13 21:59:57 +020097MACHDEPPATH=:$(PLATDIR)
Jack Jansen7b59b422003-03-17 15:44:10 +000098EXTRAMACHDEPPATH=
Guido van Rossumb6775db1994-08-01 11:34:53 +000099
Georg Brandl6e47a332008-05-17 19:15:58 +0000100COREPYTHONPATH=$(DESTPATH)$(SITEPATH)$(TESTPATH)$(MACHDEPPATH)$(EXTRAMACHDEPPATH)
Guido van Rossumf5e0ea81994-09-12 15:35:36 +0000101PYTHONPATH=$(COREPYTHONPATH)
Guido van Rossumb6775db1994-08-01 11:34:53 +0000102
103
Guido van Rossumcaffcdf1995-03-10 15:14:13 +0000104# The modules listed here can't be built as shared libraries for
105# various reasons; therefore they are listed here instead of in the
106# normal order.
Guido van Rossum05bf2801994-10-20 22:01:38 +0000107
Victor Stinnered3b0bc2013-11-23 12:27:24 +0100108# This only contains the minimal set of modules required to run the
Andrew M. Kuchling3712d392001-01-17 18:55:13 +0000109# setup.py script in the root of the Python source tree.
Guido van Rossumcaffcdf1995-03-10 15:14:13 +0000110
111posix posixmodule.c # posix (UNIX) system calls
Fred Drake5f8a23f2002-08-05 18:06:17 +0000112errno errnomodule.c # posix (UNIX) errno values
Georg Brandlcd4d1e82005-12-27 17:37:07 +0000113pwd pwdmodule.c # this is needed to find out the user's home dir
114 # if $HOME is not set
Guido van Rossume5679352000-03-31 15:01:27 +0000115_sre _sre.c # Fredrik Lundh's new regular expressions
Marc-André Lemburgb28de0d2002-12-12 17:37:50 +0000116_codecs _codecsmodule.c # access to the builtin codecs and codec registry
Georg Brandl3b8cb172007-10-23 06:26:46 +0000117_weakref _weakref.c # weak references
Benjamin Petersonb747ed32009-05-23 16:37:50 +0000118_functools _functoolsmodule.c # Tools for working with functions and callable objects
Antoine Pitroua85017f2013-04-20 19:21:44 +0200119_operator _operator.c # operator.add() and similar goodies
Senthil Kumaran5c87c1a2010-08-09 07:24:50 +0000120_collections _collectionsmodule.c # Container types
Victor Stinnered3b0bc2013-11-23 12:27:24 +0100121itertools itertoolsmodule.c # Functions creating iterators for efficient looping
Łukasz Langa6f692512013-06-05 12:20:24 +0200122atexit atexitmodule.c # Register functions to be run at interpreter-shutdown
Benjamin Peterson7d895ac2016-09-09 12:01:10 -0700123_signal signalmodule.c
Christian Heimesc77d9f32013-06-22 21:05:02 +0200124_stat _stat.c # stat.h interface
doko@ubuntu.com6433e9e2015-04-12 00:13:52 +0200125time timemodule.c # -lm # time operations and variables
Benjamin Petersonb747ed32009-05-23 16:37:50 +0000126
127# access to ISO C locale support
128_locale _localemodule.c # -lintl
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000129
130# Standard I/O baseline
Alexandre Vassalotti8d8d6302009-04-04 19:58:40 +0000131_io -I$(srcdir)/Modules/_io _io/_iomodule.c _io/iobase.c _io/fileio.c _io/bytesio.c _io/bufferedio.c _io/textio.c _io/stringio.c
Guido van Rossumcaffcdf1995-03-10 15:14:13 +0000132
Just van Rossum52e14d62002-12-30 22:08:05 +0000133# The zipimport module is always imported at startup. Having it as a
134# builtin module avoids some bootstrapping problems and reduces overhead.
135zipimport zipimport.c
136
Victor Stinner024e37a2011-03-31 01:31:06 +0200137# faulthandler module
138faulthandler faulthandler.c
139
Victor Stinnered3b0bc2013-11-23 12:27:24 +0100140# debug tool to trace memory blocks allocated by Python
141_tracemalloc _tracemalloc.c hashtable.c
142
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000143# The rest of the modules listed in this file are all commented out by
144# default. Usually they can be detected and built as dynamically
145# loaded modules by the new setup.py script added in Python 2.1. If
Victor Stinnered3b0bc2013-11-23 12:27:24 +0100146# you're on a platform that doesn't support dynamic loading, want to
147# compile modules statically into the Python binary, or need to
148# specify some odd set of compiler switches, you can uncomment the
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000149# appropriate lines below.
150
151# ======================================================================
152
Jeremy Hyltona25d9952001-10-17 13:46:44 +0000153# The Python symtable module depends on .h files that setup.py doesn't track
154_symtable symtablemodule.c
155
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000156# Uncommenting the following line tells makesetup that all following
157# modules are to be built as shared libraries (see above for more
xdegayec0364fc2017-05-27 18:25:03 +0200158# detail; also note that *static* or *disabled* cancels this effect):
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000159
160#*shared*
161
162# GNU readline. Unlike previous Python incarnations, GNU readline is
163# now incorporated in an optional module, configured in the Setup file
164# instead of by a configure script switch. You may have to insert a
165# -L option pointing to the directory where libreadline.* lives,
166# and you may have to change -ltermcap to -ltermlib or perhaps remove
167# it, depending on your system -- see the GNU readline instructions.
168# It's okay for this to be a shared library, too.
169
170#readline readline.c -lreadline -ltermcap
171
172
173# Modules that should always be present (non UNIX dependent):
174
175#array arraymodule.c # array objects
Mark Dickinsonf3718592009-12-21 15:27:41 +0000176#cmath cmathmodule.c _math.c # -lm # complex math library functions
Mark Dickinson664b5112009-12-16 20:23:42 +0000177#math mathmodule.c _math.c # -lm # math library functions, e.g. sin()
Thomas Wouters477c8d52006-05-27 19:21:47 +0000178#_struct _struct.c # binary structure packing/unpacking
Fred Drake2de74712001-02-01 05:26:54 +0000179#_weakref _weakref.c # basic weak reference support
Tim Petersf36fb692001-02-04 09:18:21 +0000180#_testcapi _testcapimodule.c # Python C API test module
Raymond Hettinger2a2385d2005-03-09 23:46:11 +0000181#_random _randommodule.c # Random number generator
Matthias Klosefa1885f2008-11-27 09:51:39 +0000182#_elementtree -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI _elementtree.c # elementtree accelerator
Matthias Klose2a6beb32008-11-26 17:23:18 +0000183#_pickle _pickle.c # pickle accelerator
Alexander Belopolskycf86e362010-07-23 19:25:47 +0000184#_datetime _datetimemodule.c # datetime accelerator
Matthias Klosea58ea4d2008-11-27 09:53:28 +0000185#_bisect _bisectmodule.c # Bisection algorithms
Matthias Klose131733a2009-02-22 12:57:58 +0000186#_heapq _heapqmodule.c # Heap queue algorithm
INADA Naoki9f2ce252016-10-15 15:39:19 +0900187#_asyncio _asynciomodule.c # Fast asyncio Future
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000188
Martin v. Löwis76192ee2001-02-06 09:34:40 +0000189#unicodedata unicodedata.c # static Unicode character database
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000190
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000191
192# Modules with some UNIX dependencies -- on by default:
193# (If you have a really backward UNIX, select and socket may not be
194# supported...)
195
196#fcntl fcntlmodule.c # fcntl(2) and ioctl(2)
Victor Stinnered3b0bc2013-11-23 12:27:24 +0100197#spwd spwdmodule.c # spwd(3)
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000198#grp grpmodule.c # grp(3)
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000199#select selectmodule.c # select(2); not on ancient System V
200
201# Memory-mapped files (also works on Win32).
202#mmap mmapmodule.c
203
Skip Montanaro24979822003-03-20 23:37:24 +0000204# CSV file helper
205#_csv _csv.c
206
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000207# Socket module helper for socket(2)
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000208#_socket socketmodule.c
209
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000210# Socket module helper for SSL support; you must comment out the other
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000211# socket line above, and possibly edit the SSL variable:
212#SSL=/usr/local/ssl
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000213#_ssl _ssl.c \
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000214# -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
215# -L$(SSL)/lib -lssl -lcrypto
216
217# The crypt module is now disabled by default because it breaks builds
218# on many systems (where -lcrypt is needed), e.g. Linux (I believe).
219#
220# First, look at Setup.config; configure may have set this for you.
221
Sean Reifscheidere2dfefb2011-02-22 10:55:44 +0000222#_crypt _cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000223
224
225# Some more UNIX dependent modules -- off by default, since these
226# are not supported by all UNIX systems:
227
228#nis nismodule.c -lnsl # Sun yellow pages -- not everywhere
229#termios termios.c # Steen Lumholt's termios module
230#resource resource.c # Jeremy Hylton's rlimit interface
231
Matthias Klose22b6f9d2010-04-22 13:38:12 +0000232#_posixsubprocess _posixsubprocess.c # POSIX subprocess module helper
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000233
234# Multimedia modules -- off by default.
235# These don't work for 64-bit platforms!!!
Martin v. Löwis8fbefe22004-07-19 16:42:20 +0000236# #993173 says audioop works on 64-bit platforms, though.
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000237# These represent audio samples or images as strings:
238
239#audioop audioop.c # Operations on audio samples
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000240
241
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000242# Note that the _md5 and _sha modules are normally only built if the
243# system does not have the OpenSSL libs containing an optimized version.
244
245# The _md5 module implements the RSA Data Security, Inc. MD5
doko@ubuntu.com0684a9d2012-06-21 12:13:35 +0200246# Message-Digest Algorithm, described in RFC 1321.
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000247
doko@ubuntu.com0684a9d2012-06-21 12:13:35 +0200248#_md5 md5module.c
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000249
250
Georg Brandl86b2fb92008-07-16 03:43:04 +0000251# The _sha module implements the SHA checksum algorithms.
252# (NIST's Secure Hash Algorithms.)
doko@ubuntu.com1e3398a2012-06-21 16:22:15 +0200253#_sha1 sha1module.c
Georg Brandl86b2fb92008-07-16 03:43:04 +0000254#_sha256 sha256module.c
255#_sha512 sha512module.c
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000256
doko@ubuntu.com95b826d2016-10-11 08:06:26 +0200257# _blake module
258#_blake2 _blake2/blake2module.c _blake2/blake2b_impl.c _blake2/blake2s_impl.c
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000259
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000260# The _tkinter module.
261#
262# The command for _tkinter is long and site specific. Please
263# uncomment and/or edit those parts as indicated. If you don't have a
264# specific extension (e.g. Tix or BLT), leave the corresponding line
265# commented out. (Leave the trailing backslashes in! If you
266# experience strange errors, you may want to join all uncommented
267# lines and remove the backslashes -- the backslash interpretation is
268# done by the shell's "read" command and it may not be implemented on
269# every system.
270
271# *** Always uncomment this (leave the leading underscore in!):
272# _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
Guido van Rossum86525222001-03-22 22:18:55 +0000273# *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
274# -L/usr/local/lib \
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000275# *** Uncomment and edit to reflect where your Tcl/Tk headers are:
276# -I/usr/local/include \
277# *** Uncomment and edit to reflect where your X11 header files are:
278# -I/usr/X11R6/include \
279# *** Or uncomment this for Solaris:
280# -I/usr/openwin/include \
281# *** Uncomment and edit for Tix extension only:
Guido van Rossum86525222001-03-22 22:18:55 +0000282# -DWITH_TIX -ltix8.1.8.2 \
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000283# *** Uncomment and edit for BLT extension only:
284# -DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \
285# *** Uncomment and edit for PIL (TkImaging) extension only:
286# (See http://www.pythonware.com/products/pil/ for more info)
287# -DWITH_PIL -I../Extensions/Imaging/libImaging tkImaging.c \
288# *** Uncomment and edit for TOGL extension only:
289# -DWITH_TOGL togl.c \
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000290# *** Uncomment and edit to reflect your Tcl/Tk versions:
Guido van Rossum86525222001-03-22 22:18:55 +0000291# -ltk8.2 -ltcl8.2 \
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000292# *** Uncomment and edit to reflect where your X11 libraries are:
293# -L/usr/X11R6/lib \
294# *** Or uncomment this for Solaris:
295# -L/usr/openwin/lib \
296# *** Uncomment these for TOGL extension only:
297# -lGL -lGLU -lXext -lXmu \
298# *** Uncomment for AIX:
299# -lld \
300# *** Always uncomment this; X11 libraries to link with:
301# -lX11
302
Andrew M. Kuchling4e699d52004-08-31 13:50:12 +0000303# Lance Ellinghaus's syslog module
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000304#syslog syslogmodule.c # syslog daemon interface
305
306
Florent Xicluna992d9e02011-11-11 19:35:42 +0100307# Curses support, requiring the System V version of curses, often
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000308# provided by the ncurses library. e.g. on Linux, link with -lncurses
Skip Montanaroce59c042004-01-17 14:19:44 +0000309# instead of -lcurses).
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000310#
311# First, look at Setup.config; configure may have set this for you.
312
313#_curses _cursesmodule.c -lcurses -ltermcap
314# Wrapper for the panel library that's part of ncurses and SYSV curses.
Victor Stinnered3b0bc2013-11-23 12:27:24 +0100315#_curses_panel _curses_panel.c -lpanel -lncurses
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000316
317
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000318# Modules that provide persistent dictionary-like semantics. You will
319# probably want to arrange for at least one of them to be available on
320# your machine, though none are defined by default because of library
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000321# dependencies. The Python module dbm/__init__.py provides an
322# implementation independent wrapper for these; dbm/dumb.py provides
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000323# similar functionality (but slower of course) implemented in Python.
324
325# The standard Unix dbm module has been moved to Setup.config so that
326# it will be compiled as a shared library by default. Compiling it as
327# a built-in module causes conflicts with the pybsddb3 module since it
328# creates a static dependency on an out-of-date version of db.so.
329#
330# First, look at Setup.config; configure may have set this for you.
331
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000332#_dbm _dbmmodule.c # dbm(3) may require -lndbm or similar
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000333
334# Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
335#
336# First, look at Setup.config; configure may have set this for you.
337
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000338#_gdbm _gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000339
340
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000341# Helper module for various ascii-encoders
342#binascii binascii.c
343
344# Fred Drake's interface to the Python parser
345#parser parsermodule.c
346
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000347
348# Lee Busby's SIGFPE modules.
349# The library to link fpectl with is platform specific.
350# Choose *one* of the options below for fpectl:
351
352# For SGI IRIX (tested on 5.3):
353#fpectl fpectlmodule.c -lfpe
354
355# For Solaris with SunPro compiler (tested on Solaris 2.5 with SunPro C 4.2):
356# (Without the compiler you don't have -lsunmath.)
357#fpectl fpectlmodule.c -R/opt/SUNWspro/lib -lsunmath -lm
358
359# For other systems: see instructions in fpectlmodule.c.
360#fpectl fpectlmodule.c ...
361
362# Test module for fpectl. No extra libraries needed.
363#fpetest fpetestmodule.c
364
365# Andrew Kuchling's zlib module.
366# This require zlib 1.1.3 (or later).
Neal Norwitz014f1032004-07-29 03:55:56 +0000367# See http://www.gzip.org/zlib/
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000368#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
369
370# Interface to the Expat XML parser
371#
Fred Drake9d416a72002-08-09 02:39:13 +0000372# Expat was written by James Clark and is now maintained by a group of
373# developers on SourceForge; see www.libexpat.org for more
374# information. The pyexpat module was written by Paul Prescod after a
375# prototype by Jack Jansen. Source of Expat 1.95.2 is included in
376# Modules/expat/. Usage of a system shared libexpat.so/expat.dll is
377# not advised.
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000378#
Fred Drake9d416a72002-08-09 02:39:13 +0000379# More information on Expat can be found at www.libexpat.org.
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000380#
Matthias Klosee605b662008-11-27 07:43:44 +0000381#pyexpat expat/xmlparse.c expat/xmlrole.c expat/xmltok.c pyexpat.c -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI
Hye-Shik Chang3e2a3062004-01-17 14:29:29 +0000382
383# Hye-Shik Chang's CJKCodecs
384
385# multibytecodec is required for all the other CJK codec modules
386#_multibytecodec cjkcodecs/multibytecodec.c
387
Hye-Shik Chang2bb146f2004-07-18 03:06:29 +0000388#_codecs_cn cjkcodecs/_codecs_cn.c
389#_codecs_hk cjkcodecs/_codecs_hk.c
390#_codecs_iso2022 cjkcodecs/_codecs_iso2022.c
391#_codecs_jp cjkcodecs/_codecs_jp.c
392#_codecs_kr cjkcodecs/_codecs_kr.c
393#_codecs_tw cjkcodecs/_codecs_tw.c
Hye-Shik Chang3e2a3062004-01-17 14:29:29 +0000394
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000395# Example -- included for reference only:
396# xx xxmodule.c
397
Tim Peters6d6c1a32001-08-02 04:15:00 +0000398# Another example -- the 'xxsubtype' module shows C-level subtyping in action
399xxsubtype xxsubtype.c
xdegayec0364fc2017-05-27 18:25:03 +0200400
401# Uncommenting the following line tells makesetup that all following modules
402# are not built (see above for more detail).
403#
404#*disabled*
405#
406#_sqlite3 _tkinter _curses pyexpat
407#_codecs_jp _codecs_kr _codecs_tw unicodedata