diff options
author | Christian Heimes <christian@python.org> | 2021-11-19 15:40:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-19 15:40:57 (GMT) |
commit | 7e44dc0ba768451f287a541cd1c85f7d87a41561 (patch) | |
tree | ba3b37dd571ba31928abb7f8e33fdbab10cb29c9 /Modules/Setup.stdlib.in | |
parent | d64659d8cdd90bf52950563c945b30b5f0ca8dd2 (diff) | |
download | cpython-7e44dc0ba768451f287a541cd1c85f7d87a41561.zip cpython-7e44dc0ba768451f287a541cd1c85f7d87a41561.tar.gz cpython-7e44dc0ba768451f287a541cd1c85f7d87a41561.tar.bz2 |
bpo-45573: Move mandatory core modules to Modules/Setup.bootstrap (GH-29616)
Diffstat (limited to 'Modules/Setup.stdlib.in')
-rw-r--r-- | Modules/Setup.stdlib.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/Setup.stdlib.in b/Modules/Setup.stdlib.in index 2e87b03..3b0d322 100644 --- a/Modules/Setup.stdlib.in +++ b/Modules/Setup.stdlib.in @@ -29,6 +29,9 @@ ############################################################################ # Modules that should always be present (POSIX and Windows): +# needs libm and on some platforms librt +@MODULE__DATETIME_TRUE@_datetime _datetimemodule.c + # _decimal uses libmpdec # either static libmpdec.a from Modules/_decimal/libmpdec or libmpdec.so # with ./configure --with-system-libmpdec |