mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +03:00
Include zlib.h before Imaging.h
Fixes a msvc compile error because various types get redefined
This commit is contained in:
parent
062397c0af
commit
0b8c870d0b
|
@ -74,6 +74,10 @@
|
||||||
|
|
||||||
#include "Python.h"
|
#include "Python.h"
|
||||||
|
|
||||||
|
#ifdef HAVE_LIBZ
|
||||||
|
#include "zlib.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "Imaging.h"
|
#include "Imaging.h"
|
||||||
|
|
||||||
#include "py3.h"
|
#include "py3.h"
|
||||||
|
@ -3415,7 +3419,6 @@ setup_module(PyObject* m) {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_LIBZ
|
#ifdef HAVE_LIBZ
|
||||||
#include "zlib.h"
|
|
||||||
/* zip encoding strategies */
|
/* zip encoding strategies */
|
||||||
PyModule_AddIntConstant(m, "DEFAULT_STRATEGY", Z_DEFAULT_STRATEGY);
|
PyModule_AddIntConstant(m, "DEFAULT_STRATEGY", Z_DEFAULT_STRATEGY);
|
||||||
PyModule_AddIntConstant(m, "FILTERED", Z_FILTERED);
|
PyModule_AddIntConstant(m, "FILTERED", Z_FILTERED);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user