mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
Merge pull request #99 from cgohlke/patch-10
Include zlib.h before Imaging.h
This commit is contained in:
commit
907b3c9177
|
@ -74,6 +74,10 @@
|
|||
|
||||
#include "Python.h"
|
||||
|
||||
#ifdef HAVE_LIBZ
|
||||
#include "zlib.h"
|
||||
#endif
|
||||
|
||||
#include "Imaging.h"
|
||||
|
||||
#include "py3.h"
|
||||
|
@ -3415,7 +3419,6 @@ setup_module(PyObject* m) {
|
|||
#endif
|
||||
|
||||
#ifdef HAVE_LIBZ
|
||||
#include "zlib.h"
|
||||
/* zip encoding strategies */
|
||||
PyModule_AddIntConstant(m, "DEFAULT_STRATEGY", Z_DEFAULT_STRATEGY);
|
||||
PyModule_AddIntConstant(m, "FILTERED", Z_FILTERED);
|
||||
|
|
Loading…
Reference in New Issue
Block a user