Fix android export templates build

This commit fixes errors occurring during Android export template
builds.
This required modification in third-party library (libpng) to compile
with NEON. Most likely a similar patch will be applied by them and we
could then replace the modified version.
This commit is contained in:
Ruslan Mustakov 2017-07-20 01:27:42 +07:00
parent 45b498c4e0
commit fbb27a0c43
2 changed files with 15 additions and 15 deletions

View file

@ -464,7 +464,7 @@
static_cast<type>(static_cast<void*>(value))
# define png_aligncastconst(type, value) \
static_cast<type>(static_cast<const void*>(value))
#else
#elif !defined(__ASSEMBLER__)
# define png_voidcast(type, value) (value)
# ifdef _WIN64
# ifdef __GNUC__