1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-02 03:20:06 +00:00

Fixed an issue when including an external and newer version of zlib

This commit is contained in:
hogliux 2016-12-19 15:01:23 +00:00
parent a6d3d19832
commit ae3ee3467b

View file

@ -79,6 +79,15 @@ namespace zlibNamespace
#endif
#else
#include JUCE_ZLIB_INCLUDE_PATH
#ifndef z_uInt
#ifdef uInt
#define z_uInt uInt
#else
#define z_uInt unsigned int
#endif
#endif
#endif
}