From d1031d714bfb4ee68867eddc9e19aa0745086071 Mon Sep 17 00:00:00 2001 From: John Bowler Date: Sat, 16 Feb 2013 08:15:35 -0600 Subject: [PATCH] [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. --- ANNOUNCE | 2 ++ CHANGES | 2 ++ Makefile.am | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ANNOUNCE b/ANNOUNCE index aa4ff8f05..93ffba5c1 100644 --- a/ANNOUNCE +++ b/ANNOUNCE @@ -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 diff --git a/CHANGES b/CHANGES index c06829b3b..1fa393a5e 100644 --- a/CHANGES +++ b/CHANGES @@ -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: diff --git a/Makefile.am b/Makefile.am index 1d650b9ae..9ea9707e1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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