From: Guido van Rossum Date: Tue, 8 Dec 1992 16:10:18 +0000 (+0000) Subject: Added new modules mpz, md5 (by JH, requiring GNU MP). X-Git-Tag: v0.9.8~82 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8ed294150e62df914b023eefe2095359d76ec9ea;p=thirdparty%2FPython%2Fcpython.git Added new modules mpz, md5 (by JH, requiring GNU MP). --- diff --git a/Modules/config.c.in b/Modules/config.c.in index 7e679613c9eb..6189c33eb02a 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 */