diff options
-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*) |