Kaydet (Commit) e68a61c9 authored tarafından Jack Jansen's avatar Jack Jansen

Added zlib (optional on USE_ZLIB)

üst e3ae0dfe
...@@ -140,6 +140,9 @@ extern void initwaste(); ...@@ -140,6 +140,9 @@ extern void initwaste();
#ifdef USE_GDBM #ifdef USE_GDBM
extern void initgdbm(); extern void initgdbm();
#endif #endif
#ifdef USE_ZLIB
extern void initzlib();
#endif
/* -- ADDMODULE MARKER 1 -- */ /* -- ADDMODULE MARKER 1 -- */
extern void PyMarshal_Init(); extern void PyMarshal_Init();
...@@ -237,6 +240,9 @@ struct _inittab _PyImport_Inittab[] = { ...@@ -237,6 +240,9 @@ struct _inittab _PyImport_Inittab[] = {
#ifdef USE_GDBM #ifdef USE_GDBM
{"gdbm", initgdbm}, {"gdbm", initgdbm},
#endif /* USE_GDBM */ #endif /* USE_GDBM */
#ifdef USE_ZLIB
{"zlib", initzlib},
#endif
/* -- ADDMODULE MARKER 2 -- */ /* -- ADDMODULE MARKER 2 -- */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment