| Barry Warsaw | c7736b9 | 1997-09-04 13:05:14 +0000 | [diff] [blame] | 1 | # -*- makefile -*- | 
| Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2 | # The file Setup is used by the makesetup script to construct the files | 
 | 3 | # Makefile and config.c, from Makefile.pre and config.c.in, | 
 | 4 | # respectively.  The file Setup itself is initially copied from | 
| Fred Drake | cf3bc8c | 2000-10-26 17:07:40 +0000 | [diff] [blame] | 5 | # Setup.dist; once it exists it will not be overwritten, so you can edit | 
| Guido van Rossum | f4449de | 1995-04-10 11:37:18 +0000 | [diff] [blame] | 6 | # Setup to your heart's content.  Note that Makefile.pre is created | 
 | 7 | # from Makefile.pre.in by the toplevel configure script. | 
| Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8 |  | 
 | 9 | # (VPATH notes: Setup and Makefile.pre are in the build directory, as | 
| Fred Drake | cf3bc8c | 2000-10-26 17:07:40 +0000 | [diff] [blame] | 10 | # are Makefile and config.c; the *.in and *.dist files are in the source | 
| Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 11 | # directory.) | 
 | 12 |  | 
| Guido van Rossum | fba715a | 1994-01-02 00:26:09 +0000 | [diff] [blame] | 13 | # Each line in this file describes one or more optional modules. | 
| Andrew M. Kuchling | ab354bb | 2001-02-27 03:29:52 +0000 | [diff] [blame] | 14 | # Modules enabled here will not be compiled by the setup.py script, | 
 | 15 | # so the file can be used to override setup.py's behavior. | 
 | 16 |  | 
| Guido van Rossum | fba715a | 1994-01-02 00:26:09 +0000 | [diff] [blame] | 17 | # Lines have the following structure: | 
 | 18 | # | 
| Guido van Rossum | f6971e2 | 1994-08-30 12:25:20 +0000 | [diff] [blame] | 19 | # <module> ... [<sourcefile> ...] [<cpparg> ...] [<library> ...] | 
| Guido van Rossum | fba715a | 1994-01-02 00:26:09 +0000 | [diff] [blame] | 20 | # | 
| Guido van Rossum | f6971e2 | 1994-08-30 12:25:20 +0000 | [diff] [blame] | 21 | # <sourcefile> is anything ending in .c (.C, .cc, .c++ are C++ files) | 
| Guido van Rossum | fba715a | 1994-01-02 00:26:09 +0000 | [diff] [blame] | 22 | # <cpparg> is anything starting with -I, -D, -U or -C | 
 | 23 | # <library> is anything ending in .a or beginning with -l or -L | 
 | 24 | # <module> is anything else but should be a valid Python | 
 | 25 | # identifier (letters, digits, underscores, beginning with non-digit) | 
 | 26 | # | 
| Guido van Rossum | 613b943 | 1996-08-20 19:50:17 +0000 | [diff] [blame] | 27 | # (As the makesetup script changes, it may recognize some other | 
 | 28 | # arguments as well, e.g. *.so and *.sl as libraries.  See the big | 
 | 29 | # case statement in the makesetup script.) | 
 | 30 | # | 
| Guido van Rossum | fba715a | 1994-01-02 00:26:09 +0000 | [diff] [blame] | 31 | # Lines can also have the form | 
 | 32 | # | 
 | 33 | # <name> = <value> | 
 | 34 | # | 
 | 35 | # which defines a Make variable definition inserted into Makefile.in | 
| Guido van Rossum | 7cc5abd | 1994-09-12 10:42:20 +0000 | [diff] [blame] | 36 | # | 
| Guido van Rossum | 30e817e | 1997-12-02 16:46:39 +0000 | [diff] [blame] | 37 | # Finally, if a line contains just the word "*shared*" (without the | 
 | 38 | # quotes but with the stars), then the following modules will not be | 
| Martin v. Löwis | bbeb1e6 | 2002-04-19 09:47:23 +0000 | [diff] [blame] | 39 | # 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 Rossum | 30e817e | 1997-12-02 16:46:39 +0000 | [diff] [blame] | 50 | # included in the config.c file, nor in the list of objects to be | 
 | 51 | # added to the library archive, and their linker options won't be | 
| Martin v. Löwis | bbeb1e6 | 2002-04-19 09:47:23 +0000 | [diff] [blame] | 52 | # added to the linker options. Rules to create their .o files and | 
| Guido van Rossum | 30e817e | 1997-12-02 16:46:39 +0000 | [diff] [blame] | 53 | # 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 Rossum | 7fef86e | 1998-10-07 14:41:54 +0000 | [diff] [blame] | 55 | # is used to build modules as shared libraries.  (They can be | 
 | 56 | # installed using "make sharedinstall", which is implied by the | 
 | 57 | # toplevel "make install" target.)  (For compatibility, | 
| Guido van Rossum | 30e817e | 1997-12-02 16:46:39 +0000 | [diff] [blame] | 58 | # *noconfig* has the same effect as *shared*.) | 
| Guido van Rossum | b71c570 | 1999-02-22 18:11:18 +0000 | [diff] [blame] | 59 | # | 
| Martin v. Löwis | bbeb1e6 | 2002-04-19 09:47:23 +0000 | [diff] [blame] | 60 | # In addition, *static* explicitly declares the following modules to | 
 | 61 | # be static.  Lines containing "*static*" and "*shared*" may thus | 
| Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 62 | # alternate throughout this file. | 
| Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 63 |  | 
| Guido van Rossum | fba715a | 1994-01-02 00:26:09 +0000 | [diff] [blame] | 64 | # NOTE: As a standard policy, as many modules as can be supported by a | 
 | 65 | # platform should be present.  The distribution comes with all modules | 
 | 66 | # enabled that are supported by most platforms and don't require you | 
| Guido van Rossum | f4449de | 1995-04-10 11:37:18 +0000 | [diff] [blame] | 67 | # to ftp sources from elsewhere. | 
| Guido van Rossum | fba715a | 1994-01-02 00:26:09 +0000 | [diff] [blame] | 68 |  | 
 | 69 |  | 
| Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 70 | # Some special rules to define PYTHONPATH. | 
 | 71 | # Edit the definitions below to indicate which options you are using. | 
 | 72 | # Don't add any whitespace or comments! | 
 | 73 |  | 
| Guido van Rossum | 0c5e3c8 | 1996-07-31 17:49:01 +0000 | [diff] [blame] | 74 | # Directories where library files get installed. | 
 | 75 | # DESTLIB is for Python modules; MACHDESTLIB for shared libraries. | 
 | 76 | DESTLIB=$(LIBDEST) | 
 | 77 | MACHDESTLIB=$(BINLIBDEST) | 
| Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 78 |  | 
| Guido van Rossum | 9722781 | 1997-04-11 17:19:54 +0000 | [diff] [blame] | 79 | # NOTE: all the paths are now relative to the prefix that is computed | 
 | 80 | # at run time! | 
 | 81 |  | 
| Guido van Rossum | 0c5e3c8 | 1996-07-31 17:49:01 +0000 | [diff] [blame] | 82 | # Standard path -- don't edit. | 
| Guido van Rossum | 9722781 | 1997-04-11 17:19:54 +0000 | [diff] [blame] | 83 | # No leading colon since this is the first entry. | 
 | 84 | # Empty since this is now just the runtime prefix. | 
 | 85 | DESTPATH= | 
| Guido van Rossum | 1c20648 | 1995-09-13 18:39:04 +0000 | [diff] [blame] | 86 |  | 
| Guido van Rossum | 0c5e3c8 | 1996-07-31 17:49:01 +0000 | [diff] [blame] | 87 | # Site specific path components -- should begin with : if non-empty | 
 | 88 | SITEPATH= | 
 | 89 |  | 
 | 90 | # Standard path components for test modules | 
| Guido van Rossum | 7d83a5e | 1999-02-08 21:49:22 +0000 | [diff] [blame] | 91 | TESTPATH= | 
| Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 92 |  | 
| Guido van Rossum | d3c1bd3 | 1996-07-30 16:54:03 +0000 | [diff] [blame] | 93 | # Path components for machine- or system-dependent modules and shared libraries | 
| Guido van Rossum | a9f02b8 | 1997-09-28 05:45:40 +0000 | [diff] [blame] | 94 | MACHDEPPATH=:plat-$(MACHDEP) | 
| Jack Jansen | 7b59b42 | 2003-03-17 15:44:10 +0000 | [diff] [blame] | 95 | EXTRAMACHDEPPATH= | 
| Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 96 |  | 
| Georg Brandl | 6e47a33 | 2008-05-17 19:15:58 +0000 | [diff] [blame] | 97 | COREPYTHONPATH=$(DESTPATH)$(SITEPATH)$(TESTPATH)$(MACHDEPPATH)$(EXTRAMACHDEPPATH) | 
| Guido van Rossum | f5e0ea8 | 1994-09-12 15:35:36 +0000 | [diff] [blame] | 98 | PYTHONPATH=$(COREPYTHONPATH) | 
| Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 99 |  | 
 | 100 |  | 
| Guido van Rossum | caffcdf | 1995-03-10 15:14:13 +0000 | [diff] [blame] | 101 | # The modules listed here can't be built as shared libraries for | 
 | 102 | # various reasons; therefore they are listed here instead of in the | 
 | 103 | # normal order. | 
| Guido van Rossum | 05bf280 | 1994-10-20 22:01:38 +0000 | [diff] [blame] | 104 |  | 
| Victor Stinner | ed3b0bc | 2013-11-23 12:27:24 +0100 | [diff] [blame] | 105 | # This only contains the minimal set of modules required to run the | 
| Andrew M. Kuchling | 3712d39 | 2001-01-17 18:55:13 +0000 | [diff] [blame] | 106 | # setup.py script in the root of the Python source tree. | 
| Guido van Rossum | caffcdf | 1995-03-10 15:14:13 +0000 | [diff] [blame] | 107 |  | 
 | 108 | posix posixmodule.c		# posix (UNIX) system calls | 
| Fred Drake | 5f8a23f | 2002-08-05 18:06:17 +0000 | [diff] [blame] | 109 | errno errnomodule.c		# posix (UNIX) errno values | 
| Georg Brandl | cd4d1e8 | 2005-12-27 17:37:07 +0000 | [diff] [blame] | 110 | pwd pwdmodule.c			# this is needed to find out the user's home dir | 
 | 111 | 				# if $HOME is not set | 
| Guido van Rossum | e567935 | 2000-03-31 15:01:27 +0000 | [diff] [blame] | 112 | _sre _sre.c			# Fredrik Lundh's new regular expressions | 
| Marc-André Lemburg | b28de0d | 2002-12-12 17:37:50 +0000 | [diff] [blame] | 113 | _codecs _codecsmodule.c		# access to the builtin codecs and codec registry | 
| Georg Brandl | 3b8cb17 | 2007-10-23 06:26:46 +0000 | [diff] [blame] | 114 | _weakref _weakref.c		# weak references | 
| Benjamin Peterson | b747ed3 | 2009-05-23 16:37:50 +0000 | [diff] [blame] | 115 | _functools _functoolsmodule.c   # Tools for working with functions and callable objects | 
| Antoine Pitrou | a85017f | 2013-04-20 19:21:44 +0200 | [diff] [blame] | 116 | _operator _operator.c	        # operator.add() and similar goodies | 
| Senthil Kumaran | 5c87c1a | 2010-08-09 07:24:50 +0000 | [diff] [blame] | 117 | _collections _collectionsmodule.c # Container types | 
| Victor Stinner | ed3b0bc | 2013-11-23 12:27:24 +0100 | [diff] [blame] | 118 | itertools itertoolsmodule.c    # Functions creating iterators for efficient looping | 
| Łukasz Langa | 6f69251 | 2013-06-05 12:20:24 +0200 | [diff] [blame] | 119 | atexit atexitmodule.c      # Register functions to be run at interpreter-shutdown | 
| Christian Heimes | c77d9f3 | 2013-06-22 21:05:02 +0200 | [diff] [blame] | 120 | _stat _stat.c			# stat.h interface | 
| Benjamin Peterson | b747ed3 | 2009-05-23 16:37:50 +0000 | [diff] [blame] | 121 |  | 
 | 122 | # access to ISO C locale support | 
 | 123 | _locale _localemodule.c  # -lintl | 
| Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 124 |  | 
 | 125 | # Standard I/O baseline | 
| Alexandre Vassalotti | 8d8d630 | 2009-04-04 19:58:40 +0000 | [diff] [blame] | 126 | _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 Rossum | caffcdf | 1995-03-10 15:14:13 +0000 | [diff] [blame] | 127 |  | 
| Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 128 | # The zipimport module is always imported at startup. Having it as a | 
 | 129 | # builtin module avoids some bootstrapping problems and reduces overhead. | 
 | 130 | zipimport zipimport.c | 
 | 131 |  | 
| Victor Stinner | 024e37a | 2011-03-31 01:31:06 +0200 | [diff] [blame] | 132 | # faulthandler module | 
 | 133 | faulthandler faulthandler.c | 
 | 134 |  | 
| Victor Stinner | ed3b0bc | 2013-11-23 12:27:24 +0100 | [diff] [blame] | 135 | # debug tool to trace memory blocks allocated by Python | 
 | 136 | _tracemalloc _tracemalloc.c hashtable.c | 
 | 137 |  | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 138 | # The rest of the modules listed in this file are all commented out by | 
 | 139 | # default.  Usually they can be detected and built as dynamically | 
 | 140 | # loaded modules by the new setup.py script added in Python 2.1.  If | 
| Victor Stinner | ed3b0bc | 2013-11-23 12:27:24 +0100 | [diff] [blame] | 141 | # you're on a platform that doesn't support dynamic loading, want to | 
 | 142 | # compile modules statically into the Python binary, or need to | 
 | 143 | # specify some odd set of compiler switches, you can uncomment the | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 144 | # appropriate lines below. | 
 | 145 |  | 
 | 146 | # ====================================================================== | 
 | 147 |  | 
| Jeremy Hylton | a25d995 | 2001-10-17 13:46:44 +0000 | [diff] [blame] | 148 | # The Python symtable module depends on .h files that setup.py doesn't track | 
 | 149 | _symtable symtablemodule.c | 
 | 150 |  | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 151 | # Uncommenting the following line tells makesetup that all following | 
 | 152 | # modules are to be built as shared libraries (see above for more | 
 | 153 | # detail; also note that *static* reverses this effect): | 
 | 154 |  | 
 | 155 | #*shared* | 
 | 156 |  | 
 | 157 | # GNU readline.  Unlike previous Python incarnations, GNU readline is | 
 | 158 | # now incorporated in an optional module, configured in the Setup file | 
 | 159 | # instead of by a configure script switch.  You may have to insert a | 
 | 160 | # -L option pointing to the directory where libreadline.* lives, | 
 | 161 | # and you may have to change -ltermcap to -ltermlib or perhaps remove | 
 | 162 | # it, depending on your system -- see the GNU readline instructions. | 
 | 163 | # It's okay for this to be a shared library, too. | 
 | 164 |  | 
 | 165 | #readline readline.c -lreadline -ltermcap | 
 | 166 |  | 
 | 167 |  | 
 | 168 | # Modules that should always be present (non UNIX dependent): | 
 | 169 |  | 
 | 170 | #array arraymodule.c	# array objects | 
| Mark Dickinson | f371859 | 2009-12-21 15:27:41 +0000 | [diff] [blame] | 171 | #cmath cmathmodule.c _math.c # -lm # complex math library functions | 
| Mark Dickinson | 664b511 | 2009-12-16 20:23:42 +0000 | [diff] [blame] | 172 | #math mathmodule.c _math.c # -lm # math library functions, e.g. sin() | 
| Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 173 | #_struct _struct.c	# binary structure packing/unpacking | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 174 | #time timemodule.c # -lm # time operations and variables | 
| Fred Drake | 2de7471 | 2001-02-01 05:26:54 +0000 | [diff] [blame] | 175 | #_weakref _weakref.c	# basic weak reference support | 
| Tim Peters | f36fb69 | 2001-02-04 09:18:21 +0000 | [diff] [blame] | 176 | #_testcapi _testcapimodule.c    # Python C API test module | 
| Raymond Hettinger | 2a2385d | 2005-03-09 23:46:11 +0000 | [diff] [blame] | 177 | #_random _randommodule.c	# Random number generator | 
| Matthias Klose | fa1885f | 2008-11-27 09:51:39 +0000 | [diff] [blame] | 178 | #_elementtree -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI _elementtree.c	# elementtree accelerator | 
| Matthias Klose | 2a6beb3 | 2008-11-26 17:23:18 +0000 | [diff] [blame] | 179 | #_pickle _pickle.c	# pickle accelerator | 
| Alexander Belopolsky | cf86e36 | 2010-07-23 19:25:47 +0000 | [diff] [blame] | 180 | #_datetime _datetimemodule.c	# datetime accelerator | 
| Matthias Klose | a58ea4d | 2008-11-27 09:53:28 +0000 | [diff] [blame] | 181 | #_bisect _bisectmodule.c	# Bisection algorithms | 
| Matthias Klose | 131733a | 2009-02-22 12:57:58 +0000 | [diff] [blame] | 182 | #_heapq _heapqmodule.c	# Heap queue algorithm | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 183 |  | 
| Martin v. Löwis | 76192ee | 2001-02-06 09:34:40 +0000 | [diff] [blame] | 184 | #unicodedata unicodedata.c    # static Unicode character database | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 185 |  | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 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) | 
| Victor Stinner | ed3b0bc | 2013-11-23 12:27:24 +0100 | [diff] [blame] | 192 | #spwd spwdmodule.c		# spwd(3) | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 193 | #grp grpmodule.c		# grp(3) | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 194 | #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 Montanaro | 2497982 | 2003-03-20 23:37:24 +0000 | [diff] [blame] | 199 | # CSV file helper | 
 | 200 | #_csv _csv.c | 
 | 201 |  | 
| Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 202 | # Socket module helper for socket(2) | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 203 | #_socket socketmodule.c | 
 | 204 |  | 
| Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 205 | # Socket module helper for SSL support; you must comment out the other | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 206 | # socket line above, and possibly edit the SSL variable: | 
 | 207 | #SSL=/usr/local/ssl | 
| Marc-André Lemburg | a5d2b4c | 2002-02-16 18:23:30 +0000 | [diff] [blame] | 208 | #_ssl _ssl.c \ | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 209 | #	-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 |  | 
| Sean Reifscheider | e2dfefb | 2011-02-22 10:55:44 +0000 | [diff] [blame] | 217 | #_crypt _cryptmodule.c # -lcrypt	# crypt(3); needs -lcrypt on some systems | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 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 |  | 
| Matthias Klose | 22b6f9d | 2010-04-22 13:38:12 +0000 | [diff] [blame] | 227 | #_posixsubprocess _posixsubprocess.c  # POSIX subprocess module helper | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 228 |  | 
 | 229 | # Multimedia modules -- off by default. | 
 | 230 | # These don't work for 64-bit platforms!!! | 
| Martin v. Löwis | 8fbefe2 | 2004-07-19 16:42:20 +0000 | [diff] [blame] | 231 | # #993173 says audioop works on 64-bit platforms, though. | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 232 | # These represent audio samples or images as strings: | 
 | 233 |  | 
 | 234 | #audioop audioop.c	# Operations on audio samples | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 235 |  | 
 | 236 |  | 
| Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 237 | # Note that the _md5 and _sha modules are normally only built if the | 
 | 238 | # system does not have the OpenSSL libs containing an optimized version. | 
 | 239 |  | 
 | 240 | # The _md5 module implements the RSA Data Security, Inc. MD5 | 
| doko@ubuntu.com | 0684a9d | 2012-06-21 12:13:35 +0200 | [diff] [blame] | 241 | # Message-Digest Algorithm, described in RFC 1321. | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 242 |  | 
| doko@ubuntu.com | 0684a9d | 2012-06-21 12:13:35 +0200 | [diff] [blame] | 243 | #_md5 md5module.c | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 244 |  | 
 | 245 |  | 
| Georg Brandl | 86b2fb9 | 2008-07-16 03:43:04 +0000 | [diff] [blame] | 246 | # The _sha module implements the SHA checksum algorithms. | 
 | 247 | # (NIST's Secure Hash Algorithms.) | 
| doko@ubuntu.com | 1e3398a | 2012-06-21 16:22:15 +0200 | [diff] [blame] | 248 | #_sha1 sha1module.c | 
| Georg Brandl | 86b2fb9 | 2008-07-16 03:43:04 +0000 | [diff] [blame] | 249 | #_sha256 sha256module.c | 
 | 250 | #_sha512 sha512module.c | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 251 |  | 
 | 252 |  | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 253 | # The _tkinter module. | 
 | 254 | # | 
 | 255 | # The command for _tkinter is long and site specific.  Please | 
 | 256 | # uncomment and/or edit those parts as indicated.  If you don't have a | 
 | 257 | # specific extension (e.g. Tix or BLT), leave the corresponding line | 
 | 258 | # commented out.  (Leave the trailing backslashes in!  If you | 
 | 259 | # experience strange errors, you may want to join all uncommented | 
 | 260 | # lines and remove the backslashes -- the backslash interpretation is | 
 | 261 | # done by the shell's "read" command and it may not be implemented on | 
 | 262 | # every system. | 
 | 263 |  | 
 | 264 | # *** Always uncomment this (leave the leading underscore in!): | 
 | 265 | # _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \ | 
| Guido van Rossum | 8652522 | 2001-03-22 22:18:55 +0000 | [diff] [blame] | 266 | # *** Uncomment and edit to reflect where your Tcl/Tk libraries are: | 
 | 267 | #	-L/usr/local/lib \ | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 268 | # *** Uncomment and edit to reflect where your Tcl/Tk headers are: | 
 | 269 | #	-I/usr/local/include \ | 
 | 270 | # *** Uncomment and edit to reflect where your X11 header files are: | 
 | 271 | #	-I/usr/X11R6/include \ | 
 | 272 | # *** Or uncomment this for Solaris: | 
 | 273 | #	-I/usr/openwin/include \ | 
 | 274 | # *** Uncomment and edit for Tix extension only: | 
| Guido van Rossum | 8652522 | 2001-03-22 22:18:55 +0000 | [diff] [blame] | 275 | #	-DWITH_TIX -ltix8.1.8.2 \ | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 276 | # *** Uncomment and edit for BLT extension only: | 
 | 277 | #	-DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \ | 
 | 278 | # *** Uncomment and edit for PIL (TkImaging) extension only: | 
 | 279 | #     (See http://www.pythonware.com/products/pil/ for more info) | 
 | 280 | #	-DWITH_PIL -I../Extensions/Imaging/libImaging  tkImaging.c \ | 
 | 281 | # *** Uncomment and edit for TOGL extension only: | 
 | 282 | #	-DWITH_TOGL togl.c \ | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 283 | # *** Uncomment and edit to reflect your Tcl/Tk versions: | 
| Guido van Rossum | 8652522 | 2001-03-22 22:18:55 +0000 | [diff] [blame] | 284 | #	-ltk8.2 -ltcl8.2 \ | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 285 | # *** Uncomment and edit to reflect where your X11 libraries are: | 
 | 286 | #	-L/usr/X11R6/lib \ | 
 | 287 | # *** Or uncomment this for Solaris: | 
 | 288 | #	-L/usr/openwin/lib \ | 
 | 289 | # *** Uncomment these for TOGL extension only: | 
 | 290 | #	-lGL -lGLU -lXext -lXmu \ | 
 | 291 | # *** Uncomment for AIX: | 
 | 292 | #	-lld \ | 
 | 293 | # *** Always uncomment this; X11 libraries to link with: | 
 | 294 | #	-lX11 | 
 | 295 |  | 
| Andrew M. Kuchling | 4e699d5 | 2004-08-31 13:50:12 +0000 | [diff] [blame] | 296 | # Lance Ellinghaus's syslog module | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 297 | #syslog syslogmodule.c		# syslog daemon interface | 
 | 298 |  | 
 | 299 |  | 
| Florent Xicluna | 992d9e0 | 2011-11-11 19:35:42 +0100 | [diff] [blame] | 300 | # Curses support, requiring the System V version of curses, often | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 301 | # provided by the ncurses library.  e.g. on Linux, link with -lncurses | 
| Skip Montanaro | ce59c04 | 2004-01-17 14:19:44 +0000 | [diff] [blame] | 302 | # instead of -lcurses). | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 303 | # | 
 | 304 | # First, look at Setup.config; configure may have set this for you. | 
 | 305 |  | 
 | 306 | #_curses _cursesmodule.c -lcurses -ltermcap | 
 | 307 | # Wrapper for the panel library that's part of ncurses and SYSV curses. | 
| Victor Stinner | ed3b0bc | 2013-11-23 12:27:24 +0100 | [diff] [blame] | 308 | #_curses_panel _curses_panel.c -lpanel -lncurses | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 309 |  | 
 | 310 |  | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 311 | # Modules that provide persistent dictionary-like semantics.  You will | 
 | 312 | # probably want to arrange for at least one of them to be available on | 
 | 313 | # your machine, though none are defined by default because of library | 
| Georg Brandl | 0a7ac7d | 2008-05-26 10:29:35 +0000 | [diff] [blame] | 314 | # dependencies.  The Python module dbm/__init__.py provides an | 
 | 315 | # implementation independent wrapper for these; dbm/dumb.py provides | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 316 | # similar functionality (but slower of course) implemented in Python. | 
 | 317 |  | 
 | 318 | # The standard Unix dbm module has been moved to Setup.config so that | 
 | 319 | # it will be compiled as a shared library by default.  Compiling it as | 
 | 320 | # a built-in module causes conflicts with the pybsddb3 module since it | 
 | 321 | # creates a static dependency on an out-of-date version of db.so. | 
 | 322 | # | 
 | 323 | # First, look at Setup.config; configure may have set this for you. | 
 | 324 |  | 
| Georg Brandl | 0a7ac7d | 2008-05-26 10:29:35 +0000 | [diff] [blame] | 325 | #_dbm _dbmmodule.c 	# dbm(3) may require -lndbm or similar | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 326 |  | 
 | 327 | # Anthony Baxter's gdbm module.  GNU dbm(3) will require -lgdbm: | 
 | 328 | # | 
 | 329 | # First, look at Setup.config; configure may have set this for you. | 
 | 330 |  | 
| Georg Brandl | 0a7ac7d | 2008-05-26 10:29:35 +0000 | [diff] [blame] | 331 | #_gdbm _gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 332 |  | 
 | 333 |  | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 334 | # Helper module for various ascii-encoders | 
 | 335 | #binascii binascii.c | 
 | 336 |  | 
 | 337 | # Fred Drake's interface to the Python parser | 
 | 338 | #parser parsermodule.c | 
 | 339 |  | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 340 |  | 
 | 341 | # Lee Busby's SIGFPE modules. | 
 | 342 | # The library to link fpectl with is platform specific. | 
 | 343 | # Choose *one* of the options below for fpectl: | 
 | 344 |  | 
 | 345 | # For SGI IRIX (tested on 5.3): | 
 | 346 | #fpectl fpectlmodule.c -lfpe | 
 | 347 |  | 
 | 348 | # For Solaris with SunPro compiler (tested on Solaris 2.5 with SunPro C 4.2): | 
 | 349 | # (Without the compiler you don't have -lsunmath.) | 
 | 350 | #fpectl fpectlmodule.c -R/opt/SUNWspro/lib -lsunmath -lm | 
 | 351 |  | 
 | 352 | # For other systems: see instructions in fpectlmodule.c. | 
 | 353 | #fpectl fpectlmodule.c ... | 
 | 354 |  | 
 | 355 | # Test module for fpectl.  No extra libraries needed. | 
 | 356 | #fpetest fpetestmodule.c | 
 | 357 |  | 
 | 358 | # Andrew Kuchling's zlib module. | 
 | 359 | # This require zlib 1.1.3 (or later). | 
| Neal Norwitz | 014f103 | 2004-07-29 03:55:56 +0000 | [diff] [blame] | 360 | # See http://www.gzip.org/zlib/ | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 361 | #zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz | 
 | 362 |  | 
 | 363 | # Interface to the Expat XML parser | 
 | 364 | # | 
| Fred Drake | 9d416a7 | 2002-08-09 02:39:13 +0000 | [diff] [blame] | 365 | # Expat was written by James Clark and is now maintained by a group of | 
 | 366 | # developers on SourceForge; see www.libexpat.org for more | 
 | 367 | # information.  The pyexpat module was written by Paul Prescod after a | 
 | 368 | # prototype by Jack Jansen.  Source of Expat 1.95.2 is included in | 
 | 369 | # Modules/expat/.  Usage of a system shared libexpat.so/expat.dll is | 
 | 370 | # not advised. | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 371 | # | 
| Fred Drake | 9d416a7 | 2002-08-09 02:39:13 +0000 | [diff] [blame] | 372 | # More information on Expat can be found at www.libexpat.org. | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 373 | # | 
| Matthias Klose | e605b66 | 2008-11-27 07:43:44 +0000 | [diff] [blame] | 374 | #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 Chang | 3e2a306 | 2004-01-17 14:29:29 +0000 | [diff] [blame] | 375 |  | 
 | 376 | # Hye-Shik Chang's CJKCodecs | 
 | 377 |  | 
 | 378 | # multibytecodec is required for all the other CJK codec modules | 
 | 379 | #_multibytecodec cjkcodecs/multibytecodec.c | 
 | 380 |  | 
| Hye-Shik Chang | 2bb146f | 2004-07-18 03:06:29 +0000 | [diff] [blame] | 381 | #_codecs_cn cjkcodecs/_codecs_cn.c | 
 | 382 | #_codecs_hk cjkcodecs/_codecs_hk.c | 
 | 383 | #_codecs_iso2022 cjkcodecs/_codecs_iso2022.c | 
 | 384 | #_codecs_jp cjkcodecs/_codecs_jp.c | 
 | 385 | #_codecs_kr cjkcodecs/_codecs_kr.c | 
 | 386 | #_codecs_tw cjkcodecs/_codecs_tw.c | 
| Hye-Shik Chang | 3e2a306 | 2004-01-17 14:29:29 +0000 | [diff] [blame] | 387 |  | 
| Andrew M. Kuchling | e7c6691 | 2001-01-29 20:13:11 +0000 | [diff] [blame] | 388 | # Example -- included for reference only: | 
 | 389 | # xx xxmodule.c | 
 | 390 |  | 
| Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 391 | # Another example -- the 'xxsubtype' module shows C-level subtyping in action | 
 | 392 | xxsubtype xxsubtype.c |