From: Matthias Klose Date: Sun, 7 Nov 2021 15:47:09 +0000 (+0000) Subject: setup-modules X-Git-Tag: archive/raspbian/3.9.8-1+rpi1^2~29 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=09674c44cc57c67b3385de338a93c28f922563f1;p=python3.9.git setup-modules Gbp-Pq: Name setup-modules.diff --- diff --git a/Modules/Setup b/Modules/Setup index 02cfb67..6960811 100644 --- a/Modules/Setup +++ b/Modules/Setup @@ -178,7 +178,7 @@ _symtable symtablemodule.c #_testcapi _testcapimodule.c # Python C API test module #_testinternalcapi _testinternalcapi.c -I$(srcdir)/Include/internal -DPy_BUILD_CORE_MODULE # Python internal C API test module #_random _randommodule.c -DPy_BUILD_CORE_MODULE # Random number generator -#_elementtree -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI _elementtree.c # elementtree accelerator +#_elementtree _elementtree.c -lexpat # elementtree accelerator #_pickle _pickle.c # pickle accelerator #_datetime _datetimemodule.c # datetime accelerator #_zoneinfo _zoneinfo.c # zoneinfo accelerator @@ -211,10 +211,7 @@ _symtable symtablemodule.c # Socket module helper for SSL support; you must comment out the other # socket line above, and possibly edit the SSL variable: -#SSL=/usr/local/ssl -#_ssl _ssl.c \ -# -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \ -# -L$(SSL)/lib -lssl -lcrypto +#_ssl _ssl.c -lssl -lcrypto # The crypt module is now disabled by default because it breaks builds # on many systems (where -lcrypt is needed), e.g. Linux (I believe). @@ -247,6 +244,7 @@ _symtable symtablemodule.c #_md5 md5module.c +#_hashlib _hashopenssl.c -lssl -lcrypto # The _sha module implements the SHA checksum algorithms. # (NIST's Secure Hash Algorithms.) @@ -334,6 +332,7 @@ _symtable symtablemodule.c # Fred Drake's interface to the Python parser #parser parsermodule.c +#_ctypes _ctypes/_ctypes.c _ctypes/callbacks.c _ctypes/callproc.c _ctypes/stgdict.c _ctypes/cfield.c _ctypes/malloc_closure.c -lffi # Andrew Kuchling's zlib module. # This require zlib 1.1.3 (or later). @@ -343,7 +342,7 @@ _symtable symtablemodule.c # Interface to the Expat XML parser # More information on Expat can be found at www.libexpat.org. # -#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 +pyexpat pyexpat.c -lexpat # Hye-Shik Chang's CJKCodecs