diff options
author | Christian Heimes <christian@python.org> | 2021-12-04 10:21:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-04 10:21:43 (GMT) |
commit | 4045392e0e3446362841b3336497cb6eeccfcd23 (patch) | |
tree | ad93651b416d5fb070044047f26a64bcc816226e /Modules/Setup.stdlib.in | |
parent | cee07b162843694e8166ad8715162d4d5886b50f (diff) | |
download | cpython-4045392e0e3446362841b3336497cb6eeccfcd23.zip cpython-4045392e0e3446362841b3336497cb6eeccfcd23.tar.gz cpython-4045392e0e3446362841b3336497cb6eeccfcd23.tar.bz2 |
bpo-45847: Port _ctypes partly to PY_STDLIB_MOD (GH-29747)
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
Diffstat (limited to 'Modules/Setup.stdlib.in')
-rw-r--r-- | Modules/Setup.stdlib.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/Setup.stdlib.in b/Modules/Setup.stdlib.in index 9dfe918..ff92db3 100644 --- a/Modules/Setup.stdlib.in +++ b/Modules/Setup.stdlib.in @@ -130,6 +130,10 @@ ############################################################################ # Modules with third party dependencies # + +# needs -lffi and -ldl +@MODULE__CTYPES_TRUE@_ctypes _ctypes/_ctypes.c _ctypes/callbacks.c _ctypes/callproc.c _ctypes/stgdict.c _ctypes/cfield.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 |