diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-02-09 17:17:23 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-02-09 17:17:23 +0000 |
commit | c577d6a8073f9da8c528cce239b601e0e1366d65 (patch) | |
tree | 9fa4b61e59ce7b60581afe9dfe5e1705a820db8f | |
parent | 25a1e6cb1385e77a885fd7d1b8ed1da1ca06e4ca (diff) | |
download | xine-lib-c577d6a8073f9da8c528cce239b601e0e1366d65.tar.gz xine-lib-c577d6a8073f9da8c528cce239b601e0e1366d65.tar.bz2 |
Fix a configure test which was left out of the arch_x86 changes. (Affects MMX.)
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -8,6 +8,7 @@ xine-lib (1.1.11) unreleased * Made the version parsing much more reliable; it wasn't properly coping with four-part version numbers. This affects any program whose build scripts use xine-lib's automake macros. + * Whoops, broke MMX on x86 in 1.1.10.1. xine-lib (1.1.10.1) 2008-02-07 * Security fixes: diff --git a/configure.ac b/configure.ac index 8099051c4..0d51130b9 100644 --- a/configure.ac +++ b/configure.ac @@ -2310,7 +2310,7 @@ fi AM_CONDITIONAL(ARCH_X86, test "x$arch_x86" != "xno") AM_CONDITIONAL(ARCH_X86_32, test "x$arch_x86" = "x32") AM_CONDITIONAL(ARCH_X86_64, test "x$arch_x86" = "x64") -AM_CONDITIONAL(HAVE_MMX, test "x$arch_x86" = "xyes") +AM_CONDITIONAL(HAVE_MMX, test "x$arch_x86" != "xno") case $host_os in darwin*) |