From: Christophe Mutricy Date: Fri, 5 Jan 2007 23:21:54 +0000 (+0000) Subject: Use mmx also when the host cpu claim to be 486 X-Git-Tag: 0.9.0-test0~8880 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=3300f2e87d2237904f9679edeaea5be9a68b1526;p=vlc Use mmx also when the host cpu claim to be 486 --- diff --git a/configure.ac b/configure.ac index 7544a4c411..8bcc10aca7 100644 --- a/configure.ac +++ b/configure.ac @@ -1396,7 +1396,7 @@ AS_IF([test "${CFLAGS_TUNING}"], dnl dnl x86 accelerations dnl -if test "${host_cpu}" = "i686" -o "${host_cpu}" = "i586" -o "${host_cpu}" = "x86" -o "${host_cpu}" = "i386" -o "${host_cpu}" = "x86_64" +if test "${host_cpu}" = "i686" -o "${host_cpu}" = "i586" -o "${host_cpu}" = "x86" -o "${host_cpu}" = "i386" -o "${host_cpu}"="i486" -o "${host_cpu}" = "x86_64" then ARCH="${ARCH} mmx" VLC_ADD_BUILTINS([${ACCEL_MODULES}])