diff options
Diffstat (limited to 'Modules/zlibmodule.c')
-rw-r--r-- | Modules/zlibmodule.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/Modules/zlibmodule.c b/Modules/zlibmodule.c index cb2a2e5..ed00b5c 100644 --- a/Modules/zlibmodule.c +++ b/Modules/zlibmodule.c @@ -1,6 +1,15 @@ /* zlibmodule.c -- gzip-compatible data compression */ -/* See http://www.cdrom.com/pub/infozip/zlib/ */ -/* See http://www.winimage.com/zLibDll for Windows */ +/* See http://www.info-zip.org/pub/infozip/zlib/ */ + +/* *** Notes for Windows Users *** + * Download the source distribution as referenced above. + * Unpack the distribution such that a "..\..\zlib-1.1.3" directory is created + relative to the "pcbuild" directory. + * Build this "zlib" project. Via from MSVC magic, the correct zlib makefile will + be run, and "..\..\zlib-1.1.3\zlib.lib" will be built before zlib.pyd. + *** End of notes for Windows users *** +*/ + #include "Python.h" #include "zlib.h" |