diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1997-06-03 15:28:52 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1997-06-03 15:28:52 (GMT) |
commit | e68a61c95bbf45b8b683d09042cb1c7f716b6b94 (patch) | |
tree | f0570e9a39b01f022adbdce78ca8502683791b12 /Mac | |
parent | e3ae0dfeb796960885f86ce215f52191702e6a07 (diff) | |
download | cpython-e68a61c95bbf45b8b683d09042cb1c7f716b6b94.zip cpython-e68a61c95bbf45b8b683d09042cb1c7f716b6b94.tar.gz cpython-e68a61c95bbf45b8b683d09042cb1c7f716b6b94.tar.bz2 |
Added zlib (optional on USE_ZLIB)
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Modules/config.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Mac/Modules/config.c b/Mac/Modules/config.c index ff26bbf..254c4d8 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 -- */ |