[libpng17] Made a one-line revision to configure.ac to support ARM on aarch64

(bug report by Marcin Juszkiewicz, fix by John Bowler).
This commit is contained in:
Glenn Randers-Pehrson
2014-11-04 08:43:34 -06:00
parent 6f46730cb7
commit e5d462d829
3 changed files with 8 additions and 4 deletions

View File

@@ -426,7 +426,7 @@ AC_ARG_ENABLE([arm-neon],
AM_CONDITIONAL([PNG_ARM_NEON],
[test "$enable_arm_neon" != 'no' &&
case "$host_cpu" in
arm*) :;;
arm*|aarch64*) :;;
*) test "$enable_arm_neon" != '';;
esac])