diff options
author | Guido van Rossum <guido@python.org> | 2000-04-06 13:20:38 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-04-06 13:20:38 (GMT) |
commit | 54b1c0b408136b6c0968d3cc4337d5d552137313 (patch) | |
tree | a4fc78df1b4c61120a6df58583d3d1f9173674ec /Modules/zlibmodule.c | |
parent | 4cb8c0b1b47546b50629a543bac37e85e0c2f26f (diff) | |
download | cpython-54b1c0b408136b6c0968d3cc4337d5d552137313.zip cpython-54b1c0b408136b6c0968d3cc4337d5d552137313.tar.gz cpython-54b1c0b408136b6c0968d3cc4337d5d552137313.tar.bz2 |
Windows: Since we're not using ZLIB.DLL any more, don't define ZLIB_DLL.
(Mark Hammond.)
Diffstat (limited to 'Modules/zlibmodule.c')
-rw-r--r-- | Modules/zlibmodule.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/zlibmodule.c b/Modules/zlibmodule.c index aaecc11..810ffef 100644 --- a/Modules/zlibmodule.c +++ b/Modules/zlibmodule.c @@ -3,9 +3,6 @@ /* See http://www.winimage.com/zLibDll for Windows */ #include "Python.h" -#ifdef MS_WIN32 -#define ZLIB_DLL -#endif #include "zlib.h" /* The following parameters are copied from zutil.h, version 0.95 */ |