summaryrefslogtreecommitdiff
path: root/Modules/config.c.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-12-08 16:10:18 +0000
committerGuido van Rossum <guido@python.org>1992-12-08 16:10:18 +0000
commit8ed294150e62df914b023eefe2095359d76ec9ea (patch)
treeac0ac276bb9152396f0bc11a13d5328dca07a614 /Modules/config.c.in
parent95cd2ef1623d8f3ac574d617964e5b4e097bc54d (diff)
downloadcpython-git-8ed294150e62df914b023eefe2095359d76ec9ea.tar.gz
Added new modules mpz, md5 (by JH, requiring GNU MP).
Diffstat (limited to 'Modules/config.c.in')
-rw-r--r--Modules/config.c.in14
1 files changed, 14 insertions, 0 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in
index 7e679613c9..6189c33eb0 100644
--- a/Modules/config.c.in
+++ b/Modules/config.c.in
@@ -226,6 +226,12 @@ extern void inittime();
#ifdef USE_IMAGEOP
extern void initimageop();
#endif
+#ifdef USE_MPZ
+extern void initmpz();
+#endif
+#ifdef USE_MD5
+extern void initmd5();
+#endif
/* -- ADDMODULE MARKER 1 -- */
struct {
@@ -365,6 +371,14 @@ struct {
{"imageop", initimageop},
#endif
+#ifdef USE_MPZ
+ {"mpz", initmpz},
+#endif
+
+#ifdef USE_MD5
+ {"md5", initmd5},
+#endif
+
/* -- ADDMODULE MARKER 2 -- */
{0, 0} /* Sentinel */