summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Bowler <jbowler@acm.org>2013-02-16 08:15:35 -0600
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2013-02-16 08:15:35 -0600
commitd1031d714bfb4ee68867eddc9e19aa0745086071 (patch)
tree5865a3773dbae2cf16a0c3eefd17393582e8bc87
parent33af2b7d9891677b5121231dccb6d8b530ca792d (diff)
downloadlibpng-d1031d714bfb4ee68867eddc9e19aa0745086071.tar.gz
[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.
-rw-r--r--ANNOUNCE2
-rw-r--r--CHANGES2
-rw-r--r--Makefile.am2
3 files changed, 5 insertions, 1 deletions
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