mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
[libpng15] Imported from libpng-1.5.16beta03.tar
This commit is contained in:
1
ANNOUNCE
1
ANNOUNCE
@@ -40,6 +40,7 @@ Version 1.5.16beta02 [April 26, 2013]
|
|||||||
Regenerated configure files.
|
Regenerated configure files.
|
||||||
|
|
||||||
Version 1.5.16beta03 [April 26, 2013]
|
Version 1.5.16beta03 [April 26, 2013]
|
||||||
|
Test for 'arm*' not just 'arm' in the host_cpu configure variable.
|
||||||
|
|
||||||
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
|||||||
12
configure
vendored
12
configure
vendored
@@ -12843,13 +12843,15 @@ $as_echo "#define PNG_ARM_NEON_SUPPORTED /**/" >>confdefs.h
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
# If enable/disable was not specified default to using the optimizations if the
|
# Add ARM specific files to all builds where the host_cpu is arm ('arm*') or
|
||||||
# host CPU is ARM and the compiler is targeting a NEON host. The latter test
|
# where ARM optimizations were explicitly requested (this allows a fallback if a
|
||||||
# is done in scripts/pnglibconf.dfa by checking for __ARM_NEON__. The
|
# future host CPU does not match 'arm*')
|
||||||
# AM_CONDITIONAL below controls whether the ARM NEON source files are built.
|
|
||||||
|
|
||||||
if test "$enable_arm_neon" != 'no' &&
|
if test "$enable_arm_neon" != 'no' &&
|
||||||
test "$host_cpu" = 'arm' -o "$enable_arm_neon" != ''; then
|
case "$host_cpu" in
|
||||||
|
arm*) :;;
|
||||||
|
*) test "$enable_arm_neon" != '';;
|
||||||
|
esac; then
|
||||||
PNG_ARM_NEON_TRUE=
|
PNG_ARM_NEON_TRUE=
|
||||||
PNG_ARM_NEON_FALSE='#'
|
PNG_ARM_NEON_FALSE='#'
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user