@@ -164,17 +164,17 @@ _symtable symtablemodule.c
164164
165165# array arraymodule.c # array objects
166166# cmath cmathmodule.c _math.c # -lm # complex math library functions
167- # math mathmodule.c _math.c # -lm # math library functions, e.g. sin()
168- # _struct _struct.c # binary structure packing/unpacking
169- # time timemodule.c # -lm # time operations and variables
167+ math mathmodule.c _math.c # -lm # math library functions, e.g. sin()
168+ _struct _struct.c # binary structure packing/unpacking
169+ time timemodule.c # -lm # time operations and variables
170170# _weakref _weakref.c # basic weak reference support
171171# _testcapi _testcapimodule.c # Python C API test module
172- # _random _randommodule.c # Random number generator
172+ _random _randommodule.c # Random number generator
173173# atexit atexitmodule.c # Register functions to be run at interpreter-shutdown
174174# _elementtree -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI _elementtree.c # elementtree accelerator
175175# _pickle _pickle.c # pickle accelerator
176176# _datetime _datetimemodule.c # datetime accelerator
177- # _bisect _bisectmodule.c # Bisection algorithms
177+ _bisect _bisectmodule.c # Bisection algorithms
178178# _heapq _heapqmodule.c # Heap queue algorithm
179179
180180# unicodedata unicodedata.c # static Unicode character database
@@ -187,7 +187,7 @@ _symtable symtablemodule.c
187187# fcntl fcntlmodule.c # fcntl(2) and ioctl(2)
188188# spwd spwdmodule.c # spwd(3)
189189# grp grpmodule.c # grp(3)
190- # select selectmodule.c # select(2); not on ancient System V
190+ select selectmodule.c # select(2); not on ancient System V
191191
192192# Memory-mapped files (also works on Win32).
193193# mmap mmapmodule.c
@@ -196,21 +196,21 @@ _symtable symtablemodule.c
196196# _csv _csv.c
197197
198198# Socket module helper for socket(2)
199- # _socket socketmodule.c
199+ _socket socketmodule.c
200200
201201# Socket module helper for SSL support; you must comment out the other
202202# socket line above, and possibly edit the SSL variable:
203- # SSL=/usr/local/ssl
204- # _ssl _ssl.c \
205- # -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
206- # -L$(SSL)/lib -lssl -lcrypto
203+ SSL =/usr/local/ssl
204+ _ssl _ssl.c \
205+ -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
206+ -L$(SSL)/lib -lssl -lcrypto
207207
208208# The crypt module is now disabled by default because it breaks builds
209209# on many systems (where -lcrypt is needed), e.g. Linux (I believe).
210210#
211211# First, look at Setup.config; configure may have set this for you.
212212
213- # _crypt _cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
213+ # _crypt _cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
214214
215215
216216# Some more UNIX dependent modules -- off by default, since these
@@ -236,14 +236,14 @@ _symtable symtablemodule.c
236236# The _md5 module implements the RSA Data Security, Inc. MD5
237237# Message-Digest Algorithm, described in RFC 1321.
238238
239- # _md5 md5module.c
239+ _md5 md5module.c
240240
241241
242242# The _sha module implements the SHA checksum algorithms.
243243# (NIST's Secure Hash Algorithms.)
244- # _sha1 sha1module.c
245- # _sha256 sha256module.c
246- # _sha512 sha512module.c
244+ _sha1 sha1module.c
245+ _sha256 sha256module.c
246+ _sha512 sha512module.c
247247
248248
249249# The _tkinter module.
@@ -328,7 +328,7 @@ _symtable symtablemodule.c
328328
329329
330330# Helper module for various ascii-encoders
331- # binascii binascii.c
331+ binascii binascii.c
332332
333333# Fred Drake's interface to the Python parser
334334# parser parsermodule.c
@@ -354,7 +354,7 @@ _symtable symtablemodule.c
354354# Andrew Kuchling's zlib module.
355355# This require zlib 1.1.3 (or later).
356356# See http://www.gzip.org/zlib/
357- # zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
357+ zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
358358
359359# Interface to the Expat XML parser
360360#
0 commit comments