[libpng15] Use approved/supported Android method to check for NEON, use

Linux/POSIX 1003.1 API to check /proc/self/auxv avoiding buffer allocation
and other library calls.
This commit is contained in:
John Bowler
2013-02-16 08:15:35 -06:00
committed by Glenn Randers-Pehrson
parent 33af2b7d98
commit d1031d714b
3 changed files with 5 additions and 1 deletions

View File

@@ -53,6 +53,8 @@ Version 1.5.15beta05 [February 16, 2013]
Use approved/supported Android method to check for NEON, use Linux/POSIX
1003.1 API to check /proc/self/auxv avoiding buffer allocation and other
library calls.
Fixed a race condition in the creation of the build 'scripts' directory
while building with a parallel make.
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit

View File

@@ -4010,6 +4010,8 @@ Version 1.5.15beta05 [February 16, 2013]
Use approved/supported Android method to check for NEON, use Linux/POSIX
1003.1 API to check /proc/self/auxv avoiding buffer allocation and other
library calls.
Fixed a race condition in the creation of the build 'scripts' directory
while building with a parallel make.
===========================================================================
NOTICE November 17, 2012:

View File

@@ -144,7 +144,7 @@ SYMBOL_CFLAGS = -DPNGLIB_LIBNAME='PNG@PNGLIB_MAJOR@@PNGLIB_MINOR@_0'\
.dfn.out:
rm -f $@ $@.c $@.?
test -d scripts || mkdir scripts
test -d scripts || mkdir scripts || test -d scripts
echo '#include "$<"' >$@.c
$(DFNCPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) @LIBPNG_DEFINES@\
$(CPPFLAGS) $(SYMBOL_CFLAGS) $@.c > $@.1