From: Jack Jansen Date: Tue, 3 Jun 1997 15:28:52 +0000 (+0000) Subject: Added zlib (optional on USE_ZLIB) X-Git-Tag: v1.5a3~366 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e68a61c95bbf45b8b683d09042cb1c7f716b6b94;p=python Added zlib (optional on USE_ZLIB) --- diff --git a/Mac/Modules/config.c b/Mac/Modules/config.c index ff26bbf64d..254c4d8a7e 100644 --- a/Mac/Modules/config.c +++ b/Mac/Modules/config.c @@ -140,6 +140,9 @@ extern void initwaste(); #ifdef USE_GDBM extern void initgdbm(); #endif +#ifdef USE_ZLIB +extern void initzlib(); +#endif /* -- ADDMODULE MARKER 1 -- */ extern void PyMarshal_Init(); @@ -237,6 +240,9 @@ struct _inittab _PyImport_Inittab[] = { #ifdef USE_GDBM {"gdbm", initgdbm}, #endif /* USE_GDBM */ +#ifdef USE_ZLIB + {"zlib", initzlib}, +#endif /* -- ADDMODULE MARKER 2 -- */