blob: 87c6a152f86eac094d3a8ff64d389986cae16e66 [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,
Antoine Pitrou961d54c2018-07-16 19:03:03 +02004# respectively. Note that Makefile.pre is created from Makefile.pre.in
5# by the toplevel configure script.
Guido van Rossumb6775db1994-08-01 11:34:53 +00006
7# (VPATH notes: Setup and Makefile.pre are in the build directory, as
Antoine Pitrou961d54c2018-07-16 19:03:03 +02008# are Makefile and config.c; the *.in files are in the source directory.)
Guido van Rossumb6775db1994-08-01 11:34:53 +00009
Guido van Rossumfba715a1994-01-02 00:26:09 +000010# Each line in this file describes one or more optional modules.
xdegayec0364fc2017-05-27 18:25:03 +020011# Modules configured here will not be compiled by the setup.py script,
Andrew M. Kuchlingab354bb2001-02-27 03:29:52 +000012# so the file can be used to override setup.py's behavior.
xdegayec0364fc2017-05-27 18:25:03 +020013# Tag lines containing just the word "*static*", "*shared*" or "*disabled*"
14# (without the quotes but with the stars) are used to tag the following module
15# descriptions. Tag lines may alternate throughout this file. Modules are
16# built statically when they are preceded by a "*static*" tag line or when
17# there is no tag line between the start of the file and the module
18# description. Modules are built as a shared library when they are preceded by
19# a "*shared*" tag line. Modules are not built at all, not by the Makefile,
20# nor by the setup.py script, when they are preceded by a "*disabled*" tag
21# line.
Andrew M. Kuchlingab354bb2001-02-27 03:29:52 +000022
Guido van Rossumfba715a1994-01-02 00:26:09 +000023# Lines have the following structure:
24#
Guido van Rossumf6971e21994-08-30 12:25:20 +000025# <module> ... [<sourcefile> ...] [<cpparg> ...] [<library> ...]
Guido van Rossumfba715a1994-01-02 00:26:09 +000026#
Guido van Rossumf6971e21994-08-30 12:25:20 +000027# <sourcefile> is anything ending in .c (.C, .cc, .c++ are C++ files)
Guido van Rossumfba715a1994-01-02 00:26:09 +000028# <cpparg> is anything starting with -I, -D, -U or -C
29# <library> is anything ending in .a or beginning with -l or -L
30# <module> is anything else but should be a valid Python
31# identifier (letters, digits, underscores, beginning with non-digit)
32#
Guido van Rossum613b9431996-08-20 19:50:17 +000033# (As the makesetup script changes, it may recognize some other
34# arguments as well, e.g. *.so and *.sl as libraries. See the big
35# case statement in the makesetup script.)
36#
Guido van Rossumfba715a1994-01-02 00:26:09 +000037# Lines can also have the form
38#
39# <name> = <value>
40#
41# which defines a Make variable definition inserted into Makefile.in
Guido van Rossum7cc5abd1994-09-12 10:42:20 +000042#
xdegayec0364fc2017-05-27 18:25:03 +020043# The build process works like this:
Martin v. Löwisbbeb1e62002-04-19 09:47:23 +000044#
45# 1. Build all modules that are declared as static in Modules/Setup,
46# combine them into libpythonxy.a, combine that into python.
47# 2. Build all modules that are listed as shared in Modules/Setup.
48# 3. Invoke setup.py. That builds all modules that
49# a) are not builtin, and
50# b) are not listed in Modules/Setup, and
51# c) can be build on the target
52#
53# Therefore, modules declared to be shared will not be
Guido van Rossum30e817e1997-12-02 16:46:39 +000054# included in the config.c file, nor in the list of objects to be
55# added to the library archive, and their linker options won't be
Martin v. Löwisbbeb1e62002-04-19 09:47:23 +000056# added to the linker options. Rules to create their .o files and
Guido van Rossum30e817e1997-12-02 16:46:39 +000057# their shared libraries will still be added to the Makefile, and
58# their names will be collected in the Make variable SHAREDMODS. This
Guido van Rossum7fef86e1998-10-07 14:41:54 +000059# is used to build modules as shared libraries. (They can be
60# installed using "make sharedinstall", which is implied by the
61# toplevel "make install" target.) (For compatibility,
Guido van Rossum30e817e1997-12-02 16:46:39 +000062# *noconfig* has the same effect as *shared*.)
Guido van Rossumb71c5701999-02-22 18:11:18 +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
Victor Stinner5de15f12018-01-24 17:02:41 +010093COREPYTHONPATH=$(DESTPATH)$(SITEPATH)$(TESTPATH)
Guido van Rossumf5e0ea81994-09-12 15:35:36 +000094PYTHONPATH=$(COREPYTHONPATH)
Guido van Rossumb6775db1994-08-01 11:34:53 +000095
96
Guido van Rossumcaffcdf1995-03-10 15:14:13 +000097# The modules listed here can't be built as shared libraries for
98# various reasons; therefore they are listed here instead of in the
99# normal order.
Guido van Rossum05bf2801994-10-20 22:01:38 +0000100
Victor Stinnered3b0bc2013-11-23 12:27:24 +0100101# This only contains the minimal set of modules required to run the
Andrew M. Kuchling3712d392001-01-17 18:55:13 +0000102# setup.py script in the root of the Python source tree.
Guido van Rossumcaffcdf1995-03-10 15:14:13 +0000103
Victor Stinner5c75f372019-04-17 23:02:26 +0200104posix -DPy_BUILD_CORE_BUILTIN -I$(srcdir)/Include/internal posixmodule.c # posix (UNIX) system calls
xdegaye063db622018-04-20 17:03:49 +0200105errno errnomodule.c # posix (UNIX) errno values
106pwd pwdmodule.c # this is needed to find out the user's home dir
107 # if $HOME is not set
Victor Stinnercdad2722021-04-22 00:52:52 +0200108_sre -DPy_BUILD_CORE_BUILTIN _sre.c # Fredrik Lundh's new regular expressions
xdegaye063db622018-04-20 17:03:49 +0200109_codecs _codecsmodule.c # access to the builtin codecs and codec registry
110_weakref _weakref.c # weak references
Victor Stinner5c75f372019-04-17 23:02:26 +0200111_functools -DPy_BUILD_CORE_BUILTIN -I$(srcdir)/Include/internal _functoolsmodule.c # Tools for working with functions and callable objects
Victor Stinnercdad2722021-04-22 00:52:52 +0200112_operator -DPy_BUILD_CORE_BUILTIN _operator.c # operator.add() and similar goodies
xdegaye063db622018-04-20 17:03:49 +0200113_collections _collectionsmodule.c # Container types
Victor Stinnercdad2722021-04-22 00:52:52 +0200114_abc -DPy_BUILD_CORE_BUILTIN _abc.c # Abstract base classes
xdegaye063db622018-04-20 17:03:49 +0200115itertools itertoolsmodule.c # Functions creating iterators for efficient looping
116atexit atexitmodule.c # Register functions to be run at interpreter-shutdown
Victor Stinner5c75f372019-04-17 23:02:26 +0200117_signal -DPy_BUILD_CORE_BUILTIN -I$(srcdir)/Include/internal signalmodule.c
xdegaye063db622018-04-20 17:03:49 +0200118_stat _stat.c # stat.h interface
Victor Stinner5c75f372019-04-17 23:02:26 +0200119time -DPy_BUILD_CORE_BUILTIN -I$(srcdir)/Include/internal timemodule.c # -lm # time operations and variables
120_thread -DPy_BUILD_CORE_BUILTIN -I$(srcdir)/Include/internal _threadmodule.c # low-level threading interface
Benjamin Petersonb747ed32009-05-23 16:37:50 +0000121
122# access to ISO C locale support
Victor Stinner5c75f372019-04-17 23:02:26 +0200123_locale -DPy_BUILD_CORE_BUILTIN _localemodule.c # -lintl
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000124
125# Standard I/O baseline
Victor Stinner5c75f372019-04-17 23:02:26 +0200126_io -DPy_BUILD_CORE_BUILTIN -I$(srcdir)/Include/internal -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 +0000127
Victor Stinner024e37a2011-03-31 01:31:06 +0200128# faulthandler module
129faulthandler faulthandler.c
130
Victor Stinnered3b0bc2013-11-23 12:27:24 +0100131# debug tool to trace memory blocks allocated by Python
Victor Stinnerc89a9322018-10-26 00:01:56 +0200132#
133# bpo-35053: The module must be builtin since _Py_NewReference()
134# can call _PyTraceMalloc_NewReference().
Victor Stinnerb6179932020-05-12 02:42:19 +0200135_tracemalloc _tracemalloc.c
Victor Stinnered3b0bc2013-11-23 12:27:24 +0100136
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000137# The rest of the modules listed in this file are all commented out by
138# default. Usually they can be detected and built as dynamically
139# loaded modules by the new setup.py script added in Python 2.1. If
Victor Stinnered3b0bc2013-11-23 12:27:24 +0100140# you're on a platform that doesn't support dynamic loading, want to
141# compile modules statically into the Python binary, or need to
142# specify some odd set of compiler switches, you can uncomment the
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000143# appropriate lines below.
144
145# ======================================================================
146
Jeremy Hyltona25d9952001-10-17 13:46:44 +0000147# The Python symtable module depends on .h files that setup.py doesn't track
148_symtable symtablemodule.c
149
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000150# Uncommenting the following line tells makesetup that all following
151# modules are to be built as shared libraries (see above for more
xdegayec0364fc2017-05-27 18:25:03 +0200152# detail; also note that *static* or *disabled* cancels this effect):
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000153
154#*shared*
155
156# GNU readline. Unlike previous Python incarnations, GNU readline is
157# now incorporated in an optional module, configured in the Setup file
158# instead of by a configure script switch. You may have to insert a
159# -L option pointing to the directory where libreadline.* lives,
160# and you may have to change -ltermcap to -ltermlib or perhaps remove
161# it, depending on your system -- see the GNU readline instructions.
162# It's okay for this to be a shared library, too.
163
164#readline readline.c -lreadline -ltermcap
165
166
167# Modules that should always be present (non UNIX dependent):
168
Victor Stinnercdad2722021-04-22 00:52:52 +0200169#array -DPy_BUILD_CORE_MODULE arraymodule.c # array objects
Victor Stinnere9e7d282020-02-12 22:54:42 +0100170#cmath cmathmodule.c _math.c -DPy_BUILD_CORE_MODULE # -lm # complex math library functions
171#math mathmodule.c _math.c -DPy_BUILD_CORE_MODULE # -lm # math library functions, e.g. sin()
Yury Selivanovf23746a2018-01-22 19:11:18 -0500172#_contextvars _contextvarsmodule.c # Context Variables
Victor Stinnercdad2722021-04-22 00:52:52 +0200173#_struct -DPy_BUILD_CORE_MODULE _struct.c # binary structure packing/unpacking
Fred Drake2de74712001-02-01 05:26:54 +0000174#_weakref _weakref.c # basic weak reference support
Tim Petersf36fb692001-02-04 09:18:21 +0000175#_testcapi _testcapimodule.c # Python C API test module
Victor Stinner23bace22019-04-18 11:37:26 +0200176#_testinternalcapi _testinternalcapi.c -I$(srcdir)/Include/internal -DPy_BUILD_CORE_MODULE # Python internal C API test module
Victor Stinner9f5fe792020-04-17 19:05:35 +0200177#_random _randommodule.c -DPy_BUILD_CORE_MODULE # Random number generator
Matthias Klosefa1885f2008-11-27 09:51:39 +0000178#_elementtree -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI _elementtree.c # elementtree accelerator
Victor Stinnercdad2722021-04-22 00:52:52 +0200179#_pickle -DPy_BUILD_CORE_MODULE _pickle.c # pickle accelerator
Alexander Belopolskycf86e362010-07-23 19:25:47 +0000180#_datetime _datetimemodule.c # datetime accelerator
Victor Stinner37834132020-10-27 17:12:53 +0100181#_zoneinfo _zoneinfo.c -DPy_BUILD_CORE_MODULE # zoneinfo accelerator
Matthias Klosea58ea4d2008-11-27 09:53:28 +0000182#_bisect _bisectmodule.c # Bisection algorithms
Victor Stinnerc45dbe932020-06-22 17:39:32 +0200183#_heapq _heapqmodule.c -DPy_BUILD_CORE_MODULE # Heap queue algorithm
INADA Naoki9f2ce252016-10-15 15:39:19 +0900184#_asyncio _asynciomodule.c # Fast asyncio Future
Victor Stinner130893d2018-11-09 13:03:37 +0100185#_json -I$(srcdir)/Include/internal -DPy_BUILD_CORE_BUILTIN _json.c # _json speedups
Dong-hee Na0a18ee42019-08-24 07:20:30 +0900186#_statistics _statisticsmodule.c # statistics accelerator
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000187
Victor Stinner47e1afd2020-10-26 16:43:47 +0100188#unicodedata unicodedata.c -DPy_BUILD_CORE_BUILTIN # static Unicode character database
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000189
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000190
191# Modules with some UNIX dependencies -- on by default:
192# (If you have a really backward UNIX, select and socket may not be
193# supported...)
194
195#fcntl fcntlmodule.c # fcntl(2) and ioctl(2)
Victor Stinnered3b0bc2013-11-23 12:27:24 +0100196#spwd spwdmodule.c # spwd(3)
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000197#grp grpmodule.c # grp(3)
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000198#select selectmodule.c # select(2); not on ancient System V
199
200# Memory-mapped files (also works on Win32).
201#mmap mmapmodule.c
202
Skip Montanaro24979822003-03-20 23:37:24 +0000203# CSV file helper
204#_csv _csv.c
205
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000206# Socket module helper for socket(2)
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000207#_socket socketmodule.c
208
Marc-André Lemburga5d2b4c2002-02-16 18:23:30 +0000209# Socket module helper for SSL support; you must comment out the other
Christian Heimes39258d32021-04-17 11:36:35 +0200210# socket line above, and edit the OPENSSL variable:
211# OPENSSL=/path/to/openssl/directory
212# _ssl _ssl.c \
213# -I$(OPENSSL)/include -L$(OPENSSL)/lib \
214# -lssl -lcrypto
215#_hashlib _hashopenssl.c \
216# -I$(OPENSSL)/include -L$(OPENSSL)/lib \
217# -lcrypto
218
219# To statically link OpenSSL:
220# _ssl _ssl.c \
221# -I$(OPENSSL)/include -L$(OPENSSL)/lib \
222# -l:libssl.a -Wl,--exclude-libs,libssl.a \
223# -l:libcrypto.a -Wl,--exclude-libs,libcrypto.a
224#_hashlib _hashopenssl.c \
225# -I$(OPENSSL)/include -L$(OPENSSL)/lib \
226# -l:libcrypto.a -Wl,--exclude-libs,libcrypto.a
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000227
228# The crypt module is now disabled by default because it breaks builds
229# on many systems (where -lcrypt is needed), e.g. Linux (I believe).
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000230
Sean Reifscheidere2dfefb2011-02-22 10:55:44 +0000231#_crypt _cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000232
233
234# Some more UNIX dependent modules -- off by default, since these
235# are not supported by all UNIX systems:
236
237#nis nismodule.c -lnsl # Sun yellow pages -- not everywhere
238#termios termios.c # Steen Lumholt's termios module
239#resource resource.c # Jeremy Hylton's rlimit interface
240
Kyle Evans79925792020-10-13 15:04:44 -0500241#_posixsubprocess -DPy_BUILD_CORE_BUILTIN _posixsubprocess.c # POSIX subprocess module helper
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000242
243# Multimedia modules -- off by default.
244# These don't work for 64-bit platforms!!!
Martin v. Löwis8fbefe22004-07-19 16:42:20 +0000245# #993173 says audioop works on 64-bit platforms, though.
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000246# These represent audio samples or images as strings:
247
248#audioop audioop.c # Operations on audio samples
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000249
250
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000251# Note that the _md5 and _sha modules are normally only built if the
252# system does not have the OpenSSL libs containing an optimized version.
253
254# The _md5 module implements the RSA Data Security, Inc. MD5
doko@ubuntu.com0684a9d2012-06-21 12:13:35 +0200255# Message-Digest Algorithm, described in RFC 1321.
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000256
doko@ubuntu.com0684a9d2012-06-21 12:13:35 +0200257#_md5 md5module.c
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000258
259
Georg Brandl86b2fb92008-07-16 03:43:04 +0000260# The _sha module implements the SHA checksum algorithms.
261# (NIST's Secure Hash Algorithms.)
doko@ubuntu.com1e3398a2012-06-21 16:22:15 +0200262#_sha1 sha1module.c
Victor Stinner1ae035b2020-04-17 17:47:20 +0200263#_sha256 sha256module.c -DPy_BUILD_CORE_BUILTIN
264#_sha512 sha512module.c -DPy_BUILD_CORE_BUILTIN
Segev Finer1c1f8f32017-09-04 19:28:14 +0300265#_sha3 _sha3/sha3module.c
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000266
doko@ubuntu.com95b826d2016-10-11 08:06:26 +0200267# _blake module
268#_blake2 _blake2/blake2module.c _blake2/blake2b_impl.c _blake2/blake2s_impl.c
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000269
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000270# The _tkinter module.
271#
272# The command for _tkinter is long and site specific. Please
273# uncomment and/or edit those parts as indicated. If you don't have a
274# specific extension (e.g. Tix or BLT), leave the corresponding line
275# commented out. (Leave the trailing backslashes in! If you
276# experience strange errors, you may want to join all uncommented
277# lines and remove the backslashes -- the backslash interpretation is
278# done by the shell's "read" command and it may not be implemented on
279# every system.
280
281# *** Always uncomment this (leave the leading underscore in!):
282# _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
Guido van Rossum86525222001-03-22 22:18:55 +0000283# *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
284# -L/usr/local/lib \
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000285# *** Uncomment and edit to reflect where your Tcl/Tk headers are:
286# -I/usr/local/include \
287# *** Uncomment and edit to reflect where your X11 header files are:
288# -I/usr/X11R6/include \
289# *** Or uncomment this for Solaris:
290# -I/usr/openwin/include \
291# *** Uncomment and edit for Tix extension only:
Guido van Rossum86525222001-03-22 22:18:55 +0000292# -DWITH_TIX -ltix8.1.8.2 \
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000293# *** Uncomment and edit for BLT extension only:
294# -DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \
295# *** Uncomment and edit for PIL (TkImaging) extension only:
296# (See http://www.pythonware.com/products/pil/ for more info)
297# -DWITH_PIL -I../Extensions/Imaging/libImaging tkImaging.c \
298# *** Uncomment and edit for TOGL extension only:
299# -DWITH_TOGL togl.c \
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000300# *** Uncomment and edit to reflect your Tcl/Tk versions:
Guido van Rossum86525222001-03-22 22:18:55 +0000301# -ltk8.2 -ltcl8.2 \
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000302# *** Uncomment and edit to reflect where your X11 libraries are:
303# -L/usr/X11R6/lib \
304# *** Or uncomment this for Solaris:
305# -L/usr/openwin/lib \
306# *** Uncomment these for TOGL extension only:
307# -lGL -lGLU -lXext -lXmu \
308# *** Uncomment for AIX:
309# -lld \
310# *** Always uncomment this; X11 libraries to link with:
311# -lX11
312
Andrew M. Kuchling4e699d52004-08-31 13:50:12 +0000313# Lance Ellinghaus's syslog module
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000314#syslog syslogmodule.c # syslog daemon interface
315
316
Florent Xicluna992d9e02011-11-11 19:35:42 +0100317# Curses support, requiring the System V version of curses, often
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000318# provided by the ncurses library. e.g. on Linux, link with -lncurses
Skip Montanaroce59c042004-01-17 14:19:44 +0000319# instead of -lcurses).
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000320
Victor Stinner37834132020-10-27 17:12:53 +0100321#_curses _cursesmodule.c -lcurses -ltermcap -DPy_BUILD_CORE_MODULE
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000322# Wrapper for the panel library that's part of ncurses and SYSV curses.
Victor Stinnered3b0bc2013-11-23 12:27:24 +0100323#_curses_panel _curses_panel.c -lpanel -lncurses
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000324
325
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000326# Modules that provide persistent dictionary-like semantics. You will
327# probably want to arrange for at least one of them to be available on
328# your machine, though none are defined by default because of library
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000329# dependencies. The Python module dbm/__init__.py provides an
330# implementation independent wrapper for these; dbm/dumb.py provides
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000331# similar functionality (but slower of course) implemented in Python.
332
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000333#_dbm _dbmmodule.c # dbm(3) may require -lndbm or similar
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000334
335# Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000336
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000337#_gdbm _gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000338
339
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000340# Helper module for various ascii-encoders
341#binascii binascii.c
342
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000343# Andrew Kuchling's zlib module.
344# This require zlib 1.1.3 (or later).
Neal Norwitz014f1032004-07-29 03:55:56 +0000345# See http://www.gzip.org/zlib/
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000346#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
347
348# Interface to the Expat XML parser
Fred Drake9d416a72002-08-09 02:39:13 +0000349# More information on Expat can be found at www.libexpat.org.
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000350#
aaronpaulhurst408a2ef2019-06-10 18:54:24 -0700351#pyexpat expat/xmlparse.c expat/xmlrole.c expat/xmltok.c pyexpat.c -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DXML_POOR_ENTROPY -DUSE_PYEXPAT_CAPI
Hye-Shik Chang3e2a3062004-01-17 14:29:29 +0000352
353# Hye-Shik Chang's CJKCodecs
354
355# multibytecodec is required for all the other CJK codec modules
356#_multibytecodec cjkcodecs/multibytecodec.c
357
Hye-Shik Chang2bb146f2004-07-18 03:06:29 +0000358#_codecs_cn cjkcodecs/_codecs_cn.c
359#_codecs_hk cjkcodecs/_codecs_hk.c
360#_codecs_iso2022 cjkcodecs/_codecs_iso2022.c
361#_codecs_jp cjkcodecs/_codecs_jp.c
362#_codecs_kr cjkcodecs/_codecs_kr.c
363#_codecs_tw cjkcodecs/_codecs_tw.c
Hye-Shik Chang3e2a3062004-01-17 14:29:29 +0000364
Andrew M. Kuchlinge7c66912001-01-29 20:13:11 +0000365# Example -- included for reference only:
366# xx xxmodule.c
367
Tim Peters6d6c1a32001-08-02 04:15:00 +0000368# Another example -- the 'xxsubtype' module shows C-level subtyping in action
369xxsubtype xxsubtype.c
xdegayec0364fc2017-05-27 18:25:03 +0200370
371# Uncommenting the following line tells makesetup that all following modules
372# are not built (see above for more detail).
373#
374#*disabled*
375#
376#_sqlite3 _tkinter _curses pyexpat
377#_codecs_jp _codecs_kr _codecs_tw unicodedata