summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDonnie Berkholz <spyderous@gentoo.org>2005-10-20 22:41:28 +0000
committerDonnie Berkholz <spyderous@gentoo.org>2005-10-20 22:41:28 +0000
commit279cf9f79da5778b6e14ecc437379d73e3bec5b0 (patch)
treeca6c81c6f52a217365dd60b985b8ac7964ebcf24 /configure.ac
parent1f43d218cc24358a0379535ed517c23011633c31 (diff)
Bug #4817 <https://bugs.freedesktop.org/show_bug.cgi?id=4817> Restore '='
to '==' in test for mmx_capable.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 5c60bb586..42865266e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -256,7 +256,7 @@ esac
AC_MSG_CHECKING(for MMX capable platform)
if test "x$use_x86_asm" = xyes && test "x$GCC" = xyes ; then
AC_PREPROC_IFELSE([
-#if (!defined (__GNUC__) || __GNUC__ < 3 || (__GNUC__ = 3 && __GNUC_MINOR__ < 4))
+#if (!defined (__GNUC__) || __GNUC__ < 3 || (__GNUC__ == 3 && __GNUC_MINOR__ < 4))
#error Not supported
#endif
], mmx_capable=yes, mmx_capable=no)