Fix host_cpu check

This commit is contained in:
Matt Sarett 2016-02-17 11:52:09 -05:00
parent 9a308a3344
commit fb375429b5

View File

@ -345,7 +345,7 @@ AC_ARG_ENABLE([intel-sse],
AM_CONDITIONAL([PNG_INTEL_SSE],
[test "$enable_intel_sse" != 'no' &&
case "$host_cpu" in
x86*) :;;
i?86|x86_64) :;;
*) test "$enable_intel_sse" != '';;
esac])