diff options
author | Christian Heimes <christian@python.org> | 2021-12-04 14:14:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-04 14:14:48 (GMT) |
commit | 64be8d369b7e3878078dbef466804ae8be49c1cf (patch) | |
tree | 1c4b4b4f2582e1b26460ddee9f48947df919e99d /Modules | |
parent | 4045392e0e3446362841b3336497cb6eeccfcd23 (diff) | |
download | cpython-64be8d369b7e3878078dbef466804ae8be49c1cf.zip cpython-64be8d369b7e3878078dbef466804ae8be49c1cf.tar.gz cpython-64be8d369b7e3878078dbef466804ae8be49c1cf.tar.bz2 |
bpo-45847: Update whatsnew and add place holder entries for missing extensions (GH-29914)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/Setup.stdlib.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Modules/Setup.stdlib.in b/Modules/Setup.stdlib.in index ff92db3..eaf624d8 100644 --- a/Modules/Setup.stdlib.in +++ b/Modules/Setup.stdlib.in @@ -68,9 +68,13 @@ # dbm/gdbm # dbm needs either libndbm, libgdbm_compat, or libdb 5.x +#@MODULE__DBM_TRUE@_dbm _dbmmodule.c # gdbm module needs -lgdbm @MODULE__GDBM_TRUE@_gdbm _gdbmmodule.c +# needs -lreadline or -leditline, sometimes termcap, termlib, or tinfo +#@MODULE_READLINE_TRUE@readline readline.c + # hashing builtins, can be disabled with --without-builtin-hashlib-hashes @MODULE__MD5_TRUE@_md5 md5module.c @MODULE__SHA1_TRUE@_sha1 sha1module.c @@ -134,6 +138,11 @@ # needs -lffi and -ldl @MODULE__CTYPES_TRUE@_ctypes _ctypes/_ctypes.c _ctypes/callbacks.c _ctypes/callproc.c _ctypes/stgdict.c _ctypes/cfield.c +# needs -lncurses, -lncursesw or -lcurses, sometimes -ltermcap +#@MODULE__CURSES_TRUE@_curses _cursesmodule.c +# needs -lncurses and -lpanel +#@MODULE__CURSES_PANEL_TRUE@_curses_panel _curses_panel.c + @MODULE__SQLITE3_TRUE@_sqlite3 _sqlite/connection.c _sqlite/cursor.c _sqlite/microprotocols.c _sqlite/module.c _sqlite/prepare_protocol.c _sqlite/row.c _sqlite/statement.c _sqlite/util.c # needs -lssl and -lcrypt @@ -141,6 +150,9 @@ # needs -lcrypt @MODULE__HASHLIB_TRUE@_hashlib _hashopenssl.c +# needs -ltk, -ltcl, and sometimes -lX11 +#@MODULE__TKINTER_TRUE@_tkinter _tkinter.c tkappinit.c + # Linux: -luuid, BSD/AIX: libc's uuid_create() @MODULE__UUID_TRUE@_uuid _uuidmodule.c |